@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.hidden { display: none !important; }


@keyframes flutuar {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0);
    }
  }

  @keyframes girar {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  @keyframes tremer {
    0% { transform: translateX(0); }
    20% { transform: translateX(-3px); }
    40% { transform: translateX(3px); }
    60% { transform: translateX(-3px); }
    80% { transform: translateX(3px); }
    100% { transform: translateX(0); }
  }
  
  
  
  

/* Font Awesome — forçar font-display swap para evitar FOIT */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-display: swap;
}
@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-display: swap;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    overflow-x: hidden;
    max-width: 100%;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Inter", sans-serif;
} 

header {
    position: relative;
    min-height: 100vh;
    background-color: #1C2D4A;
    background-image:
        radial-gradient(circle at top left, rgba(99, 136, 200, 0.4) 0%, transparent 35%),
        radial-gradient(circle at bottom right, rgba(99, 136, 200, 0.4) 0%, transparent 35%);
    background-repeat: no-repeat;
    background-size: cover;
}

header #navbar{
    display: flex;
    justify-content: space-around;
    margin-top: none;
    align-items: center;
    padding: 25px 0 20px 0;
    background-color: rgba(28, 45, 74, 0.4); 
    backdrop-filter: blur(10px);             
    -webkit-backdrop-filter: blur(10px);     
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
}

/*header #navbar .logo {
    font-weight: bold;
    font-size: 1.25rem;
    color: #00FF7F;
    cursor: pointer;
}

header #navbar .logo span{
    color: #EAEAEA;
}*/

header #navbar .logo img {
    width: 100%;
    max-width: 200px;
    cursor: pointer;
}

#navbar ul {
    display: flex;
    
    
}

#navbar ul li a{
    color: #EAEAEA;
    display: flex;
    padding: 10px;
    
}

#navbar ul li a:hover{
    text-decoration: underline;
    
}

#navbar .botao {
    background-color: #00FF7F;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.2s ;
}

#navbar .botao a {
    color: #1C2D4A;
    font-weight: bold;
}

#navbar .botao:hover{
    background-color: #EAEAEA;
    
}

#hero {
    padding: 8rem 6rem;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

#hero .hero-text{
    flex: 1;
    text-align: left;
}

.hero-text h1{
    font-size: 2rem;
    font-weight: 600;
    color: #EAEAEA;
}

.hero-text span{
    font-weight: 900;
}

.hero-text p{
    font-size: 1.125rem;
    font-weight: 200;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #EAEAEA;
}

.hero-text a{
    font-size: 1.125rem;
    font-weight: 400;
    padding-top: 1rem;
    color: #00FF7F;
    text-decoration: underline;
    cursor: pointer;
    transition: 0.2s;
}

.hero-text a:hover{
    color: #EAEAEA;

}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: flutuar 3s ease-in-out infinite;
}

.hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
}

/* Círculo rotativo */
.circulo-rotativo {
    position: absolute;
    width: 100%;
    max-width: 300px; /* Ajuste para o tamanho desejado */
    aspect-ratio: 1 / 1;
    border: 5px dashed #00FF7F;
    border-radius: 50%;
    z-index: 1;
    animation: girar 30s linear infinite;
}

.trust-bar {
    background: #fff;
    border-bottom: 1px solid #efefef;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 14px 24px;
}

.trust-bar .trust-divider {
    width: 1px;
    height: 36px;
    background: #e0e0e0;
    flex-shrink: 0;
}

.trust-bar .trust-lgpd  { width: 120px; }
.trust-bar .trust-selo  { width: 64px;  }
.trust-bar .trust-ssl   { width: 80px;  }


main{
    background-color: #f7f7f7;
    min-height: 100vh;
    width: 100%;
    padding: 150px 0 80px 0;

}

main .main-content{
    margin: 15px 0 0 0;
    display: inline;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.main-description {
    margin-bottom: 40px;
}

main .main-content .main-description h2{
    color: #1C2D4A;
    font-size: 2rem;
    margin-bottom: 5px;
}

main .main-content .main-description p{
    color: #555555;
    font-size: 1.125rem;
}

.box-descripiton {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px; /* espaço entre os cards */
    flex-wrap: wrap; /* permite quebrar linha em telas menores */
    margin-bottom: 30px;
}

.description {
    position: relative;
    border: 1px solid #ccc; 
    width: 280px;
    height: 280px;
    padding: 40px 20px 20px 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00FF7F;
    color: #1C2D4A;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    font-size: 1.2rem;
    z-index: 5; 
}

.description h2{
    color: #CCC;
    font-size: 2rem;
}

.description h3 {
    color: #1C2D4A;
}


.description:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.description h3:first-child {
    font-size: 2rem;
    color: #1C2D4A;
    margin-bottom: 10px;
}

.description h3:nth-child(2) {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.description p {
    font-size: 1rem;
    color: #555555;
}

.botao-main {
    margin-top: 50px;
}

.botao-main .contratar {
    color: #1C2D4A;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 15px 30px;
    background: #00FF7F;
    border-radius: 30px;
    justify-content: center;
    transition: 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

    

.botao-main .contratar:hover {
    color: #00FF7F;
    background: #f7f7f7;
    border: 2px solid #00FF7F ;
    box-shadow: none;
    
}

.precos {
    min-height: 100vh;
    width: 100%;
    background-color: #1C2D4A;
    background-image:
        radial-gradient(circle at top left, rgba(99, 136, 200, 0.4) 0%, transparent 30%),
        radial-gradient(circle at top right, rgba(99, 136, 200, 0.4) 0%, transparent 30%),
        radial-gradient(circle at bottom left, rgba(99, 136, 200, 0.2) 0%, transparent 15%),
        radial-gradient(circle at bottom right, rgba(99, 136, 200, 0.2) 0%, transparent 15%);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
}

.preco-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.preco-descricao{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.preco-descricao h2{
    font-size: 2rem;
    color: #f7f7f7;
    margin-bottom: 5px;
}

.preco-descricao i{
    font-size: 3rem;
    margin-left: 10px;
    
}

.preco-descricao span{
    color: #00FF7F;
}

.preco-descricao .precisos{
    background: linear-gradient(
    90deg,
    #0070D8 0%,
    #66ccff 20%,
    #ffffff 40%,
    #66ccff 60%,
    #0070D8 80%
  );
  background-size: 200%;
  background-position: -100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: brilho-azul 2s ease-in-out infinite;
  animation-delay: 5s;
  animation-iteration-count: infinite;
}


@keyframes brilho-azul {
    0% {
      background-position: -100%;
    }
    50% {
      background-position: 0%;
    }
    100% {
      background-position: 100%;
    }
  }

.preco-descricao p{
    font-weight: 200;
    font-size: 1.125rem;
    color: #F1F1F1;
    margin-bottom: 40px;
}

/* ── Banner bônus primeira recarga ── */
.bonus-banner {
    margin-bottom: 32px;
}
.bonus-banner-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #0f2740 0%, #1C2D4A 100%);
    border: 1px solid rgba(0, 255, 127, 0.25);
    border-radius: 14px;
    padding: 18px 24px;
    position: relative;
    overflow: hidden;
}
.bonus-banner-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(0,255,127,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.bonus-banner-icon {
    font-size: 1.8rem;
    color: #00FF7F;
    flex-shrink: 0;
    animation: bonusPulse 2.5s ease-in-out infinite;
}
@keyframes bonusPulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.15); }
}
.bonus-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.bonus-banner-text strong {
    color: #00FF7F;
    font-size: 1rem;
    font-weight: 700;
}
.bonus-banner-text span {
    color: #94a3b8;
    font-size: 0.83rem;
}
.bonus-banner-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #00FF7F;
    color: #0f2740;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.18s, transform 0.18s;
    flex-shrink: 0;
}
.bonus-banner-btn:hover {
    background: #00e070;
    transform: translateY(-1px);
}
@media (max-width: 700px) {
    .bonus-banner-inner { flex-direction: column; text-align: center; padding: 16px; }
    .bonus-banner-text  { align-items: center; }
    .bonus-banner-btn   { width: 100%; justify-content: center; }
}

/* ── Planos (cards reestruturados) ── */
.planos {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 50px;
    padding: 0 20px 20px;
}

.plano-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 24px;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}
.plano-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.plano-card.plano-destaque {
    background: #1C2D4A;
    border-color: #00FF7F;
    box-shadow: 0 20px 56px rgba(28,45,74,0.35);
    transform: scale(1.05);
    z-index: 1;
}
.plano-card.plano-destaque:hover {
    transform: scale(1.05) translateY(-4px);
}

.plano-badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #00FF7F;
    color: #1C2D4A;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.3px;
}

