﻿/* Base */
:root {
  --green: #06c957;
  --green-dark: #059442;
  --green-soft: #e8fff1;
  --mint: #18c98a;
  --charcoal: #17211b;
  --text: #27322d;
  --muted: #66736d;
  --line: #dce7e1;
  --white: #ffffff;
  --off-white: #f7faf7;
  --shadow: 0 24px 70px rgba(15, 70, 38, 0.15);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.section {
  padding: 92px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--mint));
  border-radius: 99px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.08;
  color: var(--charcoal);
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  font-size: 3.35rem;
}

h2 {
  font-size: 3.55rem;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p {
  margin-top: 14px;
  font-size: 1.02rem;
}

.section-copy p {
  margin-top: 18px;
  font-size: 1.04rem;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary,
.btn-plan {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 14px 36px rgba(6, 201, 87, 0.28);
}

.btn-secondary {
  color: var(--green-dark);
  background: var(--green-soft);
  box-shadow: inset 0 0 0 1px rgba(6, 201, 87, 0.24);
}

.btn-light {
  color: var(--green-dark);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(2, 73, 36, 0.25);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 231, 225, 0.78);
  backdrop-filter: blur(16px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
}

.brand-mark img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--charcoal);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--green-dark);
}

.nav-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 999px;
}

.main-nav .nav-cta:hover {
  color: var(--white);
  background: var(--green-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--charcoal);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fbfffc, #eafff2);
}

.hero-media {
  width: 100%;
  background: var(--green);
}

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

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(6, 201, 87, 0.18);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(19, 82, 44, 0.08);
}

.hero-proof strong {
  color: var(--green-dark);
  font-family: "Montserrat", Arial, sans-serif;
}

/* Sobre */
.about-section {
  background: var(--white);
}

.about-grid,
.video-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 56px;
}

.about-photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  isolation: isolate;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 18px 0 0 18px;
  z-index: -1;
  background: linear-gradient(135deg, var(--green), var(--mint));
  border-radius: var(--radius);
  transform: translate(12px, 12px);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.mini-list span {
  padding: 14px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgba(6, 201, 87, 0.18);
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
}

/* Vídeos */
.video-highlight {
  background:
    linear-gradient(180deg, rgba(232, 255, 241, 0.7), rgba(255, 255, 255, 0.96)),
    var(--off-white);
}

.featured-video {
  position: relative;
  padding: 12px;
  background: linear-gradient(145deg, var(--white), #effbf2);
  border: 1px solid rgba(6, 201, 87, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.featured-video::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 52%;
  height: 44%;
  background: var(--green);
  border-radius: var(--radius);
  opacity: 0.18;
  transform: translate(14px, 14px);
}

.featured-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
  border-radius: 6px;
}

.video-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 880px;
  margin-top: 34px;
}

.video-strip article {
  padding: 8px;
  background: var(--white);
  border: 1px solid rgba(6, 201, 87, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(23, 33, 27, 0.08);
}

.video-strip video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
  border-radius: 6px;
}

.recipes {
  background: var(--charcoal);
}

.recipes h2,
.recipes .section-heading p {
  color: var(--white);
}

.recipes .eyebrow {
  color: #8dffbd;
}

.recipe-video-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  gap: 16px;
}

.recipe-video {
  padding: 8px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.recipe-video video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
  border-radius: 6px;
}

