/* ==========================================================================
   DRA. ROSE | NUTRIÇÃO CLÍNICA GASTROINTESTINAL
   MÉTODO INTESTINO RESTAURADO - CONTATO, MAPS & ROCKETAM CREDITS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400;1,500;1,600&family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Alex+Brush&display=swap');

:root {
  /* Palette - Inspired by Organic Wellness & Official Logo */
  --primary-deep: #0c2b21;      /* Deep Forest Emerald */
  --primary: #15382c;           /* Rich Botanical Green */
  --primary-light: #245745;     /* Elegant Emerald Light */
  --primary-subtle: #e6f3eb;    /* Soft Mint Tint */
  --accent-gold: #c59b27;       /* Refined Gold */
  --accent-gold-light: #fbf5e7; /* Warm Gold Tint */
  
  --bg-cream: #faf7f2;          /* Organic Cream */
  --bg-surface: #ffffff;        /* Pure White */
  --bg-soft-gray: #f2f5f3;      /* Soft Gray */

  --text-dark: #0d1714;         /* Charcoal Dark */
  --text-body: #334155;         /* Dark Body Text */
  --text-muted: #64748b;        /* Muted Gray Text */
  
  --border-light: #e2e8f0;      /* Soft Border */
  --border-gold: rgba(197, 155, 39, 0.35); /* Gold Border */
  --border-mint: #bde2cc;       /* Mint Border */

  /* Shadows */
  --shadow-sm: 0 4px 14px rgba(12, 43, 33, 0.04);
  --shadow-md: 0 10px 30px rgba(12, 43, 33, 0.08);
  --shadow-lg: 0 20px 48px rgba(12, 43, 33, 0.12);
  --shadow-hover: 0 24px 56px rgba(12, 43, 33, 0.16);

  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
}

/* Reset & Universal Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.12;
}

.font-heading-sans {
  font-family: var(--font-heading);
}

em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--primary-light);
  position: relative;
  display: inline-block;
}

em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gold);
  opacity: 0.7;
  border-radius: 2px;
}

.text-marker {
  background: linear-gradient(180deg, transparent 60%, rgba(212, 175, 55, 0.3) 60%);
  display: inline;
  padding: 0 4px;
  font-style: italic;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Badges & Pills */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background-color: rgba(21, 56, 44, 0.06);
  color: var(--primary-deep);
  border: 1px solid rgba(21, 56, 44, 0.15);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.badge-gold {
  background-color: var(--accent-gold-light);
  color: #8c6a0d;
  border-color: rgba(197, 155, 39, 0.35);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(21, 56, 44, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(21, 56, 44, 0.3);
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #b88b14 100%);
  color: #0c2b21;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(197, 155, 39, 0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(197, 155, 39, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid #cbd5e1;
}

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

.btn-pulse {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(21, 56, 44, 0.35); }
  70% { box-shadow: 0 0 0 14px rgba(21, 56, 44, 0); }
  100% { box-shadow: 0 0 0 0 rgba(21, 56, 44, 0); }
}

/* Google Reviews Rating Badge */
.google-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-size: 0.95rem;
  color: var(--text-body);
  font-weight: 600;
}

.rating-stars {
  color: #d97706;
  font-size: 1.15rem;
  display: flex;
  gap: 2px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* HERO SECTION */
.hero-section {
  padding: 160px 0 100px;
  position: relative;
  background: var(--bg-cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.9rem;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--text-dark);
  line-height: 1.08;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #475569;
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.single-hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.single-hero-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #ffffff;
  max-width: 440px;
  width: 100%;
}

.single-hero-img-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.single-hero-img-card:hover img {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-floating-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-subtle);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-floating-badge-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--primary-deep);
  font-weight: 700;
}