.plano-icone {
    font-size: 1.5rem;
    color: #1C2D4A;
    margin-bottom: 16px;
    width: 52px;
    height: 52px;
    background: #f0f2f5;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plano-destaque .plano-icone { background: rgba(0,255,127,0.12); color: #00FF7F; }

.plano-nome {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1C2D4A;
    margin-bottom: 6px;
}
.plano-destaque .plano-nome { color: #fff; }

.plano-subtitulo {
    font-size: 0.83rem;
    color: #6b7a8d;
    margin-bottom: 20px;
}
.plano-destaque .plano-subtitulo { color: rgba(255,255,255,0.55); }

.plano-preco {
    display: flex;
    align-items: flex-start;
    gap: 3px;
    margin-bottom: 8px;
    line-height: 1;
}
.plano-preco-cifrao {
    font-size: 1rem;
    font-weight: 700;
    color: #1C2D4A;
    margin-top: 10px;
}
.plano-destaque .plano-preco-cifrao { color: rgba(255,255,255,0.7); }
.plano-preco-valor {
    font-size: 3rem;
    font-weight: 900;
    color: #1C2D4A;
}
.plano-destaque .plano-preco-valor { color: #00FF7F; }

.plano-bonus {
    font-size: 0.8rem;
    color: #00a855;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.plano-destaque .plano-bonus { color: #00FF7F; }

.plano-total {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7a8d;
    margin-bottom: 16px;
}
.plano-destaque .plano-total { color: rgba(255,255,255,0.55); }

.plano-custo-badge {
    background: #f0f2f5;
    color: #1C2D4A;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}
.plano-destaque .plano-custo-badge { background: rgba(0,255,127,0.12); color: #00FF7F; }

.plano-features { width: 100%; text-align: left; margin-bottom: 24px; flex: 1; }
.plano-features-titulo {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #94a3b8;
    margin-bottom: 12px;
}
.plano-destaque .plano-features-titulo { color: rgba(255,255,255,0.35); }
.plano-features ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.plano-features ul li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.86rem;
    color: #3d4f63;
}
.plano-destaque .plano-features ul li { color: rgba(255,255,255,0.8); }
.plano-features ul li i { color: #00a855; font-size: 0.8rem; flex-shrink: 0; }
.plano-destaque .plano-features ul li i { color: #00FF7F; }

.plano-btn {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    background: #1C2D4A;
    color: #fff;
    transition: background 0.2s, color 0.2s;
    margin-top: auto;
}
.plano-btn:hover { background: #00FF7F; color: #1C2D4A; }
.plano-btn-destaque { background: #00FF7F; color: #1C2D4A; }
.plano-btn-destaque:hover { background: #fff; color: #1C2D4A; }

.servicos {
  position: relative;
  width: 100%;
  background: url('assets/Fundo.jpg') no-repeat center center;
  background-size: cover;
}

.servicos .overlay {
    width: 100%;
    min-height: 100vh;
    background-color: rgba(28, 45, 74, 0.96); /* azul com transparência */
    padding: 60px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .servicos-legenda{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    text-align: center;

  }

  .servicos-legenda h2{
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .servicos-legenda p{
    color: #fff;
    font-size: 1.125rem;
    font-weight: 200;
    justify-content: center;
  }

  .servicos-cards{
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 70px;
    max-width: 1200px;
    margin: 40px auto 0;
  }

  .servicos-card{
    background-color: #EAEAEA;
    width: 260px;
    height: 260px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 15px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
  }

    .servicos-card:hover{
        transform: translateY(-5px);
    }

    .servicos-card img{
        width: 45px;
        height: 45px;
    }

    .servicos-card h3{
        color: #1C2D4A;
        margin: 10px 0 40px 0;
        font-size: 1.25rem;
    }

    .servicos-card p{
        font-size: 1rem;
        color: #555555;
    }

.faq-area{
    background-color: #f1f1f1;
    padding: 40px 0 60px;
}

.faq-container{
    height: auto;
    width: 100%;
    margin: 0 auto;
    max-width: 800px;
    padding: 40px 32px;
    background-color: #f4f4f4;
    border-radius: 15px;
}

.faq-container h2 {
    font-weight: 700;
    font-size: 2rem;
    color: #1C2D4A;
    margin-bottom: 5px;
    text-align: center;
}

.faq-container p{
    text-align: center;
    font-size: 1rem;
    color: #555555;
    margin-bottom: 40px;
}

.faq-item{
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
}

.faq-question {
    cursor: pointer;
    font-weight: bold;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 10px;
    color: #1C2D4A;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 0.95rem;
    color: #444;
    padding-right: 20px;
}

.faq-item.active .faq-answer{
    max-height: 200px;
    margin-top: 10px;
}

.arrow{
    transition: ease 0.3s;
}

.faq-item.active .arrow{
    transform: rotate(180deg);
}

.chamada-final {
    background-color: #0e1d3a;
    color: white;
    padding: 60px 20px;
    text-align: center;
  }
  
  .container-chamada {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
  }
  
  .chamada-final h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
  }
  
  .subtitulo-chamada {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 30px;
  }
  
  .beneficios {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center; 
    max-width: 600px;
  }
  
  .beneficios li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #e2e8f0;
    text-align: center; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 0;
    width: 100%;
  }
  
  .beneficios li:last-child {
    border-bottom: none; 
  }
  
  .icon {
    width: 28px;
    height: 28px;
    stroke-width: 2;
    color: #00ff88;
  }
  
  
  .botao-chamada {
    background-color: #00ff88;
    color: #0e1d3a;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .botao-chamada:hover {
    background-color: #00cc6e;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .footer {
    background-color: #f7f7f7;
    padding: 40px 20px 0;
    font-family: 'Arial', sans-serif;
    color: #1a1a1a;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  
  .footer-col {
    flex: 1 1 220px;
    min-width: 180px;
  }
  
  .footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 6px;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #00cc66;
  }
  
  .logo-footer,
  .logo-pagamento {
    width: 160px;
    max-width: 100%;
    margin-bottom: 10px;
  }
  
  .whatsapp-btn {
    display: inline-block;
    margin: 8px 0;
    padding: 10px 16px;
    background-color: #25d366;
    color: #1a3a1a;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
  }
  
  .whatsapp-btn:hover {
    background-color: #1ebc59;
  }
  
  .atendimento {
    font-size: 0.9rem;
    margin-top: 10px;
    color: #555;
  }
  
  .footer-bottom {
    background-color: #e0e0e0;
    text-align: center;
    padding: 16px 10px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #444;
  }


/* =====================================================
   SEÇÃO DE AVALIAÇÕES
   ===================================================== */

.avaliacoes {
    background-color: #f0f4f8;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.avaliacoes-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

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

.avaliacoes-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e6f9ef;
    color: #005c3a;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid #b7eecf;
}

.avaliacoes-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1C2D4A;
    margin-bottom: 10px;
}

.avaliacoes-header h2 span {
    color: #0070D8;
}

.avaliacoes-header p {
    font-size: 1.1rem;
    color: #555555;
    max-width: 540px;
    margin: 0 auto;
}

.avaliacoes-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
}

.avaliacao-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    width: 310px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e4e9f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.avaliacao-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.avaliacao-card.destaque {
    border: 2px solid #0070D8;
    transform: scale(1.04);
    box-shadow: 0 8px 30px rgba(0, 136, 255, 0.18);
    z-index: 1;
}

.avaliacao-card.destaque:hover {
    transform: scale(1.04) translateY(-6px);
}

.avaliacao-card.destaque::before {
    content: 'Mais Recente';
    position: absolute;
    top: -14px;
    background: linear-gradient(90deg, #0070D8, #00c6ff);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.avaliacao-stars {
    display: flex;
    gap: 4px;
    color: #f5a623;
    font-size: 1.1rem;
}

.avaliacao-img-wrapper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e7ef;
    background-color: #f8fafc;
}

.avaliacao-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.avaliacao-verificado {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #005c3a;
    background-color: #e6f9ef;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid #b7eecf;
}

.btn-avaliacoes {
    display: inline-block;
    background-color: #1C2D4A;
    color: #00FF7F;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(28, 45, 74, 0.2);
}

.btn-avaliacoes:hover {
    background-color: #00FF7F;
    color: #1C2D4A;
    box-shadow: 0 6px 20px rgba(0, 255, 127, 0.3);
}


/* =====================================================
   MODAL DE CONTRATAÇÃO
   ===================================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(10, 20, 40, 0.75);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    backdrop-filter: blur(4px);
    padding: 20px;
}

.modal-overlay.ativo {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalEntrar 0.3s ease;
}

@keyframes modalEntrar {
    from { transform: translateY(30px) scale(0.97); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}

/* ---- Cabeçalho / Progress ---- */
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px 24px;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 10;
    border-bottom: 1px solid #f0f0f0;
}

.modal-progress {
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-progress-step {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.35;
    transition: opacity 0.3s;
}

.modal-progress-step.active,
.modal-progress-step.done {
    opacity: 1;
}

.prog-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #e0e7ef;
    color: #1C2D4A;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
}

.modal-progress-step.active .prog-num {
    background-color: #0070D8;
    color: #fff;
}

.modal-progress-step.done .prog-num {
    background-color: #005c3a;
    color: #fff;
}

.prog-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #1C2D4A;
}

.modal-progress-line {
    width: 28px;
    height: 2px;
    background-color: #e0e7ef;
    border-radius: 2px;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #555555;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background-color 0.2s, color 0.2s;
}

.modal-close-btn:hover {
    background-color: #f5f5f5;
    color: #1C2D4A;
}

/* ---- Passos ---- */
.modal-step {
    padding: 20px 24px 28px 24px;
}

.modal-step.hidden {
    display: none;
}

.modal-step.slide-in {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(16px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ---- Resumo do plano ---- */
.modal-plan-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #1C2D4A, #0d1e35);
    color: #fff;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.plan-summary-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(0, 255, 127, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #00FF7F;
    flex-shrink: 0;
}

.plan-summary-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.plan-summary-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #a0b4cc;
    margin-bottom: 2px;
}

.plan-summary-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.plan-summary-desc {
    font-size: 0.78rem;
    color: #8ea8c0;
    margin-top: 2px;
}

.plan-summary-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #00FF7F;
    flex-shrink: 0;
}

/* ---- Título de seção ---- */
.modal-section-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1C2D4A;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- Campos de formulário ---- */
.modal-form-group {
    margin-bottom: 14px;
}

.modal-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #344054;
    margin-bottom: 6px;
}

.modal-form-group input,
.modal-form-group textarea {
    width: 100%;
    border: 1.5px solid #d0d7e3;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.95rem;
    font-family: "Inter", sans-serif;
    color: #1C2D4A;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #fafbfc;
    outline: none;
}

.modal-form-group input:focus,
.modal-form-group textarea:focus {
    border-color: #0070D8;
    box-shadow: 0 0 0 3px rgba(0, 136, 255, 0.1);
    background-color: #fff;
}

.modal-form-group input.input-erro {
    border-color: #e53935;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.msg-erro {
    display: block;
    font-size: 0.78rem;
    color: #e53935;
    margin-top: 4px;
}

.req { color: #e53935; }

.opcional {
    font-weight: 400;
    color: #9a9a9a;
    font-size: 0.8rem;
}

.nota-campos {
    font-size: 0.8rem;
    color: #555555;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nota-campos i { color: #0070D8; }

/* ---- Toggle WhatsApp / Email ---- */
.modal-contact-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.contact-toggle-btn {
    flex: 1;
    padding: 10px;
    border: 2px solid #d0d7e3;
    border-radius: 10px;
    background: #fafbfc;
    color: #555555;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
}

.contact-toggle-btn.active {
    border-color: #0070D8;
    background-color: #e8f3ff;
    color: #0070D8;
}

.contact-toggle-btn:hover:not(.active) {
    border-color: #b0bec9;
    background-color: #f5f7fa;
}

/* ---- Termos ---- */
.modal-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
    padding: 14px;
    background-color: #f7f9fc;
    border-radius: 10px;
    border: 1px solid #e0e7ef;
}

.modal-terms input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: #0070D8;
    cursor: pointer;
    margin-top: 1px;
}

.modal-terms label {
    font-size: 0.85rem;
    color: #4a5568;
    cursor: pointer;
    line-height: 1.4;
}

.modal-terms label a {
    color: #0070D8;
    text-decoration: underline;
    font-weight: 600;
}

.modal-terms label a:hover { color: #0066cc; }

.modal-terms.erro-terms {
    border-color: #e53935;
    background-color: #fff5f5;
    animation: tremer 0.4s ease;
}

/* ---- Navegação ---- */
.modal-step-nav {
    display: flex;
    gap: 10px;
}

.modal-btn-back {
    flex: 0 0 auto;
    padding: 12px 18px;
    border: 1.5px solid #d0d7e3;
    border-radius: 10px;
    background: none;
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-btn-back:hover {
    background-color: #f0f0f0;
    border-color: #b0bec9;
}

.modal-btn-next {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 10px;
    background-color: #0070D8;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s, transform 0.15s;
}

.modal-btn-next:hover {
    background-color: #006fcc;
    transform: translateY(-1px);
}

.modal-btn-pay {
    flex: 1;
    padding: 13px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #00c853, #005c3a);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(0, 135, 90, 0.3);
}

.modal-btn-pay:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 135, 90, 0.4);
    background: linear-gradient(135deg, #00e060, #00a06a);
}

.modal-btn-pay:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ---- Loading / Passo 3 ---- */
.modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    gap: 16px;
}

.modal-loading p {
    font-size: 1rem;
    font-weight: 600;
    color: #1C2D4A;
}

.modal-loading small {
    font-size: 0.82rem;
    color: #555555;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e0e7ef;
    border-top-color: #0070D8;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* =====================================================
   HAMBURGER — NAVBAR MOBILE
   ===================================================== */

.nav-item-login {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: background-color 0.2s;
    z-index: 200;
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #EAEAEA;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* =====================================================
   RESPONSIVIDADE — TABLET (≤ 1024px)
   ===================================================== */

@media (max-width: 1024px) {

    #hero {
        padding: 6rem 3rem 4rem;
    }

    .precos {
        height: auto;
        padding: 40px 20px 60px;
    }

    .planos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 0 10px;
    }

    .plano-card { width: 260px; }
    .plano-card.plano-destaque { transform: scale(1.03); }
    .plano-card.plano-destaque:hover { transform: scale(1.03) translateY(-4px); }

    .servicos-cards {
        gap: 30px;
    }

}



/* =====================================================
   RESPONSIVIDADE — MOBILE (≤ 768px)
   ===================================================== */

@media (max-width: 768px) {

    /* ── Navbar ── */
    header #navbar {
        justify-content: space-between;
        padding: 16px 20px;
        position: relative;
        background-color: #1C2D4A;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hamburger {
        display: flex;
    }

    #navbar .botao {
        display: none;
    }

    /* Usando #navbar ul para superar a especificidade do seletor base */
    #navbar ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0d1b2e;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8px 0 12px;
        z-index: 200;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    #navbar ul.open {
        display: flex;
    }

    #navbar ul li a {
        padding: 13px 24px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        display: block;
    }

    #navbar ul li:last-child a {
        border-bottom: none;
    }

    .nav-item-login {
        display: block;
        margin-top: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .nav-item-login a {
        color: #00FF7F !important;
        font-weight: 600;
        border-bottom: none !important;
        display: flex !important;
        align-items: center;
        gap: 8px;
    }

    /* ── Header / Hero ── */
    header {
        min-height: 100svh;
        padding-bottom: 0;
    }

    #hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 5rem 1.5rem 2.5rem;
        gap: 0;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 0.95rem;
        text-align: center;
        max-width: 480px;
    }

    .hero-text p br {
        display: none;
    }

    .hero-text a {
        font-size: 1rem;
        display: inline-block;
        margin-top: 0.75rem;
        margin-bottom: 0;
    }

    .hero-image-wrapper {
        max-width: 260px;
        order: 1;
        margin-top: 2.5rem;
    }

    .circulo-rotativo {
        max-width: 210px;
    }

    /* ── Main / Como Funciona ── */
    main {
        height: auto;
        padding: 60px 20px 50px;
    }

    main .main-content .main-description h2 {
        font-size: 1.65rem;
    }

    .box-descripiton {
        gap: 40px;
        padding: 0 10px;
    }

    .description {
        width: 100%;
        max-width: 320px;
        height: auto;
        min-height: 200px;
        padding: 40px 20px 24px;
    }

    .botao-main {
        margin-top: 40px;
        padding-bottom: 10px;
    }

    /* ── Preços ── */
    .precos {
        height: auto;
        padding: 50px 20px 60px;
    }

    .preco-descricao h2 {
        font-size: 1.6rem;
        padding: 0 10px;
    }

    .preco-descricao p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .planos {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 30px;
        overflow: visible;
    }

    .plano-card {
        width: 100%;
        max-width: 340px;
        transform: none;
    }
    .plano-card.plano-destaque {
        transform: none;
        order: -1;
    }
    .plano-card.plano-destaque:hover { transform: translateY(-4px); }

    /* ── Serviços ── */
    .servicos .overlay {
        padding: 60px 20px;
        min-height: unset;
    }

    .servicos-legenda h2 {
        font-size: 1.6rem;
        padding: 0 10px;
    }

    .servicos-legenda p {
        font-size: 0.95rem;
        padding: 0 10px;
        br { display: none; }
    }

    .servicos-cards {
        gap: 16px;
        padding: 0 4px;
    }

    .servicos-card {
        width: calc(50% - 8px);
        min-width: 140px;
        height: auto;
        min-height: 175px;
        padding: 18px 12px;
    }

    .servicos-card img {
        width: 36px;
        height: 36px;
    }

    .servicos-card h3 {
        font-size: 0.88rem;
        margin: 8px 0 6px;
    }

    .servicos-card p {
        font-size: 0.78rem;
    }

    /* ── Avaliações ── */
    .avaliacoes {
        padding: 60px 20px 60px;
    }

    .avaliacoes-header h2 {
        font-size: 1.6rem;
    }

    .avaliacoes-header p {
        font-size: 0.95rem;
    }

    .avaliacoes-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .avaliacao-card {
        width: 100%;
        max-width: 380px;
    }

    /* Destaque no mobile: vem primeiro, sem scale */
    .avaliacao-card.destaque {
        transform: none;
        order: -1;
    }

    .avaliacao-card.destaque:hover {
        transform: translateY(-6px);
    }

    /* ── Chamada Final ── */
    .chamada-final {
        padding: 50px 20px;
    }

    .chamada-final h2 {
        font-size: 1.45rem;
    }

    .subtitulo-chamada {
        font-size: 0.95rem;
    }

    .beneficios li {
        font-size: 0.9rem;
    }

    /* ── Footer ── */
    .footer {
        padding: 24px 20px 0;
    }

    .footer-container {
        flex-direction: column;
        gap: 16px;
    }

    .footer-col {
        width: 100%;
        min-width: unset;
    }

    .footer-col h4 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .footer-links li {
        margin-bottom: 3px;
    }

    .footer-links a {
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 4px 0;
    }

    .logo-footer {
        width: 100px;
        margin-bottom: 6px;
    }

    .whatsapp-btn {
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .atendimento {
        font-size: 0.78rem;
    }

    .footer-bottom {
        padding: 12px 10px;
        margin-top: 20px;
        font-size: 0.78rem;
    }

    /* ── Modal ── */
    .modal-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .modal-box {
        border-radius: 20px 20px 0 0;
        max-height: 92vh;
        animation: modalEntrarMobile 0.3s ease;
    }

    @keyframes modalEntrarMobile {
        from { transform: translateY(100%); opacity: 0.5; }
        to   { transform: translateY(0); opacity: 1; }
    }

    .modal-plan-summary {
        flex-wrap: wrap;
        gap: 10px;
    }

    .plan-summary-price {
        width: 100%;
        font-size: 1.5rem;
    }

    .modal-step-nav {
        flex-direction: column-reverse;
    }

    .modal-btn-back {
        width: 100%;
        justify-content: center;
    }
}


