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

body {
  font-family: 'Poppins', Arial, sans-serif;
  color: #ffffff;
  background-color: #1a1a1a;
  overflow-x: hidden;
}

:root {
  --bg-black: #0b0b0b;
  --bg-card: #0f0f10;

  --purple-main: #b366ff;
  --purple-soft: #8e4ad8;
  --purple-glow: rgba(179, 102, 255, 0.55);

  --green-cta: #25c000;
  --green-cta-dark: #1fa300;

  --text-white: #ffffff;
  --text-muted: rgba(255,255,255,0.7);
  --text-disabled: rgba(255,255,255,0.35);
}
/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #c41e3a 0%, #8b1428 100%);
    padding: 10px 0;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  padding: 80px 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.95) 0%,
      rgba(0,0,0,0.95) 45%,
      rgba(0,0,0,0.55) 70%,
      rgba(0,0,0,0.2) 100%
    ),
    url("../img/algema.png");

  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;

  display: flex;
  align-items: center;
  overflow: hidden;
}




/* Mantém conteúdo acima do overlay */
.hero-section > .container {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: #cccccc;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 300;
}

.hero-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.playbook-title {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 40px;
}

.highlight {
  color: #b366ff; /* roxinho da marca */
}

.white-strong {
  color: #ffffff;
  font-weight: 800;
}


.cta-button {
    background: linear-gradient(90deg, #28a745 0%, #1e7e34 100%);
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
    background: linear-gradient(90deg, #1e7e34 0%, #28a745 100%);
}

.subtitle-text {
    color: #cccccc;
    font-size: 18px;
    font-weight: 300;
}

.hero-image {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.features-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;

  background:
    radial-gradient(
      circle at center,
      rgba(179, 102, 255, 0.35),
      rgba(45, 15, 70, 0.85),
      #0b0b0b 75%
    );
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    height: 100%;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 2px solid rgba(179, 102, 255, 0.3);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(179, 102, 255, 0.6);
}

.feature-icon {
    font-size: 60px;
    color: #b366ff;
    margin-bottom: 25px;
}

.feature-card h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: bold;
}

.feature-card p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
}




/* Content Section */
.content-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 50px;
}

.section-title .highlight {
    color: #b366ff;
}

.content-box {
    background: rgba(107, 45, 135, 0.2);
    border: 2px solid rgba(179, 102, 255, 0.4);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.content-box:hover {
    background: rgba(107, 45, 135, 0.3);
    border-color: rgba(179, 102, 255, 0.6);
    transform: translateY(-5px);
}

.content-box h4 {
    color: #b366ff;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.content-box ul {
    list-style: none;
    padding-left: 0;
}

.content-box ul li {
    color: #cccccc;
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.content-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

/* DEGRADÊ ROXO + PRETO */
.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(123, 44, 191, 0.45),
      rgba(40, 10, 70, 0.85),
      #050505 75%
    );
  z-index: 0;
}

/* SOMBRA EXTRA PARA PROFUNDIDADE */
.testimonials-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at bottom,
      rgba(0, 0, 0, 0.6),
      transparent 60%
    );
  z-index: 1;
}

/* CONTEÚDO SEMPRE ACIMA */
.testimonials-section > * {
  position: relative;
  z-index: 2;
}


/* Pricing Section */
.pricing-section {
  background: radial-gradient(
    circle at center,
    #2a183d 0%,
    #1a1026 35%,
    #0b0b0b 70%
  );
}

.black-friday-banner {
    background: linear-gradient(90deg, #c41e3a 0%, #8b1428 100%);
    padding: 40px;
    border-radius: 15px;/* ⬅ espaçamento do topo */
    margin-bottom: 50px;
}

.black-friday-banner h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 38px;        /* ⬅ menor */
    font-weight: bold;
    background: rgba(0, 0, 0, 0.35);

    padding: 16px 22px;     /* ⬅ menos espaço interno */
    border-radius: 10px;
    min-width: 80px;        /* ⬅ menor largura */

    display: block;
}

