/* ==========================================================================
   CONSULT ESTRATÉGIAS — estilos globais
   ========================================================================== */

:root {
  --background: #ffffff;
  --foreground: #111827;
  --card: #ffffff;
  --card-foreground: #111827;

  --primary: #0d358c;
  --primary-hover: #0a2a6e;
  --primary-foreground: #ffffff;
  --primary-light: #b9cdf8;

  --secondary: #f97015;
  --secondary-hover: #e0630f;
  --secondary-foreground: #ffffff;
  --secondary-light: #ffe7d6;

  --muted: #f1f2f4;
  --muted-foreground: #6b7280;
  --border: #e5e7eb;

  --destructive: #ef4343;
  --destructive-light: #fde2e2;

  --gradient-primary: linear-gradient(135deg, #0d358c, #1147bb);
  --gradient-hero: linear-gradient(135deg, #0d358c 0%, #0b2c75 100%);
  --gradient-accent: linear-gradient(135deg, #f97015, #fa8638);

  --shadow-soft: 0 2px 8px -2px rgba(13, 53, 140, 0.1);
  --shadow-medium: 0 8px 24px -4px rgba(13, 53, 140, 0.15);
  --shadow-strong: 0 16px 48px -8px rgba(13, 53, 140, 0.2);

  --radius: 0.75rem;
  --radius-lg: 1rem;
  --container-max: 1280px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

section {
  padding: 5rem 0;
}

.section-muted {
  background: var(--muted);
}

.section-tight {
  padding: 3rem 0;
}

@media (min-width: 640px) {
  .section-tight {
    padding: 4rem 0;
  }
}
@media (min-width: 768px) {
  .section-tight {
    padding: 5rem 0;
  }
}

.section-header {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

h1,
h2,
h3,
h4 {
  line-height: 1.2;
}

/* --------------------------------------------------------------------------
   Botões
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}
.btn-secondary:hover {
  background: var(--secondary-hover);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: #ffffff;
  color: var(--primary);
}

.btn-lg {
  padding: 1.1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--primary);
  box-shadow: var(--shadow-soft);
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  height: 4.5rem;
  width: auto;
}

.brand span {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary-foreground);
  display: none;
}

@media (min-width: 1024px) {
  .brand span {
    display: block;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

@media (min-width: 1280px) {
  .nav-links {
    gap: 2rem;
    font-size: 1rem;
  }
}

.nav-links button,
.nav-links a.nav-link {
  color: var(--primary-foreground);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links button:hover,
.nav-links a.nav-link:hover {
  color: var(--secondary);
}

.nav-links a.nav-highlight {
  color: var(--secondary);
  font-weight: 700;
}

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
  }
}

.nav-cta-mobile {
  display: inline-flex;
  height: 2.25rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
}

@media (min-width: 1024px) {
  .nav-cta-mobile {
    display: none;
  }
}

.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-foreground);
  color: var(--primary);
  border-radius: 0.5rem;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-back:hover {
  background: rgba(255, 255, 255, 0.9);
}

.nav-back svg {
  width: 1rem;
  height: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: inline-flex;
  color: var(--primary-foreground);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle svg {
  width: 1.75rem;
  height: 1.75rem;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--primary);
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu.open {
  display: flex;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu button,
.mobile-menu a {
  color: var(--primary-foreground);
  padding: 0.65rem 0;
  font-weight: 500;
  text-align: left;
}

.mobile-menu a.nav-highlight {
  color: var(--secondary);
  font-weight: 700;
}

/* Barra secundária de urgência (página mentoria) */
.urgency-bar {
  position: fixed;
  left: 0;
  right: 0;
  top: 5rem;
  z-index: 40;
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
}

@media (min-width: 640px) {
  .urgency-bar {
    top: 5rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

.urgency-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 1rem;
}

.urgency-bar .divider {
  display: none;
}

@media (min-width: 640px) {
  .urgency-bar .divider {
    display: inline;
  }
}

.urgency-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.urgency-item svg {
  width: 1rem;
  height: 1rem;
}

/* --------------------------------------------------------------------------
   Ícones utilitários
   -------------------------------------------------------------------------- */

.icon {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Hero (home)
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem 0;
}

.hero-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

.hero-content h2 {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-content h2 {
    font-size: 1.5rem;
  }
}

.hero-content > p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-content > p {
    font-size: 1.25rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

/* --------------------------------------------------------------------------
   Sobre / Valores
   -------------------------------------------------------------------------- */

.about-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--card);
  color: var(--card-foreground);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.about-card {
  padding: 2rem;
  text-align: center;
}

.about-card:hover {
  box-shadow: var(--shadow-medium);
  border-color: rgba(13, 53, 140, 0.2);
}

.icon-box {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
}

.icon-box.light-primary {
  background: var(--primary-light);
}
.icon-box.light-secondary {
  background: var(--secondary-light);
}

.icon-box svg {
  width: 2rem;
  height: 2rem;
}

.about-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-card p {
  color: var(--muted-foreground);
}

.values-list {
  text-align: left;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.values-list li strong {
  color: var(--foreground);
}

/* --------------------------------------------------------------------------
   Serviços
   -------------------------------------------------------------------------- */

.services-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 1.5rem;
}

.service-card:hover {
  box-shadow: var(--shadow-medium);
  border-color: rgba(249, 112, 21, 0.3);
}

.service-card .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 0 1rem 0;
  border-radius: 0.5rem;
  transition: transform 0.3s;
}

.service-card:hover .icon-box {
  transform: scale(1.1);
}

.service-card .icon-box svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--secondary);
}

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

.service-card p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   Depoimentos
   -------------------------------------------------------------------------- */

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: 1.5rem;
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-medium);
  border-color: rgba(13, 53, 140, 0.2);
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  color: rgba(249, 112, 21, 0.2);
}

.testimonial-card p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--primary);
}

.stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
}

.stars svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--secondary);
  fill: var(--secondary);
}

/* --------------------------------------------------------------------------
   Parceiros
   -------------------------------------------------------------------------- */

.partners-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.partner-card {
  background: var(--background);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s;
}

.partner-card:hover {
  box-shadow: var(--shadow-medium);
}

.partner-card img {
  max-height: 6rem;
  width: auto;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   Banner Mentoria (home)
   -------------------------------------------------------------------------- */

.mentoria-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d358c 0%, #0c318a 50%, #0b2c7d 100%);
}

.mentoria-banner::before,
.mentoria-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.mentoria-banner::before {
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(249, 112, 21, 0.1);
}

.mentoria-banner::after {
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(249, 112, 21, 0.05);
}

.mentoria-banner .container {
  position: relative;
  z-index: 1;
}

.mentoria-badge {
  display: inline-block;
  background: rgba(249, 112, 21, 0.2);
  color: var(--secondary);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(249, 112, 21, 0.3);
  margin-bottom: 2rem;
}

.mentoria-banner-flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .mentoria-banner-flex {
    flex-direction: row;
    gap: 3rem;
  }
}

.mentoria-banner-main {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .mentoria-banner-main {
    text-align: left;
  }
}

.mentoria-banner-main h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.mentoria-banner-main h2 span {
  color: var(--secondary);
}

@media (min-width: 640px) {
  .mentoria-banner-main h2 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .mentoria-banner-main h2 {
    font-size: 3rem;
  }
}

.mentoria-banner-main > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 36rem;
}

@media (min-width: 1024px) {
  .mentoria-banner-main > p {
    margin-left: 0;
    margin-right: auto;
  }
}

.mentoria-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pillar {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.pillar svg {
  width: 2rem;
  height: 2rem;
  color: var(--secondary);
  margin: 0 auto 0.5rem;
}

.pillar h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

.mentoria-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

@media (min-width: 1024px) {
  .mentoria-checks {
    justify-content: flex-start;
  }
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.check-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.mentoria-banner-card {
  flex-shrink: 0;
  width: 100%;
  max-width: 26rem;
}

.mentor-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
}

.mentor-card img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  object-position: top;
}

