/* ============================================
   Site Dra. Sofia Teixeira Gomes
   Paleta: verde-salvia, bege/creme, branco, dourado
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

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

:root {
  --sage: #7A8B6F;
  --sage-light: #A3B18A;
  --sage-dark: #5C6B4F;
  --cream: #FAF6F0;
  --cream-dark: #F0E9DD;
  --gold: #C4A35A;
  --gold-light: #D4BA7A;
  --white: #FFFFFF;
  --text-dark: #2C2C2C;
  --text-medium: #555555;
  --text-light: #777777;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 { font-size: 2.8rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-medium); }

a {
  color: var(--sage);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--sage-dark); }

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 0.6rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sage-dark);
}

.navbar-brand span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--sage-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--sage-dark); color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, #e8e0d0 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(163,177,138,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: rgba(122,139,111,0.1);
  color: var(--sage-dark);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero h1 em {
  color: var(--sage);
  font-style: normal;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.hero-text {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-private-notice {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: var(--text-medium);
  background: rgba(196,163,90,0.12);
  border-left: 3px solid var(--gold);
  padding: 0.6rem 1rem;
  border-radius: 6px;
  display: inline-block;
}

.hero-private-notice strong {
  color: var(--text-dark);
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  text-align: center;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.hero-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-primary:hover {
  background: var(--whatsapp-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--sage-dark);
  border: 2px solid var(--sage-light);
}
.btn-secondary:hover {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border: 2px solid var(--sage);
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
}
.btn-outline:hover {
  background: var(--sage);
  color: var(--white);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Sections --- */
section {
  padding: 5rem 0;
}

