/* =========================================================
   MENTORIA ASCENDER — com Erika Menezes
   Estética: "Acolhimento Elegante"
   ========================================================= */

:root {
  /* Novas Cores Solicitadas */
  --color-primary: #f70110;          /* Vermelho exclusivo para CTAs importantes */
  --color-primary-dark: #d6000d;     /* Vermelho hover */
  --color-primary-light: #ff3341;    /* Vermelho foco/ativo */

  --color-dark-blue: #02748f;        /* Azul escuro para textos e seções escuras */
  --color-wine: #6e0516;             /* Vinho escuro para títulos e destaques secundários */
  --color-cyan: #00a4c0;             /* Azul intermediário para links, ícones secundários e bordas */
  --color-cyan-light: #81edf7;       /* Azul claro (tech/moderno para detalhes sobre fundo escuro) */

  --color-teal-deep: #02748f;        /* Mapeado para azul escuro para manter compatibilidade */
  --color-teal-deep-2: #02748f;       /* Mapeado para azul escuro para manter compatibilidade */

  --color-base: #81edf7;             /* Fundo principal azul claro (80% do site) */
  --color-soft: #bbf6fc;             /* Fundo azul claro suave para seções secundárias */
  --color-white: #FFFFFF;

  --color-text: #6e0516;             /* Textos principais em vinho escuro para contraste no fundo claro */
  --color-text-title: #4e030f;       /* Cabeçalhos e títulos em vinho profundo */
  --color-text-light: #8c0e22;       /* Subtextos/descrições secundárias em vinho intermediário */
  --color-text-on-dark: #FFFFFF;
  --color-text-on-dark-muted: #e0f2f5;

  --font-display: "Fraunces", serif;
  --font-body: "Quicksand", sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --shadow-soft: 0 10px 30px rgba(2, 116, 143, 0.08);
  --shadow-strong: 0 20px 50px rgba(2, 116, 143, 0.15);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

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

a { text-decoration: none; color: inherit; }
p a, .text-link {
  color: var(--color-cyan);
  text-decoration: underline;
  transition: color 0.3s ease;
}
p a:hover, .text-link:hover {
  color: var(--color-dark-blue);
}

ul { list-style: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--color-text-title);
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; }

em { font-style: italic; color: var(--color-cyan); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section-dark { background: var(--color-dark-blue); color: var(--color-text-on-dark); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--color-text-on-dark); }
.section-dark strong { color: var(--color-white); }
.section-dark p { color: var(--color-text-on-dark-muted); }
.section-teal { background: var(--color-soft); color: var(--color-text); }
.section-teal h1, .section-teal h2, .section-teal h3 { color: var(--color-text-title); }
#como-funciona { background: var(--color-soft); }
.section-soft { background: var(--color-soft); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cyan);
  background: rgba(0, 164, 192, 0.08);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.tag-on-dark { color: var(--color-cyan-light); background: rgba(129, 237, 247, 0.15); }
.tag-on-teal { color: var(--color-cyan); background: rgba(0, 164, 192, 0.08); }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-sub { color: var(--color-text-light); font-size: 1.05rem; margin-top: 14px; }
.on-teal { color: var(--color-white); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 10px 24px rgba(247, 1, 16, 0.25);
}
.btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-3px); box-shadow: 0 16px 30px rgba(247, 1, 16, 0.35); }

.btn-ghost {
  background: transparent;
  color: var(--color-dark-blue);
  border: 2px solid var(--color-dark-blue);
}
.btn-ghost:hover { background: var(--color-dark-blue); color: var(--color-white); transform: translateY(-3px); }

.btn-ghost-dark {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.15); border-color: var(--color-white); transform: translateY(-3px); }

.btn-on-teal {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 10px 24px rgba(247, 1, 16, 0.25);
}
.btn-on-teal:hover { background: var(--color-primary-dark); color: var(--color-white); transform: translateY(-3px); box-shadow: 0 16px 30px rgba(247, 1, 16, 0.35); }

.btn-large { padding: 17px 32px; font-size: 1rem; }
.btn-small { padding: 10px 20px; font-size: 0.85rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 5px 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}
.navbar.scrolled {
  padding: 2px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(2, 116, 143, 0.06);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 12px; color: var(--color-dark-blue); }