.mentor-card-photo {
  position: relative;
}

.mentor-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13, 53, 140, 0.9), transparent);
  padding: 1rem;
}

.mentor-card-caption h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
}

.mentor-card-caption p {
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 500;
}

.mentor-card-facts {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mentor-fact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.mentor-fact svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.mentor-fact.fill svg {
  fill: var(--secondary);
}

/* --------------------------------------------------------------------------
   Cursos
   -------------------------------------------------------------------------- */

.courses-section {
  background: linear-gradient(135deg, rgba(13, 53, 140, 0.05), rgba(249, 112, 21, 0.05));
  text-align: center;
}

.courses-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(13, 53, 140, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.courses-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.courses-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.courses-section p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   Contato
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-row .icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  margin: 0;
  flex-shrink: 0;
}

.contact-row .icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-row .icon-box.light-primary svg {
  color: var(--primary);
}
.contact-row .icon-box.light-secondary svg {
  color: var(--secondary);
}

.contact-row p.label {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.contact-row a,
.contact-row span,
.contact-row p.value {
  color: var(--muted-foreground);
}

.contact-row a:hover {
  color: var(--primary);
}

.contact-cta {
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--gradient-primary);
  color: #ffffff;
}

.contact-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-cta > p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-cta .btn {
  width: 100%;
}

.google-review {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.google-review p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-grid img {
  height: 5.5rem;
  width: auto;
  margin-bottom: 1rem;
}

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

.footer-grid h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links button,
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-links button:hover,
.footer-links a:hover {
  color: var(--secondary);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-list li svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.footer-contact-list a:hover {
  color: var(--secondary);
}

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

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

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

/* Footer simples (página mentoria) */
.footer-simple {
  background: var(--foreground);
  color: var(--background);
  padding: 2.5rem 0;
}

.footer-simple-title {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-simple-title h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.footer-simple-title p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-simple-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-simple-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-simple-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-simple-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.footer-simple-grid svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.footer-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-hours svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.footer-legal a:hover {
  color: var(--secondary);
}

.footer-simple-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   WhatsApp flutuante
   -------------------------------------------------------------------------- */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 3.5rem;
  height: 3.5rem;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

@media (min-width: 640px) {
  .whatsapp-float img {
    width: 4rem;
    height: 4rem;
  }
}

/* --------------------------------------------------------------------------
   Accordion (módulos / FAQ)
   -------------------------------------------------------------------------- */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.accordion-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 0 1.5rem;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1.25rem 0;
  text-align: left;
  font-weight: 600;
  color: var(--foreground);
}

.accordion-trigger svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.accordion-item.open .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.open .accordion-content {
  padding-bottom: 1.25rem;
}

.accordion-content ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.accordion-content li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.accordion-content li span.arrow {
  color: var(--secondary);
  margin-top: 0.1rem;
}

.accordion-content p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Mentoria — hero
   -------------------------------------------------------------------------- */

.mentoria-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: var(--gradient-hero);
  overflow: hidden;
}

@media (min-width: 640px) {
  .mentoria-hero {
    padding-top: 9rem;
  }
}

.mentoria-hero-flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .mentoria-hero-flex {
    flex-direction: row;
    gap: 3rem;
  }
}

.mentoria-hero-main {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .mentoria-hero-main {
    text-align: left;
  }
}

.mentoria-hero-main img.hero-logo {
  height: 3.5rem;
  margin: 0 auto 1.5rem;
}

@media (min-width: 1024px) {
  .mentoria-hero-main img.hero-logo {
    margin-left: 0;
  }
}

.webinar-badge {
  display: inline-block;
  background: rgba(249, 112, 21, 0.2);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(249, 112, 21, 0.3);
  margin-bottom: 1.5rem;
}

.mentoria-hero-main h1 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .mentoria-hero-main h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .mentoria-hero-main h1 {
    font-size: 3rem;
  }
}

