/* ===========================================================
   VITA MARE TERAPÊUTICA — SHARED STYLESHEET
   5-page site · Bright tropical luxury
   =========================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #1e3a2f;
  background: #fff;
}

:root {
  --azure: #00B4D8;
  --azure-deep: #0096C7;
  --emerald: #2EC4B6;
  --emerald-light: #CBFFF4;
  --tangerine: #FF6B35;
  --tangerine-soft: #FFB394;
  --sunshine: #FFD166;
  --sunshine-light: #FFF3D4;
  --leaf: #06D6A0;
  --leaf-light: #D4F5E9;
  --sky: #E3FAFC;
  --cream: #FFFCF5;
  --white: #FFFFFF;
  --text-dark: #0D2818;
  --text-mid: #2D6A4F;
  --text-light: #5A8A72;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 48px;
  background: rgba(255,252,245,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(46,196,182,0.12);
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo svg { width: 44px; height: 40px; }
.nav-wordmark {
  font-family: 'Raleway', sans-serif;
  font-weight: 200; font-size: 18px;
  letter-spacing: 8px; text-transform: uppercase;
  color: var(--azure-deep);
}
.nav-wordmark small {
  display: block; font-size: 10px; letter-spacing: 5px;
  color: var(--emerald); font-weight: 300;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
nav ul { list-style: none; display: flex; gap: 28px; }
nav ul li a {
  text-decoration: none; font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-mid); transition: color 0.3s;
  position: relative; padding: 4px 0;
}
nav ul li a:hover { color: var(--tangerine); }
nav ul li a.active { color: var(--tangerine); }
nav ul li a.active::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--tangerine);
}
.nav-cta {
  background: linear-gradient(135deg, var(--tangerine), #FF8F00);
  color: white; padding: 11px 28px; border-radius: 28px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(255,107,53,0.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,107,53,0.45); }

/* ===== HERO HOMEPAGE ===== */
.hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 70px;
}
.hero-left {
  background: linear-gradient(170deg, var(--sky) 0%, var(--cream) 40%, var(--emerald-light) 100%);
  display: flex; flex-direction: column; justify-content: center; padding: 80px 70px;
}
.hero-logo-area { margin-bottom: 40px; }
.hero-left h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 200; font-size: 56px;
  letter-spacing: 8px; text-transform: uppercase;
  color: var(--text-dark); line-height: 1.15;
}
.hero-left h1 em {
  display: block; font-style: italic; font-weight: 300;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; letter-spacing: 6px;
  color: var(--emerald); text-transform: none; margin-top: 4px;
}
.hero-subtitle {
  font-weight: 300; font-size: 15px; line-height: 1.8;
  color: var(--text-light); margin-top: 24px; max-width: 440px;
}
.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.hero-pill {
  background: var(--white); border: 1.5px solid rgba(46,196,182,0.25);
  border-radius: 24px; padding: 8px 18px;
  font-size: 11px; font-weight: 500; color: var(--text-mid);
  letter-spacing: 1px; display: flex; align-items: center; gap: 6px;
}
.hero-pill span { font-size: 14px; }
.hero-cta-row { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.btn-main {
  background: linear-gradient(135deg, var(--emerald), var(--azure));
  color: white; padding: 16px 40px; border-radius: 32px;
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s; border: none; cursor: pointer; display: inline-block;
  box-shadow: 0 4px 20px rgba(46,196,182,0.35);
}
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(46,196,182,0.5); }
.btn-outline {
  border: 2px solid var(--azure); color: var(--azure-deep);
  padding: 14px 36px; border-radius: 32px;
  font-size: 12px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s; background: transparent; display: inline-block;
}
.btn-outline:hover { background: var(--azure); color: white; transform: translateY(-2px); }
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; padding: 14px 32px; border-radius: 32px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay-badge {
  position: absolute; bottom: 40px; left: 40px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(12px);
  border-radius: 16px; padding: 18px 24px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.pulse-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--leaf); position: relative;
}
.pulse-dot::after {
  content: ''; position: absolute; inset: -4px;
  border: 2px solid var(--leaf); border-radius: 50%;
  animation: ring 2s infinite;
}
@keyframes ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
.hero-overlay-badge p { font-size: 12px; font-weight: 500; color: var(--text-dark); line-height: 1.4; }
.hero-overlay-badge p small { display: block; font-weight: 300; color: var(--text-light); font-size: 11px; }

