@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --clr-primary: #FBC600;
  --clr-secondary: #00249A;
  --blue: #01AAFF;
  --placeholder: #ABABAB;
  --light-grey: #F5F5F5;
  --ff-primary: 'Poppins';
  --space-xl: 100px;
}

html,
body {
  margin: 0;
  padding: 0 !important;
  font-family: var(--ff-primary), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.2;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
  text-wrap: balance;
}

a:hover {
  color: #000000;
}

#section-ads {
  display: flex;
  justify-content: center;
  width: 100%;
}

#section-ads a {
  width: unset;
  padding: 20px;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
  object-fit: contain;
}

.title {
  font-size: 45px;
  font-weight: 700;
  line-height: 45px;
  margin: 0;
}

/* Utility classes */
.custom-container {
  --max-width: 1220px;
  --padding: 2rem;
  width: min(var(--max-width), 100% - (2 * var(--padding)));
  margin-inline: auto;
}

.cta {
  padding: 16px 30px;
  border-radius: 100px;
  background: var(--clr-secondary);
  color: var(--white);
  border: none;
  font-weight: 700;
  transition: all 0.6s ease;
}

.cta:hover {
  transform: scale(1.1);
  box-shadow: var(--box-shadow);
}

/* navbar */
.nav {
  padding: 40px 0;
  position: fixed;
  width: 100%;
  z-index: 999;
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 45px;
}

.nav .container {
  transition: all 0.6s ease;
}

.nav .cta {
  font-size: 16px;
}

.scrolling {
  transform: scale(0.9);
  padding: 15px 20px;
  border-radius: 30px;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px) saturate(180%);
  background: rgba(255, 255, 255, 0.9);
  transition: box-shadow 0.4s ease, filter 0.4s ease;
  box-shadow: rgba(31, 38, 135, 0.2) 0px 8px 32px, rgba(255, 255, 255, 0.3) 0px 4px 20px inset;
}

.nav .container.scrolling .nav-logo img {
  height: 25px;
  padding-left: 10px;
  margin-top: 2px;
}

.nav-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-menu ul li {
  font-size: 17px;
  line-height: 1.1;
  margin: 0;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-menu ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--clr-secondary);
  transition: all 0.3s ease;
}

.nav-menu ul li:hover::after {
  width: 100%;
}

.nav-menu ul li:hover {
  color: var(--clr-secondary);
}

/* .nav-menu ul li:last-of-type:hover::after {
  content: unset;
} */