.countdown-label {
    margin-top: 8px;
    font-size: 12px;        /* ⬅ menor */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card-featured {
    background: rgba(179, 102, 255, 0.1);
    border-color: rgba(179, 102, 255, 0.5);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-card h3 {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: bold;
}

.price-old {
    font-size: 32px;
    color: #999;
    margin-bottom: 10px;
}

.price-main {
    font-size: 72px;
    font-weight: bold;
    color: #b366ff;
    margin-bottom: 10px;
}

.price-note,
.price-note-featured {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 30px;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(179, 102, 255, 0.5) 50%, transparent 100%);
    margin: 30px 0;
}

.payment-info {
    font-size: 12px;
    color: #999;
    line-height: 1.4;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, #4a1a5c 0%, #6b2d87 100%);
    padding: 80px 0;
}

.guarantee-list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.guarantee-list li {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.guarantee-image {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* FAQ Section */
.faq-section {
  position: relative;
  padding: 120px 0;

  background:
    radial-gradient(
      circle at left center,
      rgba(90, 26, 115, 0.55) 0%,
      rgba(20, 9, 28, 0.95) 55%
    ),
    radial-gradient(
      circle at right center,
      rgba(90, 26, 115, 0.45) 0%,
      rgba(11, 11, 11, 1) 60%
    ),
    linear-gradient(
      180deg,
      #0b0b0b 0%,
      #0b0b0b 100%
    );
}

.faq-item {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(60, 25, 90, 0.85),
    rgba(30, 10, 50, 0.95)
  );

  border: 1px solid rgba(179, 102, 255, 0.35);
  border-radius: 18px;
  padding: 32px;

  margin-bottom: 28px; /* 👈 espaçamento entre os cards */

  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: -2px;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(179, 102, 255, 0.6),
    transparent
  );

  background-size: 200% 200%;
  border-radius: 20px;

  opacity: 0;
  z-index: -1;

  animation: borderFlowSoft 10s linear infinite;
  transition: opacity 0.4s ease;
}

.faq-item:hover {
  background: linear-gradient(
    135deg,
    rgba(80, 35, 120, 0.9),
    rgba(40, 15, 70, 0.95)
  );

  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  transform: translateY(-3px);
}


.faq-number {
    font-size: 48px;
    font-weight: bold;
    color: #b366ff;
    min-width: 80px;
    text-align: center;
}

.faq-content h4 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: bold;
}

.faq-content p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #4a1a5c 0%, #6b2d87 100%);
    padding: 80px 0;
}

.author-image {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(179, 102, 255, 0.5);
}

.about-section p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #0d0d0d;
    padding: 40px 0;
    border-top: 2px solid rgba(179, 102, 255, 0.3);
}

.footer p {
    color: #999;
    margin-bottom: 0;
}

.footer-link {
    color: #b366ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #d699ff;
}

/* Responsive */
@media (max-width: 768px) {
    .playbook-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-number {
        font-size: 32px;
        padding: 15px 20px;
        min-width: 70px;
    }
    
    .price-main {
        font-size: 48px;
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
    
    .faq-item {
        flex-direction: column;
        gap: 15px;
    }

    
    
    .faq-number {
        font-size: 36px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section,
.features-section,
.content-section,
.testimonials-section,
.pricing-section,
.guarantee-section,
.faq-section,
.about-section {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}


/* ===== FEATURES PRO ===== */

.features-grid {
  display: grid;
  overflow: visible;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}


.feature-card-pro {
  position: relative;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 60px 35px 40px;
  border: 1px solid rgba(179, 102, 255, 0.25);
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Glow suave */
.feature-card-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(179, 102, 255, 0.25),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card-pro:hover::before {
  opacity: 1;
}

.feature-card-pro:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border-color: rgba(179, 102, 255, 0.6);
}

/* Card central em destaque */
.highlight-card {
  transform: scale(1.04);
  border-color: rgba(179, 102, 255, 0.6);
}

.highlight-card:hover {
  transform: scale(1.06) translateY(-12px);
}

/* Ícone flutuante */
.icon-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #b366ff, #8e4ad8);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 15px 35px rgba(179, 102, 255, 0.5);
}

/* Textos */
.feature-card-pro h3 {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.feature-card-pro p {
  font-size: 16px;
  line-height: 1.6;
  color: #d0c9dc;
}

@media (max-width: 992px) {

  /* 1 card por linha */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* remove destaque com scale no mobile */
  .highlight-card {
    transform: none !important;
  }
}

/* Mobile */
@media (max-width: 768px) {

  /* Card mais compacto */
  .feature-card-pro {
    padding: 46px 24px 32px;
    border-radius: 18px;
    text-align: center;
  }

  /* Título */
  .feature-card-pro h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  /* Texto */
  .feature-card-pro p {
    font-size: 14.5px;
    line-height: 1.6;
  }

  /* Ícone flutuante ajustado */
  .icon-badge {
    width: 52px;
    height: 52px;
    font-size: 22px;
    top: -18px;
    border-radius: 14px;
  }
}
/* Responsivo */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    transform: none;
  }
}

.features-section {
  overflow: visible;
}


.feature-card-pro {
  position: relative;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 60px 35px 40px;
  border: 1px solid rgba(179, 102, 255, 0.25);
  text-align: center;
  transition: all 0.4s ease;
  overflow: visible;
}

.icon-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #b366ff, #8e4ad8);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 15px 35px rgba(179, 102, 255, 0.5);
}