/* ===== PAGE HERO (non-homepage) ===== */
.page-hero {
  margin-top: 70px; min-height: 56vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 40px;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,252,245,0.5) 0%, rgba(255,252,245,0.88) 70%, var(--cream) 100%);
}
.page-hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; }
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(46,196,182,0.3);
  border-radius: 24px; padding: 8px 18px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--emerald);
  margin-bottom: 24px;
}
.page-hero h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 200; font-size: 52px;
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--text-dark); line-height: 1.15; margin-bottom: 20px;
}
.page-hero h1 em {
  font-style: italic; font-weight: 300;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 4px; color: var(--emerald); text-transform: none;
}
.page-hero p {
  font-weight: 300; font-size: 17px; line-height: 1.8;
  color: var(--text-mid); max-width: 640px; margin: 0 auto;
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--text-dark);
  padding: 16px 0; overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 60px;
  animation: scroll 30s linear infinite;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  font-size: 11px; font-weight: 400; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.marquee-item em { color: var(--tangerine-soft); font-style: normal; }

/* ===== SECTION COMMON ===== */
.section { padding: 100px 70px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--emerald-light), rgba(46,196,182,0.08));
  border: 1px solid rgba(46,196,182,0.2);
  border-radius: 24px; padding: 6px 16px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--emerald);
  margin-bottom: 18px;
}
.section-tag::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--emerald);
}
.section-heading {
  font-family: 'Raleway', sans-serif;
  font-weight: 200; font-size: 46px;
  color: var(--text-dark); line-height: 1.2;
  margin-bottom: 20px; letter-spacing: 1px;
}
.section-heading strong { font-weight: 600; color: var(--azure-deep); }
.section-heading em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400; color: var(--emerald);
}
.section-body {
  font-weight: 300; font-size: 15px; line-height: 1.85;
  color: var(--text-light); max-width: 560px;
}

/* ===== ABOUT (homepage) ===== */
.about {
  background: var(--cream);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px;
  align-items: center;
}
.about-photo-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  grid-template-rows: auto auto;
}
.about-photo-grid .ph {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.about-photo-grid .ph:first-child { grid-row: span 2; }
.about-photo-grid .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== FEATURES ===== */
.features { background: var(--white); }
.feat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin: 50px auto 0; max-width: 1100px;
}
.feat-card {
  background: linear-gradient(160deg, var(--cream), var(--white));
  border-radius: 20px; padding: 36px;
  border: 1.5px solid rgba(0,180,216,0.08);
  transition: all 0.3s;
  display: flex; gap: 20px; align-items: flex-start;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,180,216,0.1);
  border-color: var(--azure);
}
.feat-dot {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.feat-dot.a { background: linear-gradient(135deg, rgba(46,196,182,0.15), rgba(6,214,160,0.08)); }
.feat-dot.b { background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(255,143,0,0.08)); }
.feat-dot.c { background: linear-gradient(135deg, rgba(0,180,216,0.15), rgba(0,150,199,0.08)); }
.feat-dot.d { background: linear-gradient(135deg, rgba(255,209,102,0.25), rgba(255,193,7,0.1)); }
.feat-card h4 { font-weight: 700; font-size: 15px; color: var(--text-dark); margin-bottom: 6px; }
.feat-card p { font-weight: 300; font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ===== ROOMS scroll ===== */
.rooms { background: linear-gradient(180deg, var(--white), var(--sky)); }
.rooms-scroll {
  display: flex; gap: 24px; overflow-x: auto;
  padding: 50px 0 30px;
  scroll-snap-type: x mandatory;
}
.rooms-scroll::-webkit-scrollbar { height: 4px; }
.rooms-scroll::-webkit-scrollbar-thumb { background: var(--emerald); border-radius: 4px; }
.room-card {
  flex-shrink: 0; width: 380px;
  border-radius: 20px; overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  scroll-snap-align: start;
  transition: transform 0.3s;
}
.room-card:hover { transform: translateY(-6px); }
.room-card img { width: 100%; height: 280px; object-fit: cover; display: block; }
.room-card-body { padding: 24px; }
.room-card-body h5 { font-weight: 600; font-size: 16px; color: var(--text-dark); margin-bottom: 6px; }
.room-card-body p { font-weight: 300; font-size: 13px; color: var(--text-light); line-height: 1.6; }
.room-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.room-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 12px;
  border: 1px solid rgba(46,196,182,0.2); color: var(--emerald);
}

