/* ========================= */
/* --- Paleta de Cores --- */
/* ========================= */
:root {
    --primary-dark: #002a88;
    --primary-purple: #6538c5;
    --light-grey: #eaeaea;
    --white: #ffffff;
    --primary-blue: #0056d6;
}

/* ========================= */
/* --- Estilos Globais --- */
/* ========================= */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--white);
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1{
    color: var(--white);
    text-align: center;
}
h2, h3{
     color: var(S --primary-dark);
    text-align: center;
}

p {
    text-align: center;
    line-height: 1.6;
}

/* ========================= */
/* --- Header Fixo --- */
/* ========================= */
.main-header {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-main {
    font-size: 2.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
    transition: color 0.3s;
    line-height: 1;
}

.logo-main:hover {
    color: var(--primary-blue);
}

.logo-sub {
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    color: var(--white);
    transition: color 0.3s;
    margin-top: 5px;
}

.logo-sub:hover {
    color: var(--primary-blue);
}

/* ========================= */
/* --- Hero Section --- */
/* ========================= */
.hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: var(--white);
    text-align: center;
}

/* ESTILO DO BOTÃO CTA */
.cta-button {
    display: inline-block;
    background-color: var(--primary-purple);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    margin-top: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background-color: #552b9a; /* Roxo um pouco mais escuro */
    transform: translateY(-2px);
}
/* ========================= */
/* --- Slider de Fotos --- */
/* ========================= */
<style>
#hcg-slider-1 .hcg-slide-container {
    width: auto;
    height: auto;
}
.hcg-slider {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}
.hcg-slide-container {
    max-width: 100%;
    display: inline-block;
    position: relative;
}
.hcg-slides {
    display: none;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: solid 1px #a0a0a0;
}
.hcg-slides img {
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
}
.hcg-slide-dot-control {
    margin-top: 10px;
    text-align: center;
}
.hcg-slide-dot {
    cursor: pointer;
    height: 13px;
    width: 13px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}
.hcg-slide-dot.dot-active {
    background-color: #717171;
}
.hcg-slide-number {
    color: #ffffff;
    font-size: 12px;
    padding: 4px 7px;
    position: absolute;
    border-radius: 5px;
    top: 5px;
    left: 5px;
    background-color: rgba(255,255,255,0.30);
}
/************CSS Animation***********/

.animated { 
    animation-name: fadeIn; 
    animation-duration: 1s;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.fadeIn {
    animation-name: fadeIn;
}


</style>

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: var(--white);
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
    border: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
/* ========================= */
/* --- Seção de Vantagens --- */
/* ========================= */
.vantagens-section {
    padding: 60px 0;
    background-color: var(--light-grey);
}

.vantagens-grid {
    display: flex;
    justify-content: center; /* Centraliza o grid */
    flex-wrap: wrap;
    gap: 30px; /* Aumenta o espaçamento entre os cards */
    margin-top: 40px;
}

.vantagem-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px; /* Bordas mais suaves */
    box-shadow: 0 8px 16px rgba(0,0,0,0.1); /* Sombra mais pronunciada */
    text-align: center;
    flex: 0 1 320px; /* Flexível, mas com largura máxima para controle */
    transition: all 0.3s ease; /* Transição para o hover */
    border: 1px solid #ddd; /* Borda sutil */
}

.vantagem-card:hover {
    transform: translateY(-8px); /* Levanta um pouco no hover */
    box-shadow: 0 12px 24px rgba(0,0,0,0.15); /* Sombra maior no hover */
}

.vantagem-card img {
    margin-bottom: 20px; /* Mais espaço para o ícone */
    width: 70px; /* Ícones um pouco maiores */
    height: 70px;
    object-fit: contain; /* Garante que a imagem se encaixe */
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2)); /* Sombra para os ícones */
}

.vantagem-card h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.vantagem-card p {
    color: #555; /* Cor de texto mais suave */
    font-size: 0.95rem;
}

/* ========================= */
/* --- Seção de Cursos --- */
/* ========================= */
.cursos-section {
    padding: 60px 0;
}

.cursos-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.curso-card {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 30px;
    border-radius: 12px; /* Bordas mais suaves */
    box-shadow: 0 8px 16px rgba(0,0,0,0.15); /* Sombra para destacar */
    text-align: center;
    flex: 0 1 320px; /* Flexível, mas com largura máxima */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; /* Para flexibilizar o conteúdo interno */
    flex-direction: column;
    justify-content: space-between; /* Empurra o botão para baixo */
    min-height: 250px; /* Altura mínima para os cards */
}

.curso-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.curso-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.curso-card p {
    color: var(--light-grey);
    font-size: 1rem;
    flex-grow: 1; /* Permite que o parágrafo ocupe o espaço restante */
    margin-bottom: 20px;
}