.brand-logo {
  height: 94px;
  width: auto;
  transition: height 0.35s var(--ease), filter 0.35s var(--ease);
  filter: brightness(0) invert(1); /* Logo branca antes de rolar */
}
.navbar.scrolled .brand-logo {
  height: 74px;
  filter: none; /* Cor original da logo após rolar */
}
.brand-logo-footer {
  height: 80px;
  filter: brightness(0) invert(1);
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--color-text);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease);
}
.nav-link:hover {
  color: var(--color-cyan);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--color-cyan);
  transition: width 0.3s var(--ease);
}
.nav-link:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 200;
}
.hamburger span {
  width: 26px; height: 2.5px;
  background: var(--color-teal-deep);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(80vw, 340px);
  height: 100vh;
  background: var(--color-base);
  z-index: 150;
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right 0.45s var(--ease);
  box-shadow: -20px 0 50px rgba(0,0,0,0.15);
}
.mobile-drawer.active { right: 0; }
.drawer-link { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--color-teal-deep); }
.drawer-link-muted { font-family: var(--font-body); font-size: 1rem; color: var(--color-text-light); display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(11, 74, 87, 0.4);
  z-index: 140;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease);
}
.drawer-overlay.active { opacity: 1; visibility: visible; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(160deg, var(--color-base) 0%, var(--color-soft) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--color-cyan);
  background: rgba(0, 164, 192, 0.08);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-lead { font-size: 1.15rem; color: var(--color-text-light); margin: 24px 0 32px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-note { margin-top: 22px; font-size: 0.88rem; color: var(--color-text-light); display: flex; align-items: center; gap: 8px; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-photo-frame {
  width: min(380px, 100%);
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 6px solid var(--color-white);
  position: relative;
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-badge {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--color-teal-deep);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-soft);
}
.hero-badge-number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--color-cyan-light); }
.hero-badge-text { font-size: 0.78rem; line-height: 1.3; font-weight: 600; }

.hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--color-teal-deep);
  clip-path: ellipse(60% 100% at 50% 100%);
  opacity: 0;
}

/* ===== ABOUT ===== */
#sobre { padding-bottom: 0; }
.about-grid { display: grid; grid-template-columns: 1fr 0.8fr; gap: 60px; align-items: center; }
.about-image { align-self: end; }
.about-copy p { font-size: 1.05rem; margin-bottom: 18px; }
.about-highlight { font-weight: 600; color: var(--color-text-on-dark); font-size: 1.15rem !important; }
.about-image-frame {
  border-radius: 0;
  overflow: visible;
  aspect-ratio: auto;
  box-shadow: none;
  filter: none;
  background: transparent;
}
.about-image-frame img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  display: block;
}

/* ===== AUDIENCE ===== */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.audience-card {
  background: var(--color-white);
  padding: 38px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.audience-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(46,34,20,0.14); }
.audience-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(169,124,88,0.12);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.audience-card h3 { margin-bottom: 10px; }
.audience-card p { color: var(--color-text-light); font-size: 0.96rem; }

/* ===== STEPS ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 20px; }
.step-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 164, 192, 0.15);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-cyan);
  box-shadow: var(--shadow-strong);
}
.step-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-cyan);
  display: block;
  margin-bottom: 14px;
}
.step-card h3 { color: var(--color-text-title); margin-bottom: 12px; }
.step-card p { color: var(--color-text); font-size: 0.96rem; }
.steps-cta { text-align: center; margin-top: 52px; }

/* ===== CONQUER ===== */
.conquer-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.conquer-list { margin: 26px 0 34px; display: flex; flex-direction: column; gap: 16px; }
.conquer-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 1.02rem; font-weight: 500; }
.conquer-list i { color: var(--color-cyan); background: rgba(0, 164, 192, 0.08); border-radius: 50%; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; font-size: 0.75rem; }

.conquer-visual { display: flex; flex-direction: column; gap: 22px; }
.stat-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 30px 32px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.stat-card-alt { background: var(--color-dark-blue); }
.stat-card-alt .stat-label, .stat-card-alt .stat-suffix { color: var(--color-text-on-dark-muted); }
.stat-card-alt .stat-number { color: var(--color-cyan-light); }
.stat-number { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--color-wine); }
.stat-suffix { font-family: var(--font-display); font-size: 1.3rem; color: var(--color-text-light); }
.stat-label { width: 100%; font-size: 0.9rem; color: var(--color-text-light); margin-top: 4px; }