.video-testimonials {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.video-card {
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  border: 2px solid rgba(179,102,255,0.4);
  border-radius: 22px;
  padding: 14px;
  transition: all 0.4s ease;
  max-width: 320px;
  width: 100%;
}

.video-card:hover {
  transform: translateY(-10px);
  border-color: rgba(179,102,255,0.8);
  box-shadow: 0 25px 50px rgba(0,0,0,0.55);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 177%; /* formato vertical (Shorts/Reels) */
  overflow: hidden;
  border-radius: 16px;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

/* Mobile */
@media (max-width: 768px) {
  .video-testimonials {
    gap: 25px;
  }

  .video-card {
    max-width: 100%;
  }

  .video-wrapper {
    padding-top: 160%;
  }
}


/* ===== FAIXA BLACK FRIDAY ALTA CONVERSÃO ===== */

.black-friday-strip {
  position: relative;
  padding: 36px 0;
  text-align: center;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      #120709 0%,
      #2b0e14 30%,
      #550112 50%,
      #2b0e14 70%,
      #120709 100%
    );

  animation: pulseUrgency 2.5s ease-in-out infinite;
}

/* GLOW ANIMADO */
.black-friday-strip::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle,
    rgba(180, 40, 60, 0.45),
    transparent 20%
  );
  animation: glowMove 6s linear infinite;
  pointer-events: none;
}


/* BLACK FRIDAY */
.bf-label {
  color: #ffcc00;
  font-weight: 900;
  letter-spacing: 2px;
}

.bf-text {
  font-size: 22px;
  font-weight: 600;
  color: #f3f3f3;
}

.bf-discount {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(180, 40, 60, 0.8);
}

/* Mobile */
@media (max-width: 768px) {
  .bf-label {
    font-size: 16px;
  }

  .bf-text {
    font-size: 16px;
  }

  .bf-discount {
    font-size: 18px;
  }
}

.pricing-wrapper {
  display: flex;
  gap: 30px;
}
.pricing-wrapper {
  align-items: stretch; /* 🔑 faz os cards terem a mesma altura */
}

/* Desktop */
@media (min-width: 992px) {
  .pricing-wrapper {
    flex-direction: row;
  }
}

/* Mobile */
@media (max-width: 991px) {
  .pricing-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card,
  .pricing-card-featured {
    width: 100%;
    max-width: 420px;
    transform: none !important;
  }
}

/* Remove quebra por scale no mobile */
@media (max-width: 768px) {
  .pricing-card-featured {
    background: linear-gradient(
      160deg,
      rgba(179, 102, 255, 0.15),
      rgba(179, 102, 255, 0.05)
    );
    border: 2px solid rgba(179, 102, 255, 0.6);
  }
}

/* Melhor leitura mobile */
@media (max-width: 576px) {
  .pricing-card h3 {
    font-size: 16px;
  }

  .price-main {
    font-size: 52px;
  }

  .price-old {
    font-size: 26px;
  }

  .price-note,
  .price-note-featured {
    font-size: 14px;
  }

  .payment-info {
    font-size: 11px;
  }
}