.mentoria-hero-main > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 38rem;
}

@media (min-width: 1024px) {
  .mentoria-hero-main > p {
    margin-right: auto;
    margin-left: 0;
  }
}

.mentoria-hero-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

@media (min-width: 1024px) {
  .mentoria-hero-facts {
    justify-content: flex-start;
  }
}

.mentoria-hero-photo {
  flex: 1;
  max-width: 26rem;
  position: relative;
}

.mentoria-hero-photo-frame {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.mentoria-hero-photo-frame img {
  border-radius: 0.75rem;
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}

/* --------------------------------------------------------------------------
   Lista de dores / checklist
   -------------------------------------------------------------------------- */

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--background);
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(239, 67, 67, 0.2);
}

.pain-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--destructive);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pain-item p {
  font-size: 1rem;
}

.pain-callout {
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(13, 53, 140, 0.08);
  border: 1px solid rgba(13, 53, 140, 0.2);
  border-radius: var(--radius-lg);
  text-align: center;
}

.pain-callout p {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   Vídeos de depoimento
   -------------------------------------------------------------------------- */

.videos-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.video-box {
  background: var(--muted);
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.video-box video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0.75rem;
  background: #000;
}

/* --------------------------------------------------------------------------
   Trilha de meses (estruturação/otimização/escala)
   -------------------------------------------------------------------------- */

.months-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .months-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.month-card-wrap {
  position: relative;
}

.month-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border);
  height: 100%;
  text-align: center;
}

.month-card .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
}

.month-card .icon-box svg {
  color: #ffffff;
}

.month-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.month-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.month-card p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.month-arrow {
  display: none;
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .month-arrow {
    display: block;
  }
}

.month-arrow svg {
  width: 2rem;
  height: 2rem;
  color: rgba(13, 53, 140, 0.3);
}

/* --------------------------------------------------------------------------
   Como funciona a mentoria
   -------------------------------------------------------------------------- */

.how-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .how-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.how-card {
  background: var(--background);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.how-card .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(13, 53, 140, 0.1);
  margin: 0 0 1rem;
}

.how-card .icon-box svg {
  color: var(--primary);
  width: 1.75rem;
  height: 1.75rem;
}

.how-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.how-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.how-card li {
  display: flex;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.85rem;
}

.how-card li span.arrow {
  color: var(--secondary);
  margin-top: 0.1rem;
}

/* --------------------------------------------------------------------------
   Planos / preços
   -------------------------------------------------------------------------- */

.plans-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.plan-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-medium);
}

.plan-card.featured {
  border-color: var(--secondary);
  background: rgba(249, 112, 21, 0.05);
  box-shadow: var(--shadow-strong);
}

@media (min-width: 1024px) {
  .plan-card.featured {
    transform: scale(1.05);
  }
}

.plan-tag {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.plan-tag.secondary {
  background: var(--secondary);
  color: #fff;
}
.plan-tag.primary {
  background: var(--primary);
  color: #fff;
}

.plan-card h3 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}

.plan-price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.plan-price .value {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--primary);
}

.plan-price .installment {
  color: var(--muted-foreground);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.plan-features li svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--primary);
}

.plan-features li.highlight {
  font-weight: 600;
  color: var(--foreground);
}
.plan-features li.highlight svg {
  color: var(--secondary);
}

.plan-ideal {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 1.5rem;
}

.plans-trust {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.plans-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--muted);
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

.pill svg {
  width: 1rem;
  height: 1rem;
  color: var(--secondary);
}

.plans-trust-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.plans-trust-icons > div {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.plans-trust-icons svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   Bônus
   -------------------------------------------------------------------------- */

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.bonus-item {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .bonus-item {
    flex-direction: row;
    align-items: center;
  }
}

.bonus-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(249, 112, 21, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--secondary);
  flex-shrink: 0;
}

.bonus-body {
  flex: 1;
}

