/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }

:root {
  --gold: #17b8c4;
  --gold-light: #e8f7f8;
  --gold-dark: #0f9aa5;
  --burgundy: #063840;
  --burgundy-dark: #042d35;
  --text: #2d2d2d;
  --text-light: #666;
  --bg: #ffffff;
  --bg-soft: #f4f7f8;
  --bg-gray: #f5f5f5;
  --border: #dde8ea;
  --topbar-bg: #063840;
  --header-h: 90px;
  --topbar-h: 40px;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; background: #fff; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   ENTRANCE ANIMATIONS
=========================== */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal {
  opacity: 0;
  transform: translateY(32px);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal-left {
  opacity: 0;
  transform: translateX(-32px);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal-right {
  opacity: 0;
  transform: translateX(32px);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===========================
   TYPOGRAPHY HELPERS
=========================== */
.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 16px;
  color: var(--text-light);
  max-width: 680px;
  margin-bottom: 48px;
}
.center { text-align: center; }
.center.section-desc { margin-left: auto; margin-right: auto; }
.text-gold { color: var(--gold); }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: #2abec9;
  color: #fff;
  border-color: #2abec9;
}
.btn-primary:hover {
  background: #1fa8b2;
  border-color: #1fa8b2;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42,190,201,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-outline:hover {
  background: var(--burgundy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--burgundy);
  border-color: #fff;
}
.btn-light:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-cta {
  background: #2abec9;
  color: #fff;
  border-color: #2abec9;
  padding: 12px 24px;
  font-size: 12px;
}
.btn-cta:hover {
  background: #1fa8b2;
  border-color: #1fa8b2;
}

.btn-full { width: 100%; justify-content: center; }

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===========================
   TOPBAR
=========================== */
.topbar {
  background: var(--topbar-bg);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}
.topbar-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-address {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-pin { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold); }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}
.topbar-social a svg { width: 16px; height: 16px; }
.topbar-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ===========================
   HEADER
=========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  height: var(--header-h);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.logo-img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.logo-img-footer {
  height: 40px;
  max-width: 160px;
}
.logo-icon { width: 60px; height: 60px; }
.logo-icon-light { width: 50px; height: 50px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.logo-sub {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}
.logo-name-light { color: #fff; }
.logo-sub-light { color: var(--gold); }

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-cta { margin-left: 8px; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h) - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #063840;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-color {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #063840 0%, #042d35 45%, #063840 100%);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.55;
  mix-blend-mode: luminosity;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,56,64,0.75) 0%, rgba(6,56,64,0.45) 55%, rgba(6,56,64,0.15) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.hero-content > * {
  max-width: 640px;
}
.hero-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  line-height: 1.5;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 82px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 55%;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-photo-placeholder svg {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: cover;
  opacity: 0.6;
}

/* ===========================
   CONDITIONS
=========================== */
.conditions {
  padding: 80px 0;
  background: #f4f7f8 ;
}

/* Nova estrutura: imagem esquerda + cards direita */
.conditions-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: stretch;
  margin-bottom: 48px;
}
.conditions-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.conditions-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.conditions-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.conditions-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.condition-card-full {
  width: 100%;
}
.condition-list-horizontal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

/* legado (mantido para não quebrar) */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.condition-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--gold);
}
.condition-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.condition-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: var(--gold);
}
.condition-icon svg { width: 100%; height: 100%; }
.condition-card h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 20px;
}
.condition-card ul { display: flex; flex-direction: column; gap: 8px; }
.condition-card li {
  font-size: 14px;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
}
.condition-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.conditions-cta { text-align: center; }

/* ===========================
   LAPTOP MOCKUP BANNER
=========================== */
.laptop-mockup-banner {
  padding: 48px 0 0;
  text-align: center;
  overflow: hidden;
}
.laptop-mockup-img {
  width: 100%;
  max-width: 820px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.14));
}