/* ===== BONUS SECTION ===== */

/* ===== BONUS SECTION (HARMONIZADA) ===== */

.bonus-section {

  position: relative;
  padding: 140px 0 160px;
  background: none; /* IMPORTANTE */
}

/* Linha divisória elegante */
.bonus-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #b366ff, transparent);
  border-radius: 10px;
}

.bonus-title {
  text-align: center;
  color: #ffffff;
  font-size: 28px;
  max-width: 900px;
  margin: 0 auto 70px;
  line-height: 1.4;
}

.bonus-title {
  color: #ffffff;
}

.bonus-title strong {
  color: #b366ff;
}


/* GRID */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  max-width: 900px;
  margin: 0 auto;
}

/* CARD */
.bonus-card {
  position: relative;
  isolation: isolate;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

/* Glow interno */
.bonus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(179,102,255,0.25),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

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

.bonus-card:hover {
  transform: translateY(-8px);
  border-color: rgba(179,102,255,0.6);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

/* TÍTULO */
.bonus-label {
  color: #b366ff;
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 10px;
}

/* TEXTO */
.bonus-card p {
  color: #d0c9dc;
  font-size: 16px;
  line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .bonus-title {
    font-size: 21px;
    margin-bottom: 45px;
    padding: 0 15px;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .bonus-card {
    padding: 35px 28px;
  }
}



.pricing-section {
  padding-bottom: 5px;
}

.bonus-section {
  position: relative;
  padding: 120px 0;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(42, 24, 61, 0.85) 30%,
      rgba(26, 16, 38, 0.95) 60%,
      rgba(11, 11, 11, 1) 100%
    );
}

.guarantee-section {
  margin-top: 0;
  padding-top: 120px;
}


/* ===== GUARANTEE SECTION (FIGMA MATCH) ===== */

/* ===== GUARANTEE SECTION COM BACKGROUND + ENGENHAGEM ===== */
.guarantee-section-figma {
  position: relative;
  padding: 120px 0;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.85) 0%,
      rgba(20,10,35,0.70) 35%,
      rgba(60,30,90,0.55) 70%,
      rgba(60,30,90,0.35) 100%
    ),
    url("../img/fundo_03.png");

  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}


.guarantee-section-figma::before,
.guarantee-section-figma::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    #b366ff,
    transparent
  );
  opacity: 0.9;
}

.guarantee-section-figma::before {
  top: 0;
}

.guarantee-section-figma::after {
  bottom: 0;
}

.guarantee-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px; /* TEXTO | ENGRENAGEM */
  align-items: center;
  gap: 80px;
}


.gear-image {
  width: 100%;
  max-width: 380px;
  margin-left: 20px;
  filter:
    drop-shadow(0 30px 60px rgba(0,0,0,0.75))
    drop-shadow(0 0 60px rgba(179,102,255,0.35));
}

.guarantee-text p {
  color: rgba(255,255,255,0.85);
}

.guarantee-text .lead {
  color: #ffffff;
}

.guarantee-text h2 {
  max-width: 720px;
}

.guarantee-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* cola no texto */
}

@media (max-width: 991px) {
  .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .guarantee-visual {
    justify-content: center;
  }

  .gear-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    filter:
      drop-shadow(0 22px 45px rgba(0,0,0,0.75))
      drop-shadow(0 0 35px rgba(179,102,255,0.22));
  }
} /* ← ESSA CHAVE É CRÍTICA */



.features-subtitle {
  display: block;
  text-align: center;

  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;

  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.6px;
  line-height: 1.4;

  color: #f1ecfb;
  text-transform: uppercase;
}

.features-subtitle strong {
  color: #b366ff;
  font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
  .features-subtitle {
    font-size: 16px;
    margin-bottom: 45px;
    padding: 0 15px;
  }
}

/* ===== CONTENT CARDS PRO ===== */

/* ===== FORMULÁRIOS ÚTEIS – CARD DESTAQUE ===== */

/* Glow suave no fundo */
.content-card-pro.wide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(179, 102, 255, 0.35),
    transparent 65%
  );
  opacity: 0.9;
  pointer-events: none;
}

