/* Pré-carregamento de fontes modernas */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

/* Rolagem suave ao clicar nos links do menu */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0b0e14;
    color: #ffffff;
    overflow-x: hidden; /* Evita rolagem horizontal indesejada no celular */
}

/* Área Principal - Azul da Logo */
.hero-gradient {
    background: linear-gradient(135deg, #0a192f 0%, #113a5d 100%);
    padding: 80px 0 100px;
    position: relative;
    border-bottom: 3px solid #ffcc00;
}

/* Animações de Entrada (Deixa o site parecendo Premium) */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Seções */
.info-section { background-color: #0b0e14; padding: 60px 0; }
.section-bg-darker { background-color: #07090d; padding: 60px 0; }

.icon-box {
    font-size: 3rem;
    color: #3da1ff;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(61, 161, 255, 0.4);
}

.info-description {
    color: #a1aab3 !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Tabela Comparativa Responsiva */
.table-custom { color: #ffffff; border-collapse: separate; border-spacing: 0 10px; }
.table-custom th { border-bottom: 2px solid #2a3241; padding: 12px; font-size: 1rem; }
.table-custom td { background-color: #161b22; padding: 15px; border-bottom: none; border-top: 1px solid #2a3241; font-size: 0.9rem;}
.table-custom tr td:first-child { border-radius: 10px 0 0 10px; border-left: 1px solid #2a3241; }
.table-custom tr td:last-child { border-radius: 0 10px 10px 0; border-right: 1px solid #2a3241; }

/* FAQ */
.faq-box {
    background-color: #161b22;
    border: 1px solid #2a3241;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.faq-box:hover { border-color: #3da1ff; }

/* Cartões de Preço Base */
.pricing-card {
    border-radius: 20px;
    border: 1px solid #2a3241;
    background: linear-gradient(145deg, #161b22, #10141a);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: #ffffff !important;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #3da1ff;
    box-shadow: 0 15px 40px rgba(61, 161, 255, 0.15);
}

/* Cartão Destaque - Tema Campeão */
.pricing-highlight {
    background: linear-gradient(135deg, #1863d6 0%, #0a2e6b 100%);
    transform: scale(1.05);
    border: 2px solid #ffcc00;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.2);
    z-index: 2;
}

.pricing-highlight:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 0 45px rgba(255, 204, 0, 0.4);
}

/* Responsividade Extra para Cartões no Mobile */
@media (max-width: 768px) {
    .pricing-highlight { transform: scale(1); margin-top: 20px; margin-bottom: 20px; }
    .pricing-highlight:hover { transform: scale(1) translateY(-5px); }
    .display-4 { font-size: 2.2rem; } /* Título menor no celular */
}

/* Botões */
.btn-gold {
    background-color: #ffcc00;
    color: #000;
    font-weight: 800;
    border-radius: 10px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
}
.btn-gold:hover { background-color: #ffd633; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3); color: #000;}

.btn-blue {
    background-color: #1863d6;
    color: white;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s;
    border: none;
}
.btn-blue:hover { background-color: #3da1ff; color: white; transform: translateY(-2px); box-shadow: 0 8px 15px rgba(24, 99, 214, 0.4); }

/* Modal Personalizado */
.modal-content { background-color: #161b22; border: 1px solid #3da1ff; color: white; border-radius: 15px; }
.modal-header { border-bottom: 1px solid #2a3241; }
.form-control, .form-select { background-color: #0b0e14; border: 1px solid #2a3241; color: white; }
.form-control:focus, .form-select:focus { background-color: #0b0e14; border-color: #ffcc00; color: white; box-shadow: 0 0 0 0.25rem rgba(255, 204, 0, 0.25); }

/* Rodapé */
.footer-dark { background-color: #05070a; border-top: 1px solid #2a3241; padding: 40px 0 20px; color: #a1aab3; font-size: 0.9rem; }
.footer-dark a { color: #3da1ff; text-decoration: none; transition: 0.3s; }
.footer-dark a:hover { color: #ffcc00; }

/* Botão Flutuante do WhatsApp */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.float-whatsapp:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
    color: white;
}

/* Responsividade da Navbar (Logo e Botão lado a lado no celular) */
.logo-img {
    height: 50px;
    transition: height 0.3s ease;
}

/* Regras apenas para telas de celular (menores que 576px) */
@media (max-width: 576px) {
    .logo-img {
        height: 35px; /* Deixa a logo um pouco menor para caber melhor */
    }

    .btn-mobile-sm {
        padding: 0.4rem 1rem !important; /* Diminui o preenchimento do botão */
        font-size: 0.85rem !important; /* Diminui a letra do botão */
    }
}