/* ===========================
   ABOUT
=========================== */
.about {
  padding: 60px 0 100px;
  background: #edf1f2;
}
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: stretch;
}
.about-photo {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.about-photo-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 0;
}
.about-photo-item {
  flex: 1;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo-inner {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
  height: 100%;
  min-height: 680px;
}
.about-photo-inner svg { display: block; width: 100%; }
.about-photo-image {
  width: 100% !important;
  height: 100% !important;
  min-height: 680px !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 32px;
  right: -20px;
  background: var(--burgundy);
  color: #fff;
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(14,17,23,0.35);
}
.about-badge-num {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.about-badge-text {
  font-size: 12px;
  opacity: 0.85;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text);
}
.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 15px;
}

/* TABS */
.about-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 32px 0 20px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}
.tab-btn {
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 10px 16px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.tab-btn:hover { color: var(--burgundy); }
.tab-btn.active {
  color: var(--burgundy);
  border-bottom-color: var(--burgundy);
}

.tab-content {
  display: none;
  margin-bottom: 28px;
  animation: fadeIn 0.3s ease;
}
.tab-content.active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.about-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-list li {
  font-size: 14px;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
}
.about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===========================
   QUOTE BANNER
=========================== */
.quote-banner {
  background: var(--burgundy);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  background: url('https://spacecommerceads.com.br/wp-content/uploads/2026/04/8-gravital_marca-7.png') center/contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.quote-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.quote-banner blockquote { max-width: 700px; }
.quote-banner p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
}
.quote-banner cite {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-style: normal;
  color: var(--gold-light);
  letter-spacing: 1px;
}

/* ===========================
   INTEGRATIVE
=========================== */
.integrative {
  padding: 100px 0;
  background: #fffff;
}
.integrative-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 860px;
  margin: 20px auto 40px;
  padding: 0 24px;
  text-align: left;
}
.integrative-intro h2 {
  align-items: flex-start;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  max-width: 720px;
  margin: 0 0 20px;
  text-wrap: balance;
}
.integrative-intro p {
  align-items: flex-start;
  text-align: left;
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 14px;
}
.integrative-box-grid {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
.integrative-box-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 400px;
}
.integrative-box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.integrative-cta {
  text-align: center;
  margin-top: 48px;
}
.integrative-grid {
  display: block;
}
.integrative-content {
  max-width: 980px;
  margin: 0 auto;
}
.integrative-mockup {
  width: min(100%, 700px);
  margin: 0 auto 28px;
}
.integrative-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
  color: var(--text);
}
.integrative-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 15px;
}
.integrative-intro p {
  max-width: 760px;
  margin-left: 0;
  margin-right: 0;
}
.integrative-content > .btn {
  display: table;
  margin: 0 auto;
}
.integrative-box {
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 32px 36px;
  box-shadow: var(--shadow);
  display: block;
}
.integrative-box-title {
  font-weight: 700;
  color: var(--text) !important;
  margin-bottom: 12px !important;
  text-align: left;
}
.integrative-box ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.integrative-box li {
  font-size: 14px;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
  text-align: left;
}
.integrative-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.integrative-box-copy {
  text-align: left;
}
.integrative-box-highlight {
  font-size: 15px !important;
  line-height: 1.7;
  color: var(--text-light) !important;
  margin-bottom: 0 !important;
}
.integrative-box-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.integrative-visual { display: none; }
.integrative-photos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 340px;
  align-self: stretch;
}
.integrative-photo {
  width: 100%;
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 0;
}
.integrative-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.integrative-circle {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff 0%, #e8f7f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 60px rgba(23,184,196,0.2);
}
.int-circle-inner { width: 280px; height: 280px; }
.int-circle-inner svg { width: 100%; height: 100%; }

/* ===========================
   WHEN TO SEEK
=========================== */
.when-seek {
  padding: 100px 0;
  background: var(--bg);
}
.when-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.when-grid-8 {
  grid-template-columns: repeat(4, 1fr);
}
.when-card-cta {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}
.when-card-cta::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  height: 220px;
  background: url('https://spacecommerceads.com.br/wp-content/uploads/2026/04/8-gravital_marca-7.png') center/contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.when-cta-text {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  flex: 1;
}
.when-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(0,0,0,0.2);
  color: #fff;
  transition: var(--transition);
  flex-shrink: 0;
}
.when-cta-btn svg { width: 22px; height: 22px; }
.when-cta-btn:hover {
  background: rgba(0,0,0,0.35);
  transform: scale(1.08);
}
.when-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.when-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.when-icon {
  width: 56px;
  height: 56px;
  color: var(--gold);
  margin-bottom: 20px;
}
.when-icon svg { width: 100%; height: 100%; }
.when-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.when-card p {
  font-size: 14px;
  color: var(--text-light);
  flex: 1;
  margin-bottom: 20px;
}
.when-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.when-link:hover { color: var(--gold-dark); letter-spacing: 1px; }

