/* Estilos para a seção de depoimentos */
.testimonials-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.testimonials-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.testimonials-subtitle {
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.testimonials-highlight {
    color: var(--primary);
    font-weight: bold;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    width: 300px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-video {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.testimonial-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(232, 63, 142, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-play:hover {
    background-color: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-play:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid white;
    margin-left: 5px;
}

.testimonial-info {
    padding: 20px;
    text-align: center;
}

.testimonial-name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary);
}

.testimonial-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.5;
}

/* Estilos para a seção de critérios de elegibilidade */
.eligibility-section {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.eligibility-title {
    font-size: 36px;
    margin-bottom: 50px;
}

.eligibility-title span {
    color: var(--primary);
}

.eligibility-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.eligibility-card {
    width: 250px;
    height: 250px;
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.eligibility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.eligibility-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.eligibility-icon svg {
    width: 25px;
    height: 25px;
    fill: white;
}

.eligibility-text {
    text-align: center;
    line-height: 1.5;
}

.eligibility-text strong {
    color: var(--dark);
    font-weight: bold;
}

.eligibility-text .highlight {
    color: var(--primary);
    font-weight: bold;
}

.eligibility-cta {
    margin-top: 40px;
}

.eligibility-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.eligibility-button:hover {
    background-color: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Estilos para ícones de redes sociais no rodapé */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card {
        width: 90%;
        max-width: 350px;
    }
    
    .eligibility-container {
        flex-direction: column;
        align-items: center;
    }
    
    .eligibility-card {
        width: 90%;
        max-width: 300px;
    }
}
