.main {
    background-color: #f3efbf;
}

/* SECCIÓN CONTACTO */

.contacto-section {
    min-height: calc(80dvh - 90px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contacto-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contacto-section p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* INFO CONTACTO */

.contacto-info p {
    margin: 0.6rem 0;
    font-size: 1.05rem;
}

.contacto-info i {
    color: #dcb763;
    margin-right: 10px;
}

.contacto-info a {
    color: #332f24;
    text-decoration: none;
    font-weight: 500;
}

.contacto-info a:hover {
    text-decoration: underline;
}

/* REDES SOCIALES */

.contacto-redes {
    margin-top: 1.5rem;
}

.contacto-redes a {
    font-size: 1.8rem;
    margin-right: 15px;
    color: #332f24;
    transition: color 0.3s;
}

.contacto-redes a:hover {
    color: #dcb763;
}

/* MAPA */

.mapa-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.mapa-container iframe {
    width: 100%;
    height: 380px;
    border: 0;
}

/* FOOTER */

footer {
    margin-top: 0;
}

@media (max-width: 767px) {
    .contacto-section {
        justify-content: flex-start; 
        margin-top: 50px;
    }

    footer {
        margin-top: 50px;
    }

}

@media (min-width: 768px) {
    html, body {
        overflow-y: hidden;
    }
}