/* ==========================================================================
   MARTHA TARÓLOGA - LANDING PAGE AGÊNCIA PREMIUM (CLEAN & SOFISTICADO)
   ========================================================================== */

/* --------------------------------------------------------------------------
  1. DESIGN SYSTEM & VARIÁVEIS CSS (PALETA #203655, #AFA259, #FFF2DC)
  -------------------------------------------------------------------------- */
:root {
  /* Paleta Solicitada */
  --primary: #203655;
  --primary-dark: #152844;
  --primary-deep: #0e1d33;
  --primary-light: #dce7f7;
  --primary-glow: rgba(32, 54, 85, 0.14);

  --gold-accent: #AFA259;
  --gold-dark: #8C803E;
  --gold-light: #FAF6E6;
  --gold-glow: rgba(175, 162, 89, 0.22);
  --gold-border: rgba(175, 162, 89, 0.38);

  --cream: #fff2dc;
  --cream-soft: #fff8ec;
  --cream-border: rgba(255, 242, 220, 0.78);

  /* Fundos & Neutros */
  --bg-clean: #fff8ec;
  --bg-white: #fff2dc;
  --bg-alt: #f8ecd6;
  
  --card-bg: #fff8ec;
  --card-border: rgba(32, 54, 85, 0.16);
  --card-border-hover: rgba(175, 162, 89, 0.5);
  
  /* Textos de Alto Contraste */
  --text-main: #162a45;
  --text-muted: #2d4466;
  --text-light: #5b7394;

  /* WhatsApp */
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #1EBE5D;
  --whatsapp-glow: rgba(37, 211, 102, 0.38);
  
  /* Tipografia Solicitada: Montserrat */
  --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Modificadores Visuais */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 4px 12px rgba(32, 54, 85, 0.06);
  --shadow-md: 0 12px 30px -5px rgba(32, 54, 85, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 22px 45px -10px rgba(32, 54, 85, 0.18);
  --shadow-hover: 0 25px 40px -5px rgba(32, 54, 85, 0.22);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

/* Textura sutil de ruído/gradiente de fundo */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 10% 15%, rgba(32, 54, 85, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 85%, rgba(175, 162, 89, 0.05) 0%, transparent 45%),
    linear-gradient(180deg, #fffdf8 0%, #fff4e0 100%);
  z-index: -2;
  pointer-events: none;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & HELPER CLASSES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-family);
  color: var(--primary);
  line-height: 1.22;
  letter-spacing: -0.3px;
}

.text-gold {
  color: var(--gold-accent);
}

.text-gold-dark {
  color: var(--gold-dark);
}

.text-gradient-gold {
  background: linear-gradient(135deg, #AFA259 0%, #D8CA79 50%, #8C803E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  background: rgba(175, 162, 89, 0.12);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 1.25rem;
}

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

.section-title {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1.1rem;
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   4. BOTÕES & CTAS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.15rem 2.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp-green) 0%, #17a94a 100%);
  color: var(--cream);
  box-shadow: 0 10px 28px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.55);
  background: linear-gradient(135deg, #26e66f 0%, var(--whatsapp-green) 100%);
}

.btn-whatsapp:active {
  transform: translateY(-1px);
}

.btn-whatsapp i {
  font-size: 1.35rem;
}

.btn-pulse::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-pill);
  background: var(--whatsapp-green);
  opacity: 0.5;
  transform: translate(-50%, -50%) scale(1);
  animation: pulse-ring 2.2s infinite ease-out;
  z-index: -1;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.38);
    opacity: 0;
  }
}