/* ===== CLINICAL BANNER ===== */
.clinical-banner {
  position: relative; overflow: hidden;
  min-height: 520px;
  display: flex; align-items: center;
}
.clinical-banner-bg {
  position: absolute; inset: 0;
  background-position: center; background-size: cover; background-repeat: no-repeat;
}
.clinical-banner-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(255,252,245,0.95) 0%,
    rgba(255,252,245,0.85) 35%,
    rgba(255,252,245,0.4) 60%,
    transparent 100%);
}
.clinical-text { position: relative; z-index: 2; padding: 80px 70px; max-width: 550px; }
.stat-row { display: flex; gap: 30px; margin-top: 36px; flex-wrap: wrap; }
.stat-block .stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300; color: var(--azure); line-height: 1;
}
.stat-block .stat-lbl {
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-light); margin-top: 4px;
}

/* ===== NDA ===== */
.nda {
  background: linear-gradient(135deg, var(--text-dark), #0D4B2E);
  color: white; text-align: center; padding: 80px 70px;
}
.nda .section-tag { background: rgba(255,107,53,0.15); border-color: rgba(255,107,53,0.3); color: var(--tangerine-soft); }
.nda .section-tag::before { background: var(--tangerine); }
.nda .section-heading { color: white; }
.nda .section-heading strong { color: var(--sunshine); }
.nda .section-heading em { color: var(--emerald-light); }
.nda .section-body { color: rgba(255,255,255,0.65); margin: 0 auto; }
.nda-icons { display: flex; gap: 30px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.nda-chip {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px; padding: 12px 24px;
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.75);
  transition: all 0.3s;
}
.nda-chip:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }
.nda-chip span { font-size: 18px; }

/* ===== GALLERY ===== */
.gallery { background: var(--cream); padding: 80px 70px; }
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 14px; margin-top: 40px;
}
.gallery-mosaic .gm { border-radius: 14px; overflow: hidden; position: relative; }
.gallery-mosaic .gm:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-mosaic .gm img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s;
}
.gallery-mosaic .gm:hover img { transform: scale(1.05); }

/* ===== CTA BOTTOM ===== */
.cta-bottom {
  background: linear-gradient(160deg, var(--sky), var(--emerald-light), var(--sunshine-light));
  text-align: center; padding: 100px 70px;
}
.cta-bottom .section-heading { margin-bottom: 30px; }
.cta-bottom .section-body { margin: 0 auto 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== TREATMENT SECTIONS ===== */
.treatment-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
  padding: 90px 70px;
}
.treatment-section.alt .treatment-content { order: 2; }
.treatment-section.alt .treatment-image { order: 1; }
.treatment-section:nth-child(odd) { background: var(--cream); }
.treatment-section:nth-child(even) { background: var(--white); }
.treatment-image {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  height: 460px;
}
.treatment-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.treatment-content h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 200; font-size: 36px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-dark); line-height: 1.2; margin-bottom: 20px;
}
.treatment-content h3 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  text-transform: none; letter-spacing: 2px; color: var(--emerald);
}
.treatment-content p {
  font-weight: 300; font-size: 15px; line-height: 1.85;
  color: var(--text-light); margin-bottom: 16px;
}
.treatment-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.treatment-meta-pill {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 16px;
  background: var(--sky); color: var(--azure-deep);
  border: 1px solid rgba(0,180,216,0.2);
}

/* ===== SUITES (Acomodações) ===== */
.suites-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; padding: 80px 70px; background: var(--cream);
}
.suite-card {
  background: var(--white);
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.suite-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.suite-card-img { height: 320px; position: relative; overflow: hidden; }
.suite-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.suite-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--emerald);
  padding: 6px 12px; border-radius: 20px;
}
.suite-card-body { padding: 32px 28px; }
.suite-card-body h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 200; font-size: 22px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-dark); margin-bottom: 12px;
}
.suite-card-body p {
  font-weight: 300; font-size: 14px; line-height: 1.7;
  color: var(--text-light); margin-bottom: 20px;
}
.suite-features { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.suite-features li {
  font-size: 11px; font-weight: 500;
  padding: 5px 12px; border-radius: 12px;
  background: var(--sky); color: var(--azure-deep); letter-spacing: 0.5px;
}

/* ===== AMENITIES STRIP ===== */
.amenities-strip {
  background: var(--text-dark); color: white;
  padding: 70px 70px; text-align: center;
}
.amenities-strip h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 200; font-size: 24px;
  letter-spacing: 5px; text-transform: uppercase;
  margin-bottom: 36px; color: var(--sunshine);
}
.amenities-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; max-width: 1100px; margin: 0 auto;
}
.amenity-item {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.85);
  padding: 14px 8px; border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.amenity-item span { font-size: 18px; }