/* Título mais forte */
.content-card-pro.wide h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 28px;
  color: #b366ff;
}

/* Lista em grid elegante */
.content-card-pro.wide ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 30px;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto;
}

/* Itens */
.content-card-pro.wide ul li {
  width: 100%;
  max-width: 220px;
  text-align: left;
  font-size: 16px;
  padding-left: 26px;
}

/* Mobile */
@media (max-width: 768px) {
  .content-card-pro.wide {
    padding: 45px 30px;
  }

  .content-card-pro.wide ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .content-card-pro.wide ul li {
    max-width: 100%;
    font-size: 15px;
  }
}



/* ===== CONTENT GRID MODERNO ===== */

.content-grid {
  margin-top: 60px;
}

/* Card principal */
.content-card-pro {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 45px 40px;
  border: 1px solid rgba(179, 102, 255, 0.35);
  transition: all 0.45s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Glow interno */
.content-card-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(179, 102, 255, 0.28),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
}

.content-card-pro:hover::before {
  opacity: 1;
}

/* Hover premium */
.content-card-pro:hover {
  transform: translateY(-10px);
  border-color: rgba(179, 102, 255, 0.75);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65);
}

/* Título */
.content-card-pro h4 {
  color: #b366ff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 22px;
}

/* Lista */
.content-card-pro ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-card-pro ul li {
  color: #e0d9f2;
  font-size: 16px;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

/* Check elegante */
.content-card-pro ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: 800;
}


/* Mobile */
@media (max-width: 768px) {
  .content-card-pro {
    padding: 35px 28px;
  }

  .content-card-pro h4 {
    font-size: 18px;
  }

  .content-card-pro ul li {
    font-size: 15px;
  }

  .content-card-pro.wide {
    padding: 38px 30px;
  }
}

/* Lista alinhada e fluida */

/* Ajuste dos itens */
.content-card-pro.wide ul li {
  padding-left: 22px;
  text-align: left;
  max-width: 320px;
  width: 100%;
}

/* Desktop: mantém elegante e compacto */
@media (min-width: 992px) {
  .content-card-pro.wide {
    padding: 50px;
  }
}

/* Mobile: remove exageros */
@media (max-width: 768px) {
  .content-card-pro.wide {
    padding: 36px 28px;
  }

  .content-card-pro.wide ul li {
    font-size: 15px;
  }
}


/* ===== DOCUMENTS SECTION (ESTRUTURA PROFISSIONAL) ===== */

.documents-section {
  position: relative;
  padding: 120px 0;

  background:
    radial-gradient(
      circle at left center,
      rgba(90, 26, 115, 0.35) 0%,
      rgba(11, 11, 11, 0.95) 55%
    ),
    radial-gradient(
      circle at right center,
      rgba(90, 26, 115, 0.35) 0%,
      rgba(11, 11, 11, 1) 60%
    ),
    linear-gradient(
      180deg,
      #0b0b0b 0%,
      #0b0b0b 100%
    );
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Card padrão */
.document-card {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );
  border-radius: 26px;
  padding: 45px 40px;
  border: 1px solid rgba(179,102,255,0.45);
  box-shadow: 0 0 40px rgba(179,102,255,0.25);
}