.btn-outline-gold {
  background: rgba(255, 242, 220, 0.94);
  border: 1.5px solid var(--gold-accent);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

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

/* --------------------------------------------------------------------------
   5. HERO SECTION (COM BACKGROUND BG.webp & FOCO EM AMARRAÇÃO + TAROT R$ 150)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 6rem 0;
  background: 
    linear-gradient(135deg, rgba(32, 54, 85, 0.9) 0%, rgba(21, 40, 68, 0.84) 60%, rgba(32, 54, 85, 0.92) 100%),
    url('assets/BG.webp') center/cover no-repeat;
  color: var(--cream);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--bg-clean));
  pointer-events: none;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content {
  z-index: 2;
  width: 100%;
}

.hero-logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.3));
}

.hero-tag {
  background: rgba(175, 162, 89, 0.22);
  border: 1px solid rgba(175, 162, 89, 0.45);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--cream);
}

.hero-title span {
  color: var(--gold-accent);
}

.hero-subtitle {
  font-size: 1.18rem;
  color: #f4ebda;
  margin-bottom: 2rem;
  line-height: 1.75;
  font-weight: 400;
}

/* Destaque Visual Especial: Consulta Tarot R$ 150 no Hero */
.hero-tarot-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: rgba(255, 242, 220, 0.14);
  border: 1.5px solid var(--gold-accent);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  margin-bottom: 2.25rem;
  width: fit-content;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  margin-left: auto;
  margin-right: auto;
}

.hero-tarot-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-accent);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hero-tarot-info span {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f2e8d5;
  font-weight: 600;
}

.hero-tarot-info strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: #fcf4e4;
}

.hero-badge-item i {
  color: var(--gold-accent);
  background: rgba(175, 162, 89, 0.2);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-card-glow {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 14px;
  background: rgba(255, 242, 220, 0.12);
  border: 1px solid rgba(255, 242, 220, 0.24);
  backdrop-filter: blur(16px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.hero-card-glow img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 4px);
  object-fit: cover;
  display: block;
}

.floating-experience {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--primary);
  border: 1.5px solid var(--gold-accent);
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
}

.floating-experience i {
  font-size: 2.2rem;
  color: var(--gold-accent);
}

.floating-experience div strong {
  display: block;
  font-size: 1.2rem;
  color: var(--cream);
}

.floating-experience div span {
  font-size: 0.85rem;
  color: #e7dcc9;
}

/* --------------------------------------------------------------------------
   6. SEÇÃO 2: SOBRE MARTHA (COM FOTO martha-2.webp)
   -------------------------------------------------------------------------- */
.section-about {
  padding: 6.5rem 0;
  background: var(--bg-white);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gold-border);
  box-shadow: var(--shadow-lg);
}

.about-image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-image-frame:hover img {
  transform: scale(1.03);
}

.about-tag-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 20px rgba(32, 54, 85, 0.32);
  border: 1px solid var(--gold-accent);
}

.about-content p {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  margin: 2.2rem 0;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--cream-soft);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(175, 162, 89, 0.25);
}

.pillar-item i {
  color: var(--gold-dark);
  font-size: 1.2rem;
}

.pillar-item span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   7. SEÇÃO 3: SERVIÇOS (COM AMARRAÇÃO E servico-3.webp EM CONSULTA COMPLETA)
   -------------------------------------------------------------------------- */
.section-services {
  padding: 6.5rem 0;
  background: var(--bg-clean);
}

.featured-service {
  background: linear-gradient(135deg, #fff6e8 0%, var(--cream-soft) 100%);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  margin-bottom: 4.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.featured-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(32, 54, 85, 0.18);
  box-shadow: var(--shadow-md);
}

.featured-image-wrapper img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.featured-service:hover .featured-image-wrapper img {
  transform: scale(1.04);
}

.featured-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--gold-accent);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.featured-content h3 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.featured-content p {
  color: var(--text-muted);
  font-size: 1.06rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.featured-points {
  margin-bottom: 2.2rem;
}

.featured-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.98rem;
}

.featured-points li i {
  color: var(--gold-dark);
  margin-top: 4px;
}

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

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-hover);
}