.bonus-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.bonus-body p {
  color: var(--muted-foreground);
  font-size: 0.85rem;
}

.bonus-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .bonus-price {
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
  }
}

.bonus-price .old {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.bonus-price .free {
  font-weight: 700;
  color: var(--secondary);
}

.bonus-total {
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--primary);
  color: #ffffff;
  text-align: center;
}

.bonus-total p:first-child {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.bonus-total .value {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.bonus-total .final {
  font-size: 1.4rem;
}

/* --------------------------------------------------------------------------
   Garantia
   -------------------------------------------------------------------------- */

.guarantee-box {
  max-width: 48rem;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(13, 53, 140, 0.05), rgba(249, 112, 21, 0.05));
  border: 2px solid rgba(13, 53, 140, 0.2);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
}

.guarantee-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(13, 53, 140, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.guarantee-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
}

.guarantee-box h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.guarantee-text {
  text-align: left;
  background: var(--background);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
}

.guarantee-text p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.guarantee-text p:last-child {
  color: var(--foreground);
  font-weight: 600;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Mentor (página mentoria)
   -------------------------------------------------------------------------- */

.mentor-section-flex {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .mentor-section-flex {
    flex-direction: row;
  }
}

.mentor-photo-frame {
  flex-shrink: 0;
  width: 14rem;
  height: 14rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid rgba(13, 53, 140, 0.2);
  box-shadow: var(--shadow-strong);
}

@media (min-width: 1024px) {
  .mentor-photo-frame {
    width: 20rem;
    height: 20rem;
  }
}

.mentor-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.mentor-bio {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .mentor-bio {
    text-align: left;
  }
}

.mentor-bio h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.mentor-bio .role {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.mentor-bio-text {
  color: var(--muted-foreground);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mentor-bio-text strong {
  color: var(--foreground);
}

.mentor-quote {
  border-left: 4px solid var(--secondary);
  padding-left: 1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  text-align: left;
}

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

.mentor-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--background);
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
}

.mentor-stat svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.mentor-stat.fill svg {
  fill: var(--secondary);
}

/* --------------------------------------------------------------------------
   Estatísticas + depoimentos (página mentoria)
   -------------------------------------------------------------------------- */

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

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: rgba(13, 53, 140, 0.05);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.stat-card .value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-card p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.testimonials-badge {
  margin-top: 3rem;
  text-align: center;
}

.testimonials-badge span.pill {
  display: inline-flex;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(13, 53, 140, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   CTA final (página mentoria)
   -------------------------------------------------------------------------- */

.final-cta {
  background: var(--gradient-hero);
  text-align: center;
}

.final-cta h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .final-cta h2 {
    font-size: 2.3rem;
  }
}

.final-cta-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2rem;
  text-align: left;
  backdrop-filter: blur(4px);
}

.final-cta-box > p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.final-cta-box ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1rem 0;
}

.final-cta-box li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.final-cta-box li svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.final-cta-box > p.closing {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-top: 1rem;
  margin-bottom: 0;
}

.final-cta-recap {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.final-cta-recap > p:first-child {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.recap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  text-align: left;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .recap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.recap-grid > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.recap-grid svg {
  width: 1rem;
  height: 1rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.final-cta-recap .investment {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
}

.final-cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.final-cta-trust > div {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.final-cta-trust svg {
  width: 1rem;
  height: 1rem;
}

.final-cta-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   Utilidades
   -------------------------------------------------------------------------- */

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

.mt-2 {
  margin-top: 2rem;
}

.hidden-desktop {
  display: inline;
}

@media (min-width: 640px) {
  .hidden-desktop {
    display: none;
  }
}

.hidden-mobile {
  display: none;
}

@media (min-width: 640px) {
  .hidden-mobile {
    display: inline;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease both;
}

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

/* --------------------------------------------------------------------------
   Página do Livro
   -------------------------------------------------------------------------- */

.book-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .book-hero {
    padding-top: 9rem;
  }
}

.book-hero-flex {
  display: flex;
  flex-direction: column-reverse;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .book-hero-flex {
    flex-direction: row;
  }
}

.book-hero-main {
  flex: 1.1;
  text-align: center;
}

@media (min-width: 768px) {
  .book-hero-main {
    text-align: left;
  }
}

.book-stamp {
  display: inline-block;
  border: 1px solid rgba(249, 112, 21, 0.5);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
}

.book-hero-main h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .book-hero-main h1 {
    font-size: 2.75rem;
  }
}
@media (min-width: 1024px) {
  .book-hero-main h1 {
    font-size: 3.5rem;
  }
}

.book-hero-main h1 span {
  color: var(--secondary);
}

.book-hero-main > p.lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 34rem;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .book-hero-main > p.lead {
    margin-left: 0;
  }
}

.book-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .book-hero-actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .book-hero-actions {
    justify-content: flex-start;
  }
}

.book-hero-edition {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.book-hero-author {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
}

.book-hero-cover {
  flex: 0.9;
  display: flex;
  justify-content: center;
  position: relative;
}

.book-hero-cover::before {
  content: "";
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(249, 112, 21, 0.2);
  filter: blur(60px);
}

.book-hero-cover img {
  position: relative;
  width: 15rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-strong);
}

@media (min-width: 768px) {
  .book-hero-cover img {
    width: 19rem;
  }
}

.signal-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .signal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.signal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
}

.signal-card .index {
  font-family: ui-monospace, monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
}

.signal-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0.75rem 0 0.5rem;
}