/* =====================================================
   RESPONSIVIDADE — MOBILE PEQUENO (≤ 480px)
   ===================================================== */

@media (max-width: 480px) {

    #hero {
        padding: 4.5rem 1.25rem 2rem;
    }

    .hero-text h1 {
        font-size: 1.55rem;
    }

    .hero-text p {
        font-size: 0.88rem;
    }

    /* Esconde imagem em telas muito pequenas para dar espaço ao formulário */
    .hero-image-wrapper {
        display: none;
    }

    .preco-descricao h2 {
        font-size: 1.35rem;
    }

    .servicos-card {
        min-width: 130px;
    }

    .chamada-final h2 {
        font-size: 1.25rem;
    }

    .avaliacoes-header h2 {
        font-size: 1.35rem;
    }

    /* No progress do modal, oculta o label para economizar espaço */
    .prog-label {
        display: none;
    }

    .modal-progress-line {
        width: 20px;
    }

    .modal-step {
        padding: 16px 16px 24px;
    }

    .modal-header {
        padding: 16px 16px 12px;
    }
}


/* =====================================================
   HERO — NOVOS ELEMENTOS
   ===================================================== */

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 255, 127, 0.12);
    border: 1px solid rgba(0, 255, 127, 0.35);
    color: #00FF7F;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 1rem;
    letter-spacing: 0.4px;
}

/* Typing effect */
#typed-text {
    font-weight: 900;
    color: #00FF7F;
}

.typed-cursor {
    font-weight: 900;
    color: #00FF7F;
    animation: piscar 0.7s step-end infinite;
}

@keyframes piscar {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* CTA Button */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00FF7F;
    color: #1C2D4A !important;
    font-size: 1rem !important;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 30px;
    text-decoration: none !important;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 4px 18px rgba(0, 255, 127, 0.3);
    margin-top: 0.25rem;
}

.hero-cta-btn:hover {
    background: #00e070;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 255, 127, 0.45);
    color: #1C2D4A !important;
}

/* Social proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 1.25rem;
}

.hero-avatars {
    display: flex;
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #1C2D4A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.hero-rating-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.hero-stars {
    color: #FFD700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.hero-rating-text span:last-child {
    color: rgba(234, 234, 234, 0.75);
    font-size: 0.78rem;
    font-weight: 300;
}

/* Partículas */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0, 255, 127, 0.25);
    border-radius: 50%;
    animation: flutuar-particula linear infinite;
}