.nav-links {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Hero section */
.hero {
  padding: 120px 0 100px 0;
}

.hero-box {
  position: relative;
}

.hero-media {
  position: relative;
  min-height: 525px;
  border-radius: 40px;
  padding: 60px 80px;
  overflow: hidden;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: linear-gradient(270deg,
      rgba(0, 0, 0, 0) 19.03%,
      rgba(0, 0, 0, 0.85) 100%);
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-text,
.hero-badge,
.form-box {
  position: relative;
  z-index: 2;
}

.hero-badge {
  position: absolute;
  top: 5%;
  right: -35px;
  background-color: var(--clr-secondary);
  color: white;
  line-height: 1.1;
  width: 170px;
  height: 170px;
  transform: rotate(6.879deg);
  aspect-ratio: 1/1;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-badge span {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
}

.hero-text {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 500px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
}

.hero-text p {
  line-height: 1.1;
  font-size: 25px;
}

.hero-text p span {
  font-weight: 700;
}

/* Formulario */
#contactform {
  width: 100%
}

.form-box {
  /* z-index: 2;
  position: absolute;
  top: 355px;
  left: 50%;
  transform: translateX(-50%); */
    margin-top: -205px;
    width: 100%;
    margin-inline: auto;
    max-width: 525px;
    min-height: 273px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    background-color: white;
    border-radius: 40px;
    padding: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-header hr {
  color: var(--clr-secondary);
  border-top: 2px solid;
  opacity: 1;
  margin: 10px;
}

.form-header h3 {
  font-size: 22px;
  font-weight: 700;
  text-wrap: auto;
}

.form-header h3 span {
  color: var(--clr-secondary);
}

.form-header p {
  font-size: 18px;
}

.question {
  font-size: 20px;
  font-weight: 700;
}

.step {
  display: none;
}

.step.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  text-align: center;
}

/* Title */
.form-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}

/* Options */
.form-options {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.form-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-option label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 180px;
  padding: 11px;
  border-radius: 100px;
  border: 2px solid var(--clr-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.1;
  cursor: pointer;
  user-select: none;
  transition: transform .08s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
}

.form-option label:hover {
  transform: translateY(-1px);
  background-color: var(--clr-primary);
  box-shadow: 0 10px 20px rgba(25, 20, 60, .10);
}

/* selected */
.form-option input:checked+label {
  background: var(--clr-secondary);
  border-color: #fff;
  color: white;
  box-shadow: 0 12px 26px rgba(25, 20, 60, .12);
}

.form-option input:checked+label img {
  filter: brightness(0) invert(1);
}

.form-prev {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 4px solid var(--clr-primary);
  background: #fff;
  color: var(--clr-primary);
  cursor: pointer;
  font-size: 18px;
  transition: all .4s ease;
}

.form-prev img {
  height: 100%;
}

.form-ctas {
  display: flex;
  align-items: center;
  gap: 30px;
}

.next {
  background-color: var(--clr-primary);
  min-width: 180px;
  font-size: 22px;
  padding: 11px;
  line-height: 1.1;
}

.error {
  font-size: 12px;
  color: red;
  text-align: center;
  display: block;
  margin-top: 5px;
}

.custom-select {
  width: 100%;
  padding: 0;
  list-style: none;
  margin: 0;
}

.custom-select .dropdown-toggle {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  background-color: #F5F5F5;
  color: var(--placeholder);
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  background-image: url('/img/icons/drop.svg');
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: 95%;
  transition: all 0.7s ease;
  text-align: left;
  overflow: hidden;
}

.custom-select .dropdown-toggle.selected {
  background-image: none !important;
  padding-right: 25px;
}

/* 
.custom-select .dropdown-toggle:hover {
  background-color: #D9E8FD;
} */

.custom-select.active-bg .dropdown-toggle,
.custom-select .dropdown-toggle.selected {
  color: black;
}

.dropdown-toggle:focus {
  box-shadow: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: none !important;
  inset: auto !important;
  width: 100%;
  max-height: 165px;
  margin: 3px 0 0 0 !important;
  padding: 0;
  border-radius: 20px;
  overflow-x: hidden;
}

.dropdown-item {
  padding: 15px;
  cursor: pointer;
}

.dropdown-menu li {
  padding: 15px 20px;
  line-height: 1;
  cursor: pointer;
}

.dropdown-menu li:hover {
  background: var(--clr-secondary);
  color: #fff;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
}

.answers {
  width: 100%;
}

.form-input {
  width: 100%;
}

.form-input input[type="text"] {
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  text-align: start;
  height: 50px;
  padding: 0 25px;
  padding-left: 50px;
  border-radius: 20px;
  color: black;
  background-color: #F5F5F5;
  border: none;
  font-size: 18px;
  background-repeat: no-repeat;
  background-position: 20px 21px !important;
}

#name {
  background-image: url('/img/icons/user.svg');
}

#surname {
  background-image: url('/img/icons/user.svg');
}

#email {
  background-image: url('/img/icons/email.svg');
  background-position: 20px 15px !important;
}

#phone {
  background-image: url('/img/icons/phone.svg');
  background-position: 20px 15px !important;
}

#postal {
  background-image: url('/img/icons/postal.svg');
  background-position: 20px 15px !important;
}

#provincia {
  background-image: url('/img/icons/location.svg');
}

.age-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 30px;
}