/* Título */
.document-card h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* Texto */
.document-card p {
  color: #cfc7db;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Lista */
.document-card ul {
  list-style: none;
  padding: 0;
}

.document-card ul li {
  color: #bdb6c8;
  font-size: 14px;
  margin-bottom: 8px;
}

/* Card largo */
.document-card.wide {
  grid-column: span 2;
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .documents-grid {
    grid-template-columns: 1fr;
  }

  .document-card.wide {
    grid-column: span 1;
  }
}

/* ===== BONUS ABAIXO DO PREÇO ===== */

.pricing-bonus {
  margin-top: 50px;
  text-align: center;
}

.pricing-bonus-title {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  max-width: 820px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.pricing-bonus-title strong {
  color: #b366ff;
}

.pricing-bonus-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pricing-bonus-card {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(179,102,255,0.4);
  border-radius: 14px;
  padding: 22px 26px;
  max-width: 300px;
  width: 100%;
}

.pricing-bonus-card h4 {
  color: #b366ff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-bonus-card p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .pricing-bonus-title {
    font-size: 15px;
    padding: 0 12px;
  }
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ===== CARD LARGO FINAL (SEM CONFLITO) ===== */

/* garante que o grid não estique além dos cards superiores */
.content-grid {
  justify-items: center;
}

/* força limite real do card financeiro */
.content-card-pro.wide {
  width: 100% !important;
  max-width: 960px !important;   /* ⬅ limite VISUAL correto */
  margin-left: auto !important;
  margin-right: auto !important;
}

/* garante alinhamento interno */
.content-card-pro.wide > * {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* MOBILE */
@media (max-width: 768px) {
  .content-card-pro.wide {
    max-width: 100% !important;
  }
}


.container {
  max-width: 1200px;
}


.author-section {
  position: relative;
}

.author-section {
  background:
    linear-gradient(
      180deg,
      #1a0f24 0%,
      #241233 35%,
      #2e1640 65%,
      #14091c 100%
    );
  padding: 120px 0;
}


.author-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

/* IMAGEM */
.author-image-wrapper img {
  max-width: 550px;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.65));
}

/* TEXTO */
.author-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 30px;
}

.author-content h2 span {
  color: #b366ff;
}

.author-content p {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 720px;
}

/* BOTÃO */
.author-cta {
  margin-top: 30px;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 10px;
}

/* MOBILE */
@media (max-width: 991px) {
  .author-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .author-image-wrapper img {
    margin: 0 auto 40px;
    max-width: 300px;
  }

  .author-content p {
    margin-left: auto;
    margin-right: auto;
  }
}


.footer-clean {
  background: #0b0b0b;
  padding: 40px 0;
}

.footer-clean p {
  color: #bfbfbf;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: #b366ff;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}


.playbook-section {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at center,
      rgba(179, 102, 255, 0.28),
      rgba(45, 15, 70, 0.75),
      #0b0b0b 75%
    );
}

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

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 60px;
}

.section-title span {
  color: #c084fc;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.playbook-card {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.85),
    rgba(0, 0, 0, 0.9)
  );
  border: 1px solid rgba(192, 132, 252, 0.6);
  border-radius: 20px;
  padding: 34px;
  color: #f1f1f1;
  box-shadow:
    0 0 30px rgba(192, 132, 252, 0.25),
    inset 0 0 30px rgba(192, 132, 252, 0.08);
  backdrop-filter: blur(6px);
  transition: all 0.35s ease;
}

.playbook-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 55px rgba(192, 132, 252, 0.45),
    inset 0 0 40px rgba(192, 132, 252, 0.12);
}

.playbook-card h3 {
  font-size: 18.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  text-shadow: 0 0 12px rgba(192, 132, 252, 0.6);
}

.playbook-card p,
.playbook-card li {
  font-size: 14.5px;
  line-height: 1.65;
  color: #eaeaea;
}

.playbook-card ul {
  padding-left: 18px;
  margin-bottom: 16px;
}

.playbook-card ul li {
  font-size: 14px;
  margin-bottom: 6px;
}

.playbook-card .extra {
  font-size: 13.5px;
  opacity: 0.9;
  line-height: 1.6;
}

.playbook-card.full {
  grid-column: span 2;
  text-align: center;
}

.playbook-card.full .center {
  text-align: center;
}

.cta-btn {
  display: block;
  width: fit-content;
  margin: 60px auto 0;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: #ffffff;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.6);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .playbook-card.full {
    grid-column: span 1;
  }
}

.bonus-section {
  padding: 120px 20px;
  position: relative;
}

.bonus-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(192, 132, 252, 0.18),
    transparent 65%
  );
  pointer-events: none;
}

.bonus-title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: #eaeaea;
  max-width: 900px;
  margin: 0 auto 70px;
  line-height: 1.4;
}

.bonus-title span {
  display: block;
  margin-top: 12px;
  font-weight: 700;
  color: #c084fc;
  text-shadow: 0 0 12px rgba(192, 132, 252, 0.6);
}