.hero-particles span:nth-child(1)  { left: 8%;  top: 20%; width: 5px;  height: 5px;  animation-duration: 8s;  animation-delay: 0s; }
.hero-particles span:nth-child(2)  { left: 85%; top: 15%; width: 8px;  height: 8px;  animation-duration: 11s; animation-delay: 1s; }
.hero-particles span:nth-child(3)  { left: 50%; top: 70%; width: 4px;  height: 4px;  animation-duration: 9s;  animation-delay: 2s; }
.hero-particles span:nth-child(4)  { left: 25%; top: 80%; width: 6px;  height: 6px;  animation-duration: 13s; animation-delay: 0.5s; }
.hero-particles span:nth-child(5)  { left: 70%; top: 55%; width: 5px;  height: 5px;  animation-duration: 10s; animation-delay: 3s; }
.hero-particles span:nth-child(6)  { left: 15%; top: 50%; width: 7px;  height: 7px;  animation-duration: 12s; animation-delay: 1.5s; }
.hero-particles span:nth-child(7)  { left: 90%; top: 75%; width: 4px;  height: 4px;  animation-duration: 7s;  animation-delay: 2.5s; }
.hero-particles span:nth-child(8)  { left: 40%; top: 10%; width: 6px;  height: 6px;  animation-duration: 14s; animation-delay: 4s; }

@keyframes flutuar-particula {
    0%   { transform: translateY(0) scale(1);   opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-60px) scale(0.6); opacity: 0; }
}

/* Garante que o conteúdo do hero fique acima das partículas */
#hero {
    position: relative;
    z-index: 1;
}

/* =====================================================
   CONTADORES
   ===================================================== */

.counters-strip {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.counter-item {
    flex: 1;
    max-width: 220px;
    text-align: center;
    padding: 28px 20px;
    border-right: 1px solid #efefef;
}

.counter-item:last-child {
    border-right: none;
}

.counter-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.counter-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1C2D4A;
    line-height: 1;
}

.counter-suffix {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00c96a;
}