.age-item {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.age-item.is-odd-last {
  width: 100%;
  justify-content: center;
}

.age-pill {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 260px;
  margin-inline: auto;
}

.age-pill-label {
  height: 40px;
  padding: 0 18px;
  border-radius: 20px 0 0 20px;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  margin-right: -10px;
}

.age-suffix {
  font-size: 11px;
  line-height: 1.1;
  margin-right: 5px;
  margin-bottom: 8px;
}

.age-input {
  width: 100%;
}

.age-input input[type="text"] {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 20px;
  background: #f5f5f5;
  text-align: center;
  padding: 0 16px;
  font-size: 20px;
  margin: 0;
}

.contact-fields {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.form-input input:focus-visible {
  outline: none !important;
}

::-webkit-input-placeholder {
  color: #ABABAB;
}

:-moz-placeholder {
  color: #ABABAB;
  opacity: 1;
}

::-moz-placeholder {
  color: #ABABAB;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #ABABAB;
}

::-ms-input-placeholder {
  color: #ABABAB;
}

::placeholder {
  color: #ABABAB;
}

.submit {
  background-color: var(--clr-primary);
  width: 100%;
  max-width: 180px;
  font-size: 20px;
}

.submit:hover {
  background-color: var(--clr-secondary);
  color: white;
}


/*Term animation */
.termContainer {
  width: 100%;
  font-size: 12px;
  color: var(--clr-secondary);
  cursor: pointer;
  text-align: center;
}

.termContainer a {
  color: var(--clr-secondary);
}

.termContainer input {
  display: none;
}

.termContainer a:hover {
  color: var(--clr-secondary) !important;
}

.termContainer svg {
  overflow: visible;
  max-height: 15px;
  max-width: 15px;
  margin-right: 5px;
  margin-top: 1px;
  vertical-align: baseline;
  translate: 0 2px;
}

.path {
  fill: none;
  stroke: var(--clr-secondary);
  stroke-width: 5px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease;
  stroke-dasharray: 241 9999999;
  stroke-dashoffset: 0;
}

.termContainer input:checked~svg .path {
  stroke-dasharray: 70.5096664428711 9999999;
  stroke-dashoffset: -262.2723388671875;
}

/* Partners */
.partners-slider {
  width: 100%;
  overflow: hidden;
}

.partners-slider .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}

.partners-slider .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-slider .swiper-slide img {
  width: auto;
  height: 40px;
  opacity: .5;
  object-fit: contain;
  display: block;
}

.partners p {
  text-align: center;
  margin-top: 40px;
  font-size: 20px;
}

.partners p span {
  color: var(--clr-secondary);
  font-weight: 700;
}

/* Formulario */

/* Benefits */
.benefits {
  margin-top: var(--space-xl);
}

.benefits .custom-container {
  --max-width: 830px;
}

.benefits__heading {
  text-align: center;
}

.benefits__heading h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}

.benefits__heading h2 span {
  color: var(--clr-secondary);
}

.benefits__heading p {
  font-size: 18px;
}

/* main grid */
.benefits__grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 25px;
  margin-top: 60px;
  align-items: stretch;
}

/* left side */
.benefit-card--wrapper {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 25px;
}

.benefit-card {
  background-color: #F5F5F5;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 20px;
}

.benefit-card p {
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  margin: 0;
}

.benefit-card--blue {
  background-color: var(--blue);
  color: white;
}

/* right side fake grid */
.telemed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 25px;
}

.telemed-image {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.telemed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.telemed-card {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  background: #efefef;
  border-radius: 16px;
  padding: 22px 18px;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  text-align: center;

}

.telemed-icon {
  margin-bottom: 12px;
}

.telemed-icon img {
  width: 48px;
  height: 48px;
  display: block;
}

.telemed-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 600;
  max-width: 220px;
}

/* Planos */
.plans-section {
  margin-block: 200px 100px;
  position: relative;
}

.plans-section::before {
  content: "";
  position: absolute;
  top: -90px;
  left: 0;
  width: 70%;
  height: 340px;
  background: var(--clr-primary);
  border-radius: 0 150px 150px 0;
  z-index: 0;
}

.plans-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.plans-header h2 {
  font-weight: 700;
  max-width: 66%;
  font-size: 40px;
  line-height: 1.2;
  text-wrap: auto;
  margin: 0;
}

