/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --vermelho-primario: #e52521;
    --vermelho-escuro: #c41e1a;
    --vermelho-claro: #ff6b68;
    --cinza-escuro: #2c2c2c;
    --cinza-medio: #666;
    --cinza-claro: #f5f5f5;
    --branco: #ffffff;
    --preto: #000000;
    --gradiente-vermelho: linear-gradient(135deg, var(--vermelho-primario) 0%, var(--vermelho-escuro) 100%);
    --sombra-card: 0 10px 30px rgba(229, 37, 33, 0.1);
    --sombra-hover: 0 15px 40px rgba(229, 37, 33, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.cabecalho {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.8s ease-out;
}

.barra-topo {
    background: linear-gradient(135deg, #e53935,#ff1100);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.barra-topo .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-contato {
    display: flex;
    gap: 20px;
}

.info-contato span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.redes-sociais {
    display: flex;
    gap: 10px;
}

.redes-sociais a {
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.redes-sociais a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.navegacao {
    padding: 15px 0;
}

.navegacao .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.menu-desktop {
    display: flex;
    list-style: none;
    gap: 30px;
}

.menu-desktop a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.menu-desktop a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #e53935,#ff1100);
    transition: width 0.3s ease;
}

.menu-desktop a:hover::after {
    width: 100%;
}

.acoes-header {
    display: flex;
    gap: 15px;
}

.botao-login, .botao-cadastro-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.botao-login {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.botao-login:hover {
    background: #333;
    color: white;
}

.botao-cadastro-header {
    background: linear-gradient(135deg, #e53935,#ff1100);
    color: white;
    border: 2px solid transparent;
}

.botao-cadastro-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.menu-mobile {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
/* Seção Hero */
.secao-hero {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.secao-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.conteudo-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Texto Hero */
.texto-hero {
    color: white;
}

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-hero i {
    color: #fbbf24;
    animation: pulse 2s infinite;
}

.titulo-principal {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.destaque {
    color: #fbbf24;
    position: relative;
}



.subtitulo-destaque {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 8px;
}

.subtitulo {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.beneficios-rapidos {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.beneficio-rapido {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.beneficio-rapido i {
    color: #22c55e;
    font-size: 1.1rem;
}

.botoes-hero {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.botao-primario, .botao-secundario {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.botao-primario {
    background: white;
    color: #dc2626;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.botao-primario:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: #f9fafb;
}

.botao-secundario {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.botao-secundario:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.garantia {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.garantia i {
    color: #22c55e;
}

/* Imagem Hero */
.imagem-hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

/* Produto em Destaque */
.produto-destaque {
    position: relative;
    z-index: 3;
}

.container-produto {
    position: relative;
    width: 550px;
    height: 550px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container-produto::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
    animation: shine 3s infinite;
}

.foto-produto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.badge-produto {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.badge-produto i {
    color: #fbbf24;
}

/* Cards Flutuantes */
.cards-flutuantes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.card-flutuante {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 15px;
    color: #1f2937;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-flutuante h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 8px 0 4px;
    color: #374151;
}

.card-flutuante p {
    font-size: 0.9rem;
    font-weight: 700;
    color: #dc2626;
    margin: 0;
}

.card-flutuante i {
    font-size: 1.2rem;
    color: #dc2626;
}

/* Posicionamento dos cards */
.card-sorteio {
    top: 20px;
    right: -20px;
    animation: float 3s ease-in-out infinite;
}

.card-comunidade {
    bottom: 60px;
    left: -30px;
    animation: float 3s ease-in-out infinite 1s;
}

.card-desconto {
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    animation: float 3s ease-in-out infinite 2s;
}

/* Animações */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Responsivo */
@media (max-width: 1024px) {
    .conteudo-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .titulo-principal {
        font-size: 2.8rem;
    }
    
    .subtitulo-destaque {
        font-size: 2rem;
    }
    
    .container-produto {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .secao-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .titulo-principal {
        font-size: 2.2rem;
    }
    
    .subtitulo-destaque {
        font-size: 1.6rem;
    }
    
    .subtitulo {
        font-size: 1.1rem;
    }
    
    .botoes-hero {
        justify-content: center;
    }
    
    .botao-primario, .botao-secundario {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .container-produto {
        width: 250px;
        height: 250px;
        padding: 20px;
    }
    
    .card-flutuante {
        padding: 12px 16px;
        min-width: 100px;
    }
    
    .card-flutuante h4 {
        font-size: 0.8rem;
    }
    
    .card-flutuante p {
        font-size: 0.85rem;
    }
}

/* Seção de Benefícios */
.secao-beneficios {
    padding: 100px 0;
    background: var(--cinza-claro);
}

.titulo-secao {
    text-align: center;
    margin-bottom: 60px;
}

.badge-secao {
    display: inline-block;
    background: var(--gradiente-vermelho);
    color: var(--branco);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.titulo-secao h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cinza-escuro);
    margin-bottom: 15px;
}

.titulo-secao p {
    font-size: 1.1rem;
    color: var(--cinza-medio);
    max-width: 600px;
    margin: 0 auto;
}

.grade-beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.card-beneficio {
    background: var(--branco);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sombra-card);
}

.card-beneficio:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-hover);
}

.card-beneficio::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--gradiente-vermelho);
    transition: left 0.3s ease;
}

.card-beneficio:hover::before {
    left: 0;
}

.icone-beneficio {
    width: 80px;
    height: 80px;
    background: var(--gradiente-vermelho);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(229, 37, 33, 0.3);
}

.icone-beneficio i {
    font-size: 32px;
    color: var(--branco);
}

.card-beneficio h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--cinza-escuro);
}

.card-beneficio p {
    color: var(--cinza-medio);
    line-height: 1.6;
    margin-bottom: 20px;
}

.badge-beneficio {
    display: inline-block;
    background: rgba(229, 37, 33, 0.1);
    color: var(--vermelho-primario);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}


/* Partners Section */
.secao-parceiros {
    padding: 100px 0;
    background: white;
}

.grade-parceiros {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.card-parceiro {
    position: relative;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card-parceiro:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.logo-parceiro {
    width: 55%;
    height: 80%;
    margin-left: 75px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-parceiro:hover .logo-parceiro {
    transform: scale(1.1);
}

.overlay-parceiro {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.card-parceiro:hover .overlay-parceiro {
    transform: translateY(0);
}

.overlay-parceiro h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.overlay-parceiro p {
    font-size: 14px;
    opacity: 0.9;
}

.estatisticas-parceiros {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
}

.stat-parceiro {
    text-align: center;
}

.numero-parceiro {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #e53935;
    line-height: 1;
}

.texto-parceiro {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

/* CTA Section */
.secao-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    position: relative;
    overflow: hidden;
}

.secao-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="200" cy="100" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="600" cy="150" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="1000" cy="80" r="4" fill="rgba(255,255,255,0.1)"/></svg>');
}

.conteudo-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.texto-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.texto-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.estatisticas {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat .numero {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #e53935;
    line-height: 1;
}

.stat .texto {
    font-size: 14px;
    opacity: 0.8;
}

.urgencia {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.2);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #e53935;
}

.urgencia i {
    color: #e53935;
    font-size: 18px;
}

.card-destaque {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.card-destaque i {
    font-size: 50px;
    color: #e53935;
    margin-bottom: 20px;
}

.card-destaque h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-destaque p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.data-sorteio {
    display: block;
    font-size: 18px;
    color: #e53935;
    font-weight: 600;
    margin-bottom: 30px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tempo-item {
    text-align: center;
}

.numero-tempo {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #e53935;
    line-height: 1;
    margin-bottom: 5px;
}

.label-tempo {
    font-size: 12px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form Section */
.secao-formulario {
    padding: 100px 0;
    background: #f8fafc;
}

.conteudo-formulario {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.info-formulario h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-formulario p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
}

.beneficios-formulario {
    margin-bottom: 40px;
}

.item-beneficio {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

.item-beneficio i {
    color: #4ade80;
    font-size: 18px;
}

.seguranca-info {
    margin-top: 40px;
}

.selo-seguranca {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.selo-seguranca i {
    font-size: 30px;
    color: #4ade80;
}

.selo-seguranca h4 {
    color: #1e293b;
    margin-bottom: 5px;
}

.selo-seguranca p {
    color: #64748b;
    font-size: 14px;
}

.formulario-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.formulario-cadastro h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 30px;
    font-weight: 600;
}

.grupo-campo {
    margin-bottom: 25px;
}

.grupo-campo label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.grupo-campo input,
.grupo-campo select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.grupo-campo input:focus,
.grupo-campo select:focus {
    outline: none;
    border-color: #e53935;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background: white;
}

.erro-campo {
    display: block;
    color: #ef4444;
    font-size: 14px;
    margin-top: 5px;
}

.botao-cadastro {
    width: 100%;
    background: linear-gradient(135deg, #e53935,#ff1100);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.botao-cadastro:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.botao-cadastro:active {
    transform: translateY(0);
}

/* Testimonials Section */
.secao-testemunhos {
    padding: 100px 0;
    background: white;
}

.grade-testemunhos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.card-testemunho {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card-testemunho:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.estrelas {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.estrelas i {
    color: #fbbf24;
    font-size: 18px;
}

.card-testemunho p {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 30px;
    font-style: italic;
}

.autor-testemunho {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e53935;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-autor .nome {
    display: block;
    font-weight: 600;
    color: #1e293b;
    font-size: 16px;
}

.info-autor .cargo {
    display: block;
    color: #64748b;
    font-size: 14px;
}

.info-autor .localizacao {
    display: block;
    color: #94a3b8;
    font-size: 12px;
}

.badge-testemunho {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #e53935,#ff1100);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* FAQ Section */
.secao-faq {
    padding: 100px 0;
    background: #f8fafc;
}

.accordion-faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 18px;
    color: #1e293b;
    font-weight: 600;
}

.faq-question i {
    color: #e53935;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.ativo .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.ativo .faq-answer {
    max-height: 200px;
    margin-top: 10px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #64748b;
    line-height: 1.7;
}

/* Final CTA Section */
.secao-final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #e53935,#ff1100);
    color: white;
}

.conteudo-final {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.texto-final h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.texto-final p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.beneficios-finais {
    display: flex;
    gap: 30px;
}

.beneficios-finais span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.beneficios-finais i {
    color: #4ade80;
}

.botao-final {
    background: white;
    color: #e53935;
    border: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.botao-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}



/* Seção Final de Chamada */
.secao-final-cta {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.secao-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    animation: flutuar 20s linear infinite;
}

.conteudo-final {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.texto-final {
    flex: 1;
    color: white;
}

.texto-final h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.texto-final p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.beneficios-finais {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.beneficios-finais span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.beneficios-finais i {
    color: #22c55e;
    font-size: 1.2rem;
}

.botao-final {
    background: white;
    color: #dc2626;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.botao-final:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

.botao-final i {
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}
/* Responsividade Seção CTA */
@media (max-width: 1024px) {
  .conteudo-cta {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .texto-cta, .imagem-cta {
    width: 100%;
    text-align: center;
  }

  .estatisticas {
    justify-content: center;
  }

  .estatisticas .stat {
    flex: 1 1 30%;
    margin-bottom: 20px;
  }

  .card-destaque {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .secao-cta {
    padding: 40px 20px;
  }

  .texto-cta h2 {
    font-size: 2rem;
  }

  .texto-cta p {
    font-size: 1rem;
  }

  .estatisticas {
    flex-direction: column;
    gap: 15px;
  }

  .estatisticas .stat {
    width: 100%;
  }

  .urgencia {
    font-size: 0.9rem;
  }

  .card-destaque h4 {
    font-size: 1.2rem;
  }

  .card-destaque p {
    font-size: 0.95rem;
  }

  .data-sorteio {
    display: block;
    margin: 10px 0;
    font-size: 1rem;
  }

  /* Countdown: de 3 colunas para 2 */
  .countdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-items: center;
  }

  .tempo-item .numero-tempo {
    font-size: 1.5rem;
  }

  .tempo-item .label-tempo {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .secao-cta {
    padding: 30px 15px;
  }

  .texto-cta h2 {
    font-size: 1.75rem;
  }

  .texto-cta p {
    font-size: 0.95rem;
  }

  .estatisticas {
    gap: 10px;
  }

  .estatisticas .stat {
    flex-direction: column;
    align-items: center;
  }

  .urgencia {
    font-size: 0.8rem;
  }

  .card-destaque {
    width: 100%;
    padding: 20px;
  }

  .countdown {
    grid-template-columns: 1fr;
  }

  .tempo-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .tempo-item .numero-tempo {
    font-size: 1.25rem;
  }

  .tempo-item .label-tempo {
    font-size: 0.8rem;
  }
}

/* Footer */
/* Footer Styles */
.rodape {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
}

.conteudo-rodape {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Primeira fileira - Logo centralizada */
.logo-rodape {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.logo-rodape img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.logo-rodape p {
    max-width: 600px;
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0;
}

/* Segunda fileira - Conteúdo em duas colunas */
.conteudo-principal-rodape {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin: 40px 0;
}

/* Coluna de Contato */
.coluna-contato h4 {
    color: #ff0000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-contato-rodape {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-contato-rodape span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 15px;
}

.info-contato-rodape i {
    color: #ff0000;
    width: 16px;
    text-align: center;
}

/* Coluna de Suporte */
.coluna-suporte h4 {
    color: #ff0000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.links-rodape {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links-rodape li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.links-rodape li a:hover {
    color: #ff0000;
}

.links-rodape li a::before {
    content: "→";
    color: #ff0000;
    font-weight: bold;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.links-rodape li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Redes Sociais */
.redes-sociais-rodape {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.redes-sociais-rodape a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.redes-sociais-rodape a:hover {
    background-color: #ff0000;
    color: #ffffff;
    border-color: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Linha divisória */
.linha-divisoria {
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    margin: 40px 0 20px;
}

/* Terceira fileira - Copyright */
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

.copyright p {
    margin: 0;
    color: #999999;
    font-size: 14px;
}

.desenvolvido {
    text-align: right;
}

.jeffcode {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.jeffcode:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .rodape {
        padding: 40px 0 20px;
    }
    
    .conteudo-principal-rodape {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .logo-rodape img {
        max-width: 150px;
    }
    
    .logo-rodape p {
        font-size: 14px;
    }
    
    .copyright {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .desenvolvido {
        text-align: center;
    }
    
    .redes-sociais-rodape {
        gap: 10px;
    }
    
    .redes-sociais-rodape a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .conteudo-rodape {
        gap: 30px;
    }
    
    .conteudo-principal-rodape {
        gap: 25px;
    }
    
    .info-contato-rodape,
    .links-rodape {
        gap: 10px;
    }
    
    .coluna-contato h4,
    .coluna-suporte h4 {
        font-size: 16px;
    }
}

/* Botões Flutuantes */
.botao-flutuante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #dc2626;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.botao-flutuante:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
}

.botao-flutuante i {
    font-size: 1.5rem;
}

.tooltip-flutuante {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.botao-flutuante:hover .tooltip-flutuante {
    opacity: 1;
}

.botao-topo {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #333;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.botao-topo.show {
    opacity: 1;
    visibility: visible;
}

.botao-topo:hover {
    background: #dc2626;
    transform: translateY(-3px);
}

/* Modais */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-header {
    text-align: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid #eee;
}

.modal-header i {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 15px;
}

.modal-header h3 {
    color: #333;
    margin: 0;
    font-size: 1.5rem;
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.proximos-passos {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.proximos-passos h4 {
    color: #dc2626;
    margin-bottom: 15px;
}

.proximos-passos ul {
    list-style: none;
    padding: 0;
}

.proximos-passos li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.proximos-passos i {
    color: #dc2626;
    width: 20px;
}

.modal-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.botao-modal {
    background: #dc2626;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.botao-modal:hover {
    background: #b91c1c;
}

/* Loading */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #dc2626;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-spinner p {
    color: #666;
    font-size: 1.1rem;
}

/* Animações */
@keyframes flutuar {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100vw); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* RESPONSIVIDADE */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .conteudo-final {
        flex-direction: column;
        text-align: center;
    }
    
    .texto-final h2 {
        font-size: 2rem;
    }
    
    .beneficios-finais {
        justify-content: center;
    }
    
    .conteudo-rodape {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Tablets Pequenos (768px) */
@media (max-width: 768px) {
    .secao-final-cta {
        padding: 60px 0;
    }
    
    .texto-final h2 {
        font-size: 1.8rem;
    }
    
    .texto-final p {
        font-size: 1.1rem;
    }
    
    .beneficios-finais {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .botao-final {
        padding: 18px 35px;
        font-size: 1.1rem;
    }
    
    .conteudo-rodape {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .copyright {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .botao-flutuante {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .botao-topo {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Smartphones (480px) */
@media (max-width: 480px) {
    .secao-final-cta {
        padding: 50px 0;
    }
    
    .texto-final h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .texto-final p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .beneficios-finais span {
        font-size: 1rem;
    }
    
    .botao-final {
        padding: 16px 30px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .rodape {
        padding: 40px 0 20px;
    }
    
    .logo-rodape img {
        max-width: 150px;
    }
    
    .redes-sociais-rodape a {
        width: 40px;
        height: 40px;
    }
    
    .input-newsletter {
        flex-direction: column;
    }
    
    .input-newsletter input {
        border-radius: 8px;
        margin-bottom: 10px;
    }
    
    .input-newsletter button {
        border-radius: 8px;
        padding: 12px;
    }
    
    .certificados {
        justify-content: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 20px;
    }
    
    .modal-header i {
        font-size: 3rem;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .botao-flutuante {
        width: 50px;
        height: 50px;
    }
    
    .botao-flutuante i {
        font-size: 1.3rem;
    }
    
    .tooltip-flutuante {
        display: none;
    }
}

/* Smartphones Pequenos (360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }
    
    .secao-final-cta {
        padding: 40px 0;
    }
    
    .texto-final h2 {
        font-size: 1.4rem;
    }
    
    .botao-final {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
    
    .rodape {
        padding: 30px 0 15px;
    }
    
    .coluna-rodape h4 {
        font-size: 1.1rem;
    }
    
    .logo-rodape img {
        max-width: 120px;
    }
    
    .redes-sociais-rodape a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
}

/* Responsividade para seções anteriores */
@media (max-width: 1024px) {
    .cabecalho .container {
        padding: 0 20px;
    }
    
    .menu-desktop {
        display: none;
    }
    
    .menu-mobile {
        display: block;
    }
    
    .acoes-header {
        display: none;
    }
}

@media (max-width: 768px) {
    .barra-topo {
        display: none;
    }
    
    .navegacao {
        padding: 15px 0;
    }
    
    .logo img {
        max-width: 120px;
    }
    
    .secao-hero {
        padding: 60px 0;
    }
    
    .conteudo-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .titulo-principal {
        font-size: 2rem;
    }
    
    .subtitulo {
        font-size: 1rem;
    }
    
    .beneficios-rapidos {
        justify-content: center;
    }
    
    .botoes-hero {
        flex-direction: column;
        width: 100%;
    }
    
    .botao-primario,
    .botao-secundario {
        width: 100%;
    }
    
    .cards-flutuantes {
        margin-top: 40px;
        position: relative;
    }
    
    .grade-beneficios {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .grade-parceiros {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grade-testemunhos {
        grid-template-columns: 1fr;
    }
    
    .conteudo-formulario {
        flex-direction: column;
    }
    
    .accordion-faq {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .secao-hero {
        padding: 40px 0;
    }
    
    .titulo-principal {
        font-size: 1.8rem;
    }
    
    .beneficios-rapidos {
        flex-direction: column;
        align-items: center;
    }
    
    .grade-parceiros {
        grid-template-columns: 1fr;
    }
    
    .estatisticas-parceiros {
        flex-direction: column;
        gap: 15px;
    }
    
    .formulario-cadastro {
        padding: 20px;
    }
    
    .grupo-campo {
        margin-bottom: 15px;
    }
    
    .botao-cadastro {
        padding: 15px;
        font-size: 1rem;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .conteudo-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .titulo-principal {
        font-size: 2.5rem;
    }
    
    .subtitulo-destaque {
        font-size: 1.8rem;
    }
    
    .botoes-hero {
        flex-direction: column;
        align-items: center;
    }
    
    .conteudo-formulario {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .menu-desktop {
        display: none;
    }
    
    .menu-mobile {
        display: block;
    }
    
    .info-contato {
        display: none;
    }
    
    .grade-beneficios {
        grid-template-columns: 1fr;
    }
    
    .imagem-hero {
        height: 300px;
    }
    
    .area-foto-hero {
        width: 300px;
        height: 300px;
    }
}


/* ============================================
   SISTEMA DE NOTIFICAÇÕES TOAST
   ============================================ */

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    pointer-events: none;
    max-width: 420px;
    width: 100%;
}

.toast {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    margin-bottom: 16px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    border-left: 4px solid;
    min-height: 80px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estados do Toast */
.toast-entrando {
    transform: translateX(100%);
    opacity: 0;
}

.toast-visivel {
    transform: translateX(0);
    opacity: 1;
}

.toast-saindo {
    transform: translateX(100%);
    opacity: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 0;
}

/* Tipos de Toast */
.toast-sucesso {
    border-left-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.toast-erro {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.toast-aviso {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.toast-info {
    border-left-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

/* Ícone do Toast */
.toast-icone {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 4px;
}

.toast-sucesso .toast-icone {
    background: #10b981;
    color: white;
}

.toast-erro .toast-icone {
    background: #ef4444;
    color: white;
}

.toast-aviso .toast-icone {
    background: #f59e0b;
    color: white;
}

.toast-info .toast-icone {
    background: #3b82f6;
    color: white;
}

.toast-icone i {
    font-size: 16px;
}

/* Conteúdo do Toast */
.toast-conteudo {
    flex: 1;
    min-width: 0;
}

.toast-titulo {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
    color: #1f2937;
}

.toast-mensagem {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    word-wrap: break-word;
}

/* Botão Fechar */
.toast-fechar {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    color: #9ca3af;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.toast-fechar:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #6b7280;
}

.toast-fechar i {
    font-size: 12px;
}

/* Barra de Progresso */
.toast-progresso {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.05);
}

.toast-barra {
    height: 100%;
    width: 0;
    transition: width 0.1s ease;
}

.toast-sucesso .toast-barra {
    background: #10b981;
}

.toast-erro .toast-barra {
    background: #ef4444;
}

.toast-aviso .toast-barra {
    background: #f59e0b;
}

.toast-info .toast-barra {
    background: #3b82f6;
}

/* Animação da barra de progresso */
@keyframes toast-progresso {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* Responsividade */
@media (max-width: 480px) {
    .toast-container {
        left: 16px;
        right: 16px;
        top: 16px;
        max-width: none;
    }
    
    .toast {
        padding: 16px;
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .toast-titulo {
        font-size: 15px;
    }
    
    .toast-mensagem {
        font-size: 13px;
    }
    
    .toast-icone {
        width: 28px;
        height: 28px;
    }
    
    .toast-icone i {
        font-size: 14px;
    }
}

/* ============================================
   MELHORIAS NO LOADING OVERLAY
   ============================================ */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.loading-spinner {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    width: 90%;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    margin: 0;
    color: #6b7280;
    font-size: 16px;
    font-weight: 500;
}

/* ============================================
   MELHORIAS NOS CAMPOS DE ERRO
   ============================================ */

.grupo-campo.erro input,
.grupo-campo.erro select {
    border-color: #ef4444;
    background-color: #fef2f2;
    animation: shake 0.5s ease-in-out;
}

.grupo-campo.erro label {
    color: #ef4444;
}

.erro-campo {
    color: #ef4444;
    font-size: 14px;
    margin-top: 4px;
    display: block;
    font-weight: 500;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}

/* ============================================
   BOTÃO DE TESTE (APENAS DESENVOLVIMENTO)
   ============================================ */

.botao-teste-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #6366f1;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.botao-teste-toast:hover {
    background: #5856eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

/* Ocultar em produção */
body:not(.desenvolvimento) .botao-teste-toast {
    display: none;
}



/* Estilo para link ativo */
.menu-desktop li a.ativo {
    color: #000000;
    font-weight: 600;
}

.menu-desktop li a.ativo::before {
    width: 80%;
}

.menu-mobile-dropdown a.ativo {
    color: #000000;
    font-weight: 600;
}

.menu-mobile-dropdown a.ativo i {
    color: #000000;
}

/* =================================
   MELHORIAS DO HEADER
   ================================= */



.barra-topo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.barra-topo .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-contato {
    display: flex;
    gap: 24px;
    align-items: center;
}

.info-contato span {
    color: #ecf0f1;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.info-contato span:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.info-contato i {
    font-size: 12px;
}

.redes-sociais {
    display: flex;
    gap: 12px;
    align-items: center;
}

.redes-sociais a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecf0f1;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.redes-sociais a:hover {
    transform: translateY(-2px) scale(1.1);
}

/* Navegação principal melhorada */
.navegacao {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navegacao .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.menu-desktop {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.menu-desktop li a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu-desktop li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0px;
    background: linear-gradient(90deg, #ff0000, #eb1f1f);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}



.menu-desktop li a:hover::before {
    width: 80%;
}

/* Menu mobile melhorado */
.menu-mobile {
    display: none;
    cursor: pointer;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
    position: relative;
}

.menu-mobile:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
}

.menu-mobile.ativo {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    transform: rotate(90deg);
}

/* Menu mobile dropdown */
.menu-mobile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.menu-mobile-dropdown.ativo {
    opacity: 1;
    visibility: visible;
    transform: translateY(8px);
}

.menu-mobile-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}

.menu-mobile-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.menu-mobile-dropdown li {
    margin: 0;
}

.menu-mobile-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.menu-mobile-dropdown a:hover {
    background: rgba(243, 156, 18, 0.1);
    color: #ff0000;
    border-left-color: #ff0000;
    padding-left: 24px;
}

.menu-mobile-dropdown a i {
    width: 16px;
    font-size: 14px;
    color: #95a5a6;
    transition: color 0.3s ease;
}

.menu-mobile-dropdown a:hover i {
    color: #ff0000;
}

/* Responsividade */
@media (max-width: 991px) {
    .info-contato {
        gap: 16px;
    }
    
    .info-contato span {
        font-size: 12px;
    }
    
    .redes-sociais a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .barra-topo .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .info-contato {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .menu-desktop {
        display: none;
    }
    
    .menu-mobile {
        display: flex;
    }
    
    .navegacao .container {
        position: relative;
    }
}

@media (max-width: 480px) {
    .info-contato {
        flex-direction: column;
        gap: 8px;
    }
    
    .barra-topo {
        padding: 12px 0;
    }
    
    .navegacao {
        padding: 12px 0;
    }
    
    .logo img {
        height: 40px;
    }
}


.jeffcode{
    text-decoration: none;
    color: #ff0000;
}



a{
    text-decoration: none;
    color: #ff0000;
}



