:root {
  --cream: #f7f2eb;
  --cream-deep: #eee7de;
  --paper: #fffdf9;
  --green: #164f50;
  --green-soft: #2e6667;
  --green-deep: #103f40;
  --coral: #d98972;
  --coral-deep: #c97761;
  --ink: #263b3b;
  --muted: #5b6563;
  --line: rgba(22, 79, 80, 0.18);
  --white: #ffffff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --script: "Segoe Script", "Brush Script MT", cursive;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.62;
}

body,
button,
a,
input,
textarea {
  font-family: var(--sans);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
}

.nav {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: var(--green);
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  border: 1.5px solid var(--coral);
  border-radius: 50%;
}

.brand-mark::before {
  content: "";
  width: 11px;
  height: 26px;
  border-right: 1.4px solid var(--coral-deep);
  border-bottom: 1.4px solid var(--coral-deep);
  border-radius: 0 0 100% 0;
  transform: rotate(17deg) translate(-2px, -1px);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 11px;
  width: 20px;
  height: 8px;
  border-bottom: 1.4px solid var(--coral-deep);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.brand-mark i {
  position: absolute;
  top: 10px;
  left: 21px;
  width: 5px;
  height: 5px;
  border: 1.4px solid var(--coral-deep);
  border-radius: 50%;
}

.brand-copy {
  line-height: 1;
  letter-spacing: 0.14em;
}

.brand-copy strong,
.brand-copy small {
  display: block;
  font-weight: 500;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.18rem;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 0.9rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  font-size: 0.86rem;
}

.nav-menu a {
  position: relative;
  padding: 12px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.carousel-controls button:focus-visible {
  outline: 3px solid rgba(217, 137, 114, 0.35);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--white);
  background: var(--coral);
}

.btn-primary:hover {
  color: var(--white);
  background: var(--coral-deep);
}

.btn-outline {
  color: var(--coral-deep);
  border-color: var(--coral);
  background: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  color: var(--white);
  background: var(--coral);
}

.btn-coral {
  color: var(--white);
  background: #e6a188;
}

.btn-coral:hover {
  color: var(--white);
  background: var(--coral);
}

.btn-dark {
  min-width: 150px;
  color: var(--white);
  background: var(--green-deep);
}

.btn-dark:hover {
  color: var(--white);
  background: #0b3435;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 36% -20%, rgba(255, 255, 255, 0.9) 0 30%, transparent 31%),
    linear-gradient(135deg, #fbf8f3 0%, var(--cream) 66%, #eee8e1 100%);
}

.hero::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: 42px;
  z-index: 3;
  width: 690px;
  height: 300px;
  border-bottom: 1.5px solid var(--coral);
  border-radius: 0 0 55% 50%;
  transform: rotate(-3deg);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -160px;
  z-index: 4;
  width: 78%;
  height: 250px;
  border-radius: 55% 0 0 0 / 75% 0 0 0;
  background: var(--cream);
  transform: rotate(2deg);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 7;
  display: flex;
  align-items: center;
  min-height: 720px;
  padding-top: 72px;
}

.hero-copy {
  width: 50%;
  padding: 46px 0 80px;
}

.hero h1 {
  margin: 0 0 26px;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(3rem, 4.6vw, 4.35rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero h1 span,
.section-intro h2 em,
.about-copy h2 em {
  color: var(--coral);
  font-family: var(--script);
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 span {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.92em;
}

.hero-copy > p {
  max-width: 430px;
  margin: 0 0 28px;
  color: #394544;
  font-size: 1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.quick-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 560px;
  margin-top: 38px;
}

.quick-benefits article {
  text-align: center;
}

.quick-benefits img,
.quick-benefits .heart-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
  object-fit: contain;
  opacity: 0.78;
}

.quick-benefits .heart-icon {
  color: var(--green);
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
}

.quick-benefits span:last-child {
  display: block;
  color: #344241;
  font-size: 0.72rem;
  line-height: 1.35;
}

.hero-media {
  position: absolute;
  top: 70px;
  right: 0;
  bottom: 40px;
  z-index: 2;
  width: 56%;
  overflow: hidden;
  border: 1.5px solid var(--coral);
  border-right: 0;
  border-radius: 49% 0 0 58% / 24% 0 0 48%;
  background: #eadfd4;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.benefits-section {
  position: relative;
  z-index: 8;
  padding: 58px 0 82px;
  background: var(--cream);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.45fr;
  gap: 86px;
  align-items: center;
}

.eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.eyebrow.light {
  color: #e9b39f;
}

.section-intro h2,
.about-copy h2,
.modalities h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.section-intro h2,
.about-copy h2 {
  color: var(--green);
  font-size: clamp(2.25rem, 3.8vw, 3.3rem);
  line-height: 1.04;
}

.section-intro h2 em,
.about-copy h2 em {
  font-size: 0.78em;
}

.section-intro > p,
.about-copy > p,
.modalities-copy > p {
  max-width: 390px;
  margin: 25px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 30px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 13px;
  align-items: center;
}

.benefit-item .line-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--green-soft);
  border: 1px solid rgba(217, 137, 114, 0.6);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.75rem;
}

.benefit-item p {
  margin: 0;
  color: #475352;
  font-size: 0.78rem;
  line-height: 1.5;
}

.modalities {
  position: relative;
  z-index: 5;
  margin-top: -20px;
  padding: 95px 0 94px;
  overflow: hidden;
  color: var(--white);
  border-radius: 48% 42% 0 0 / 8% 8% 0 0;
  background:
    radial-gradient(circle at 76% 12%, rgba(255, 255, 255, 0.08), transparent 27%),
    linear-gradient(135deg, var(--green-soft), var(--green-deep));
}

.modalities::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -82px;
  width: 70%;
  height: 130px;
  border-radius: 50% 0 0 0;
  background: var(--cream);
  transform: rotate(-2deg);
}