.signal-card p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.book-practice {
  display: flex;
  flex-direction: column-reverse;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .book-practice {
    flex-direction: row;
    align-items: flex-start;
  }
}

.book-practice-main {
  flex: 1.2;
}

.book-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.book-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
}

.book-checklist li .dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.book-practice-cover {
  flex: 0.8;
  display: flex;
  justify-content: center;
}

.book-practice-cover img {
  width: 12rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-medium);
}

@media (min-width: 768px) {
  .book-practice-cover img {
    width: 15rem;
  }
}

.audience-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.audience-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.audience-card:hover {
  border-color: var(--primary);
}

.audience-card h3 {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.audience-card p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.author-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .author-grid {
    flex-direction: row;
    align-items: flex-start;
  }
}

.author-photo-col {
  flex: 0.75;
  width: 100%;
}

.author-photo-col img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-medium);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
}

.author-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.author-stats > div {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 0.5rem;
  padding: 0.75rem;
  text-align: center;
}

.author-stats .num {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.author-stats .label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-top: 0.15rem;
}

.author-bio-col {
  flex: 1.25;
}

.author-bio-col .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
}

.author-bio-col h2 {
  margin: 0.5rem 0 0.25rem;
}

.author-bio-col .role {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
}

.author-bio-col .bio-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted-foreground);
}

.buy-section {
  text-align: center;
}

.buy-section .book-stamp {
  margin-bottom: 1.5rem;
}

.buy-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .buy-section h2 {
    font-size: 2.5rem;
  }
}

.buy-section h2 span {
  color: var(--secondary);
}

.buy-section > .container > p {
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.buy-price-box {
  background: var(--card);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  padding: 2.5rem 2rem;
  max-width: 28rem;
  margin: 0 auto;
}

.buy-price-box .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.buy-price-box .price-note {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.buy-price-box p.cc-note {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  margin-top: 1.5rem;
}

.buy-price-box p.cc-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.buy-trust {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

/* --------------------------------------------------------------------------
   Banner do livro (home)
   -------------------------------------------------------------------------- */

.book-promo {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  padding: 2rem;
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .book-promo {
    flex-direction: row;
    text-align: left;
    padding: 2.5rem;
  }
}

.book-promo img {
  width: 8rem;
  border-radius: 0.4rem;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}

.book-promo-body span.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
}

.book-promo-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0.5rem 0 0.75rem;
}

.book-promo-body p {
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
}