/* ===== PRICING NOTE ===== */
.pricing-note {
  background: linear-gradient(135deg, var(--sky), var(--emerald-light));
  padding: 70px 70px; text-align: center;
}
.pricing-note .section-heading { margin-bottom: 16px; }
.pricing-note p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300;
  font-size: 20px; line-height: 1.6;
  color: var(--text-mid);
  max-width: 600px; margin: 0 auto 32px;
}

/* ===== PHYSICIAN CARDS ===== */
.physicians-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; padding: 80px 70px;
  max-width: 1300px; margin: 0 auto;
}
.physician-card {
  background: var(--white);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(46,196,182,0.1);
  transition: all 0.3s;
}
.physician-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.physician-photo-placeholder {
  height: 280px;
  background: linear-gradient(135deg, var(--sky), var(--emerald-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: rgba(46,196,182,0.4);
  position: relative;
}
.physician-photo-placeholder::after {
  content: 'Foto em breve';
  position: absolute; bottom: 16px; left: 0; right: 0;
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-light);
}
.physician-body { padding: 28px; text-align: center; }
.physician-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 300; font-size: 18px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-dark); margin-bottom: 6px;
}
.physician-crm {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400; font-size: 13px;
  color: var(--azure-deep); margin-bottom: 12px; letter-spacing: 1px;
}
.physician-spec {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--emerald);
  padding: 6px 14px; border-radius: 16px;
  background: var(--emerald-light);
  display: inline-block; margin-bottom: 16px;
}
.physician-bio {
  font-weight: 300; font-size: 13px; line-height: 1.7;
  color: var(--text-light);
}

/* ===== APPROACH ===== */
.approach {
  background: linear-gradient(135deg, var(--cream), var(--sky));
  text-align: center; padding: 100px 70px;
}
.approach-content { max-width: 760px; margin: 0 auto; }
.approach blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300;
  font-size: 24px; line-height: 1.6;
  color: var(--text-dark); margin: 32px 0;
}