.service-img-wrapper {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-body {
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-body h4 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.service-body p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 1.6rem;
  flex-grow: 1;
  line-height: 1.65;
}

.service-body .btn {
  width: 100%;
}

/* --------------------------------------------------------------------------
   8. SEÇÃO 4: POR QUE ESCOLHER MARTHA (6 CARDS AGÊNCIA PREMIUM)
   -------------------------------------------------------------------------- */
.section-why {
  padding: 6.5rem 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 242, 220, 0.16) 0%, transparent 46%),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.section-why .section-tag {
  background: rgba(255, 242, 220, 0.12);
  border-color: rgba(255, 242, 220, 0.35);
  color: var(--cream);
}

.section-why .section-title,
.section-why .section-subtitle {
  color: var(--cream);
}

.section-why .text-gradient-gold {
  background: linear-gradient(135deg, #f3d97d 0%, #f7e8b0 55%, #d7bd66 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.why-card {
  background: rgba(255, 242, 220, 0.94);
  border: 1px solid rgba(255, 242, 220, 0.28);
  border-radius: var(--radius-md);
  padding: 2.35rem 1.85rem;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-accent), #f1d47d);
  opacity: 0;
  transition: var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 242, 220, 0.58);
  box-shadow: var(--shadow-hover);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(32, 54, 85, 0.92);
  color: #f3dc90;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 16px rgba(32, 54, 85, 0.24);
}

.why-card h3 {
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   9. SEÇÃO 5: COMO FUNCIONA (TIMELINE ÉTICA EM 5 ETAPAS)
   -------------------------------------------------------------------------- */
.section-timeline {
  padding: 6.5rem 0;
  background: var(--bg-clean);
}

.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold-accent), transparent);
  transform: translateX(-50%);
}

.timeline-step {
  display: flex;
  justify-content: flex-end;
  padding-right: 50px;
  position: relative;
  margin-bottom: 3.2rem;
  width: 50%;
}

.timeline-step:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50px;
  margin-left: auto;
}

.timeline-node {
  position: absolute;
  top: 15px;
  right: -16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--gold-accent);
  box-shadow: 0 0 12px rgba(175, 162, 89, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
  z-index: 2;
}

.timeline-step:nth-child(even) .timeline-node {
  right: auto;
  left: -16px;
}

.timeline-card {
  background: var(--cream-soft);
  border: 1px solid var(--card-border);
  padding: 1.85rem;
  border-radius: var(--radius-md);
  width: 100%;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

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

.timeline-step-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.35rem;
}