.hero-floating-badge-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ABOUT DRA ROSE SECTION */
.about-rose-section {
  padding: 110px 0;
  background: var(--bg-surface);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.about-rose-grid-asymmetric {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.about-arches-wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  position: relative;
  padding-top: 30px;
}

.floating-circle-badge {
  position: absolute;
  top: 0;
  left: 38%;
  z-index: 10;
  width: 96px;
  height: 96px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 28px rgba(21, 56, 44, 0.28);
  transition: transform 0.3s ease;
}

.floating-circle-badge:hover {
  transform: scale(1.06);
}

.badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.badge-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.badge-label {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-top: 2px;
}

.asymmetric-arch-card {
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid #ffffff;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.asymmetric-arch-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.asymmetric-arch-card.arch-food {
  width: 46%;
  height: 380px;
  border-radius: 140px 140px 0 0;
}

.asymmetric-arch-card.arch-rose {
  width: 54%;
  height: 470px;
  border-radius: 160px 160px 0 140px;
}

.asymmetric-arch-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-rose-content h2 {
  font-size: 3.1rem;
  margin-bottom: 20px;
  color: var(--primary-deep);
  line-height: 1.12;
}

.about-rose-tagline {
  font-size: 1.15rem;
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-rose-description {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-rose-subdesc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.authority-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
  padding: 20px;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.authority-stat-item {
  text-align: center;
  padding: 8px;
}

.authority-stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.authority-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* CURIOSIDADES & BENTO IMPACT GRID */
.curiosities-section {
  padding: 110px 0;
  background: var(--bg-cream);
}

.curiosities-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.curiosities-header h2 {
  font-size: 3.2rem;
  color: var(--text-dark);
  line-height: 1.15;
}

.bento-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.bento-card-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(12, 43, 33, 0.92) 100%), url('images/gut_health.jpg') center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition-smooth);
}

.bento-card-image:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.bento-stat-num {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 12px;
}

.bento-stat-desc {
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.6;
}

.bento-card-white {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.bento-card-white:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-mint);
}

.bento-icon-badge {
  width: 48px;
  height: 48px;
  background: var(--primary-subtle);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.bento-stack-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.bento-card-dark {
  background: var(--primary-deep);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  flex: 1;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.bento-card-dark:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.bento-card-dark .bento-stat-num {
  color: var(--accent-gold);
}

.bento-card-dark .bento-stat-desc {
  color: #b7e4c7;
}

/* RESULTADOS SECTION */
.results-bars-section {
  padding: 110px 0;
  background: var(--bg-surface);
}

.results-bars-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}

.results-left .label-tag {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #b88b14;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.results-left h2 {
  font-size: 3rem;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.results-left p {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.7;
}

.results-right-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.metric-bar-item {
  position: relative;
}

.metric-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.metric-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

.metric-value {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-light);
  font-style: italic;
}

.metric-track {
  width: 100%;
  height: 3px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-gold) 100%);
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* PILARES SECTION */
.pillars-section {
  padding: 100px 0;
  background: var(--bg-cream);
}

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

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: var(--primary-deep);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-mint);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-subtle);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-deep);
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ESPECIALIDADES SECTION */
.specialties-section {
  padding: 100px 0;
  background: var(--bg-surface);
}

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

.specialty-card {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-mint);
  background: #ffffff;
}

.specialty-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.specialty-badge-icon {
  width: 46px;
  height: 46px;
  background: var(--primary-subtle);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.specialty-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-deep);
  line-height: 1.3;
}

.specialty-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.tag-new {
  font-size: 0.7rem;
  background: var(--accent-gold-light);
  color: #8c6a0d;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 6px;
}

/* MÉTODO INTESTINO RESTAURADO */
.method-section {
  padding: 110px 0;
  background: var(--primary-deep);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.method-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.method-header h2 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 16px;
}

.method-header p {
  color: #b7e4c7;
  font-size: 1.15rem;
}

.steps-timeline-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
}

.step-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 32px 22px;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  flex: 1;
  height: 330px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-6px);
  border-color: rgba(183, 228, 199, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--accent-gold);
  color: var(--primary-deep);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-card p {
  color: #d1d5db;
  font-size: 0.88rem;
  line-height: 1.55;
}

.step-connector-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.6rem;
  flex-shrink: 0;
  padding: 0 2px;
  animation: arrowGlide 1.8s ease-in-out infinite;
}

@keyframes arrowGlide {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.6;
  }
  50% {
    transform: translateX(6px);
    opacity: 1;
  }
}