/* ===== INTRO BLOCK ===== */
.intro-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; padding: 100px 70px;
  align-items: center; background: var(--white);
}
.intro-block-text h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 200; font-size: 38px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-dark); line-height: 1.2; margin-bottom: 24px;
}
.intro-block-text h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  letter-spacing: 3px; color: var(--emerald); text-transform: none;
}
.intro-block-text p {
  font-weight: 300; font-size: 15px; line-height: 1.85;
  color: var(--text-light); margin-bottom: 14px;
}
.intro-block-image {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1); height: 480px;
}
.intro-block-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== CONTACT FORM ===== */
.contact-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; padding: 80px 70px;
  background: var(--cream); align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px; padding: 48px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.contact-form-wrap h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 200; font-size: 32px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-dark); margin-bottom: 8px;
}
.contact-form-wrap h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  text-transform: none; letter-spacing: 2px; color: var(--emerald);
}
.contact-form-wrap > p.intro {
  font-weight: 300; font-size: 14px; line-height: 1.7;
  color: var(--text-light); margin-bottom: 32px;
}
.contact-form .form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.contact-form label {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-mid);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 400;
  padding: 14px 16px;
  border: 1.5px solid rgba(46,196,182,0.2);
  border-radius: 10px; background: var(--cream);
  color: var(--text-dark); outline: none;
  transition: all 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--azure); background: var(--white);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button {
  background: linear-gradient(135deg, var(--emerald), var(--azure));
  color: white; padding: 16px;
  border-radius: 12px; border: none;
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; cursor: pointer;
  width: 100%; margin-top: 8px;
  box-shadow: 0 4px 20px rgba(46,196,182,0.35);
  transition: all 0.3s;
}
.contact-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(46,196,182,0.5); }
.contact-info { padding: 16px 0; }
.contact-info h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 200; font-size: 28px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-dark); margin-bottom: 24px;
}
.contact-info h3 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  text-transform: none; color: var(--emerald); letter-spacing: 2px;
}
.contact-channel {
  background: var(--white); border-radius: 16px;
  padding: 24px 28px; margin-bottom: 16px;
  border: 1px solid rgba(46,196,182,0.15);
  display: flex; align-items: center; gap: 16px;
  text-decoration: none; transition: all 0.3s;
}
.contact-channel:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,196,182,0.15);
  border-color: var(--emerald);
}
.contact-channel-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; background: var(--sky);
}
.contact-channel-text strong {
  display: block; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--azure-deep);
  font-weight: 700; margin-bottom: 2px;
}
.contact-channel-text span { font-size: 14px; color: var(--text-mid); font-weight: 400; }
.lgpd-note {
  margin-top: 20px; padding: 16px 20px;
  background: rgba(46,196,182,0.06);
  border-radius: 10px;
  font-size: 11px; line-height: 1.6;
  color: var(--text-light);
  border-left: 3px solid var(--emerald);
}

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.45);
  padding: 60px 70px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand {
  font-family: 'Raleway', sans-serif;
  font-weight: 200; font-size: 22px; letter-spacing: 6px;
  text-transform: uppercase; color: white; margin-bottom: 10px;
}
.footer-brand small {
  display: block; font-size: 11px; letter-spacing: 4px;
  color: var(--emerald); font-weight: 300; margin-top: 2px;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
}
footer p { font-size: 13px; line-height: 1.7; font-weight: 300; }
footer h6 {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--tangerine-soft);
  margin-bottom: 16px;
}
footer a {
  display: block; color: rgba(255,255,255,0.45);
  text-decoration: none; font-size: 13px; font-weight: 300;
  margin-bottom: 8px; transition: color 0.3s;
}
footer a:hover { color: var(--emerald-light); }
.footer-bottom {
  grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px; margin-top: 20px;
  text-align: center; font-size: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 12px 20px; }
  nav ul { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 50vh; }
  .hero-left { padding: 50px 28px; }
  .hero-left h1 { font-size: 36px; letter-spacing: 5px; }
  .hero-left h1 em { font-size: 24px; letter-spacing: 4px; }
  .about, .intro-block, .contact-section,
  .treatment-section, .treatment-section.alt {
    grid-template-columns: 1fr; gap: 40px; padding: 60px 28px;
  }
  .treatment-section.alt .treatment-content { order: 1; }
  .treatment-section.alt .treatment-image { order: 2; }
  .feat-grid { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-mosaic .gm:first-child { grid-column: span 2; grid-row: auto; }
  .section { padding: 60px 28px; }
  .section-heading { font-size: 32px; }
  .page-hero { padding: 60px 28px; min-height: 50vh; }
  .page-hero h1 { font-size: 32px; letter-spacing: 4px; }
  .clinical-banner { min-height: auto; }
  .clinical-text { padding: 50px 28px; }
  .suites-grid { grid-template-columns: 1fr; padding: 60px 28px; }
  .amenities-strip, .pricing-note { padding: 50px 28px; }
  .nda { padding: 60px 28px; }
  .gallery { padding: 60px 28px; }
  .cta-bottom { padding: 70px 28px; }
  .physicians-grid { padding: 60px 28px; gap: 20px; }
  .approach { padding: 70px 28px; }
  .approach blockquote { font-size: 18px; }
  .contact-form-wrap { padding: 32px 24px; }
  .treatment-image, .intro-block-image { height: 320px; }
  footer { grid-template-columns: 1fr 1fr; padding: 50px 28px; }
}

/* ===== ACADEMIC CREDENTIALS ===== */
.physicians-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px; padding: 80px 70px;
  max-width: 1200px; margin: 0 auto;
}
.physician-photo-placeholder .initials {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 64px;
  color: var(--azure-deep); letter-spacing: 4px;
}
.physician-bio-full {
  font-weight: 300; font-size: 13.5px; line-height: 1.75;
  color: var(--text-mid);
  margin: 0; text-align: left;
}
.physician-divider {
  height: 1px; background: rgba(46,196,182,0.15);
  margin: 22px 0 16px;
}
.physician-credentials-title {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px; text-align: center;
}
.credentials-list {
  display: grid; grid-template-columns: 1fr; gap: 8px;
}
.credential {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: var(--cream);
  border-radius: 10px;
  border: 1px solid rgba(46,196,182,0.15);
  text-align: left;
  transition: all 0.2s;
}
.credential:hover {
  border-color: rgba(46,196,182,0.4);
  background: var(--white);
  transform: translateX(2px);
}
.credential.special {
  background: linear-gradient(135deg, rgba(255,107,53,0.05), var(--cream));
  border-color: rgba(255,107,53,0.2);
}
.credential.special:hover { border-color: rgba(255,107,53,0.5); }
.credential-seal { width: 44px; height: 44px; flex-shrink: 0; }
.credential-text { flex: 1; min-width: 0; }
.credential-acronym {
  font-family: 'Raleway', sans-serif;
  font-weight: 600; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--azure-deep);
  display: block;
}
.credential.special .credential-acronym { color: var(--tangerine); }
.credential-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  font-size: 12px; color: var(--text-light);
  display: block; margin-top: 1px; line-height: 1.4;
}
.credential-role {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--emerald);
  display: block; margin-top: 3px;
}
.credential.special .credential-role { color: var(--tangerine); }
.physician-card .physician-body { text-align: left; }
.physician-card .physician-name,
.physician-card .physician-crm,
.physician-card .physician-spec { text-align: center; }
.physician-card .physician-spec { display: block; margin: 0 auto 16px; }