.title-underline,
.title-underline-yellow,
.title-underline-yellow-h1 {
  position: relative;
  display: inline-block;
}

.title-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 14px;
  background: url("/img/underline-black.svg") no-repeat center;
  background-size: contain;
}

.title-underline-yellow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 14px;
  background: url("/img/underline.svg") no-repeat center;
  background-size: contain;
}

.title-underline-yellow-h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 100%;
  height: 28px;
  background: url("/img/underline-header.svg") no-repeat center;
  background-size: contain;
}

.pros-slider-nav {
  display: flex;
  gap: 10px;
}

.plans-nav {
  position: absolute;
  bottom: -25px;
  right: 128px;
  z-index: 999;
}


.plans-nav button,
.pros-slider-nav button {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 4px solid var(--clr-secondary);
  background: #fff;
  color: var(--clr-secondary);
  cursor: pointer;
  font-size: 18px;
  transition: all .4s ease;
}

.prev img {
  transform: rotate(-180deg);
}

.plans-nav button:hover,
.pros-slider-nav button:hover {
  background-color: var(--clr-secondary);
}

.plans-nav button:hover img,
.pros-slider-nav button:hover img {
  filter: brightness(0) invert(1);
}

.plans-swiper {
  padding-block: 55px 30px;
  padding-left: 40px;
  padding-right: 0;
  margin-left: 60px;
}

.plans-swiper .swiper-wrapper {
  margin-left: -30%;
}

.plans-swiper .swiper-slide {
  height: auto;
  height: 380px;
  width: 310px;
  transition: width 0.7s ease-in-out;
  transform-origin: center center;
}

.plans-swiper .swiper-slide-active {
  width: 390px;
  height: 420px;
  opacity: 1;
  z-index: 2;
}

.plan-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.plan-card h3 {
  text-align: center;
  color: var(--clr-secondary);
  font-size: 22px;
  font-weight: 700;
  padding: 40px 18px 18px;
  margin: 0;
}

.plan-card hr {
  margin: 0;
  border-top: 2px var(--blue) solid;
  opacity: 1;
}

.plan-card--body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.plan-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.plan-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: url("/img/icons/check.svg") no-repeat center;
  background-size: contain;
}


.plan-btn {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 40px;
  border-radius: 100px;
  background: var(--clr-primary);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
}

.swiper-slide-active .plan-btn {
  min-width: 180px;
  height: 50px;
  font-size: 22px;
}

/* Pros and Cons */
.pros-cons-section {
  padding-block: var(--space-xl);
  background-color: white;
  transition: background-color 0.35s ease;
}

.pros-cons-section.is-sin {
  background-color: #404040;
}

.pros__grid {
  display: grid;
  grid-template-columns: 1fr 0.33fr 1fr 1fr;
  gap: 22px;
}

.pros-cons__wrapper {
  max-width: 1040px;
  margin-inline: auto;
}

.pros-cons-toggle {
  border-radius: 40px;
  border: 1px solid #F5F5F5;
  background: #F5F5F5;
  padding: 20px;
  max-width: 520px;
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.pros-tab {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 700;
  background-color: transparent;
  color: var(--clr-secondary);
  transition: all .4s ease;
}

.pros-tab.active {
  background-color: var(--clr-secondary);
  color: white;
}

.pros-tab:hover {
  transform: scale(1.05);
}

.pros-box {
  border-radius: 20px;
  overflow: hidden;
  min-height: 180px;
  background-color: #F5F5F5;
}

.pros-box-txt {
  background: #f1f1f1;
  padding: 35px;
  text-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.pros-box-txt h6 {
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-secondary);
}

.pros-box-txt p {
  margin: 0;
  line-height: 18px;
}

.sad-box {
  background-color: var(--clr-secondary);
  color: white;
}

.sad-box h6 {
  color: white;
}

.blue-box {
  background: var(--blue);
}

.blue-box h6,
.blue-box p {
  color: #fff;
}

.pros-box-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 260px;
}

