/* Placeholder para imagens - Estilos adicionais */
.placeholder-image {
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #6c757d;
    padding: 2rem;
    text-align: center;
    height: 100%;
    min-height: 200px;
}

    color: #212529;
    margin-bottom: 1rem;
}

/* Galeria de imagens */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    aspect-ratio: 1/1;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contador de vagas */
.vagas-counter {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.vagas-counter h4 {
    color: #212529;
    margin-bottom: 1rem;
}

.vagas-number {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    line-height: 1;
}

.vagas-text {
    font-size: 1.2rem;
    color: #343A40;
}

/* Contagem regressiva */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 1.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
    min-width: 70px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
}

/* Certificado */
.certificate-preview {
    border: 5px solid #FFD700;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 2rem;
}

.certificate-preview h3 {
    font-family: 'Playfair Display', serif;
    color: #343A40;
    margin-bottom: 1rem;
}

.certificate-preview .logo {
    margin-bottom: 1.5rem;
}

.certificate-preview .signature {
    margin-top: 2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Depoimentos adicionais */
.testimonial-card {
    position: relative;
    padding-top: 40px;
}

.testimonial-image {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Botão flutuante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Animações adicionais */
.zoom-in {
    transition: transform 0.3s;
}

.zoom-in:hover {
    transform: scale(1.05);
}

/* Melhorias para responsividade */
@media (max-width: 767.98px) {
    .countdown-container {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 8px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .certificate-preview {
        padding: 1rem;
    }
}