.counter-item p {
    font-size: 0.8rem;
    color: #555555;
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsivo — contadores */
@media (max-width: 768px) {
    .counters-strip {
        flex-wrap: wrap;
    }

    .counter-item {
        flex: 1 1 50%;
        max-width: none;
        border-right: none;
        border-bottom: 1px solid #efefef;
        padding: 20px 16px;
    }

    .counter-item:nth-child(odd) {
        border-right: 1px solid #efefef;
    }

    .counter-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .counter-number {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .hero-social-proof {
        justify-content: center;
    }

    .hero-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .counter-number {
        font-size: 1.6rem;
    }
}

/* =====================================================
   MODAL — ETAPA DE REVISÃO
   ===================================================== */

.resumo-bloco {
    background: #f7f8fa;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 12px;
}

.resumo-titulo {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #1C2D4A;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.resumo-titulo i {
    color: #00c96a;
}

.resumo-linha {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    gap: 12px;
}

.resumo-linha:last-child {
    border-bottom: none;
}

.resumo-label {
    font-size: 0.82rem;
    color: #555555;
    white-space: nowrap;
}

.resumo-valor {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1C2D4A;
    text-align: right;
    word-break: break-word;
}

.resumo-preco {
    color: #0070D8;
    font-size: 1rem;
}

.resumo-aviso {
    font-size: 0.78rem;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.resumo-aviso i {
    color: #0070D8;
    flex-shrink: 0;
}

/* =====================================================
   BANNER DE COOKIES
   ===================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1C2D4A;
    border-top: 2px solid rgba(0, 255, 127, 0.3);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.35);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visivel {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 24px 28px;
}

.cookie-banner-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.cookie-banner-icon {
    font-size: 1.8rem;
    color: #00FF7F;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-banner-header h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.cookie-banner-header p {
    color: rgba(255,255,255,0.65);
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-categorias {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.cookie-categoria {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 12px 14px;
}

.cookie-categoria-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-categoria-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cookie-categoria-info strong {
    color: #fff;
    font-size: 0.85rem;
}

.cookie-categoria-info span {
    color: rgba(255,255,255,0.55);
    font-size: 0.75rem;
    line-height: 1.4;
}

/* Toggle switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 999px;
    transition: 0.3s;
}

.cookie-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-switch input:checked + .cookie-slider {
    background: #00FF7F;
}

.cookie-switch input:checked + .cookie-slider::before {
    transform: translateX(18px);
}

.sempre-ativo {
    font-size: 0.7rem;
    color: #00FF7F;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid rgba(0,255,127,0.3);
    padding: 3px 10px;
    border-radius: 999px;
}

/* Botões */
.cookie-banner-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-btn-rejeitar {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Inter', sans-serif;
}

.cookie-btn-rejeitar:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.cookie-btn-personalizar {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Inter', sans-serif;
}

.cookie-btn-personalizar:hover {
    border-color: #00FF7F;
    color: #00FF7F;
}

.cookie-btn-aceitar {
    background: #00FF7F;
    color: #1C2D4A;
    border: none;
    padding: 9px 22px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Inter', sans-serif;
}

.cookie-btn-aceitar:hover {
    background: #00e070;
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        padding: 18px 16px;
    }

    .cookie-banner-actions {
        flex-direction: column;
    }

    .cookie-btn-rejeitar,
    .cookie-btn-personalizar,
    .cookie-btn-aceitar {
        width: 100%;
        text-align: center;
    }
}

/* Aviso de fora do horário de atendimento */
.modal-aviso-horario {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff8e6;
    border: 1px solid #f0c040;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: #7a5c00;
    line-height: 1.5;
    margin: 0 24px 0;
}

.modal-aviso-horario i {
    color: #f0a500;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Erro de pagamento no modal */
.modal-payment-error {
    background: #fff0f0;
    border: 1px solid #e05252;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.88rem;
    color: #c0392b;
    margin: 0 0 12px;
    text-align: center;
}

/* Aviso legal antes do botão pagar */
.modal-aviso-legal {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff8e6;
    border: 1px solid #f0c040;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.8rem;
    color: #7a5c00;
    line-height: 1.5;
    margin-bottom: 16px;
}

.modal-aviso-legal i {
    color: #f0a500;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================================
   NOVOS ESTILOS — Sistema de Tokens + Novas Páginas
   ============================================================ */

/* ── Navbar: botões duplos ── */
.nav-botoes { display: flex; gap: 10px; align-items: center; }
.btn-entrar { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.82rem; padding: 7px 16px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.25); transition: 0.2s; }
.btn-entrar:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-consultar-nav { background: #00FF7F; color: #1C2D4A; font-weight: 700; font-size: 0.9rem; padding: 8px 20px; border-radius: 30px; transition: 0.2s; }
.btn-consultar-nav:hover { background: #00e070; }

/* ── Section busca CPF ── */
.busca-cpf { background: #fff; padding: 64px 20px; text-align: center; border-bottom: 1px solid #eee; }
.busca-cpf-inner { max-width: 620px; margin: 0 auto; }
.busca-cpf-badge { display: inline-flex; align-items: center; gap: 6px; background: #e8fff3; color: #00a855; font-size: 0.82rem; font-weight: 600; padding: 6px 14px; border-radius: 20px; border: 1px solid #b3f0d3; margin-bottom: 18px; }
.busca-cpf h2 { font-size: 2rem; color: #1C2D4A; font-weight: 800; margin-bottom: 10px; }
.busca-cpf-inner > p { color: #6b7a8d; font-size: 1rem; margin-bottom: 28px; }
.busca-cpf-form { display: flex; gap: 10px; max-width: 500px; margin: 0 auto 14px; }
.busca-cpf-input-wrapper { flex: 1; display: flex; align-items: center; gap: 10px; background: #f5f7fa; border: 2px solid #e2e8f0; border-radius: 12px; padding: 0 16px; transition: border-color 0.2s; }
.busca-cpf-input-wrapper:focus-within { border-color: #00FF7F; }
.busca-cpf-input-wrapper i { color: #94a3b8; font-size: 1rem; flex-shrink: 0; }
.busca-cpf-input-wrapper input { flex: 1; border: none; background: transparent; padding: 14px 0; font-size: 1.05rem; color: #1C2D4A; outline: none; font-family: inherit; letter-spacing: 1px; }
.busca-cpf-input-wrapper input::placeholder { color: #b0bec5; letter-spacing: 0; }
.busca-cpf-btn { background: #1C2D4A; color: #fff; border: none; border-radius: 12px; padding: 0 28px; font-size: 0.95rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: 0.2s; white-space: nowrap; font-family: inherit; }
.busca-cpf-btn:hover { background: #00FF7F; color: #1C2D4A; }
.busca-cpf-nota { color: #94a3b8; font-size: 0.82rem; display: flex; align-items: center; justify-content: center; gap: 6px; }
@media (max-width: 540px) {
    .busca-cpf-form { flex-direction: column; }
    .busca-cpf-btn { justify-content: center; padding: 14px; }
    .busca-cpf h2 { font-size: 1.5rem; }
}

/* ── Pacotes de tokens ── */
.token-icon { font-size: 2.2rem; color: #00FF7F; margin-bottom: 10px; }
.token-quantidade { font-size: 2.4rem; font-weight: 900; color: #1C2D4A; line-height: 1; margin-bottom: 4px; }
.token-quantidade span { font-size: 1rem; font-weight: 500; color: #6b7a8d; }
.token-preco-unit { font-size: 0.82rem; color: #6b7a8d; margin-bottom: 16px; }
.tokens-info { text-align: center; color: #6b7a8d; font-size: 0.88rem; margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.token-btn { background: #1C2D4A; color: #fff; border: none; border-radius: 30px; padding: 12px 28px; font-size: 0.95rem; font-weight: 700; cursor: pointer; width: 100%; margin-bottom: 10px; transition: 0.2s; font-family: inherit; }
.token-btn:hover { background: #00FF7F; color: #1C2D4A; }

/* ── Página resultado ── */
.page-resultado { background: #f0f2f5; min-height: 100vh; }
.resultado-nav { background: #1C2D4A; padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; }
.resultado-nav-logo img { max-width: 140px; }
.btn-entrar-nav { background: #00FF7F; color: #1C2D4A; font-weight: 700; font-size: 0.88rem; padding: 8px 20px; border-radius: 30px; display: flex; align-items: center; gap: 6px; transition: 0.2s; }
.btn-entrar-nav:hover { background: #00e070; }
.resultado-wrapper { max-width: 700px; margin: 0 auto; padding: 32px 20px 60px; }
.resultado-header { text-align: center; margin-bottom: 28px; }
.resultado-header-badge { display: inline-flex; align-items: center; gap: 6px; background: #e8fff3; color: #00a855; font-size: 0.82rem; font-weight: 600; padding: 6px 14px; border-radius: 20px; border: 1px solid #b3f0d3; margin-bottom: 12px; }
.resultado-header h1 { font-size: 1.8rem; font-weight: 800; color: #1C2D4A; margin-bottom: 6px; }
.resultado-header p { color: #6b7a8d; font-size: 0.95rem; }
.cpf-exibido { color: #1C2D4A; font-family: monospace; }
.resultado-card { background: #fff; border-radius: 16px; padding: 28px; margin-bottom: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); position: relative; overflow: hidden; }
.resultado-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid #f0f2f5; }
.resultado-card-header i { font-size: 1.2rem; color: #1C2D4A; }
.resultado-card-header h2 { font-size: 1.1rem; font-weight: 700; color: #1C2D4A; flex: 1; }
.resultado-badge-parcial { background: #e8fff3; color: #00a855; font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; border: 1px solid #b3f0d3; }
.resultado-badge-bloqueado { background: #fff3e0; color: #f0a500; font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; border: 1px solid #ffd480; display: flex; align-items: center; gap: 4px; }
.dado-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid #f5f7fa; }
.dado-item:last-child { border-bottom: none; }
.dado-label { font-size: 0.85rem; color: #6b7a8d; font-weight: 500; }
.dado-valor { font-size: 0.95rem; color: #1C2D4A; font-weight: 600; }
.censurado { background: #1C2D4A; color: transparent; border-radius: 3px; user-select: none; }
.dado-status-ok { color: #00a855; display: flex; align-items: center; gap: 5px; }
.resultado-bloqueado .resultado-card-header i { color: #f0a500; }
.resultado-dados-blur { filter: blur(5px); user-select: none; pointer-events: none; }
.paywall-overlay { position: absolute; inset: 0; background: rgba(255,255,255,0.88); backdrop-filter: blur(2px); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 32px 24px; z-index: 2; }
.paywall-icon { font-size: 2.5rem; color: #1C2D4A; margin-bottom: 14px; }
.paywall-overlay h3 { font-size: 1.3rem; font-weight: 800; color: #1C2D4A; margin-bottom: 8px; }
.paywall-overlay p { color: #6b7a8d; font-size: 0.95rem; margin-bottom: 22px; }
.paywall-btn-primary { background: #00FF7F; color: #1C2D4A; font-weight: 700; font-size: 1rem; padding: 14px 32px; border-radius: 30px; display: flex; align-items: center; gap: 8px; margin-bottom: 10px; transition: 0.2s; }
.paywall-btn-primary:hover { background: #00e070; }
.paywall-btn-secondary { color: #1C2D4A; font-size: 0.88rem; font-weight: 500; text-decoration: underline; margin-bottom: 24px; }
.paywall-tokens-info { display: flex; gap: 10px; margin-top: 8px; }
.paywall-token-opcao { background: #f5f7fa; border: 2px solid #e2e8f0; border-radius: 10px; padding: 10px 16px; text-align: center; font-size: 0.85rem; color: #6b7a8d; }
.paywall-token-opcao strong { display: block; color: #1C2D4A; font-size: 1rem; }
.paywall-token-opcao.destaque { border-color: #00FF7F; background: #e8fff3; }
.paywall-token-opcao.destaque strong { color: #00a855; }
.resultado-aviso-legal { font-size: 0.8rem; color: #94a3b8; text-align: center; display: flex; align-items: flex-start; justify-content: center; gap: 6px; line-height: 1.5; }

/* ── Página login/auth ── */
.page-auth {
    background: linear-gradient(160deg, #0b1929 0%, #1C2D4A 60%, #0f2a1e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

.auth-shell {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 420px;
    gap: 28px;
}

.auth-logo-link { display: block; }
.auth-logo { max-width: 148px; display: block; }

.auth-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    width: 100%;
    box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}

/* ── Painel (login ou cadastro) ── */
.auth-panel { animation: authFadeIn .2s ease; }
.auth-panel.hidden { display: none; }

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

.auth-panel-header {
    text-align: center;
    margin-bottom: 28px;
}
.auth-panel-header h1 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f1e33;
    margin: 0 0 6px;
}
.auth-panel-header p {
    font-size: 0.88rem;
    color: #6b7a8d;
    margin: 0;
}

/* ── Campos ── */
.auth-form-group { margin-bottom: 16px; }
.auth-form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}
.auth-input-wrapper {
    display: flex;
    align-items: center;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 0 14px;
    background: #fff;
    transition: border-color 0.18s;
}
.auth-input-wrapper:focus-within { border-color: #00c96a; }
.auth-input-wrapper i {
    color: #9ca3af;
    font-size: 0.88rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}
.auth-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 10px;
    font-size: 0.95rem;
    color: #111827;
    outline: none;
    font-family: inherit;
}
.auth-input-wrapper input::placeholder { color: #b0bac5; }

.btn-toggle-senha {
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    padding: 0;
    font-size: 0.88rem;
    transition: color 0.18s;
    line-height: 1;
}
.btn-toggle-senha:hover { color: #374151; }

.auth-link-esqueci {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: #6b7a8d;
    text-decoration: none;
    margin: -4px 0 20px;
    transition: color 0.18s;
}
.auth-link-esqueci:hover { color: #1C2D4A; }

/* ── Termos ── */
.auth-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: #6b7a8d;
    line-height: 1.55;
}
.auth-terms input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; }
.auth-terms a { color: #1C2D4A; text-decoration: underline; }

/* ── Botão principal ── */
.auth-btn-submit {
    width: 100%;
    background: #1C2D4A;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 0.97rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.18s, color 0.18s;
    font-family: inherit;
    margin-top: 4px;
}
.auth-btn-submit:hover { background: #00FF7F; color: #0f1e33; }

/* ── Erro ── */
.auth-erro {
    background: #fff0f0;
    border: 1px solid #ffc5c5;
    color: #c0392b;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.85rem;
    margin-top: 12px;
}

/* ── Troca de painel ── */
.auth-switch {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.87rem;
    color: #6b7a8d;
}
.auth-switch-btn {
    background: none;
    border: none;
    color: #1C2D4A;
    font-weight: 700;
    font-size: inherit;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
    margin-left: 4px;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.18s;
}
.auth-switch-btn:hover { color: #00c96a; }

/* ── Link voltar ao site ── */
.auth-back-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.4);
    font-size: 0.84rem;
    text-decoration: none;
    transition: color 0.18s;
}
.auth-back-link:hover { color: rgba(255,255,255,0.85); }

/* ── Dashboard ── */
.page-dashboard {
    background: #e4e7ec;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.dash-nav {
    background: #1C2D4A;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    height: 62px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.dash-nav-logo img { max-width: 120px; display: block; }
.dash-nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.dash-credits-badge {
    background: rgba(0,255,127,0.12);
    border: 1px solid rgba(0,255,127,0.3);
    color: #00FF7F;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.dash-nav-email {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.dash-btn-logout {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.18s;
    font-size: 0.9rem;
}
.dash-btn-logout:hover { background: rgba(255,255,255,0.16); color: #fff; }

/* Main */
.dash-main {
    flex: 1;
    padding: 36px 28px;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Header saudação */
.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.dash-header h1 { font-size: 1.4rem; font-weight: 800; color: #1C2D4A; margin-bottom: 4px; }
.dash-header p  { color: #6b7a8d; font-size: 0.88rem; }

/* Cards */
.dash-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.dash-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}
.dash-card-header > i {
    font-size: 1.2rem;
    color: #1C2D4A;
    width: 42px;
    height: 42px;
    background: #f0f2f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dash-card-header h2 { font-size: 1rem; font-weight: 700; color: #1C2D4A; margin: 0 0 2px; }
.dash-card-header p  { font-size: 0.8rem; color: #6b7a8d; margin: 0; }

/* Consulta form */
.dash-input-group {
    display: flex;
    gap: 10px;
}
.dash-input-group input {
    flex: 1;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: monospace;
    letter-spacing: 1px;
    color: #111827;
    outline: none;
    transition: border-color 0.18s;
}
.dash-input-group input:focus { border-color: #00c96a; }
.dash-input-group input::placeholder { color: #b0bac5; font-family: inherit; letter-spacing: 0; }

.dash-btn-consultar {
    background: #1C2D4A;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: 0.18s;
    font-family: inherit;
}
.dash-btn-consultar:hover:not(:disabled) { background: #00c96a; color: #fff; }
.dash-btn-consultar:disabled { opacity: 0.6; cursor: not-allowed; }

.dash-erro {
    background: #fff0f0;
    border: 1px solid #ffc5c5;
    color: #c0392b;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.85rem;
    margin-top: 12px;
}

/* Resultado */
.dash-resultado .dash-card-header { margin-bottom: 0; padding-bottom: 18px; border-bottom: 1px solid #f0f2f5; }
.dash-btn-nova {
    background: #f0f2f5;
    color: #1C2D4A;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.18s;
    font-family: inherit;
    white-space: nowrap;
}
.dash-btn-nova:hover { background: #1C2D4A; color: #fff; }

.dash-resultado-linha {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #f5f7fa;
    gap: 16px;
}
.dash-resultado-linha:last-child { border-bottom: none; }
.dash-resultado-key {
    width: 160px;
    flex-shrink: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7a8d;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding-top: 1px;
}
.dash-resultado-val {
    flex: 1;
    font-size: 0.95rem;
    color: #1C2D4A;
    font-weight: 500;
    word-break: break-word;
}
.dash-resultado-vazio {
    text-align: center;
    color: #6b7a8d;
    padding: 32px 0;
    font-size: 0.9rem;
}

/* Sem créditos */
.dash-aviso-creditos {
    text-align: center;
    padding: 48px 28px;
}
.dash-aviso-icon {
    font-size: 2.8rem;
    color: #d1d5db;
    margin-bottom: 16px;
    display: block;
}
.dash-aviso-creditos h3 { font-size: 1.1rem; color: #1C2D4A; font-weight: 700; margin-bottom: 8px; }
.dash-aviso-creditos p  { color: #6b7a8d; font-size: 0.9rem; margin-bottom: 24px; }

/* Botões de comprar */
.dash-btn-comprar {
    background: #00c96a;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 22px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.18s;
    font-family: inherit;
}
.dash-btn-comprar:hover { background: #00a855; }

/* Modal de planos */
.dash-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.dash-modal-overlay.hidden { display: none; }
.dash-modal {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}
.dash-modal h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1C2D4A;
    margin-bottom: 24px;
}
.dash-modal-fechar {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f0f2f5;
    border: none;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #6b7a8d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.18s;
}
.dash-modal-fechar:hover { background: #1C2D4A; color: #fff; }

.dash-planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 14px;
}
.dash-plano-card {
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.dash-plano-card:hover { border-color: #00c96a; box-shadow: 0 4px 16px rgba(0,201,106,0.12); }
.dash-plano-creditos {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1C2D4A;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.dash-plano-creditos i { color: #00c96a; font-size: 1rem; }
.dash-plano-nome { font-size: 0.78rem; color: #6b7a8d; margin-bottom: 10px; }
.dash-plano-preco { font-size: 1rem; font-weight: 700; color: #1C2D4A; margin-bottom: 14px; }
.dash-btn-plano {
    width: 100%;
    background: #1C2D4A;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.18s;
    font-family: inherit;
}
.dash-btn-plano:hover:not(:disabled) { background: #00c96a; }
.dash-btn-plano:disabled { opacity: 0.6; cursor: not-allowed; }

.dash-plano-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: #6b7a8d;
    padding: 24px 0;
    font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 600px) {
    .dash-nav { padding: 0 16px; }
    .dash-nav-email { display: none; }
    .dash-main { padding: 20px 16px; gap: 16px; }
    .dash-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .dash-input-group { flex-direction: column; }
    .dash-resultado-key { width: 120px; }
    .dash-modal { padding: 24px 20px; }
    .dash-planos-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Desativa animações no mobile ── */
@media (max-width: 768px) {
    .hero-particles { display: none; }
    .circulo-rotativo { display: none; }
    .typed-cursor { display: none; }
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ── Resultado: loading e erro ── */
.resultado-loading-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 80px 20px; gap: 20px; color: #6b7a8d; font-size: 0.95rem; }
.resultado-spinner { width: 40px; height: 40px; border: 3px solid #e2e8f0; border-top-color: #1C2D4A; border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.resultado-erro-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 80px 20px; gap: 12px; text-align: center; }
.resultado-erro-icon { font-size: 2.5rem; color: #e74c3c; margin-bottom: 4px; }
.resultado-erro-state h2 { font-size: 1.2rem; color: #1C2D4A; font-weight: 700; }
.resultado-erro-state p { color: #6b7a8d; font-size: 0.9rem; }
.dado-status-alerta { color: #e74c3c; display: flex; align-items: center; gap: 5px; }

/* ── Hero CPF Form ── */
.hero-cpf-form { margin-top: 28px; width: 100%; max-width: 440px; }
.hero-cpf-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.hero-cpf-label i { color: #00FF7F; }
.hero-cpf-input { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); margin-bottom: 12px; }
.hero-cpf-input:focus-within { border-color: #00FF7F; background: rgba(255,255,255,0.12); }
.hero-cpf-input input { color: #fff; font-size: 1.1rem; letter-spacing: 2px; }
.hero-cpf-input input::placeholder { color: rgba(255,255,255,0.35); letter-spacing: 0; }
.hero-cpf-input i { color: rgba(255,255,255,0.4); }
.cf-turnstile { margin-bottom: 12px; }
.hero-cpf-terms { display: flex; align-items: flex-start; gap: 10px; font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.5; margin-bottom: 16px; cursor: pointer; }
.hero-cpf-terms input[type="checkbox"] { margin-top: 2px; accent-color: #00FF7F; flex-shrink: 0; width: 15px; height: 15px; cursor: pointer; }
.hero-cpf-terms a { color: #00FF7F; text-decoration: underline; font-size: inherit; }
.hero-cpf-terms a:hover { color: #fff; }
.hero-cpf-terms.erro-terms { outline: 1px solid #e74c3c; border-radius: 4px; padding: 4px; }
.hero-cta-btn-submit { border: none; cursor: pointer; font-family: inherit; font-size: 1rem; width: 100%; justify-content: center; }
.hero-cta-btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── Responsividade hero CPF form ── */
@media (max-width: 768px) {
    .hero-cpf-form { margin-top: 20px; }
    .hero-social-proof { margin-top: 0.75rem; }
}

@media (max-width: 480px) {
    .hero-cpf-form { margin-top: 16px; }
    .hero-cpf-label { font-size: 0.78rem; margin-bottom: 8px; }
    .hero-cpf-input input { font-size: 1rem; letter-spacing: 1px; }
    .hero-cpf-terms { font-size: 0.75rem; margin-bottom: 12px; }
    .hero-social-proof { display: none; }
}

/* ── Prévia CPF (hero) ── */
#hero-preview-result { margin-top: 16px; width: 100%; max-width: 440px; }

.preview-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    overflow: hidden;
}
.preview-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(0,201,106,0.15);
    border-bottom: 1px solid rgba(0,201,106,0.2);
    color: #00FF7F;
    font-size: 0.82rem;
    font-weight: 600;
}
.preview-dados { padding: 12px 16px; }
.preview-linha {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 12px;
}
.preview-linha:last-child { border-bottom: none; }
.preview-key { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.preview-val { font-size: 0.85rem; color: #fff; font-weight: 600; text-align: right; }

.preview-blur-row {
    padding: 8px 16px;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.preview-blur-text {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 2px;
    filter: blur(3px);
    user-select: none;
}
.preview-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: #00c96a;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.18s;
}
.preview-cta:hover { background: #00a855; color: #fff; }
.preview-erro {
    color: #ff6b6b;
    font-size: 0.82rem;
    padding: 8px 0;
}

/* ── Fix alinhamento botões planos dashboard ── */
.dash-plano-card {
    display: flex;
    flex-direction: column;
}
.dash-btn-plano { margin-top: auto; }

/* ── Responsividade FAQ ── */
@media (max-width: 768px) {
    .faq-area { padding: 32px 0 48px; }
    .faq-container { padding: 28px 20px; }
}

@media (max-width: 480px) {
    .faq-area { padding: 24px 0 40px; }
    .faq-container { padding: 24px 16px; border-radius: 10px; }
    .faq-container h2 { font-size: 1.4rem; }
    .faq-question { font-size: 0.85rem; }
}

/* ══════════════════════════════════════════════════════
   DASHBOARD v2 — Tabs, search melhorado, resultado, histórico, conta
   ══════════════════════════════════════════════════════ */

/* ── Tabs ── */
.dash-tabs {
    display: flex;
    gap: 4px;
    background: #fff;
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.dash-tab {
    flex: 1;
    background: transparent;
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #6b7a8d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: 0.18s;
    font-family: inherit;
    white-space: nowrap;
}
.dash-tab:hover { background: #f0f2f5; color: #1C2D4A; }
.dash-tab.active { background: #1C2D4A; color: #fff; }
.dash-tab.active i { color: #00FF7F; }
.dash-tab-content { display: flex; flex-direction: column; gap: 20px; }

/* ── Search card melhorado ── */
.dash-search-card { padding: 24px 28px 20px; }
.dash-search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 12px;
    flex-wrap: wrap;
}
.dash-search-title { display: flex; align-items: center; gap: 14px; }
.dash-search-title > i {
    font-size: 1.3rem;
    color: #1C2D4A;
    width: 46px;
    height: 46px;
    background: #f0f2f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dash-search-title h2 { font-size: 1rem; font-weight: 700; color: #1C2D4A; margin: 0 0 2px; }
.dash-search-title p  { font-size: 0.8rem; color: #6b7a8d; margin: 0; }
.dash-credit-pill {
    background: rgba(0,201,106,0.1);
    border: 1px solid rgba(0,201,106,0.25);
    color: #00a855;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.dash-search-input-wrap {
    display: flex;
    align-items: center;
    background: #f7f8fa;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 4px 4px 4px 16px;
    gap: 10px;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.dash-search-input-wrap:focus-within {
    border-color: #00c96a;
    box-shadow: 0 0 0 3px rgba(0,201,106,0.12);
    background: #fff;
}
.dash-search-icon { color: #9ca3af; font-size: 0.95rem; flex-shrink: 0; }
.dash-search-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 0;
    font-size: 1.05rem;
    font-family: monospace;
    letter-spacing: 2px;
    color: #111827;
    outline: none;
}
.dash-search-input-wrap input::placeholder { color: #b0bac5; letter-spacing: 0; font-family: inherit; }
.dash-btn-consultar {
    background: #1C2D4A;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: 0.18s;
    font-family: inherit;
    flex-shrink: 0;
}
.dash-btn-consultar:hover:not(:disabled) { background: #00c96a; }
.dash-btn-consultar:disabled { opacity: 0.6; cursor: not-allowed; }
.dash-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.dash-search-tags span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #6b7a8d;
    background: #f7f8fa;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 4px 10px;
}
.dash-search-tags span i { color: #00c96a; font-size: 0.7rem; }

/* ── Resultado melhorado ── */
.dash-resultado { padding: 0; overflow: hidden; }
.dash-resultado-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f2f5;
    flex-wrap: wrap;
}
.dash-resultado-badge {
    background: rgba(0,201,106,0.1);
    color: #00a855;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.dash-resultado-cpf {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1C2D4A;
    font-family: monospace;
    letter-spacing: 1px;
}
.dash-res-secao {
    border-bottom: 1px solid #f5f7fa;
    padding: 0 24px;
}
.dash-res-secao:last-child { border-bottom: none; }
.dash-res-secao-titulo {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #9ca3af;
    padding: 14px 0 8px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.dash-res-secao-titulo i { color: #1C2D4A; font-size: 0.8rem; }
.dash-res-linha {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f9fafb;
    gap: 12px;
}
.dash-res-linha:last-child { border-bottom: none; }
.dash-res-key {
    width: 130px;
    flex-shrink: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: #6b7a8d;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.dash-res-val {
    flex: 1;
    font-size: 0.93rem;
    color: #1C2D4A;
    font-weight: 500;
    word-break: break-word;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dash-copy-btn {
    background: none;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #9ca3af;
    padding: 3px 7px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.15s;
    flex-shrink: 0;
    line-height: 1;
}
.dash-copy-btn:hover { background: #f0f2f5; color: #1C2D4A; }
.dash-resultado-vazio {
    text-align: center;
    color: #6b7a8d;
    padding: 40px 24px;
    font-size: 0.9rem;
}

/* ── Histórico ── */
.dash-hist-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f5f7fa;
}
.dash-hist-item:last-child { border-bottom: none; }
.dash-hist-icon {
    width: 38px;
    height: 38px;
    background: rgba(0,201,106,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00c96a;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.dash-hist-info { flex: 1; min-width: 0; }
.dash-hist-plano { font-size: 0.93rem; font-weight: 700; color: #1C2D4A; margin-bottom: 3px; }
.dash-hist-meta  { font-size: 0.78rem; color: #6b7a8d; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.dash-hist-sep   { color: #d1d5db; }
.dash-hist-pid   { font-family: monospace; font-size: 0.72rem; color: #9ca3af; }
.dash-hist-status { font-size: 0.75rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; flex-shrink: 0; }
.dash-hist-ok      { background: rgba(0,201,106,0.1); color: #00a855; }
.dash-hist-pending { background: rgba(255,193,7,0.12); color: #b45309; }
.dash-historico-vazio { text-align: center; padding: 48px 20px; color: #9ca3af; }
.dash-historico-vazio i { font-size: 2rem; display: block; margin-bottom: 12px; }
.dash-historico-vazio p { font-size: 0.9rem; }
.dash-loading-state {
    text-align: center;
    padding: 32px;
    color: #9ca3af;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.dash-erro-inline { text-align: center; color: #e74c3c; font-size: 0.85rem; padding: 20px; }

/* ── Conta ── */
.dash-conta-info { display: flex; flex-direction: column; }
.dash-conta-linha {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #f5f7fa;
    gap: 16px;
    align-items: center;
}
.dash-conta-linha:last-child { border-bottom: none; }
.dash-conta-label {
    width: 100px;
    flex-shrink: 0;
    font-size: 0.78rem;
    font-weight: 700;
    color: #6b7a8d;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.dash-conta-val { font-size: 0.93rem; color: #1C2D4A; font-weight: 500; word-break: break-all; }
.dash-form-senha { display: flex; flex-direction: column; gap: 14px; }
.dash-field { display: flex; flex-direction: column; gap: 6px; }
.dash-field label { font-size: 0.82rem; font-weight: 600; color: #374151; }
.dash-password-wrap {
    display: flex;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.18s;
}
.dash-password-wrap:focus-within { border-color: #00c96a; }
.dash-password-wrap input {
    flex: 1;
    border: none;
    padding: 11px 14px;
    font-size: 0.93rem;
    color: #111827;
    outline: none;
    background: transparent;
    font-family: inherit;
}
.dash-toggle-pass {
    background: none;
    border: none;
    border-left: 1px solid #e5e7eb;
    padding: 0 13px;
    color: #9ca3af;
    cursor: pointer;
    font-size: 0.85rem;
    transition: color 0.15s;
}
.dash-toggle-pass:hover { color: #1C2D4A; }
.dash-btn-salvar {
    background: #1C2D4A;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.18s;
    font-family: inherit;
    margin-top: 4px;
}
.dash-btn-salvar:hover:not(:disabled) { background: #00c96a; }
.dash-btn-salvar:disabled { opacity: 0.6; cursor: not-allowed; }
.dash-sucesso {
    background: #f0fff8;
    border: 1px solid #00c96a;
    color: #00a855;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Botão flutuante dark mode ── */
.dash-darkmode-toggle {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1C2D4A;
    color: #00FF7F;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    z-index: 300;
}
.dash-darkmode-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

/* ── Módulos de consulta ── */
.dash-modulos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.dash-modulo-btn {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: border-color 0.18s, box-shadow 0.18s, transform 0.15s;
    text-align: center;
    width: 100%;
}
.dash-modulo-btn:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.09);
    transform: translateY(-3px);
}
.dash-modulo-btn > i {
    font-size: 2rem;
}
.dash-modulo-nome {
    font-size: 1rem;
    font-weight: 700;
    display: block;
}
.dash-modulo-desc {
    font-size: 0.8rem;
    color: #6b7a8d;
    display: block;
    margin-top: 2px;
}

.dash-modulo-cpf > i,
.dash-modulo-cpf .dash-modulo-nome { color: #3B82F6; }
.dash-modulo-cpf:hover { border-color: #3B82F6; }

.dash-modulo-cnpj > i,
.dash-modulo-cnpj .dash-modulo-nome { color: #10B981; }
.dash-modulo-cnpj:hover { border-color: #10B981; }

.dash-modulo-telefone > i,
.dash-modulo-telefone .dash-modulo-nome { color: #8B5CF6; }
.dash-modulo-telefone:hover { border-color: #8B5CF6; }

.dash-btn-voltar {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: none;
    border: none;
    color: #6b7a8d;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.15s;
}
.dash-btn-voltar:hover { color: #1C2D4A; }

/* ══════════════════════════════════════════════════════
   DARK MODE
   ══════════════════════════════════════════════════════ */
body.dark-mode.page-dashboard { background: #0f172a; }

/* Navbar */
body.dark-mode .dash-nav { background: #0f172a; border-bottom: 1px solid #1e293b; }

/* Cards */
body.dark-mode .dash-card { background: #1e293b; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }

/* Tabs */
body.dark-mode .dash-tabs { background: #1e293b; }
body.dark-mode .dash-tab  { color: #94a3b8; }
body.dark-mode .dash-tab:hover { background: #273549; color: #f1f5f9; }
body.dark-mode .dash-tab.active { background: #00c96a; color: #fff; }
body.dark-mode .dash-tab.active i { color: #fff; }

/* Fundo geral e área fora dos cards */
body.dark-mode .dash-main         { background: #0f172a; }
body.dark-mode .dash-header       { background: transparent; }

/* Textos */
body.dark-mode .dash-header h1    { color: #f1f5f9; }
body.dark-mode .dash-header-sub   { color: #64748b; }
body.dark-mode .dash-card-header h2 { color: #f1f5f9; }
body.dark-mode .dash-card-header p  { color: #64748b; }
body.dark-mode .dash-search-title h2 { color: #f1f5f9; }
body.dark-mode .dash-search-title p  { color: #64748b; }
body.dark-mode .dash-search-title > i { background: #273549; color: #94a3b8; }

/* Módulos — dark mode */
body.dark-mode .dash-modulo-btn { background: #1e293b; border-color: #2d3f55; }
body.dark-mode .dash-modulo-btn:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.35); }
body.dark-mode .dash-modulo-desc { color: #64748b; }
body.dark-mode .dash-btn-voltar { color: #64748b; }
body.dark-mode .dash-btn-voltar:hover { color: #f1f5f9; }

/* Input de busca */
body.dark-mode .dash-search-input-wrap {
    background: #273549;
    border-color: #334155;
}
body.dark-mode .dash-search-input-wrap:focus-within {
    border-color: #00c96a;
    background: #1e293b;
    box-shadow: 0 0 0 3px rgba(0,201,106,0.15);
}
body.dark-mode .dash-search-input-wrap input { color: #f1f5f9; }
body.dark-mode .dash-search-input-wrap input::placeholder { color: #475569; }
body.dark-mode .dash-search-icon { color: #475569; }

/* Tags */
body.dark-mode .dash-search-tags span {
    background: #273549;
    border-color: #334155;
    color: #94a3b8;
}

/* Resultado */
body.dark-mode .dash-resultado-header { border-bottom-color: #273549; }
body.dark-mode .dash-resultado-cpf    { color: #f1f5f9; }
body.dark-mode .dash-res-secao        { border-bottom-color: #273549; }
body.dark-mode .dash-res-secao-titulo { color: #475569; }
body.dark-mode .dash-res-secao-titulo i { color: #94a3b8; }
body.dark-mode .dash-res-linha        { border-bottom-color: #1a2535; }
body.dark-mode .dash-res-key          { color: #64748b; }
body.dark-mode .dash-res-val          { color: #e2e8f0; }
body.dark-mode .dash-copy-btn         { border-color: #334155; color: #64748b; }
body.dark-mode .dash-copy-btn:hover   { background: #273549; color: #f1f5f9; }

/* Botões */
body.dark-mode .dash-btn-nova   { background: #273549; color: #94a3b8; }
body.dark-mode .dash-btn-nova:hover { background: #00c96a; color: #fff; }
body.dark-mode .dash-btn-logout { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.08); }

/* Sem créditos */
body.dark-mode .dash-aviso-creditos h3 { color: #f1f5f9; }
body.dark-mode .dash-aviso-creditos p  { color: #64748b; }
body.dark-mode .dash-aviso-icon        { color: #334155; }

/* Histórico */
body.dark-mode .dash-hist-item      { border-bottom-color: #273549; }
body.dark-mode .dash-hist-plano     { color: #f1f5f9; }
body.dark-mode .dash-hist-meta      { color: #64748b; }
body.dark-mode .dash-hist-sep       { color: #334155; }
body.dark-mode .dash-hist-pid       { color: #475569; }
body.dark-mode .dash-historico-vazio { color: #475569; }

/* Conta */
body.dark-mode .dash-conta-linha    { border-bottom-color: #273549; }
body.dark-mode .dash-conta-label    { color: #64748b; }
body.dark-mode .dash-conta-val      { color: #e2e8f0; }
body.dark-mode .dash-field label    { color: #94a3b8; }
body.dark-mode .dash-password-wrap  { border-color: #334155; }
body.dark-mode .dash-password-wrap:focus-within { border-color: #00c96a; }
body.dark-mode .dash-password-wrap input { color: #f1f5f9; background: #1e293b; }
body.dark-mode .dash-toggle-pass    { border-left-color: #334155; color: #475569; }
body.dark-mode .dash-toggle-pass:hover { color: #f1f5f9; }

/* Erros e sucesso */
body.dark-mode .dash-erro { background: rgba(192,57,43,0.15); border-color: rgba(192,57,43,0.3); }
body.dark-mode .dash-sucesso { background: rgba(0,201,106,0.1); border-color: rgba(0,201,106,0.3); }
body.dark-mode .dash-erro-inline { color: #f87171; }

/* Modal */
body.dark-mode .dash-modal { background: #1e293b; }
body.dark-mode .dash-modal h3 { color: #f1f5f9; }
body.dark-mode .dash-modal-fechar { background: #273549; color: #94a3b8; }
body.dark-mode .dash-modal-fechar:hover { background: #00c96a; color: #fff; }
body.dark-mode .dash-plano-card { border-color: #334155; }
body.dark-mode .dash-plano-card:hover { border-color: #00c96a; }
body.dark-mode .dash-plano-creditos { color: #f1f5f9; }
body.dark-mode .dash-plano-nome  { color: #64748b; }
body.dark-mode .dash-plano-preco { color: #f1f5f9; }

/* Botão flutuante no dark mode */
body.dark-mode .dash-darkmode-toggle { background: #273549; }

/* ── Card indisponível ── */
.dash-card-indisponivel {
    position: relative;
    overflow: hidden;
}
.dash-card-indisponivel > *:not(.dash-indisponivel-overlay) {
    filter: blur(2px);
    pointer-events: none;
    user-select: none;
}
.dash-indisponivel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    backdrop-filter: blur(1px);
    border-radius: inherit;
}
.dash-indisponivel-overlay i {
    font-size: 1.6rem;
    color: #e74c3c;
}
.dash-indisponivel-overlay span {
    font-size: 1rem;
    font-weight: 700;
    color: #e74c3c;
    letter-spacing: 0.3px;
}
body.dark-mode .dash-indisponivel-overlay {
    background: rgba(5, 10, 20, 0.65);
}

/* ── Ações do resultado (botões nova consulta + exportar) ── */
.dash-resultado-acoes {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.dash-btn-exportar {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f0f2f5;
    color: #1C2D4A;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    font-family: inherit;
    white-space: nowrap;
}
.dash-btn-exportar:hover { background: #1C2D4A; color: #fff; }
body.dark-mode .dash-btn-exportar { background: #273549; color: #94a3b8; }
body.dark-mode .dash-btn-exportar:hover { background: #0088FF; color: #fff; }

/* ── Toast: créditos baixos ── */
.dash-toast {
    position: fixed;
    bottom: 88px;
    right: 28px;
    z-index: 500;
    width: min(400px, calc(100vw - 32px));
    animation: toastSlideIn 0.3s ease;
}
.dash-toast-erro .dash-toast-inner {
    background: #2d1a1a;
    border: 1px solid #c0392b;
}
.dash-toast-erro .dash-toast-icon {
    color: #e74c3c;
}
@keyframes toastSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.dash-toast-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #fcd34d;
    border-left: 4px solid #f59e0b;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.dash-toast-icon { color: #f59e0b; font-size: 1.2rem; flex-shrink: 0; }
.dash-toast-msg {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dash-toast-msg strong { font-size: 0.85rem; color: #1C2D4A; }
.dash-toast-msg span   { font-size: 0.78rem; color: #6b7a8d; }
.dash-toast-comprar {
    background: #1C2D4A;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 7px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.18s;
}
.dash-toast-comprar:hover { background: #0088FF; }
.dash-toast-fechar {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.18s;
}
.dash-toast-fechar:hover { color: #1C2D4A; }
body.dark-mode .dash-toast-inner { background: #1e2d3d; border-color: #f59e0b; }
body.dark-mode .dash-toast-msg strong { color: #f1f5f9; }
body.dark-mode .dash-toast-msg span   { color: #94a3b8; }
body.dark-mode .dash-toast-fechar:hover { color: #f1f5f9; }

/* ── Impressão / exportar PDF ── */
@media print {
    body * { visibility: hidden; }
    #card-resultado,
    #card-resultado *,
    #card-resultado-cnpj,
    #card-resultado-cnpj *,
    #card-resultado-telefone,
    #card-resultado-telefone * { visibility: visible; }
    #card-resultado,
    #card-resultado-cnpj,
    #card-resultado-telefone {
        position: fixed;
        top: 0; left: 0;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 20px;
    }
    .dash-resultado-acoes,
    .dash-btn-nova,
    .dash-copy-btn,
    .dash-nav,
    .dash-darkmode-toggle,
    .dash-modal-overlay,
    .dash-sub-tabs,
    .dash-toast { display: none !important; }
    .dash-resultado-header { padding: 0 0 16px; }
    .dash-res-secao { break-inside: avoid; }
}

/* ── Responsivo dashboard v2 ── */
@media (max-width: 700px) {
    .dash-modulos-grid { grid-template-columns: 1fr; }
    .dash-modulo-btn { flex-direction: row; padding: 20px; text-align: left; gap: 16px; }
    .dash-modulo-btn > i { font-size: 1.5rem; flex-shrink: 0; }
    .dash-modulo-info { display: flex; flex-direction: column; }
}
@media (max-width: 600px) {
    .dash-tabs { padding: 4px; }
    .dash-tab  { padding: 9px 10px; font-size: 0.8rem; gap: 5px; }
    .dash-search-card { padding: 18px 16px 14px; }
    .dash-search-card .dash-search-input-wrap {
        flex-wrap: wrap;
        padding: 8px 12px 12px;
        gap: 6px;
    }
    .dash-search-card .dash-search-input-wrap input {
        min-width: 0;
        flex: 1;
    }
    .dash-search-card .dash-btn-consultar {
        flex: 0 0 100%;
        justify-content: center;
        border-radius: 10px;
        padding: 12px 20px;
    }
    .dash-credit-pill { font-size: 0.72rem; padding: 4px 9px; }
    .dash-search-tags span { font-size: 0.7rem; padding: 3px 8px; }
    .dash-resultado-header { padding: 14px 16px; }
    .dash-res-secao { padding: 0 16px; }
    .dash-res-key { width: 100px; }
    .dash-hist-meta { flex-direction: column; gap: 2px; align-items: flex-start; }
    .dash-hist-sep { display: none; }
    .dash-conta-label { width: 80px; }
}

/* ============================================================
   BLOG
   ============================================================ */

.page-blog {
    background: #f4f6f9;
    min-height: 100vh;
}

/* ── Navbar ── */
.blog-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background: #1C2D4A;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.blog-nav-logo img {
    height: 36px;
    display: block;
}

.blog-nav-links {
    display: flex;
    gap: 28px;
}

.blog-nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.blog-nav-links a:hover,
.blog-nav-links a.active {
    color: #fff;
}

.blog-nav-cta {
    background: #00FF7F;
    color: #1C2D4A !important;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 20px;
    transition: background 0.2s;
    white-space: nowrap;
}

.blog-nav-cta:hover {
    background: #00e070;
}

/* ── Main ── */
.blog-main {
    padding-bottom: 60px;
}

/* ── Hero listagem ── */
.blog-hero-listing {
    background: #1C2D4A;
    text-align: center;
    padding: 60px 20px 50px;
}

.blog-hero-listing h1 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.blog-hero-listing p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
}

/* ── Container ── */
.blog-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ── Grid de cards ── */
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 8px;
}

.blog-card {
    background: #fff;
    border-radius: 14px;
    display: flex;
    gap: 24px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e8ecf2;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.blog-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #1C2D4A;
    flex-shrink: 0;
}

.blog-card-content { flex: 1; }

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.78rem;
    color: #999;
    margin-bottom: 10px;
}

.blog-card-meta span { display: flex; align-items: center; gap: 5px; }

.blog-card h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1C2D4A;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card h2 a {
    color: inherit;
    transition: color 0.2s;
}

.blog-card h2 a:hover { color: #0066cc; }

.blog-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1C2D4A;
    background: #eef4ff;
    padding: 7px 14px;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
}

.blog-card-btn:hover {
    background: #1C2D4A;
    color: #fff;
}

/* ── Artigo individual ── */
.blog-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 28px;
    transition: color 0.2s;
}

.blog-back:hover { color: #1C2D4A; }

.blog-article {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    border: 1px solid #e8ecf2;
    margin-bottom: 40px;
}

.article-header {
    background: #1C2D4A;
    padding: 24px 32px 20px;
}

.article-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.article-tag {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-header h1 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 10px;
}

.article-meta {
    display: flex;
    gap: 16px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
}

.article-meta span { display: flex; align-items: center; gap: 5px; }

.article-cover {
    display: flex;
    justify-content: center;
    background: #f4f6f9;
    padding: 24px;
    border-bottom: 1px solid #e8ecf2;
}

.article-cover img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    border-radius: 10px;
}

.article-body {
    padding: 40px 48px;
    color: #333;
    line-height: 1.8;
    font-size: 1rem;
}

.article-intro {
    font-size: 1.07rem;
    color: #444;
    line-height: 1.85;
    border-left: 4px solid #00FF7F;
    padding-left: 20px;
    margin-bottom: 32px;
    font-weight: 500;
}

.article-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1C2D4A;
    margin: 36px 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eef4ff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1C2D4A;
    margin: 24px 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-body h3 i { color: #0066cc; font-size: 0.9rem; }

.article-body p { margin-bottom: 16px; }

.article-body ul,
.article-body ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.article-body ul { list-style: disc; }
.article-body ol { list-style: none; padding-left: 0; }

.article-body ul li,
.article-body ol li {
    margin-bottom: 8px;
    color: #444;
}

.article-body a {
    color: #0066cc;
    text-decoration: underline;
}

/* ── Callout ── */
.article-callout {
    background: #fff8e6;
    border: 1px solid #f5c842;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin: 24px 0;
}

.article-callout i {
    color: #e6a800;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.article-callout p { margin: 0; font-size: 0.92rem; }

.article-callout-info {
    background: #eef4ff;
    border-color: #b3ccff;
}

.article-callout-info i { color: #0066cc; }

/* ── Steps ── */
.article-steps {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.article-steps li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f7f9fc;
    border-radius: 10px;
    padding: 16px 20px;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1C2D4A;
    color: #00FF7F;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.article-steps strong {
    display: block;
    color: #1C2D4A;
    margin-bottom: 4px;
}

.article-steps p { margin: 0; font-size: 0.88rem; color: #666; }

/* ── CTA inline ── */
.article-cta {
    background: #1C2D4A;
    border-radius: 14px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 36px 0;
}

.article-cta h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.article-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    margin: 0;
}

.article-cta-btn {
    background: #00FF7F;
    color: #1C2D4A;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 22px;
    border-radius: 25px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.article-cta-btn:hover { background: #00e070; }

/* ── FAQ ── */
.article-faq {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.article-faq-item {
    background: #f7f9fc;
    border-radius: 10px;
    padding: 18px 22px;
}

.article-faq-item h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1C2D4A;
    margin-bottom: 8px;
    display: block;
}

.article-faq-item p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

/* ── Artigos relacionados ── */
.blog-related h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1C2D4A;
    margin-bottom: 16px;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.blog-related-card {
    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #1C2D4A;
    font-size: 0.88rem;
    font-weight: 600;
    transition: box-shadow 0.2s, transform 0.2s;
}

.blog-related-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.blog-related-card i {
    font-size: 1.2rem;
    color: #0066cc;
    flex-shrink: 0;
}

/* ── Footer ── */
.blog-footer {
    background: #1C2D4A;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.blog-footer p {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
}

.blog-footer-links {
    display: flex;
    gap: 20px;
}

.blog-footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    transition: color 0.2s;
}

.blog-footer-links a:hover { color: #fff; }

/* ── Responsivo ── */
@media (max-width: 768px) {
    .blog-nav { padding: 14px 20px; }
    .blog-nav-links { display: none; }
    .article-header { padding: 28px 24px; }
    .article-header h1 { font-size: 1.5rem; }
    .article-body { padding: 28px 24px; }
    .article-cta { flex-direction: column; align-items: flex-start; }
    .blog-related-grid { grid-template-columns: 1fr; }
    .blog-footer { flex-direction: column; text-align: center; }
    .blog-card { flex-direction: column; gap: 16px; }
}
}
