/* Estilos para página de contacto */

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 0;
}

.contact-container h1 {
    color: #06233a;
    font-size: 32px;
    margin-bottom: 16px;
}

.contact-intro {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-section {
    background: #fff;
    border: 1px solid #e6eef2;
    border-radius: 12px;
    padding: 24px;
}

.contact-section h2 {
    color: #06233a;
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item strong {
    color: #06233a;
    display: block;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--muted);
    margin: 0;
    font-size: 14px;
}

.contact-hours {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-hours li {
    color: #334155;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-hours li:last-child {
    border-bottom: none;
}

.contact-note {
    background: #f0fbfd;
    border-left: 4px solid var(--accent);
    padding: 16px;
    border-radius: 0 8px 8px 0;
    margin-top: 20px;
}

.contact-note p {
    margin: 0;
    color: #334155;
    font-size: 14px;
}

.faq-section {
    margin-top: 32px;
}

.faq-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e6eef2;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    color: #06233a;
    font-size: 16px;
    margin-bottom: 8px;
    margin-top: 0;
}

.faq-item p {
    color: #334155;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (min-width: 700px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .contact-container {
        padding: 16px;
    }

    .contact-container h1 {
        font-size: 26px;
    }

    .contact-section {
        padding: 20px;
    }
}
