/* Estilos para la sección de FAQ */
.faq-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background-color: #fff;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question h3 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #4F2987;
    font-weight: 600;
}

.faq-toggle {
    color: #4F2987;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #333;
    font-family: 'Roboto', sans-serif;
}

/* Estilos para el texto introductorio */
.faq-intro {
    background-color: #f8f9fa;
    border-left: 4px solid #4f2987;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-intro p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

/* Estilos para la sección de CTA de contacto */
.contact-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9edf2 100%);
    position: relative;
    overflow: hidden;
}

.contact-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.contact-cta-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.contact-cta-content h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.contact-cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(to right, #4f2987, #bd8222);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(79, 41, 135, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transition: all 0.6s ease;
}

.contact-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(79, 41, 135, 0.4);
}

.contact-cta-button:hover:before {
    left: 100%;
}

.button-icon {
    margin-right: 10px;
    font-size: 18px;
}

.button-arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.contact-cta-button:hover .button-arrow {
    transform: translateX(5px);
}

.contact-cta-decoration {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    z-index: 1;
    opacity: 0.5;
}

.decoration-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f2987 0%, #bd8222 100%);
    opacity: 0.1;
    top: -100px;
    right: -100px;
}

.decoration-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#4f2987 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .contact-cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-cta-content {
        max-width: 100%;
    }
    
    .contact-cta-decoration {
        display: none;
    }
    
    .contact-cta-content h2 {
        font-size: 28px;
    }
    
    .contact-cta-content p {
        font-size: 16px;
    }
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-section {
        padding: 30px 15px;
    }
}