/* ===========================
   TREATMENTS
=========================== */
.treatments {
  padding: 100px 0;
  background: var(--bg-soft);
}
.treatments-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 60px;
}
.treatment-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.treatment-label {
  background: var(--burgundy);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 28px;
}
.treatment-card.alt .treatment-label {
  background: var(--gold);
  color: #fff;
}
.treatment-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
}
.treatment-grid.reverse { grid-template-columns: 320px 1fr; }
.treatment-grid.reverse .treatment-visual { order: -1; }
.treatment-content {
  padding: 48px;
}
.treatment-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.35;
}
.treatment-subtitle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.treatment-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 15px;
}
.treatment-benefits-title {
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: var(--text) !important;
  margin-bottom: 12px !important;
}
.treatment-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.treatment-benefits li {
  font-size: 14px;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
}
.treatment-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.treatment-visual {
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.treatment-icon-big svg { width: 160px; height: 160px; }

.treatment-visual-photo {
  padding: 0;
  overflow: hidden;
}
.treatment-visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  min-height: 300px;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials {
  padding: 100px 0;
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.google-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 4px; }
.testimonial-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--burgundy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--text); }
.testimonial-author span { font-size: 12px; color: var(--text-light); }

/* ===========================
   FAQ
=========================== */
.faq {
  padding: 100px 0;
  background: var(--bg-soft);
}
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-align: left;
  color: var(--text);
  transition: var(--transition);
}
.faq-question:hover { background: var(--bg-soft); color: var(--burgundy); }
.faq-question[aria-expanded="true"] {
  background: var(--burgundy);
  color: #fff;
}
.faq-icon {
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 28px 24px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  padding-top: 16px;
}

/* ===========================
   CONTACT FORM SECTION
=========================== */
.contact-form-section {
  padding: 100px 0;
  background: var(--bg);
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}
.contact-form-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 32px;
}
.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}
.contact-trust li {
  font-size: 14px;
  color: var(--text-light);
  padding-left: 18px;
  position: relative;
}
.contact-trust li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.contact-form-box {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border);
}
.contact-form-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.label-sub {
  font-weight: 400;
  color: var(--text-light);
  text-transform: none;
  letter-spacing: 0;
}
.form-group input[type="text"],
.form-group input[type="tel"] {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(23,184,196,0.1); }
.checkboxes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px 12px;
  margin-top: 4px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}
.checkbox-label:hover { color: var(--gold); }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #042d35;
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: -60px;
  width: 500px;
  height: 500px;
  background: url('https://spacecommerceads.com.br/wp-content/uploads/2026/04/8-gravital_marca-7.png') center/contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-tagline {
  font-size: 14px;
  margin-top: 20px;
  color: var(--gold-light);
  font-style: italic;
}
.footer h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-hours p, .footer-hours a {
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-hours a:hover { color: var(--gold); }
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px !important;
  font-size: 13px !important;
  color: rgba(255,255,255,0.6) !important;
}
.footer-address svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===========================
   WHATSAPP FLOAT