.modalities-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.7fr;
  gap: 55px;
  align-items: center;
}

.modalities h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 4vw, 3.55rem);
  line-height: 1.03;
}

.modalities-copy > p {
  color: rgba(255, 255, 255, 0.82);
}

.modalities-copy .btn {
  margin-top: 27px;
}

.modality-carousel {
  min-width: 0;
}

.modality-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.modality-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(7px);
}

.modality-photo {
  position: relative;
  height: 210px;
  overflow: hidden;
  border-radius: 29px 29px 42px 12px;
}

.modality-photo img {
  position: absolute;
  top: 0;
  width: 300%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.crop-solo img {
  left: 0;
}

.crop-aparelhos img {
  left: -100%;
}

.crop-gestantes img {
  left: -200%;
}

.modality-content {
  min-height: 150px;
  padding: 17px 20px 22px;
}

.modality-content h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.modality-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.77rem;
  line-height: 1.55;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.carousel-controls button {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  padding: 0;
  color: var(--white);
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.carousel-dots {
  display: flex;
  gap: 9px;
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.35);
}

.carousel-dots button.is-active {
  background: var(--white);
}

.about {
  position: relative;
  padding: 58px 0 76px;
  background: var(--cream);
}

.about::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 36px;
  width: 150px;
  height: 220px;
  border-right: 1px solid rgba(217, 137, 114, 0.55);
  border-radius: 50%;
  transform: rotate(-32deg);
  opacity: 0.7;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 76px;
  align-items: center;
}

.about-photo {
  position: relative;
  height: 410px;
  overflow: hidden;
  border-radius: 0 48% 48% 0 / 0 35% 35% 0;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 14px 16px 14px 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: inherit;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  position: relative;
  z-index: 2;
  padding-right: 50px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 26px;
}

.about-features article {
  text-align: center;
}

.about-features article > span {
  display: grid;
  place-items: center;
  width: 53px;
  height: 53px;
  margin: 0 auto 8px;
  color: var(--green);
  border: 1px solid var(--coral);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.about-features p {
  margin: 0;
  color: #3f4b4a;
  font-size: 0.72rem;
  line-height: 1.35;
}

.testimonials {
  position: relative;
  padding: 70px 0 80px;
  background: linear-gradient(180deg, #f4eee7 0%, #faf7f2 100%);
}

.testimonials::before {
  content: "";
  position: absolute;
  top: -34px;
  right: -5%;
  width: 74%;
  height: 74px;
  border-radius: 0 0 0 90%;
  background: var(--cream);
}

.testimonials-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.75fr;
  gap: 48px;
  align-items: center;
}

.section-intro.compact h2 {
  font-size: clamp(2rem, 3.3vw, 3rem);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  position: relative;
  min-height: 188px;
  padding: 30px 24px 22px;
  border: 1px solid rgba(22, 79, 80, 0.06);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
}

.testimonial-card .quote {
  position: absolute;
  top: -14px;
  left: 20px;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
}

.testimonial-card p {
  margin: 12px 0 16px;
  color: #4c5755;
  font-size: 0.76rem;
  line-height: 1.58;
}

.testimonial-card strong {
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 600;
}

.final-cta {
  position: relative;
  min-height: 225px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(100deg, #c97761 0%, #e5a28b 72%);
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -68px;
  left: -3%;
  width: 70%;
  height: 100px;
  border-radius: 0 0 55% 0;
  background: #faf7f2;
  transform: rotate(3deg);
}

.cta-layout {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 225px;
}

.cta-copy {
  width: 55%;
  padding: 48px 0 34px;
}

.cta-mark {
  display: none;
}

.final-cta h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.final-cta p {
  margin: 15px 0 21px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
}

.cta-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 48%;
  overflow: hidden;
  clip-path: ellipse(70% 100% at 76% 50%);
}

.cta-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #dda088 0%, rgba(221, 160, 136, 0.05) 45%);
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 60%;
}

