    
:root {
    --fatecie-blue: #00204a;
    --fatecie-yellow: #ffcc00;
    --light-gray: #f8f9fa;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body { font-family: 'Inter', sans-serif; color: #333; overflow-x: hidden; }

/* Navbar Custom */
.navbar { background: var(--fatecie-blue); padding: 15px 0; }
.navbar-brand img { height: 45px; }

/* Hero Moderno */
.hero-v2 {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

/* Seção de Cursos com Preço */
.course-list-item {
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    transition: var(--transition);
    background: #fff;
}
.course-list-item:hover {
    border-color: var(--fatecie-yellow);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: scale(1.01);
}

.price-tag {
    color: var(--fatecie-blue);
    font-weight: 800;
    font-size: 1.2rem;
}

/* Estatísticas com Degradê */
.stat-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: none;
}

/* Testemunhos */
.swiper-testimonial { padding: 50px 0; }
.testimonial-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 20px;
    font-style: italic;
}

/* Emec Seal */
.emec-container {
    background: #fff;
    border: 2px dashed #ddd;
    border-radius: 15px;
    padding: 20px;
    max-width: 300px;
    margin: 0 auto;
}

/* Botões */
.btn-fatecie {
    background: var(--fatecie-yellow);
    color: var(--fatecie-blue);
    font-weight: 700;
    border-radius: 10px;
    padding: 12px 25px;
    border: none;
    transition: var(--transition);
}
.btn-fatecie:hover { background: #e6b800; transform: translateY(-2px); }

/* Estilo da Logo para o Header */
.logo-main { filter: brightness(1); }

/* Estilização dos Depoimentos */
.testimonial-wrapper {
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.whatsapp-print-card {
    width: 100%;
    max-width: 250px; /* Largura de um celular aproximada */
    transition: transform 0.3s ease;
    border: 8px solid #f1f1f1;
    border-radius: 25px;
    overflow: hidden;
}

.whatsapp-print-card:hover {
    transform: scale(1.05) rotate(-2deg);
}

.testimonial-text-overlay {
    text-align: center;
    max-width: 350px;
}

.testimonial-text-overlay p {
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
}

/* Cor da paginação para combinar com a Fatecie */
.swiper-pagination-bullet-active {
    background: var(--fatecie-yellow) !important;
}

.footer-modern {
    background-color: #001530; /* Azul ainda mais escuro para o rodapé */
    color: #ffffff;
    padding-top: 80px;
    margin-top: 50px;
}

.footer-logo {
    height: 50px;
    filter: brightness(1);
}

.footer-text {
    color: #a0aec0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--fatecie-yellow);
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
    color: #a0aec0;
    font-size: 0.9rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--fatecie-yellow);
    padding-left: 5px;
}

.footer-contact i {
    color: var(--fatecie-yellow);
    margin-right: 10px;
    width: 15px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--fatecie-yellow);
    color: #001530;
    transform: translateY(-3px);
}

.emec-box {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.x-small { font-size: 0.75rem; color: #a0aec0; }

.footer-divider {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 40px 0 20px;
}

.copyright-text, .dev-text {
    font-size: 0.85rem;
    color: #718096;
}


/* Botão WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px; /* Lado oposto ao botão de subir ao topo */
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: scale(1.1) rotate(5deg);
}

/* Ajuste Mobile para os dois botões não brigarem por espaço */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 25px;
    }
}

/* Estilo dos Polos */
.polo-card {
    border: 1px solid #eee;
    border-radius: 20px;
    background: #fff;
    transition: var(--transition);
}

.polo-card:hover {
    border-color: var(--fatecie-yellow);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

.polo-img-wrapper img {
    width: 150px;
    height: 100px;
    object-fit: cover;
}

#filtroEstado {
    padding: 12px 20px;
    border: 2px solid #eee;
}

#filtroEstado:focus {
    border-color: var(--fatecie-yellow);
    box-shadow: none;
}

@media (max-width: 768px) {
    .polo-img-wrapper img {
        width: 100%;
        height: 180px;
    }
    .polo-card {
        text-align: center;
    }
}