/* Estilos para contacto.html */

.page-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/foto5.jpg');
    background-size: cover;
    background-position: center 26%;
    padding: 120px 20px;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-family: var(--Anton);
    font-size: 3rem;
    color: var(--color_secundario);
}

.contact-wrapper {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    padding-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--color_fondo_gris);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1.5rem;
    color: var(--color_secundario);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--texto_oscuro);
}

.contact-text p {
    color: #666;
    line-height: 1.6;
}

.map-container {
    width: 100%;
    height: 400px;
    background: #eee;
    margin-bottom: 4rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}