/* ===== ERIKA ===== */
.erika-grid { display: grid; grid-template-columns: 0.8fr 1.1fr; gap: 60px; align-items: center; }
.erika-photo-frame {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 6px solid rgba(129, 237, 247, 0.3);
  box-shadow: var(--shadow-strong);
  max-width: 340px;
  margin: 0 auto;
}
.erika-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.erika-copy p { font-size: 1.05rem; margin-bottom: 16px; }
.erika-credentials { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.erika-credentials span { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--color-cyan-light); }

/* ===== TESTIMONIALS ===== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease);
}
.testimonial-card:hover { transform: translateY(-8px); }
.stars { color: var(--color-cyan); margin-bottom: 16px; font-size: 0.85rem; letter-spacing: 3px; }
.testimonial-card p { font-style: italic; color: var(--color-text); margin-bottom: 20px; font-size: 0.98rem; }
.testimonial-author { display: flex; flex-direction: column; }
.testimonial-name { font-weight: 700; font-family: var(--font-display); }
.testimonial-role { font-size: 0.78rem; color: var(--color-text-light); text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--color-text-title);
  text-align: left;
}
.faq-question i { transition: transform 0.35s var(--ease); color: var(--color-cyan); flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-answer p { padding: 0 28px 24px; color: var(--color-text-light); font-size: 0.96rem; }

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(135deg, var(--color-teal-deep) 0%, var(--color-teal-deep-2) 100%);
  padding: 100px 0;
  text-align: center;
}
.cta-final h2 { color: var(--color-white); }
.cta-final p { color: var(--color-text-on-dark-muted); font-size: 1.1rem; margin: 18px 0 36px; }
.cta-final-actions { justify-content: center; }

/* ===== FOOTER ===== */
.footer { background: var(--color-teal-deep-2); padding: 50px 0 30px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.brand-footer { color: var(--color-white); }
.brand-footer .brand-text strong { color: var(--color-white); }
.brand-footer .brand-text em { color: var(--color-text-on-dark-muted); }
.brand-footer .brand-mark { color: var(--color-cyan-light); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-links a { display: flex; align-items: center; gap: 8px; color: var(--color-text-on-dark-muted); font-weight: 600; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--color-cyan-light); }
.footer-copy { font-size: 0.82rem; color: rgba(244,237,228,0.45); margin-top: 10px; }

.footer-legal {
  display: flex;
  gap: 12px;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(244, 237, 228, 0.6);
  margin-top: 12px;
}
.footer-legal a {
  transition: color 0.3s ease;
}
.footer-legal a:hover {
  color: var(--color-cyan-light);
}

.legal-content {
  padding: 160px 0 80px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}
.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 24px;
  color: var(--color-text-title);
  font-weight: 600;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--color-text-title);
  font-weight: 600;
}
.legal-content p, .legal-content li {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 24px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: var(--color-white);
  font-size: 1.7rem;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 90;
  animation: pulse 2.4s infinite;
}
.whatsapp-tooltip {
  position: absolute;
  right: 76px;
  background: var(--color-teal-deep);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: 0.12s; }
.reveal-delay-2.in-view { transition-delay: 0.24s; }

@media (max-width: 1024px) {
  .hero-grid, .about-grid, .conquer-grid, .erika-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 10px; }
  .hero-visual { order: -1; }
  .audience-grid, .steps, .testimonials { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 130px 0 70px; }
  .hero-actions, .cta-final-actions { flex-direction: column; align-items: stretch; }
  .btn-large { width: 100%; }
  .audience-grid, .steps, .testimonials { grid-template-columns: 1fr; }
  .erika-photo-frame { max-width: 240px; }
  .whatsapp-float { width: 56px; height: 56px; font-size: 1.5rem; bottom: 18px; right: 18px; }
  .whatsapp-tooltip { display: none; }
  .hero-badge { position: static; margin-top: 18px; justify-content: center; }
  .hero-visual { flex-direction: column; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.5rem; }
  .container { padding: 0 18px; }
  .stat-card { justify-content: center; text-align: center; }
}