.section-badge {
  display: inline-block;
  background: rgba(122,139,111,0.1);
  color: var(--sage-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 3rem;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* --- About Section --- */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

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

.about-quote-box {
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.about-quote-box blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.about-quote-details {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.about-quote-name {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.about-quote-role {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.about-credentials {
  display: inline-block;
  background: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-top: 0.5rem;
}

/* --- Steps Section --- */
.steps {
  background: var(--cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(122,139,111,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-card h3 { margin-bottom: 0.8rem; font-size: 1.2rem; }
.step-card p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 0; }

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

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

.specialty-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}

.specialty-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-light);
}

.specialty-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.specialty-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.specialty-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  flex-grow: 1;
}

.specialty-card .btn-outline {
  margin-top: 1rem;
  align-self: flex-start;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

/* --- E-book Lead Magnet Section --- */
.ebook-section {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}

.ebook-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(196,163,90,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ebook-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ebook-mockup-wrapper {
  display: flex;
  justify-content: center;
  perspective: 1500px;
}

.ebook-mockup {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3/4;
  transform: rotateY(-12deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.ebook-mockup:hover {
  transform: rotateY(-6deg) rotateX(0deg) translateY(-8px);
}

.ebook-cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f1f3d 0%, #1a3258 60%, #1f4a6b 100%);
  border-radius: 4px 12px 12px 4px;
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  box-shadow:
    0 30px 60px -15px rgba(0,0,0,0.3),
    -10px 0 20px -10px rgba(0,0,0,0.15),
    inset 4px 0 0 rgba(0,0,0,0.15);
  overflow: hidden;
}

.ebook-cover::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(45,212,191,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.ebook-cover::after {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 2rem;
  width: 50px;
  height: 3px;
  background: #2dd4bf;
  border-radius: 2px;
}

.ebook-cover-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 1;
}

.ebook-cover-content { z-index: 1; }

.ebook-cover h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.ebook-cover-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.95);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.ebook-cover-meta {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

.ebook-cover-author {
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
}

.ebook-cover-author .name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.ebook-cover-author .role {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

.ebook-cover-decoration {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border: 1.5px solid #2dd4bf;
  border-radius: 50%;
  opacity: 0.6;
  z-index: 1;
}

.ebook-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(90deg, rgba(0,0,0,0.3), transparent);
  border-radius: 4px 0 0 4px;
}

/* Content side */
.ebook-content .section-badge {
  background: rgba(196,163,90,0.15);
  color: #8a6f33;
}

.ebook-content h2 {
  margin-bottom: 1.2rem;
}

.ebook-content > p {
  margin-bottom: 1rem;
}

.ebook-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
}

.ebook-features li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.7rem;
  color: var(--text-medium);
  font-size: 0.98rem;
}

.ebook-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
}

.ebook-cta-btn {
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
}

.ebook-disclaimer {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* --- E-book Inline Form --- */
.ebook-form {
  background: var(--white);
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(122,139,111,0.15);
}

.ebook-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.ebook-form .input--hidden {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.ebook-form button.is-loading {
  opacity: 0.7;
  pointer-events: none;
  cursor: wait;
}

.ebook-form input[type="text"],
.ebook-form input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), background var(--transition);
}

.ebook-form input::placeholder {
  color: var(--text-light);
}

.ebook-form input:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--white);
}

.ebook-form .ebook-cta-btn {
  width: 100%;
  justify-content: center;
}

/* --- Thank-you page --- */
.thanks-page {
  min-height: 100vh;
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  display: flex;
  align-items: center;
}

.thanks-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  padding: 3.5rem 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.thanks-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.thanks-card h1 {
  font-size: 2rem;
  margin: 0.8rem 0 1rem;
  color: var(--text-dark);
}

.thanks-subtitle {
  color: var(--text-medium);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.thanks-download {
  font-size: 1.05rem;
  padding: 1rem 2rem;
}

.thanks-tip {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

.thanks-divider {
  height: 1px;
  background: var(--cream-dark);
  margin: 2.5rem 0;
}

.thanks-next-step h2 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--sage-dark);
}

.thanks-next-step p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

.thanks-back {
  margin-top: 2rem;
  font-size: 0.9rem;
}

.thanks-back a {
  color: var(--text-light);
}

.thanks-back a:hover {
  color: var(--sage-dark);
}

/* Responsive */
@media (max-width: 1024px) {
  .ebook-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .ebook-mockup-wrapper {
    order: -1;
  }

  .ebook-mockup {
    max-width: 260px;
  }

  .ebook-features {
    text-align: left;
    max-width: 400px;
    margin: 1.5rem auto 2rem;
  }
}

@media (max-width: 600px) {
  .ebook-form-row { grid-template-columns: 1fr; }
  .ebook-form { padding: 1.5rem; }
  .thanks-card { padding: 2.5rem 1.8rem; }
  .thanks-card h1 { font-size: 1.6rem; }
}

/* --- Testimonials --- */
.testimonials {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
  color: var(--white);
}

.testimonials .section-badge {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: rgba(255,255,255,0.8); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.15);
}

.testimonial-stars {
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.testimonial-card p {
  color: rgba(255,255,255,0.9);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--white);
  font-size: 0.85rem;
}

/* --- Specialty Page Hero --- */
.specialty-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.specialty-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.specialty-hero .hero-subtitle {
  max-width: 700px;
}

.specialty-hero .hero-intro {
  max-width: 700px;
  margin-top: 1rem;
  font-size: 1.02rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* --- Specialty Content --- */
.specialty-content {
  background: var(--white);
  padding: 4rem 0;
}

.specialty-content .container {
  max-width: 800px;
}

.specialty-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

.specialty-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.specialty-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--sage-dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

.specialty-content p {
  font-size: 1.02rem;
  line-height: 1.8;
}

.specialty-content ul {
  margin: 0.8rem 0 1.2rem 1.2rem;
  color: var(--text-medium);
}

.specialty-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.specialty-content strong {
  color: var(--text-dark);
}

.content-highlight {
  background: var(--cream);
  border-left: 4px solid var(--sage);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-medium);
}

/* --- FAQ Accordion --- */
.faq {
  padding: 4rem 0;
  background: var(--cream);
}

.faq .container {
  max-width: 800px;
}

.faq.home-faq {
  padding: 5rem 0;
  background: var(--white);
}

.faq.home-faq .faq-item {
  background: var(--cream);
  box-shadow: none;
  border: 1px solid var(--cream-dark);
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--sage); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--sage);
  transition: transform var(--transition);
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.3rem;
  color: var(--text-medium);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 500px; margin: 0 auto 2rem; }

.cta-disclaimer {
  margin-top: 1.5rem !important;
  margin-bottom: 0 !important;
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.7) !important;
  font-style: italic;
}

/* --- Footer --- */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer a:hover { color: var(--white); }

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.9rem; }

.footer-contact p { display: flex; align-items: center; gap: 0.5rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  z-index: 999;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  color: var(--white);
}

/* --- Mobile Nav --- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav.active { display: flex; }

.mobile-nav a {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
}

.mobile-nav a:hover { color: var(--sage); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  .hero .container { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-image { max-width: 350px; margin: 0 auto; }
  .hero-content .btn-group { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image-placeholder { max-width: 300px; margin: 0 auto; aspect-ratio: 1; }

  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .specialties-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

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

  .nav-links { display: none; }
  .hamburger { display: flex; z-index: 1001; }

  .hero { min-height: auto; padding-top: 7rem; padding-bottom: 3rem; }
  .specialties-grid { grid-template-columns: 1fr; }
  .specialty-hero { padding-top: 6rem; padding-bottom: 2.5rem; }
  .specialty-hero h1 { font-size: 1.8rem; }
  .specialty-hero .hero-intro { font-size: 0.95rem; margin-top: 0.6rem; }

  section { padding: 3.5rem 0; }
}

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

  .btn { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; justify-content: center; }

  .whatsapp-float { width: 52px; height: 52px; font-size: 1.5rem; bottom: 1.2rem; right: 1.2rem; }
}