/* ===== EXPERIENCE PAGE ===== */
.manifesto {
  background: linear-gradient(135deg, var(--text-dark) 0%, #0D4B2E 100%);
  color: white;
  padding: 130px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(46,196,182,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto-content { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.manifesto-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 24px; padding: 6px 16px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--tangerine-soft);
  margin-bottom: 28px;
}
.manifesto-tag::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--tangerine);
}
.manifesto-line {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300;
  font-size: 32px; line-height: 1.45;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}
.manifesto-line strong { color: var(--sunshine); font-weight: 400; font-style: italic; }
.manifesto-headline {
  font-family: 'Raleway', sans-serif;
  font-weight: 200; font-size: 52px;
  letter-spacing: 4px; text-transform: uppercase;
  line-height: 1.2; margin-bottom: 28px;
  color: white;
}
.manifesto-headline em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  letter-spacing: 3px; text-transform: none;
  color: var(--emerald-light);
}
.manifesto-body {
  font-weight: 300; font-size: 16px; line-height: 1.85;
  color: rgba(255,255,255,0.78);
  max-width: 660px; margin: 0 auto;
}

/* Three pillars */
.pillars-section {
  padding: 110px 70px;
  background: var(--cream);
  text-align: center;
}
.pillars-section > .section-tag,
.pillars-section > .section-heading,
.pillars-section > .section-body { margin-left: auto; margin-right: auto; }
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px; margin: 60px auto 0;
}
.pillar-card {
  background: var(--white);
  border-radius: 24px;
  padding: 52px 36px 44px;
  text-align: center;
  border: 1px solid rgba(46,196,182,0.12);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--azure), var(--emerald));
}
.pillar-card.alt::before { background: linear-gradient(90deg, var(--emerald), var(--leaf)); }
.pillar-card.alt2::before { background: linear-gradient(90deg, var(--tangerine), var(--sunshine)); }
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(46,196,182,0.12);
}
.pillar-icon {
  width: 76px; height: 76px; margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--emerald-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.pillar-card.alt2 .pillar-icon {
  background: linear-gradient(135deg, var(--sunshine-light), rgba(255,107,53,0.15));
}
.pillar-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 300; font-size: 22px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.pillar-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  font-size: 14px; color: var(--emerald);
  margin-bottom: 22px; display: block;
  letter-spacing: 1px;
}
.pillar-card.alt2 .pillar-tag { color: var(--tangerine); }
.pillar-body {
  font-weight: 300; font-size: 14px; line-height: 1.75;
  color: var(--text-light);
  text-align: left;
}

