/* ================= VARIABLES (Somente Dark) ================= */

.text-white {
color: rgb(187 187 187) !important;
}
:root {
  --primary: #66318c;
  --primary-glow: #8e4ec2;
  --gold: #ffc107;
  --gold-dark: #bfa117;
  --gray: #6c757d;
  
  /* Cores do Card Lançamento (Teal/Petróleo) */
  --teal-dark: #00acc1;   
  --teal-accent: #26c6da; 
  
  /* MODO ESCURO (Padrão e Único) */
  --bg-dark: #0b0c15; 
  --bg-panel: #151621;
  --text-main: #ffffff;
  --text-muted: #e0e0e0; 
  --border-color: rgba(255,255,255,0.15);
  --shadow-color: rgba(0,0,0,0.15); 
  --footer-bg: #050507;
  --dot-bg: #0b0c15; 
}

body {
  font-family: "Arial", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}

/* ================= FUNDO GLOBAL ================= */
.top-spotlight-extended {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1; pointer-events: none;
  background-image: radial-gradient(ellipse at top center, rgba(102, 49, 140, 0.35) 0%, rgba(102, 49, 140, 0.02) 60%, transparent 80%);
  background-size: 100% 100%;
  background-attachment: fixed;
}

/* ================= NAVBAR ================= */
.navbar-custom {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: transparent; border-bottom: 1px solid transparent;
  transition: all 0.4s ease; padding: 1.5rem 0;
}
.navbar-custom.scrolled {
  background: rgba(11, 12, 21, 0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding: 0.8rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ESCONDE O MENU HAMBÚRGUER (Não usado por enquanto) */
.navbar-toggler {
  display: none !important;
}

.btn-outline-custom {
  border: 1px solid rgba(255,255,255,0.2); color: var(--text-main); transition: 0.3s;
}
.btn-outline-custom:hover {
  border-color: var(--primary); color: var(--primary); background: rgba(102, 49, 140, 0.1);
}

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative; padding: 9rem 0 4rem; text-align: center;
}
.hero-title {
  font-weight: 800; font-size: 3.2rem; letter-spacing: -1px;
  margin-bottom: 1.5rem; text-shadow: 0 10px 30px rgba(0,0,0,0.3);
  color: var(--text-main);
}

.hero-subtitle {
  font-size: 1.15rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.6;
}

.hero-badge-pill {
  display: inline-block; padding: 0.5rem 1rem; border-radius: 9px;
  background: rgba(102, 49, 140, 0.2); border: 1px solid rgba(102, 49, 140, 0.4);
  color: #e9d5ff; font-weight: 700; margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(102,49,140,0.2);
}

.btn-primary-glow {
  background: var(--primary); border: none; color: #fff !important; font-weight: 700;
  padding: 14px 40px; box-shadow: 0 4px 14px 0 rgba(102, 49, 140, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary-glow:hover {
  background: var(--primary-glow); transform: translateY(-2px); color: #fff; box-shadow: 0 6px 20px rgba(102, 49, 140, 0.6);
}

.text-solid-highlight { font-size:2rem; display: block; color: #a855f7; }

body {
    background: linear-gradient(
            rgba(0, 0, 0, 0.91),   /* topo */
            rgba(0, 0, 0, 0.91)    /* base */
        ),
        url("/static/img/hero-bg.jpg");
    /* background-size: cover; */
    background-position: center;
    /* background-repeat: no-repeat; */
    /* background-image: url("/static/img/hero-bg.jpg"); */
    /* background-size: cover; */
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    }
.hr-glow {
  border: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 0 auto; width: 80%; max-width: 800px;
}

/* ================= CARDS SECTION ================= */
.cards-section { padding: 2rem 0 6rem; position: relative; z-index: 2; }
.section-header h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 1rem; color: var(--text-main); }

.pricing-card {
  background: var(--bg-panel); border-radius: 20px; overflow: hidden;
  position: relative; height: 100%; display: flex; flex-direction: column;
  border: 1px solid var(--border-color); box-shadow: 0 10px 30px var(--shadow-color);
  transition: transform 0.3s ease; 
}

/* DESTAQUE FUNDADOR (Estilo Base) */
.card-featured { 
  z-index: 10; 
  border: 1px solid rgba(255, 193, 7, 0.6); 
  box-shadow: 0 15px 40px rgba(0,0,0,0.25); 
}

/* CABEÇALHO */
.card-header-block { display: flex; flex-direction: column; align-items: center; padding: 1rem 1.5rem 1.0rem; text-align: center; border-bottom: 1px solid var(--border-color); }
.card-header-block h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 1rem; margin-top: 0; width: auto; color: var(--text-main); }
.status-pill { display: inline-block; padding: 5px 18px; border-radius: 30px; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }

.hero-container p.mt-3 {
margin:6px !important;
}
/* CORPO */
.card-body-block { padding: 1rem 1.5rem; display: flex; flex-direction: column; flex-grow: 1; height: 100%; }
.check-list { list-style: none; padding: 0; margin: 0 0 1rem 0; flex-grow: 1; }
.check-list li { margin-bottom: 0.5rem; display: flex; align-items: start; gap: 12px; font-size: 0.95rem; color: var(--text-main); line-height: 1.4; }
.highlight-item { color: var(--gold); font-weight: 700; } 

/* BOTOES */
.btn-card-action { width: 100%; padding: 14px; border-radius: 10px; font-weight: 700; text-align: center; text-decoration: none; border: none; display: block; transition: all 0.3s; margin-top: auto; }
.btn-card-action:hover { filter: brightness(1.15); color: #fff; transform: translateY(-2px);}
.btn-card-ghost { width: 100%; padding: 14px; border-radius: 10px; font-weight: 600; background: rgba(255,255,255,0.05); color: var(--text-main); border: 1px solid var(--border-color); margin-top: auto; }

/* CORES DOS CARDS */
/* Roxo */
.card-purple .card-header-block { background: linear-gradient(180deg, rgba(102, 49, 140, 0.35) 0%, rgba(102, 49, 140, 0) 100%); }
.card-purple .status-pill { background: var(--primary); color: #fff; box-shadow: 0 4px 15px rgba(102,49,140,0.4); }
.card-purple .btn-card-action { background: var(--primary); color: #fff !important; }
.card-purple .check-list li i { color: #d8b4fe; }

/* Gold */
.card-gold .card-header-block { background: linear-gradient(180deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0) 100%); }
.card-gold h3 { color: var(--gold); }
.card-gold .status-pill { background: var(--gold); color: #000; box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4); }
.card-gold .btn-card-action { background: var(--gold); color: #000; animation: pulse-gold 2s infinite; }
.card-gold .check-list li i { color: var(--gold); }

@keyframes pulse-gold {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
  50% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

/* Teal */
.card-teal { border: 1px solid rgba(38, 198, 218, 0.5); }
.card-teal .card-header-block { background: linear-gradient(180deg, rgba(38, 198, 218, 0.25) 0%, rgba(0, 0, 0, 0) 100%); }
.card-teal .status-pill { background: var(--teal-accent); color: #fff; box-shadow: 0 0 15px rgba(38, 198, 218, 0.5); border: none;}
.card-teal .check-list li i { color: var(--teal-accent); }
.card-teal .btn-card-ghost { border-color: rgba(38, 198, 218, 0.4); color: #fff; background: rgba(0, 172, 193, 0.15); }

/* Cadeado */
.card-teal .card-body-block { position: relative; overflow: hidden; }
.lock-icon-bg { position: absolute; top: 55%; left: 50%; transform: translate(-50%, -50%) rotate(-15deg); font-size: 8rem; color: var(--teal-accent); opacity: 0.05; pointer-events: none; z-index: 0; }

/* FAIXAS */
.ribbon { position: absolute; top: 0; right: 0; width: 90px; height: 90px; overflow: hidden; }
.ribbon span { position: absolute; top: 18px; right: -28px; width: 120px; transform: rotate(45deg); text-align: center; font-weight: 800; font-size: 0.75rem; box-shadow: 0 2px 10px rgba(0,0,0,0.3); padding: 5px 0; letter-spacing: 1px; color: #fff; }
.ribbon-gold span { background: var(--gold); color: #000 !important; }
.ribbon-purple span { background: var(--primary); }
.ribbon-teal span { background: var(--teal-accent); }

/* --- CORREÇÃO DE RESPONSIVIDADE DOS CARDS --- */
/* Só aplica o zoom em telas grandes (Desktop) */
@media (min-width: 992px) {
  .card-featured {
    transform: scale(1.05); 
  }

  .col-lg-4 {
    margin-bottom: 24px;
    width: 29.333333%;!important
  }
}

/* Em Tablets e Celulares, remove zoom e adiciona espaçamento */
@media (max-width: 991px) {
  .card-featured { 
    transform: none; 
    margin: 0; 
  }
  
  /* Espaço entre os cards empilhados */
  .col-lg-4 {
    margin-bottom: 24px;
  }
  
  /* Remove espaço do último para não sobrar margem */
  .col-lg-4:last-child {
    margin-bottom: 0;
  }
}

/* ================= TIMELINE SECTION ================= */
.timeline-section { position: relative; padding-top: 5rem; padding-bottom: 5rem; background: transparent; overflow: visible; }
.timeline-new-wrapper { position: relative; margin-top: 3rem; }

/* Linha Animada */
.timeline-global-line {
  position: absolute; top: 171px; left: 16%; right: 16%; height: 3px;
  width: 0%; 
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 50%, var(--teal-accent) 100%);
  -webkit-mask-image: linear-gradient(to right, #000 50%, transparent 50%);
  mask-image: linear-gradient(to right, #000 50%, transparent 50%);
  -webkit-mask-size: 15px 100%; mask-size: 15px 100%; -webkit-mask-repeat: repeat-x; mask-repeat: repeat-x;
  z-index: 0; opacity: 0.8; border-radius: 4px;
  transition: width 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline-global-line.lines-go { width: 68%; }

.timeline-col { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; padding: 0 15px; }
.timeline-header { text-align: center; margin-bottom: 1.5rem; display: flex; flex-direction: column; align-items: center; min-height: 140px; justify-content: flex-start; }

.phase-badge { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; font-weight: 800; font-size: 1.2rem; margin-bottom: 10px; transition: transform 0.3s; }
.phase-title { font-size: 1.5rem; font-weight: 800; margin: 0; color: #fff; }
.phase-subtitle { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-top: 5px; opacity: 0.8; }

.timeline-divider-point { width: 14px; height: 14px; border-radius: 50%; margin-bottom: 1.5rem; position: relative; z-index: 2; box-shadow: 0 0 0 8px var(--bg-dark); }

.timeline-body ul { list-style: none; padding: 0; margin: 0; text-align: left; }
.timeline-body li { margin-bottom: 10px; font-size: 0.95rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px; }
.timeline-body li::before { content: '\f00c'; font-family: "Font Awesome 6 Free"; font-weight: 900; margin-top: 3px; }

/* Estilos de Fase */
.item-purple .phase-badge { background: rgba(102, 49, 140, 0.2); color: #d8b4fe; border: 1px solid var(--primary); box-shadow: 0 0 15px var(--primary); }
.item-purple .phase-title, .item-purple .phase-subtitle { color: #d8b4fe; }
.item-purple .timeline-divider-point { background: var(--primary); box-shadow: 0 0 15px var(--primary), 0 0 0 8px var(--bg-dark); }
.item-purple li::before { color: var(--primary); }

.item-gold .phase-badge { background: rgba(255, 193, 7, 0.2); color: var(--gold); border: 1px solid var(--gold); transform: scale(1.2); box-shadow: 0 0 25px var(--gold); }
.item-gold .phase-title { color: var(--gold); font-size: 1.8rem; }
.item-gold .phase-subtitle { color: var(--gold); }
.item-gold .timeline-divider-point { background: var(--gold); box-shadow: 0 0 20px var(--gold), 0 0 0 8px var(--bg-dark); width: 18px; height: 18px; top: -2px; }
.item-gold li::before { color: var(--gold); }

.item-teal .phase-badge { background: rgba(0, 67, 79, 0.2); color: #26c6da; border: 1px solid #26c6da; box-shadow: 0 0 15px var(--teal-accent); }
.item-teal .phase-title, .item-teal .phase-subtitle { color: #80deea; }
.item-teal .timeline-divider-point { background: #00acc1; box-shadow: 0 0 15px #00acc1, 0 0 0 8px var(--bg-dark); }
.item-teal li::before { color: #00acc1; }

/* ================= CTA & FOOTER ================= */
.cta-section { padding-top: 0rem; padding-bottom: 8rem; background: transparent; position: relative; }

.site-footer {
  background: var(--footer-bg); 
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-color); 
  font-size: 0.9rem; position: relative; z-index: 1;
}
.footer-title { color: var(--text-main); font-weight: 700; margin-bottom: 1.2rem; font-size: 1rem; }

/* Formatação da lista do rodapé */
.footer-links { list-style: none !important; padding: 0 !important; margin: 0; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: all 0.2s; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }

/* Ícones Sociais */
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 36px; height: 36px; background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: #fff; text-decoration: none; transition: 0.2s;
}
.social-icons a:hover { background: var(--primary); transform: translateY(-3px); color: #fff !important; }

.status-dot { width: 8px; height: 8px; background-color: #00c853; border-radius: 50%; display: inline-block; box-shadow: 0 0 6px #00c853; }
.bottom-glow {
  position: absolute; bottom: -150px; left: 50%; transform: translateX(-50%);
  width: 80%; height: 500px;
  background: radial-gradient(ellipse at bottom, rgba(102, 49, 140, 0.35) 0%, transparent 70%);
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.rounded-pill {
    border-radius: 10px !important;
    padding: 10px 23px !important;
    }
/* ================= AJUSTES DE RESPONSIVIDADE & MOBILE ================= */

@media (max-width: 991px) {
  /* Tamanho da fonte do Hero no mobile */
  .hero-title { font-size: 2.2rem; }
  
  /* Tamanho reduzido do subtítulo da seção */
  .section-header h2 {
    font-size: 1.75rem; 
  }

  /* --- RODAPÉ ORGANIZADO (CENTRALIZADO) --- */
  .site-footer {
    text-align: center;
    padding-top: 3rem;
  }

  /* Centralizar o Logo e texto */
  .site-footer .d-flex.align-items-center {
    justify-content: center;
  }
  
  /* Centralizar Ícones Sociais */
  .social-icons {
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }

  /* Espaçamento entre as colunas de links */
  .site-footer .col-6 {
    margin-bottom: 2rem;
  }
  
  .footer-title {
    margin-bottom: 1rem;
    color: var(--primary-glow); /* Destaque leve */
  }

  /* Parte inferior do rodapé */
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
  }
  
  .footer-bottom .d-flex {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Ajustes da Linha do Tempo no Mobile */
  .timeline-global-line {
    top: 0; left: 24px; bottom: 0; width: 3px; height: 0%;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--gold) 50%, var(--teal-accent) 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 50%, transparent 50%);
    mask-image: linear-gradient(to bottom, #000 50%, transparent 50%);
    -webkit-mask-size: 100% 15px; mask-size: 100% 15px; -webkit-mask-repeat: repeat-y; mask-repeat: repeat-y;
    transition: height 2.5s ease-out;
  }
  .timeline-global-line.lines-go { width: 3px; height: 100%; }

  .timeline-col { flex-direction: row; flex-wrap: wrap; text-align: left; padding-left: 50px; margin-bottom: 40px; }
  .timeline-header { flex-direction: column; align-items: flex-start; width: 100%; margin-bottom: 10px; min-height: auto; }
  .phase-badge { display: none; } 
  .timeline-divider-point { position: absolute; left: 19px; top: 5px; }
  .item-gold .timeline-divider-point { left: 17px; top: 5px; } 
  .timeline-body ul { text-align: left; }
}