/* ===== CONTENEDOR PRINCIPAL ===== */
#contact {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 6px solid #cb8e66; 
    border-bottom: 6px solid #cb8e66; 
    text-align: center;
}

/* TÍTULO */
#contact h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #5b89ae; /* gruta azul */
}

/* DESCRIPCIÓN */
#contact > p {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
}

/* ===== CONTACT OPTIONS ===== */
.contact-options {
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact-option {
   width: 100%;
   max-width: 700px;
   background-color: #fefefe;
   padding: 25px;
   border-radius: 10px;
   box-shadow: 0 3px 15px rgba(0,0,0,0.07);
   border-left: 5px solid #5b89ae; /* acento */
}

/* SUBTÍTULOS */
.contact-option h3 {
    color: #5b89ae;
    margin-bottom: 10px;
    font-size: 24px;
}

/* TEXTO */
.contact-option p {
    font-size: 17px;
    color: #444;
}

/* ===== MAPA ===== */
.mapa {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #d3d2c7; /* verde salvia */
}

.mapa iframe {
    width: 100%;
    height: 300px;
}

/* ===== HORARIO ===== */
.horario {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.horario li {
    font-size: 16px;
    margin-bottom: 6px;
}

/* ===== LINK FINAL ===== */
#contact a {
    color: #cb8e66;
    font-weight: bold;
    text-decoration: none;
}

#contact a:hover {
    color: #5b89ae;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    #contact {
        padding: 20px;
    }

    .contact-option {
        padding: 20px;
    }

    .mapa iframe {
        height: 220px;
    }
}