/* Daily activities */
.daily-section {
  padding: 110px 70px;
  background: var(--white);
  text-align: center;
}
.daily-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  max-width: 1200px; margin: 50px auto 0;
}
.daily-item {
  background: linear-gradient(135deg, var(--cream), var(--white));
  border-radius: 16px;
  padding: 22px 20px;
  border: 1px solid rgba(46,196,182,0.1);
  display: flex; gap: 16px; align-items: center;
  transition: all 0.3s;
  text-align: left;
}
.daily-item:hover {
  border-color: var(--azure);
  transform: translateX(2px);
  box-shadow: 0 8px 24px rgba(0,180,216,0.08);
}
.daily-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky), var(--emerald-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.daily-text { flex: 1; min-width: 0; }
.daily-text strong {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 600; font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.daily-text span {
  font-size: 12px; color: var(--text-light);
  font-weight: 300; line-height: 1.5;
}

/* Counsellor section */
.counsellor-section {
  background: var(--text-dark);
  color: white;
  padding: 100px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.counsellor-section .section-tag {
  background: rgba(255,209,102,0.12);
  border-color: rgba(255,209,102,0.3);
  color: var(--sunshine);
}
.counsellor-section .section-tag::before { background: var(--sunshine); }
.counsellor-section .section-heading { color: white; }
.counsellor-section .section-heading em { color: var(--emerald-light); }
.counsellor-section .section-heading strong { color: var(--sunshine); }
.counsellor-section .counsellor-text p {
  color: rgba(255,255,255,0.75); font-weight: 300;
  line-height: 1.85; font-size: 15px; margin-bottom: 14px;
}
.counsellor-image {
  border-radius: 24px; overflow: hidden;
  height: 480px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.counsellor-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Nutrition block */
.nutrition-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 110px 70px;
  align-items: center;
  background: linear-gradient(135deg, var(--sunshine-light), var(--cream));
}
.nutrition-text h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 200; font-size: 40px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.2; margin-bottom: 24px;
}
.nutrition-text h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  letter-spacing: 3px; color: var(--tangerine);
  text-transform: none;
}
.nutrition-text p {
  font-weight: 300; font-size: 15px; line-height: 1.85;
  color: var(--text-mid); margin-bottom: 14px;
}
.nutrition-image {
  border-radius: 24px; overflow: hidden;
  height: 480px;
  box-shadow: 0 12px 40px rgba(255,107,53,0.15);
}
.nutrition-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Aftercare */
.aftercare {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sky) 100%);
  padding: 100px 70px;
  text-align: center;
}
.aftercare-content { max-width: 800px; margin: 0 auto; }
.aftercare-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin: 56px 0 16px;
}
.aftercare-step {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px 28px;
  text-align: center;
  border-top: 3px solid var(--emerald);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.aftercare-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}
.aftercare-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 44px;
  color: var(--emerald);
  line-height: 1; margin-bottom: 14px;
}
.aftercare-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 600; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.aftercare-desc {
  font-size: 12.5px; line-height: 1.65;
  color: var(--text-light); font-weight: 300;
}

.physician-photo {
  height: 420px; overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--sky), var(--emerald-light));
}
.physician-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
}
.physician-card:hover .physician-photo img {
  transform: scale(1.03);
  filter: saturate(1.05) brightness(1.02);
}

@media (max-width: 900px) {
  .physicians-grid { grid-template-columns: 1fr; padding: 60px 28px; }
  .physician-photo-placeholder { height: 220px; }
  .physician-photo-placeholder .initials { font-size: 50px; }
  .physician-photo { height: 340px; }
  .manifesto { padding: 70px 28px; }
  .manifesto-line { font-size: 22px; }
  .manifesto-headline { font-size: 32px; letter-spacing: 3px; }
  .manifesto-body { font-size: 14px; }
  .pillars-section { padding: 70px 28px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
  .pillar-card { padding: 36px 28px; }
  .daily-section { padding: 70px 28px; }
  .daily-grid { grid-template-columns: 1fr; }
  .counsellor-section { grid-template-columns: 1fr; gap: 40px; padding: 70px 28px; }
  .counsellor-image { height: 320px; }
  .nutrition-block { grid-template-columns: 1fr; gap: 40px; padding: 70px 28px; }
  .nutrition-image { height: 320px; }
  .nutrition-text h2 { font-size: 30px; letter-spacing: 3px; }
  .aftercare { padding: 70px 28px; }
  .aftercare-steps { grid-template-columns: 1fr; }
  .cross-promo { padding: 70px 28px; }
  .cross-promo h2 { font-size: 28px; letter-spacing: 3px; }
  .cross-promo p.lead { font-size: 18px; }
}

/* ===== INSTITUTO CROSS-PROMO (on Tratamentos page) ===== */
.cross-promo {
  background: linear-gradient(135deg, #050045 0%, #0C00A2 100%);
  color: white;
  padding: 100px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cross-promo::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 85%, rgba(0,176,80,0.14) 0%, transparent 60%),
    radial-gradient(circle at 85% 15%, rgba(0,176,80,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.cross-promo-content {
  position: relative; z-index: 2;
  max-width: 780px; margin: 0 auto;
}
.cross-promo-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,176,80,0.18);
  border: 1px solid rgba(0,176,80,0.45);
  border-radius: 24px; padding: 7px 18px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: #4DD580;
  margin-bottom: 28px;
}
.cross-promo-tag::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: #00B050;
}
.cross-promo h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 200; font-size: 42px;
  letter-spacing: 4px; text-transform: uppercase;
  color: white; line-height: 1.2;
  margin-bottom: 18px;
}
.cross-promo h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  letter-spacing: 3px; text-transform: none;
  color: #4DD580;
}
.cross-promo p.lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300;
  font-size: 22px; line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.cross-promo p.body {
  font-weight: 300; font-size: 15px; line-height: 1.85;
  color: rgba(255,255,255,0.78);
  max-width: 640px; margin: 0 auto 28px;
}
.cross-promo-services {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 36px;
}
.cross-promo-service {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 9px 18px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
}
.btn-instituto {
  background: #00B050;
  color: white; padding: 16px 40px; border-radius: 32px;
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 12px;
  box-shadow: 0 4px 20px rgba(0,176,80,0.4);
}
.btn-instituto:hover {
  background: #00C75A;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,176,80,0.55);
}
.btn-instituto::after { content: '→'; font-size: 16px; transition: transform 0.3s; }
.btn-instituto:hover::after { transform: translateX(4px); }
.cross-promo-note {
  margin-top: 24px;
  font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}