.modal-trigger {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 12px 25px; /* Botão maior */
    border-radius: 8px; /* Bordas mais suaves */
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: auto; /* Garante que o botão fique no final do card */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.modal-trigger:hover {
    background-color: #0045b3;
    transform: translateY(-2px); /* Pequeno efeito no hover do botão */
}
.modal-trigger {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.modal-trigger:hover {
    background-color: #0045b3;
}

.modal-triggerr {
    background-color: red;
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.modal-triggerr:hover {
    background-color: #0045b3;
}
/* ========================= */
/* --- Modal (Popup) --- */
/* ========================= */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--white);
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
    animation: fadeIn 0.5s;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========================= */
/* --- Seção de FAQ --- */
/* ========================= */
.faq-section {
    padding: 60px 0;
    background-color: var(--light-grey);
}

.faq-acordeao {
    max-width: 800px;
    margin: 40px auto;
}

.acordeao-item {
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
}

.acordeao-titulo {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s;
    color: var(--primary-dark);
}

.acordeao-titulo:hover {
    color: var(--primary-purple);
}

.acordeao-conteudo {
    padding: 0 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* ========================= */
/* --- Formulário de Contato --- */
/* ========================= */
.contato-section {
    padding: 60px 0;
    background-color: var(--primary-purple);
    color: var(--white);
}

.contato-section h2 {
    color: var(--white);
}

#contato-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 40px auto;
}

#contato-form input {
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
}

.submit-button {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #0045b3;
}

/* ========================= */
/* --- Footer --- */
/* ========================= */
.main-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.main-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-info p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #ccc;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-blue);
}

/* ========================= */
/* --- Estilos do Quiz --- */
/* ========================= */
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.quiz-option-button {
    background-color: var(--light-grey);
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.quiz-option-button:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.quiz-option-button.selected {
    background-color: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
}

.quiz-area h3,
.quiz-area p {
    text-align: left;
}
/* ========================= */
/* --- Responsividade --- */
/* ========================= */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

   
    .vantagem-card,
    .curso-card {
        width: 90%;
        max-width: 350px;
        /* Remover a altura mínima para permitir o crescimento */
        min-height: auto;
    }

    .curso-card p,
    .curso-card .cta-button,
    .curso-card .modal-trigger {
        margin: 10px 0; /* Adiciona espaçamento entre os elementos dentro do card */
    }

    .curso-card.destaque .modal-trigger {
        margin-top: 15px; /* Adiciona um espaço extra entre os botões */
    }


    .modal-content {
        width: 100%;
        margin: 10% auto;
    }
}
/* ========================= */
/* --- Destaque de Curso --- */
/* ========================= */
.curso-card.destaque {
    background-color: var(--primary-purple); /* Fundo roxo */
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s infinite ease-in-out; /* Animação mais suave */
    border: 3px solid var(--primary-blue); /* Borda mais grossa e azul */
    box-shadow: 0 0 25px rgba(101, 56, 197, 0.6); /* Sombra mais vibrante */
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 15px rgba(101, 56, 197, 0.5), 0 0 10px var(--primary-blue); }
    50% { box-shadow: 0 0 30px rgba(101, 56, 197, 0.9), 0 0 20px var(--primary-blue); }
    100% { box-shadow: 0 0 15px rgba(101, 56, 197, 0.5), 0 0 10px var(--primary-blue); }
}

.destaque-selo {
    position: absolute;
            
    right: -45px; /* Ajustado para melhor posicionamento */
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 7px 50px; /* Selo um pouco maior */
    font-size: 0.9rem;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3); /* Sombra para o selo */
    z-index: 10; /* Garante que o selo fique acima de tudo */
}

.curso-card.destaque h3 {
    color: var(--white); /* Mantém o texto branco no destaque */
}

.curso-card.destaque p {
    color: #e0e0e0; /* Texto mais claro para melhor contraste no fundo roxo */
}

/* ========================= */
/* --- Chatbot Falso --- */
/* ========================= */
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Cor do WhatsApp */
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}
/* NOVO: Estilo do balão de notificação */
.notification-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #FF0000; /* Vermelho vivo */
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: bold;
    animation: pulse-badge 1s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.fake-chat-container {
    position: fixed;
    bottom: 95px; /* Acima do botão do WhatsApp */
    right: 25px;
    width: 320px;
    height: 400px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 999;
    display: none; /* Escondido por padrão */
    flex-direction: column;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.chat-header {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header span {
    font-weight: bold;
}

#chat-close-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-body {
    flex-grow: 1;
    padding: 15px;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}

.message {
    padding: 10px 15px;
    border-radius: 18px;
    max-width: 80%;
}

.message.received {
    background-color: #e0e0e0;
    align-self: flex-start;
}

.chat-footer {
    padding: 15px;
    display: flex;
    justify-content: center;
    background-color: var(--white);
    border-top: 1px solid #ddd;
}

.chat-whatsapp-button {
    background-color: #25D366;
    color: var(--white);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

.chat-whatsapp-button:hover {
    background-color: #128C7E;
}

/* Responsividade do Chat */
@media (max-width: 400px) {
    .fake-chat-container {
        width: 90%;
        right: 5%;
        left: 5%;
    }
}