.bonus-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.bonus-card {
  background: linear-gradient(
    145deg,
    rgba(25, 25, 25, 0.9),
    rgba(0, 0, 0, 0.95)
  );
  border: 1px solid rgba(192, 132, 252, 0.7);
  border-radius: 22px;
  padding: 42px 36px;
  max-width: 420px;
  text-align: center;
  box-shadow:
    0 0 45px rgba(192, 132, 252, 0.35),
    inset 0 0 35px rgba(192, 132, 252, 0.12);
  transition: all 0.35s ease;
}

.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 70px rgba(192, 132, 252, 0.6),
    inset 0 0 45px rgba(192, 132, 252, 0.2);
}

.bonus-tag {
  display: inline-block;
  background: rgba(192, 132, 252, 0.15);
  color: #c084fc;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.bonus-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 0 14px rgba(192, 132, 252, 0.7);
}

.bonus-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #e5e5e5;
}

/* MOBILE */
@media (max-width: 768px) {
  .bonus-title {
    font-size: 24px;
  }

  .bonus-card {
    padding: 34px 28px;
  }
}

@keyframes pulseUrgency {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.15);
  }
}

@keyframes glowMove {
  0% {
    transform: translateX(-30%) translateY(0);
  }
  50% {
    transform: translateX(30%) translateY(-10%);
  }
  100% {
    transform: translateX(-30%) translateY(0);
  }
}

@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

@keyframes borderFlowSoft {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 18px;
}

.hero-subtitle strong {
  color: #ffffff;
  font-weight: 700;
}

/* PLAYBOOK DE */
.hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 18px;
}

.hero-subtitle strong {
  color: #ffffff;
  font-weight: 700;
}

/* PLAYBOOK DE */
.hero-title {
  margin-top: 55px;
  margin-bottom: 8px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
}

/* DOCUMENTOS DO ESCRITÓRIO DE ADVOCACIA */
.playbook-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 45px;
}

.playbook-title .highlight {
  color: #b366ff;
}

/* BOTÃO */
.cta-button {
  max-width: 420px;
  font-size: 16px;
  padding: 18px 32px;
  border-radius: 10px;
}

/* MOBILE – mantém igual proporcionalmente */
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 16px;
  }

  .hero-title {
    font-size: 26px;
    margin-top: 40px;
  }

  .playbook-title {
    font-size: 36px;
  }

  .cta-button {
    max-width: 100%;
  }
}


.hero-section .hero-subtitle:first-of-type {
  color: #ffffff;
  font-weight: 400;
}

/* SEGUNDA FRASE – cinza */
.hero-section .hero-subtitle:nth-of-type(2) {
  color: rgba(255, 255, 255, 0.65);
}

/* DESTAQUE DENTRO DA SEGUNDA FRASE */
.hero-section .hero-subtitle:nth-of-type(2) strong {
  color: #c0bcbc;
  font-weight: 800;
}

.playbook-title .highlight {
  color: rgb(190, 134, 236);
  font-weight: 900;
}


.playbook-title {
  font-size: 52px;      /* tamanho base */
  line-height: 1.15;
}


.playbook-title {
  letter-spacing: 0.5px;
}

.playbook-title .highlight{
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: inline;
  color: #dc82f8;
}

@media (max-width: 768px) {
   .playbook-section {
    padding-top: 60px;   /* era 120px */
  }

  .hero-section {
    min-height: auto;
    padding: 70px 0 100px;
    background-color: #000;

    background-image:
      linear-gradient(
        180deg,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.65) 30%,
        rgba(0,0,0,0.35) 55%,
        rgba(0,0,0,0.75) 85%,
        rgba(0,0,0,0.95) 100%
      ),
      url("../img/Algema_PNG (1).png");

    background-repeat: no-repeat;

    text-align: center;
     background-position: 100% 100%;
     background-size: 210%;
  }

  .hero-section .col-lg-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    max-width: 340px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 14px;
  }

  .playbook-title {
    font-size: 32px;
    line-height: 1.15;
    margin: 26px 0 34px;
  }

  .playbook-title br {
    display: none;
  }

  .cta-button {
    font-size: 16px;
    padding: 16px 26px;
    max-width: 320px;
  }
}