/* ACOMPANHAMENTO COMPLETO */
.how-it-works-section {
  padding: 110px 0;
  background: var(--bg-cream);
}

.how-grid-arches {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 64px;
  align-items: center;
}

.arch-images-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.arch-img-card {
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid #ffffff;
  transition: transform 0.5s ease;
}

.arch-img-card:hover {
  transform: scale(1.02);
}

.arch-img-card.top-arch {
  border-radius: 120px 120px 16px 120px;
}

.arch-img-card.bottom-arch {
  border-radius: 16px 120px 120px 120px;
}

.arch-img-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.how-right-content h2 {
  font-size: 3.1rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.15;
}

.how-intro-text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 28px;
}

.empathy-box {
  background: #f7f9f7;
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 32px;
}

.empathy-box p {
  font-size: 1.05rem;
  color: var(--primary-deep);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 6px;
}

.vertical-phase-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.vertical-phase-item {
  border-left: 3px solid #e2e8f0;
  padding-left: 20px;
  transition: var(--transition-smooth);
}

.vertical-phase-item:hover, .vertical-phase-item.active {
  border-left-color: var(--primary);
}

.vertical-phase-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-deep);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vertical-phase-title span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--primary-subtle);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.vertical-phase-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.55;
}

/* DIFERENCIAIS DO MÉTODO */
.results-section {
  padding: 100px 0;
  background: var(--bg-surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--bg-cream);
  padding: 36px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* HISTÓRIAS DE RECUPERAÇÃO (DEPOIMENTOS) */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-cream);
}

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

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 6rem;
  color: rgba(21, 56, 44, 0.08);
  line-height: 1;
  pointer-events: none;
}

.stars {
  color: #d97706;
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testimonial-quote {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.patient-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.patient-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary-subtle);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.patient-name strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-deep);
}

.patient-name span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CONTATO & LOCALIZAÇÃO SECTION (MATCHING USER SCREENSHOT)
   ========================================================================== */
.contact-location-section {
  padding: 100px 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--border-light);
}

.contact-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.contact-column-header {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #b88b14;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.02rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.contact-info-item i {
  color: var(--primary);
  font-size: 1.35rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-info-item a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.map-wrapper-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  background: #ffffff;
  height: 280px;
}

.map-wrapper-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-overlay-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #ffffff;
  color: var(--primary-deep);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
  border: 1px solid #e2e8f0;
}

.map-overlay-btn:hover {
  background: var(--primary-subtle);
  color: var(--primary);
}

/* FAQ SECTION */
.faq-section {
  padding: 100px 0;
  background: var(--bg-surface);
}

.faq-container {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-mint);
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-deep);
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary-subtle);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.65;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

/* BANNER CTA FINAL & FOOTER */
.cta-banner-section {
  padding: 100px 0;
  background: var(--primary-deep);
  color: #ffffff;
  text-align: center;
}

.cta-banner-content {
  max-width: 760px;
  margin: 0 auto;
}

.cta-banner-content h2 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-banner-content p {
  color: #b7e4c7;
  font-size: 1.2rem;
  margin-bottom: 36px;
}

.site-footer {
  background: #081e17;
  color: #cbd5e1;
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-brand .logo-img {
  height: 56px;
  width: auto;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 360px;
  color: #94a3b8;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  color: #94a3b8;
}

.contact-info i {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.88rem;
  color: #64748b;
  flex-wrap: wrap;
}

.rocketam-link {
  color: var(--accent-gold);
  font-weight: 700;
  transition: var(--transition-fast);
}

.rocketam-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav-menu {
    gap: 18px;
  }
  .nav-link {
    font-size: 0.88rem;
  }

  .steps-timeline-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .step-card {
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .step-connector-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }
}

@media (max-width: 1024px) {
  .hero-grid, .about-rose-grid-asymmetric, .results-bars-grid, .how-grid-arches, .bento-grid-container, .contact-location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pillars-grid, .specialties-grid, .stats-grid, .authority-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 860px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 32px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-150%);
    transition: var(--transition-smooth);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .pillars-grid, .specialties-grid, .authority-stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