/* ===== TRATAMENTO AVANÇADO additions (sections 5-7) ===== */
.treatment-subheading {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300;
  font-size: 22px; line-height: 1.5;
  color: var(--emerald);
  margin: -8px 0 22px;
  letter-spacing: 0.5px;
  display: block;
}
.treatment-indications {
  font-weight: 300; font-size: 13px; line-height: 1.7;
  color: #5A8A72;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(46,196,182,0.15);
}
.treatment-cta {
  margin-top: 24px;
  display: inline-block;
}

/* ===== DARK CROSS-LINK (replacement for Instituto promo) ===== */
.cross-link-dark {
  background: var(--text-dark);
  color: white;
  padding: 110px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cross-link-dark::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(46,196,182,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cross-link-content {
  max-width: 780px; margin: 0 auto;
  position: relative; z-index: 2;
}
.cross-link-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,196,182,0.15);
  border: 1px solid rgba(46,196,182,0.35);
  border-radius: 24px; padding: 6px 16px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--emerald);
  margin-bottom: 28px;
}
.cross-link-tag::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--emerald);
}
.cross-link-dark h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 200; font-size: 40px;
  letter-spacing: 4px; text-transform: uppercase;
  color: white; line-height: 1.2;
  margin-bottom: 14px;
}
.cross-link-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300;
  font-size: 22px; line-height: 1.5;
  color: var(--emerald);
  margin-bottom: 26px;
  letter-spacing: 0.5px;
}
.cross-link-dark p.body {
  font-weight: 300; font-size: 15px; line-height: 1.85;
  color: rgba(255,255,255,0.78);
  max-width: 640px; margin: 0 auto 36px;
}
.btn-outline-emerald {
  border: 2px solid var(--emerald);
  color: white; padding: 15px 38px; border-radius: 32px;
  font-size: 12px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s; background: transparent;
  display: inline-flex; align-items: center; gap: 12px;
}
.btn-outline-emerald::after { content: '→'; font-size: 16px; transition: transform 0.3s; }
.btn-outline-emerald:hover {
  background: var(--emerald);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46,196,182,0.35);
}
.btn-outline-emerald:hover::after { transform: translateX(4px); }

@media (max-width: 900px) {
  .cross-link-dark { padding: 70px 28px; }
  .cross-link-dark h2 { font-size: 28px; letter-spacing: 3px; }
  .cross-link-subhead { font-size: 18px; }
  .treatment-subheading { font-size: 18px; }
}

/* ===== Mobile hamburger menu (≤900px) ===== */
.nav-hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: inherit;
  margin-left: auto;
  margin-right: 12px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
nav.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; }
nav.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  nav { position: relative; }
  .nav-hamburger { display: inline-flex; }
  nav > .nav-cta { padding: 9px 16px; font-size: 11px; }
  nav.menu-open ul {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 252, 245, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 24px 28px;
    margin: 0;
    gap: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 100;
    list-style: none;
  }
  nav.menu-open ul li { margin: 0; }
  nav.menu-open ul li a {
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    padding: 6px 0;
  }
}