.timeline-card h4 {
  font-size: 1.28rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.timeline-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.timeline-disclaimer {
  margin-top: 3.5rem;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.6rem 2.2rem;
  text-align: center;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-disclaimer p {
  color: #595022;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   10. SEÇÃO 6: BENEFÍCIOS ESPIRITUAIS
   -------------------------------------------------------------------------- */
.section-benefits {
  padding: 6.5rem 0;
  background: var(--bg-white);
}

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

.benefit-card {
  background: var(--bg-clean);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 2.1rem 1.85rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

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

.benefit-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--primary-light);
  border: 1px solid rgba(32, 54, 85, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.45rem;
  margin-bottom: 1.35rem;
}

.benefit-card h4 {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   11. SEÇÃO 7: DEPOIMENTOS DE CLIENTES
   -------------------------------------------------------------------------- */
.section-testimonials {
  padding: 6.5rem 0;
  background:
    radial-gradient(circle at 85% 22%, rgba(255, 242, 220, 0.18) 0%, transparent 42%),
    linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.section-testimonials .section-tag {
  background: rgba(255, 242, 220, 0.12);
  border-color: rgba(255, 242, 220, 0.35);
  color: var(--cream);
}

.section-testimonials .section-title,
.section-testimonials .section-subtitle {
  color: var(--cream);
}

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

.testimonial-card {
  background: rgba(255, 248, 236, 0.97);
  border: 1px solid rgba(255, 242, 220, 0.36);
  border-radius: var(--radius-md);
  padding: 2.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 242, 220, 0.62);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--gold-dark);
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-text {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1.6rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--cream);
  font-size: 1.05rem;
}

.author-info strong {
  display: block;
  font-size: 0.96rem;
  color: var(--primary);
}

.author-info span {
  font-size: 0.82rem;
  color: var(--text-light);
}

.testimonial-disclaimer-note {
  text-align: center;
  font-size: 0.85rem;
  color: #e5dbc6;
  margin-top: 2.6rem;
}

/* --------------------------------------------------------------------------
   12. SEÇÃO 8: FAQ (DUVIDAS FREQUENTES COM CLASSE .OPEN SEM BUGS)
   -------------------------------------------------------------------------- */
.section-faq {
  padding: 6.5rem 0;
  background: var(--bg-white);
}

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

.faq-item {
  background: var(--cream-soft);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: rgba(32, 54, 85, 0.3);
}

.faq-item.open {
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.55rem 1.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  gap: 1rem;
  cursor: pointer;
  background: transparent;
  border: none;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--primary);
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--primary);
  color: var(--cream);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 1.85rem;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  padding: 0 1.85rem 1.6rem 1.85rem;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   13. SEÇÃO 9: CTA FINAL DE ENCERRAMENTO
   -------------------------------------------------------------------------- */
.section-cta-final {
  padding: 6.5rem 0;
  position: relative;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: 1.5px solid var(--gold-accent);
  border-radius: var(--radius-lg);
  padding: 5.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  color: var(--cream);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 242, 220, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-box h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 1.35rem;
  color: var(--cream);
}

.cta-box p {
  font-size: 1.18rem;
  color: #f4ebda;
  margin-bottom: 2.6rem;
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   14. SEÇÃO 10: RODAPÉ CLEAN (FOOTER)
   -------------------------------------------------------------------------- */
.footer {
  background: var(--cream);
  border-top: 1px solid rgba(32, 54, 85, 0.18);
  padding: 4.5rem 0 2.2rem 0;
}

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

.footer-brand img {
  height: 58px;
  margin-bottom: 1.35rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
  max-width: 390px;
}

.footer-contact h5 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(32, 54, 85, 0.16);
  padding-top: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

.legal-disclaimer {
  font-size: 0.82rem;
  color: #4f6689;
  max-width: 920px;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   15. BOTÃO FLUTUANTE FIXO DO WHATSAPP
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.whatsapp-float-btn {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--whatsapp-green) 0%, #17a94a 100%);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 8px 25px var(--whatsapp-glow);
  transition: var(--transition-normal);
  position: relative;
}

.whatsapp-float-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--whatsapp-green);
  opacity: 0.5;
  animation: float-pulse 2s infinite ease-out;
  z-index: -1;
}

@keyframes float-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.whatsapp-float:hover .whatsapp-float-btn {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-tooltip {
  background: var(--cream-soft);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 25px rgba(32, 54, 85, 0.2);
  border: 1px solid rgba(175, 162, 89, 0.3);
  white-space: nowrap;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.whatsapp-float-tooltip i {
  color: var(--whatsapp-green);
}

/* --------------------------------------------------------------------------
   16. SCROLL REVEAL ANIMATION
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   17. RESPONSIVIDADE (MOBILE FIRST & BREAKPOINTS)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-logo-wrapper {
    justify-content: center;
  }

  .why-grid,
  .other-services-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    text-align: center;
  }

  .hero-tarot-highlight {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-badges {
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .floating-experience {
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
  }

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

@media (max-width: 768px) {
  .hero {
    padding-top: 3.5rem;
    min-height: auto;
  }

  .hero-logo-wrapper {
    justify-content: center;
  }

  .hero-logo {
    height: 65px;
  }

  .why-grid,
  .other-services-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .featured-service {
    padding: 2.2rem 1.6rem;
  }

  .timeline-container::before {
    left: 20px;
  }

  .timeline-step,
  .timeline-step:nth-child(even) {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    margin-left: 0;
    justify-content: flex-start;
  }

  .timeline-node,
  .timeline-step:nth-child(even) .timeline-node {
    left: 4px;
    right: auto;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .whatsapp-float-tooltip {
    display: none;
  }
}
