/* Preguntas Frecuentes */
.faq {
    background: white;
    padding: 60px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    text-align: center;
}

.faq h2 {
    font-size:2.1rem;
    margin-bottom: 30px;
    color: #003366;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.faq-item summary {
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
    color: #00509e;
}

.faq-item summary:hover {
    color: #e8a317;
}

.faq-item[open] {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.faq-bubble {
    margin-top: 10px;
    padding: 15px;
    background-color: #f4f8fb;
    border-radius: 12px;
    font-size: 1rem;
    color: #555;
}