/* Especialidades */
.specialties {
  background: var(--white);
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.specialty-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 45px rgba(18, 40, 28, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.specialty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(18, 40, 28, 0.14);
}

.specialty-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Atendimento */
.attendance {
  background: var(--off-white);
}

.attendance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.attendance-card {
  min-height: 260px;
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(6, 201, 87, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(23, 33, 27, 0.08);
}

.attendance-card p {
  margin-top: 14px;
}

.card-icon,
.plan-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
}

.card-icon svg,
.plan-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* Planos */
.pricing {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(6, 201, 87, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff, #f4fff8);
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.tab-button {
  min-width: 150px;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid rgba(6, 201, 87, 0.24);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.tab-button:hover,
.tab-button.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  transform: translateY(-1px);
}

.pricing-panel {
  display: none;
  perspective: 1200px;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 650px;
  padding: 32px;
  overflow: hidden;
  background:
    linear-gradient(145deg, #ffffff 0%, #f6fff9 50%, #e7fff0 100%);
  border: 1px solid rgba(6, 201, 87, 0.22);
  border-radius: var(--radius);
  box-shadow:
    0 24px 60px rgba(5, 148, 66, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transform: rotateX(0deg) rotateY(0deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(6, 201, 87, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(24, 201, 138, 0.16), transparent 42%);
  pointer-events: none;
}

.price-card::after {
  content: "";
  position: absolute;
  right: -48px;
  top: 110px;
  width: 150px;
  height: 150px;
  background: rgba(6, 201, 87, 0.11);
  border-radius: 50%;
  pointer-events: none;
}

.price-card:hover {
  transform: rotateX(4deg) rotateY(-4deg) translateY(-8px);
  box-shadow: 0 36px 84px rgba(5, 148, 66, 0.24);
}

.price-card.featured {
  color: var(--white);
  background:
    linear-gradient(145deg, #15d96a 0%, #08b84f 48%, #059442 100%);
  border-color: rgba(255, 255, 255, 0.34);
}

.price-card.featured h3,
.price-card.featured .price,
.price-card.featured li {
  color: var(--white);
}

.price-card.featured .plan-icon {
  color: var(--green-dark);
  background: var(--white);
}

.price-card.featured .btn-plan {
  color: var(--green-dark);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(3, 68, 31, 0.18);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  padding: 7px 12px;
  color: var(--green-dark);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.price-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  color: var(--green-dark);
  font-size: 2.2rem;
  text-transform: uppercase;
}

.price-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 0.95rem;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.42;
}

.price {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--green-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.price-card .btn-plan {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 24px;
}

/* Blog */
.blog-section {
  background: var(--off-white);
}

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

.blog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(23, 33, 27, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(23, 33, 27, 0.14);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.blog-card div {
  padding: 22px;
}

.blog-card span {
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.blog-card h3 {
  margin-top: 8px;
  font-size: 1.12rem;
}

.blog-card p {
  margin-top: 10px;
  font-size: 0.92rem;
}

.blog-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-dark);
  font-weight: 800;
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(23, 33, 27, 0.05);
}

summary {
  position: relative;
  padding: 22px 56px 22px 22px;
  color: var(--charcoal);
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 22px 22px;
}

/* Contato e mapa */
.contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4fff8 58%, #ffffff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 52px;
}

.contact-copy h2 {
  max-width: 620px;
  font-size: 3.6rem;
}

.contact-copy h2 strong {
  display: block;
  color: #1c4f23;
}

.contact-info {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.info-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
}

.info-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgba(6, 201, 87, 0.18);
  border-radius: 50%;
}

.info-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.info-row p {
  color: var(--text);
}

.info-row strong {
  color: var(--charcoal);
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(23, 33, 27, 0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(23, 33, 27, 0.18);
}

.social-link svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.social-link img {
  display: block;
  width: 52px;
  height: 52px;
}

.social-link.whatsapp {
  background: #12c95f;
}

.social-link.instagram {
  background: transparent;
}

.social-link.maps {
  background: linear-gradient(135deg, #4285f4, #34a853 52%, #fbbc05);
}

.contact-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12px;
  align-items: stretch;
}

.contact-visual > img,
.clinic-gallery img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(23, 33, 27, 0.1);
}

.contact-visual > img {
  aspect-ratio: 4 / 5;
}

.clinic-gallery {
  display: grid;
  gap: 12px;
}

.clinic-gallery img {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: stretch;
  margin-top: 54px;
}

.map-frame {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(6, 201, 87, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(23, 33, 27, 0.1);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.route-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(23, 33, 27, 0.08);
}

.route-card h3 {
  font-size: 1.65rem;
}

.route-card p {
  margin: 14px 0 22px;
}

.route-card .btn + .btn {
  margin-top: 12px;
}

.footer-showcase {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 61, 27, 0.96), rgba(12, 88, 42, 0.96)),
    url("../images/linha-superior.jpg") center/cover;
}

.footer-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 46px;
  min-height: 160px;
}

.footer-logo-lockup {
  display: flex;
  align-items: center;
}

.footer-logo-lockup img {
  width: min(100%, 220px);
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-showcase p {
  color: var(--white);
  font-size: 1.45rem;
}

.footer-showcase strong {
  color: #7dffac;
}

/* Rodapé */
.site-footer {
  padding: 30px 0;
  background: var(--charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr auto 1.25fr;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-grid strong {
  display: block;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.05rem;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-credit {
  justify-self: end;
  margin: 0;
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.footer-grid div:nth-child(2) {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

.footer-grid a:hover {
  color: var(--white);
}

/* Botão de WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--white);
  background: linear-gradient(135deg, #1fdf69, #06a84b);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(6, 168, 75, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  animation: floatPulse 2.8s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@keyframes floatPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Responsivo */
@media (max-width: 1080px) {
  .main-nav {
    gap: 14px;
    font-size: 0.88rem;
  }

  .recipe-video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .video-strip {
    max-width: 760px;
  }

  .pricing-panel.active {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  h1 {
    font-size: 2.48rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 22px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(23, 33, 27, 0.1);
    transform: translateY(-130%);
    transition: transform 0.28s ease;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 0;
  }

  .nav-cta {
    justify-self: start;
    margin-top: 8px;
    padding: 12px 18px;
  }

  .hero-media img {
    min-height: 430px;
    object-position: 58% center;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-grid,
  .video-grid,
  .faq-grid,
  .contact-grid,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy h2 {
    font-size: 2.75rem;
  }

  .map-layout {
    gap: 16px;
  }

  .route-card {
    padding: 24px;
  }

  .footer-showcase-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 0;
    text-align: center;
  }

  .footer-logo-lockup {
    justify-self: center;
    text-align: left;
  }

  .mini-list {
    grid-template-columns: 1fr;
  }

  .attendance-grid,
  .specialty-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .video-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-grid div:nth-child(2) {
    justify-content: center;
  }

  .footer-credit {
    justify-self: center;
    font-size: 0.62rem;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 2.18rem;
  }

  h3 {
    font-size: 1.18rem;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .brand small {
    display: none;
  }

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

  .brand-mark img {
    width: 25px;
    height: 25px;
  }

  .hero-media img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }

  .hero-proof span {
    width: 100%;
  }

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

  .featured-video,
  .recipe-video {
    padding: 6px;
  }

  .recipe-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .video-strip {
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .attendance-card,
  .price-card,
  .route-card {
    padding: 24px;
  }

  .contact-copy h2 {
    font-size: 2.2rem;
  }

  .contact-visual {
    grid-template-columns: 1fr;
  }

  .contact-visual > img {
    aspect-ratio: 4 / 3;
  }

  .clinic-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
  }

  .footer-logo-lockup img {
    width: min(100%, 190px);
  }

  .footer-showcase p {
    font-size: 1.12rem;
  }

  .price-card h3 {
    font-size: 1.9rem;
  }

  .price {
    font-size: 2.55rem;
  }

  .pricing-tabs {
    align-items: stretch;
    flex-direction: column;
  }

  .tab-button {
    width: 100%;
  }

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

@media (max-width: 420px) {
  .recipe-video-grid {
    grid-template-columns: 1fr;
  }

  .recipe-video {
    max-width: 260px;
    margin: 0 auto;
  }
}