.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #20b967;
  box-shadow: 0 12px 28px rgba(13, 80, 49, 0.25);
}

.float-whatsapp img {
  width: 27px;
  height: 27px;
  filter: brightness(0) invert(1);
}

.footer {
  padding: 38px 0 18px;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.9fr 1.25fr 0.75fr;
  gap: 36px;
  padding-bottom: 28px;
}

.footer-brand .brand-mark {
  width: 42px;
  height: 42px;
}

.footer-tagline {
  margin: 18px 0 0;
  color: #4f5b59;
  font-size: 0.77rem;
}

.footer h3 {
  margin: 0 0 13px;
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-links a {
  display: block;
  margin: 2px 0;
  color: #475452;
  font-size: 0.69rem;
}

.footer-contact p {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 7px;
  margin: 0 0 8px;
  color: #475452;
  font-size: 0.69rem;
  line-height: 1.45;
}

.footer-contact p img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  opacity: 0.8;
}

.footer-contact p > span:last-child {
  grid-column: 2;
}

.footer-social > div {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.footer-social img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(22, 79, 80, 0.13);
  color: #66706e;
  font-size: 0.62rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.09s;
}

.delay-2 {
  transition-delay: 0.17s;
}

@media (max-width: 1060px) {
  .nav {
    grid-template-columns: 170px 1fr auto;
  }

  .nav-menu {
    gap: 17px;
  }

  .hero-media {
    width: 56%;
  }

  .hero-copy {
    width: 52%;
  }

  .quick-benefits {
    gap: 12px;
  }

  .benefits-layout {
    gap: 50px;
  }

  .modalities-layout {
    grid-template-columns: 0.55fr 1.45fr;
    gap: 36px;
  }

  .modality-track {
    gap: 14px;
  }

  .modality-photo {
    height: 180px;
  }

  .about-layout {
    gap: 46px;
  }

  .footer-grid {
    gap: 20px;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
  }

  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 21px;
    height: 1.5px;
    margin: 3px 0;
    border-radius: 999px;
    background: var(--green);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid rgba(22, 79, 80, 0.12);
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.97);
    box-shadow: 0 20px 45px rgba(26, 55, 53, 0.12);
    backdrop-filter: blur(14px);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 10px 8px;
  }

  .nav-menu a::after {
    display: none;
  }

  .hero {
    min-height: 920px;
  }

  .hero-layout {
    align-items: flex-start;
    min-height: 920px;
    padding-top: 118px;
  }

  .hero-copy {
    width: 100%;
    padding: 0 0 390px;
  }

  .hero-copy > p {
    max-width: 520px;
  }

  .hero-media {
    top: auto;
    right: 24px;
    bottom: 35px;
    left: 24px;
    width: auto;
    height: 355px;
    border-right: 1.5px solid var(--coral);
    border-radius: 50% 50% 12px 12px / 42% 42% 8% 8%;
  }

  .hero-media img {
    object-position: center;
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    bottom: -170px;
    width: 100%;
  }

  .benefits-layout,
  .modalities-layout,
  .about-layout,
  .testimonials-layout {
    grid-template-columns: 1fr;
  }

  .benefits-layout {
    gap: 44px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modalities {
    border-radius: 38% 30% 0 0 / 4% 4% 0 0;
  }

  .modalities-copy {
    max-width: 450px;
  }

  .about-photo {
    border-radius: 36px 48% 48% 36px / 36px 28% 28% 36px;
  }

  .about-copy {
    padding-right: 0;
  }

  .testimonials-layout {
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .container {
    width: min(100% - 32px, 520px);
  }

  .nav {
    min-height: 82px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-mark::before {
    height: 22px;
  }

  .brand-mark i {
    top: 7px;
    left: 18px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.75rem;
  }

  .hero {
    min-height: 910px;
  }

  .hero-layout {
    min-height: 910px;
    padding-top: 115px;
  }

  .hero-copy {
    padding-bottom: 330px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(2.65rem, 12vw, 3.35rem);
    line-height: 1.03;
  }

  .hero h1 span {
    margin-top: 4px;
    font-size: 0.8em;
  }

  .hero-copy > p {
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .quick-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 18px;
    margin-top: 30px;
  }

  .quick-benefits img,
  .quick-benefits .heart-icon {
    width: 30px;
    height: 30px;
  }

  .quick-benefits span:last-child {
    font-size: 0.68rem;
  }

  .hero-media {
    right: 0;
    bottom: 0;
    left: 0;
    height: 300px;
    border-right: 0;
    border-left: 0;
    border-radius: 50% 50% 0 0 / 35% 35% 0 0;
  }

  .hero-media img {
    object-position: 53% center;
  }

  .hero::after {
    display: none;
  }

  .benefits-section {
    padding: 62px 0 70px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .benefit-item {
    grid-template-columns: 48px 1fr;
  }

  .benefit-item .line-icon {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }

  .modalities {
    margin-top: -10px;
    padding: 76px 0 70px;
    border-radius: 48% 36% 0 0 / 2.5% 2.5% 0 0;
  }

  .modalities::after {
    display: none;
  }

  .modalities h2 {
    font-size: 2.8rem;
  }

  .modalities-copy .btn {
    display: none;
  }

  .modality-carousel {
    width: 100%;
    overflow: hidden;
  }

  .modality-track {
    display: flex;
    gap: 16px;
    width: 100%;
    transform: translateX(calc(var(--slide, 0) * (-100% - 16px)));
    transition: transform 0.42s ease;
  }

  .modality-card {
    flex: 0 0 100%;
    border-radius: 34px;
  }

  .modality-photo {
    height: 245px;
  }

  .modality-content {
    min-height: 145px;
    padding: 20px 24px 26px;
  }

  .modality-content h3 {
    font-size: 1.5rem;
  }

  .about {
    padding: 58px 0 66px;
  }

  .about::after {
    display: none;
  }

  .about-layout {
    gap: 38px;
  }

  .about-photo {
    height: 300px;
    border-radius: 25px 48% 48% 25px / 25px 30% 30% 25px;
  }

  .about-features {
    gap: 9px;
  }

  .about-features article > span {
    width: 46px;
    height: 46px;
  }

  .about-features p {
    font-size: 0.66rem;
  }

  .testimonials {
    padding: 62px 0 70px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: auto;
  }

  .final-cta {
    min-height: 520px;
    border-radius: 48% 48% 22px 22px / 7% 7% 3% 3%;
  }

  .final-cta::before,
  .cta-image {
    display: none;
  }

  .cta-layout {
    min-height: 520px;
  }

  .cta-copy {
    width: 100%;
    padding: 50px 10px;
    text-align: center;
  }

  .cta-mark {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 34px;
    color: var(--coral-deep);
    border-radius: 50%;
    background: var(--white);
    font-family: var(--serif);
    font-size: 1.4rem;
  }

  .final-cta h2 {
    font-size: 2.25rem;
  }

  .final-cta p {
    max-width: 270px;
    margin: 24px auto 27px;
    font-size: 0.85rem;
  }

  .final-cta .btn {
    width: 100%;
    max-width: 250px;
    min-height: 52px;
    border-radius: 999px;
  }

  .float-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .footer {
    padding-top: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 22px;
  }

  .footer-grid > div:first-child,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Curvas vetoriais traçadas a partir do mockup oficial */
.float-whatsapp {
  display: none;
}

.hero-media {
  inset: 0;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  -webkit-mask: url("../img/shapes/hero-desktop-mask.svg") 0 0 / 100% 100% no-repeat;
  mask: url("../img/shapes/hero-desktop-mask.svg") 0 0 / 100% 100% no-repeat;
}

.hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.hero::before {
  inset: 0;
  z-index: 5;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: url("../img/shapes/hero-desktop-outline.svg") 0 0 / 100% 100% no-repeat;
  transform: none;
}

.hero::after {
  display: none;
}

.modalities {
  isolation: isolate;
  margin-top: -30px;
  padding: 116px 0 120px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.modalities::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 76% 12%, rgba(255, 255, 255, 0.08), transparent 27%),
    linear-gradient(135deg, var(--green-soft), var(--green-deep));
  -webkit-mask: url("../img/shapes/modalidades-desktop-mask.svg") 0 0 / 100% 100% no-repeat;
  mask: url("../img/shapes/modalidades-desktop-mask.svg") 0 0 / 100% 100% no-repeat;
}

.modalities::after {
  display: none;
}

.modalities-layout {
  position: relative;
  z-index: 1;
}

.about-photo {
  border-radius: 0;
  -webkit-mask: url("../img/shapes/about-desktop-mask.svg") 0 0 / 100% 100% no-repeat;
  mask: url("../img/shapes/about-desktop-mask.svg") 0 0 / 100% 100% no-repeat;
}

.about-photo::after {
  display: none;
}

.testimonials {
  isolation: isolate;
  margin-top: -34px;
  padding: 88px 0 94px;
  background: transparent;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  width: auto;
  height: auto;
  border-radius: 0;
  background: linear-gradient(180deg, #f4eee7 0%, #faf7f2 100%);
  transform: none;
  -webkit-mask: url("../img/shapes/testimonials-desktop-mask.svg") 0 0 / 100% 100% no-repeat;
  mask: url("../img/shapes/testimonials-desktop-mask.svg") 0 0 / 100% 100% no-repeat;
}

.final-cta {
  isolation: isolate;
  z-index: 6;
  min-height: 220px;
  margin-top: -28px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  width: auto;
  height: auto;
  border-radius: 0;
  background: linear-gradient(100deg, #c97761 0%, #e5a28b 72%);
  transform: none;
  -webkit-mask: url("../img/shapes/cta-desktop-mask.svg") 0 0 / 100% 100% no-repeat;
  mask: url("../img/shapes/cta-desktop-mask.svg") 0 0 / 100% 100% no-repeat;
}

.cta-layout {
  min-height: 220px;
}

.cta-image {
  inset: 0 0 0 auto;
  width: 48%;
  clip-path: none;
  -webkit-mask: url("../img/shapes/cta-photo-desktop-mask.svg") 0 0 / 100% 100% no-repeat;
  mask: url("../img/shapes/cta-photo-desktop-mask.svg") 0 0 / 100% 100% no-repeat;
}

@media (max-width: 640px) {
  .hero {
    min-height: 1280px;
  }

  .hero-layout {
    min-height: 1280px;
    padding-top: 168px;
  }

  .hero-copy {
    padding-bottom: 390px;
  }

  .hero-media {
    inset: auto 0 0;
    width: 100%;
    height: 330px;
    -webkit-mask: url("../img/shapes/hero-mobile-mask.svg") 0 0 / 100% 100% no-repeat;
    mask: url("../img/shapes/hero-mobile-mask.svg") 0 0 / 100% 100% no-repeat;
  }

  .hero-media img {
    position: static;
    width: 100%;
    height: 100%;
    object-position: 53% center;
  }

  .hero::before {
    inset: auto 0 0;
    height: 330px;
    background: url("../img/shapes/hero-mobile-outline.svg") 0 0 / 100% 100% no-repeat;
  }

  .benefits-section {
    display: none;
  }

  .modalities {
    min-height: 1180px;
    margin-top: 0;
    padding: 100px 0 82px;
  }

  .modalities::before {
    -webkit-mask: url("../img/shapes/modalidades-mobile-mask.svg") 0 0 / 100% 100% no-repeat;
    mask: url("../img/shapes/modalidades-mobile-mask.svg") 0 0 / 100% 100% no-repeat;
  }

  .modality-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    transform: none;
  }

  .modality-card {
    width: 100%;
  }

  .modality-card:first-child .modality-photo {
    display: none;
  }

  .modality-card:first-child .modality-content {
    min-height: 165px;
    padding-top: 30px;
  }

  .modality-photo {
    height: 220px;
  }

  .about,
  .testimonials,
  .footer {
    display: none;
  }

  .final-cta {
    min-height: 500px;
    margin-top: -35px;
    border-radius: 0;
  }

  .final-cta::before {
    display: block;
    -webkit-mask: url("../img/shapes/cta-mobile-mask.svg") 0 0 / 100% 100% no-repeat;
    mask: url("../img/shapes/cta-mobile-mask.svg") 0 0 / 100% 100% no-repeat;
  }

  .cta-layout {
    min-height: 500px;
  }
}
