/* ================= CONTACTO ================= */

.contacto_section {
    padding: 80px 20px;
    background: #ffffff;
    margin-top:4% ;
}

.contacto_container {
    max-width: 1100px;
    margin: auto;
}

/* HERO */
.contacto_hero {
    text-align: center;
    margin-bottom: 60px;
}

.contacto_hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0c2b1f;
}

.contacto_hero p {
    color: #555;
}

/* HORARIOS */
.contacto_horarios {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f1faf7;
    padding: 35px;
    border-radius: 18px;
    margin-bottom: 60px;
}

.btn_reservar {
    background: #2b8a78;
    color: white;
    padding: 16px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.btn_reservar:hover {
    background: #1f675a;
    transform: scale(1.05);
}

/* CONTACTO CARDS */
.contacto_info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contacto_card {
    background: #fafafa;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.06);
}

.contacto_card a {
    display: inline-block;
    margin-top: 10px;
    color: #2b8a78;
    font-weight: 600;
    text-decoration: none;
}

/* UBICACIÓN */
.contacto_ubicacion {
    margin-bottom: 60px;
}

.mapa iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 16px;
    margin-top: 20px;
}

/* FORM */
.contacto_form {
    background: #f8faf9;
    padding: 40px;
    border-radius: 18px;
}

.contacto_form form {
    display: grid;
    gap: 15px;
}

.contacto_form input,
.contacto_form textarea {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.contacto_form button {
    background: #2b8a78;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
}

/* Animaciones */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* RESPONSIVE */
@media (max-width: 700px) {
    .contacto_horarios {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .contacto_hero h1 {
        font-size: 2rem;
    }
}