.pros-xl-box {
  min-height: 260px;
}

.pros-grid-desktop {
  display: grid;
  grid-template-columns: 1fr 0.33fr 1fr 1fr;
  gap: 22px;
}

.pros-grid-desktop .pros-box:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.pros-grid-desktop .pros-box:nth-child(2) {
  grid-column: 2 / 4;
  grid-row: 1;
}

.pros-grid-desktop .pros-box:nth-child(3) {
  grid-column: 4;
  grid-row: 1;
}

.pros-grid-desktop .pros-box:nth-child(4) {
  grid-column: 1 / 3;
  grid-row: 2;
}

.pros-grid-desktop .pros-box:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.pros-grid-desktop .pros-box:nth-child(6) {
  grid-column: 4;
  grid-row: 2;
}

.pros-slider-mobile {
  display: none;
}

.pros-slider-nav {
  display: none;
}

/* Footer */
footer {
  margin-top: var(--space-xl);
  background: linear-gradient(180deg, #FFF 16.63%, #FEF3E4 100%);
}

.footer--inner {
  max-width: 770px;
  margin-inline: auto;
}

.footer-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}

.footer-header h2 {
  font-size: 32px;
  font-weight: 700;
}

.footer-header h2 span {
  color: var(--clr-secondary);
}

.footer-ctas {
  display: flex;
  gap: 30px;
}

footer .cta {
  background-color: var(--clr-primary);
  font-size: 18px;
}

.footer-ctas .more {
  background-color: transparent;
  border: 2px solid var(--clr-primary);
}

footer .cta:hover {
  border: 2px solid var(--clr-secondary);
  background-color: var(--clr-secondary);
  color: white;
}

.footer-girl {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.footer-girl img {
  max-height: 300px;
}

.footer-girl h4 {
    font-size: 25px;
    font-weight: 600;
}


.footer-girl h4 span {
  color: var(--clr-secondary);
}

/* Thanks page */
.ty-hero {
  margin-top: var(--space-xl);
}

.ty-hero-box {
  background: linear-gradient(180deg, #FFF 0%, #FEF3E4 100%);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 20px 20px 0;
  border-radius: 40px;
}

.ty-hero-girl {
  max-height: 535px;
}

.ty-message {
  max-width: 490px;
}


/* messagem de agradecimento */
.message-box {
  padding: 60px 35px;
  text-align: start;
  max-width: 750px;
  margin-inline: auto;
  margin-block: 40px;

  border-radius: 40px;
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
}

.message-box h2 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 35px;
}

.message-box h2 span {
  color: var(--clr-secondary);
}

.message-box h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.message-box p {
  font-size: 16px;
}

.message-box p span {
  color: var(--clr-secondary);
  font-weight: 700;
}

.steps-section {
  padding-top: var(--space-xl);
}

.steps-section .custom-container {
  --max-width: 1240px;
}

.steps-wrapper {
  text-align: center;
}

.steps-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 70px;
}

.steps-title span {
  color: var(--clr-secondary);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  align-items: center;
  margin-bottom: 70px;
}

.step-card {
  position: relative;
  min-height: 180px;
  border-radius: 20px;
  background: #f5f5f5;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

/* linha horizontal entre os cards */
.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  width: 50px;
  height: 3px;
  background: var(--clr-secondary);
  transform: translateY(-50%);
}

.step-number {
  display: block;
  font-size: 80px;
  font-weight: 700;
  line-height: 0.9;
  color: rgba(1, 170, 255, 0.20);
  margin-bottom: 10px;
}

.step-card p {
  margin: 0;
  color: var(--clr-secondary);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
}

.steps-wrapper .cta {
  background-color: var(--clr-primary);
  color: #000;
  font-size: 24px;
  font-weight: 700;
  min-width: 445px;
  padding: 18px 34px;
}

@media (max-width: 1200px) {
  .steps {
    gap: 30px;
  }

  .step-card:not(:last-child)::after {
    right: -30px;
    width: 30px;
  }
}