=========================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #1a1a1a;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1a1a1a;
  border-right: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 400px; margin: 0 auto; align-self: auto; }
  .about-photo-inner { height: 420px; min-height: 420px; }
  .about-photo-image { min-height: 420px !important; }
  .about-photo-stack { flex-direction: row; gap: 0; height: 280px; }
  .about-photo-item:nth-child(2),
  .about-photo-item:nth-child(3) { display: none; }
  .about-photo-item:first-child { flex: 1; border-radius: 16px; }
  .about-badge { right: 0; }
  .integrative-grid { grid-template-columns: 1fr; }
  .integrative-visual { display: none; }
  .conditions-grid { grid-template-columns: 1fr 1fr; }
  .conditions-layout { grid-template-columns: 1fr; }
  .conditions-image { max-height: 340px; }
  .condition-list-horizontal { grid-template-columns: 1fr; }
  .when-grid { grid-template-columns: 1fr 1fr; }
  .when-grid-8 { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .treatment-grid, .treatment-grid.reverse { grid-template-columns: 1fr; }
  .treatment-grid .treatment-visual { order: -1; }
  .treatment-grid.reverse .treatment-visual { order: -1; }
  .treatment-visual { min-height: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-form-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-content { padding-left: 24px; }
  .hero-image { opacity: 0.3; }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; --topbar-h: 0px; }

  .topbar { display: none; }

  .topbar-address { font-size: 11px; }

  .hamburger { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    margin-top: 0;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-120%);
    transition: transform 0.3s ease, visibility 0.3s ease;
    z-index: 199;
    visibility: hidden;
  }
  .nav.open { transform: translateY(0); visibility: visible; }
  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    border-left: none;
  }
  .nav-cta { margin-left: 0; margin-top: 16px; text-align: center; justify-content: center; }

  .hero { min-height: 85vh; }
  .hero-title { font-size: 44px; }
  .hero-image { opacity: 0.2; }

  .laptop-mockup-banner {
    padding-top: 28px;
  }
  .laptop-mockup-banner > .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .laptop-mockup-img {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }

  .conditions-grid { grid-template-columns: 1fr; }
  .conditions-top-row { grid-template-columns: 1fr; }
  .when-grid { grid-template-columns: 1fr; }
  .when-grid-8 { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .checkboxes-grid { grid-template-columns: 1fr 1fr; }

  .about-tabs { gap: 4px; }
  .about-grid { gap: 36px; }
  .about-content { order: 1; }
  .about-photo {
    order: 2;
    max-width: 326px;
    margin: 0 auto;
  }
  .about-photo-inner {
    height: 300px;
    min-height: 300px;
  }
  .tab-btn { padding: 8px 12px; font-size: 11px; }

  .contact-form-text h2 { font-size: 20px; }
  .section-label { font-size: 11px; letter-spacing: 1px; }
  .contact-form-box h3 { font-size: 18px; }
  .contact-form-box {
    width: auto;
    margin: 0 12px;
    padding: 24px 18px;
  }
  .contact-form-box .btn,
  .contact-form-box .btn-full {
    white-space: normal;
  }
  .form-group label { font-size: 11px; }
  .checkbox-label { font-size: 12px; }
  .checkboxes-grid { grid-template-columns: 1fr 1fr; gap: 6px 8px; }
  .about-badge {
    left: -12px;
    right: auto;
    bottom: -18px;
    padding: 10px 16px;
  }
  .about-badge-num {
    font-size: 26px;
  }
  .about-badge-text {
    font-size: 10px;
  }
  .about-mobile-image {
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
    object-fit: cover !important;
  }
  .integrative-box {
    padding: 24px 20px;
  }
  .integrative-box-grid {
    grid-template-columns: 1fr;
  }
  .integrative-box-image {
    min-height: 280px;
  }
  .integrative-mockup { width: min(100%, 420px); }
  .integrative-box-media img {
    min-height: 250px;
    border-radius: 16px;
  }

  .treatment-visual-photo img { max-height: 300px; min-height: unset; }
  .depression-mobile-image {
    width: 326px !important;
    height: 200px !important;
    min-height: 200px !important;
    max-height: 200px !important;
    object-position: 30% 70% !important;
    margin: 0 auto;
  }
  .depression-mobile-frame {
    width: 326px;
    max-width: 100%;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    margin: 0 auto;
    background: transparent;
  }
  .treatment-visual-photo { max-height: 300px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-tag { font-size: 11px; }
  .treatment-content { padding: 28px 20px; }
  .quote-banner { padding: 60px 24px; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .contact-form-box {
    margin: 0 10px;
    padding: 24px 16px;
  }
  .checkboxes-grid { grid-template-columns: 1fr; }
}