@media (max-width: 991px) {
  .nav .container {
    max-width: 90%;
  }

  .nav-menu ul {
    gap: 0 30px;
  }

  .nav-menu ul li {
    font-size: 13px;
  }

  .nav-menu ul li {
    font-size: 16px;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .benefit-card--wrapper {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  
  .ty-hero-box {
    align-items: flex-end;
  }

  .ty-hero-girl {
    max-height: 300px;

  }

  .message-box {
    padding: 40px 30px;
  }

  .message-box h2 {
    font-size: 28px;
  }

  .message-box h6 {
    font-size: 18px;
  }

  .message-box p {
    font-size: 14px;
  }


  .step-card {
    height: 100%;
    padding: 30px 15px;
  }

  .steps {
    gap: 16px;
  }

  .step-card p {
    font-size: 18px;
  }

  .step-number {
    display: block;
    font-size: 60px;
  }
}

@media (max-width: 900px) {
  .pros-grid-desktop {
    display: none;
  }

  .pros-slider-mobile {
    display: block;
  }

  .pros-swiper {
    overflow: hidden;
  }

  .pros-swiper .swiper-slide {
    height: auto;
  }

  .pros-slider-mobile .pros-box {
    min-height: 260px;
    margin-left: 20px;
  }

  .pros-slider-mobile .pros-box-img,
  .pros-slider-mobile .pros-xl-box {
    min-height: 260px;
  }

  .pros-slider-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
  }

}

@media (max-width: 880px) {
  .nav-menu button {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-menu ul li::after {
    display: none;
  }

  .nav .container {
    max-width: 80%;
  }

  .nav-logo {
    margin-inline: auto;
  }
}

@media(max-width: 768px) {
  .hero-badge span {
    font-size: 28px;
  }

  .hero-badge {
    width: 120px;
    height: 120px;
  }

  .hero-media {
    padding: 60px 30px;
  }

  .hero-text h1 {
    font-size: 45px;
  }

  .hero-text p {
    font-size: 25px;
  }

  .form-box {
    padding: 40px 30px;
  }

  .form-header h3 {
    font-size: 22px;
  }

  .form-header p {
    font-size: 15px;
  }

  .age-input input[type="text"] {
    height: 55px;
    font-size: 16px;
  }

  .age-pill-label {
    font-size: 12px;
  }

  .benefits__heading h2 {
    font-size: 30px;
  }
  
  .telemed-grid {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .pros-tab {
    font-size: 15px;
    padding: 12px;
  }
  
  .plans-nav, .pros-slider-nav {
    right: 0;
    bottom: 0;
  }

  .plans-swiper .swiper-wrapper {
    margin-left: -15%;
  }

  .plans-header h2 {
    font-size: 38px;
  }

  .plans-swiper {
    padding-block: 70px 30px;
  }

  .footer-header h2 {
    font-size: 28px;
  }

  footer .cta {
    font-size: 16px;
  }

  .footer-girl h4 {
    font-size: 22px;
  }

  .steps-section {
    padding: 70px 0;
  }

  .steps-title {
    font-size: 34px;
    margin-bottom: 40px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 40px;
  }

  .step-card {
    min-height: unset;
    padding: 24px;
    text-align: center;
    align-items: center;
  }

  .step-card:not(:last-child)::after {
    display: none;
  }

  .step-number {
    font-size: 72px;
    margin-bottom: 8px;
  }

  .step-card p {
    max-width: 100%;
    text-align: center;
  }

  .steps-wrapper .cta {
    min-width: unset;
    width: 100%;
    max-width: 340px;
    font-size: 20px;
    padding: 15px 22px;
  }

  .ty-hero-girl {
    max-height: 230px;
  }

}

@media(max-width: 550px) {
  .custom-container {
    --padding: 20px;
  }

  .hero-badge {
    top: -4%;
    right: -10px;
  }

  .step.active {
    gap: 20px;
  }

  .error {
    font-size: 10px;
  }

  .next {
    font-size: 18px;
  }

  .age-pill {
    flex-direction: column;
    max-width: 190px;
  }

  .age-pill-label {
    border-radius: 20px 20px 0 0;
    margin-bottom: -6px;
    margin-right: 0;
    font-size: 14px;
    height: 45px;
  }

  .age-suffix {
    font-size: 8px;
  }

  .form-input input[type="text"] {
    background-position: 14px 14px !important;
    padding-left: 48px;
    font-size: 15px;
    height: 45px;
  }

  .age-input input[type="text"] {
    height: 50px;
    padding: 0 16px;
  }

  .contact-fields {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-option {
    width: 100%;
  }

  .form-options {
    width: 100%;
    gap: 10px;
  }

  .custom-select .dropdown-toggle {
    width: 100%;
    height: 50px;
  }

  .form-header h3 {
    font-size: 18px;
  }

  .custom-select .dropdown-toggle {
    font-size: 15px;
  }

  .form-option label {
    width: 100%;
    min-width: unset;
    font-size: 16px;
  }

  .question {
    font-size: 22px;
  }

  .submit {
    font-size: 18px;
  }

  .pros-cons-section {
    padding-block: 30px;
  }

  .benefit-card--wrapper {
    grid-template-columns: 1fr;
  }

  .footer-girl {
    flex-direction: column-reverse;
  }

  .footer-girl h4 {
    text-align: center;
  }

  .footer-girl img {
    max-height: 220px;
  }

  .cta {
    padding: 11px;
  }

  .footer-ctas {
    gap: 15px;
  }

  .form-prev {
    width: 35px;
    height: 35px;
  }

  .ty-hero-box {
    flex-direction: column-reverse;
    align-items: center;
  }

  .message-box {
    margin-block: 20px;
    text-align: center;
  }

  .message-box h2 {
    margin-bottom: 16px;
  }
}

@media (max-width: 475px) {

  .title {
    font-size: 28px;
  }

  .nav .container.scrolling .nav-logo img {
    height: 18px;
  }

  .hero-text {
    margin-top: 40px;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .form-box {
    width: 95%;
  }

  .age-wrapper {
    justify-content: space-around;
    gap: 10px;
  }

  .hero-badge {
    width: 105px;
    height: 105px;
    font-size: 13px;
  }

  .partners p {
    margin-top: 40px;
    font-size: 16px;
    margin-inline: 10px;
  }

  .partners-slider .swiper-slide img {
    height: 26px;
  }

  .telemed-grid {
    gap: 10px;
  }

  .telemed-card {
    gap: 15px;
  }

  .telemed-card img {
    height: 50px;
  }

  .benefit-card {
    padding: 20px;
    gap: 15px;
  }

  .benefit-card img {
    height: 50px;
  }

  .benefit-card p,
  .telemed-card p {
    font-size: 15px;
  }

  .benefit-card--wrapper,
  .benefits__grid {
    gap: 20px;
  }

  .benefits__heading p {
    font-size: 16px;
  }

  .plans-swiper {
    margin: 0;
  }

  .plans-section::before {
    top: -70px;
    width: 90%;
    height: 299px;
  }

  .plans-header h2 {
    font-size: 30px;
  }

  .plan-card li {
    margin-bottom: 8px;
  }

  .plan-card {
    height: 380px;
  }

  .swiper-slide-active .plan-btn {
    font-size: 18px;
  }

}

@media (max-width: 405px) {
  .nav .cta {
    padding: 0 15px;
  }

  .age-pill-label {
    font-size: 13px;
    width: 100%;
    margin-bottom: 0;
    height: 35px;
  }

  .age-input input[type="text"] {
    border-radius: 0 0 20px 20px;
    height: 40px;
  }


  .plan-card li {
    font-size: 14px;
  }

  .footer-ctas {
    flex-direction: column;
  }

  footer .cta {
    font-size: 17px;
  }
}

@media (max-width: 350px) {
  .nav-menu ul li:last-of-type {
    display: none;
  }

  .nav-logo {
    width: 100%;
    text-align: center;
  }

  .nav .container {
    max-width: 70%;
  }
}