/* SECCIÓN CONTACTO Y RESERVAS (Layout de pantalla completa) */
.contacto-reservas {
    background-color: #A6401B;
    padding: 60px 0;
    width: 100%;
    min-height: 100vh; /* Fuerza a que ocupe toda la pantalla de alto en ordenadores */
    display: flex;
    align-items: center;
    color: #E2D9C5;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.contacto-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr; /* Estructura de 2 columnas principales */
    align-items: center; /* Centrado vertical */
    padding: 0 4%;
    gap: 60px;
    width: 100%;
}

/* COLUMNA INFO (IZQUIERDA - Flujo Vertical) */
.contacto-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.header-contacto {
    margin-bottom: 20px;
}

.contacto-info .pre-title {
    font-size: 0.75rem;
    letter-spacing: 4px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.contacto-info .main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    line-height: 1.1;
    color: #FFFFFF;
}

.contacto-info .italic-title {
    font-style: italic;
    font-weight: 300;
    color: #fbfbfb;
}

.divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, #D9B68B, transparent);
    margin: 15px 0;
    width: 90%;
}

.contacto-text {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.85;
    margin-bottom: 20px;
}

/* BOTONES REDES SOCIALES */
.social-prompt { margin-bottom: 25px; }
.social-prompt p { font-size: 0.85rem; margin-bottom: 10px; color: #D9B68B; font-weight: 600; }
.social-buttons { display: flex; gap: 10px; }

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    transition: transform 0.2s, filter 0.2s;
}
.btn-whatsapp { background-color: #25D366; }
.btn-instagram { background-color: #E1306C; }
.btn-social:hover { transform: translateY(-2px); filter: brightness(1.1); }

/* DETALLES DE CONTACTO */
.info-item h4 { font-size: 0.7rem; letter-spacing: 2px; color: #f7f7f7; margin-bottom: 2px; }
.info-item p { font-size: 0.85rem; line-height: 1.4; opacity: 0.9; }
.contacto-directo { display: flex; gap: 20px; margin-top: 15px; } /* Tel y email en línea */

/* DETALLES DE UBICACIÓN Y MAPA INTEGRADO (Compacto) */
.ubicacion-item {
    margin-bottom: 10px;
}

.direccion-texto {
    margin-bottom: 12px;
}

.barrio { color: #ffffff; font-weight: 600; font-size: 0.8rem; }

.mapa-integrado-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 500px; /* Tamaño controlado del mapa */
    height: 180px;      /* Alto reducido para un diseño compacto */
    display: block;
}

.mapa-integrado-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

/* COLUMNA FORMULARIO (DERECHA - Se mantiene alienado) */
.form-container {
    background-color: #BF754B;
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.reserva-form { display: flex; flex-direction: column; gap: 15px; }
.form-group-row { display: flex; gap: 12px; }
.form-group { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; color: #381F16; margin-bottom: 2px;}

.form-container input, 
.form-container textarea {
    width: 100%;
    background-color: rgba(226, 217, 197, 0.3);
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    color: #381F16;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}

.form-container input::placeholder, 
.form-container textarea::placeholder { color: rgba(56, 31, 22, 0.6); }
.form-container input:focus, .form-container textarea:focus { outline: 1px solid #381F16; }

.btn-submit {
    background-color: #A6401B;
    color: #FFFFFF;
    border: none;
    padding: 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 5px;
}
.btn-submit:hover { background-color: #381F16; transform: scale(1.01); }
.form-footer-notice { text-align: center; font-size: 0.65rem; color: rgba(255,255,255,0.8); margin: 0; }

/* ==========================================
   RESPONSIVO AVANZADO
   ========================================== */
@media (max-width: 1024px) {
    .contacto-wrapper {
        grid-template-columns: 1fr; /* Una sola columna vertical para móviles y tablets */
        gap: 50px;
        align-items: flex-start;
    }
    .mapa-integrado-container {
        max-width: 100%;
        height: 250px; /* Un poco más de alto en móvil */
    }
    .contacto-reservas { padding: 80px 0; }
    .contacto-directo { flex-direction: column; gap: 15px; }
}

@media (max-width: 600px) {
    .form-group-row { flex-direction: column; gap: 15px; }
    .social-buttons { flex-direction: column; }
    .form-container { padding: 30px 20px; }
}

/* Mantiene los iconos en línea horizontal y centrados o alineados */
    .social-buttons {
        flex-direction: row !important; 
        gap: 15px;
        justify-content: flex-start; /* Cambiar a center si prefieres centrados en móvil */
    }

    /* Transforma el botón completo en un círculo compacto */
    .btn-social {
        width: 45px;
        height: 45px;
        padding: 0 !important; /* Elimina el espacio del texto */
        border-radius: 50% !important; /* Lo hace completamente redondo */
        justify-content: center; /* Centra el icono dentro del círculo */
        font-size: 1.2rem; /* Sube un poco el tamaño del icono para que se vea nítido */
        text-indent: -9999px; /* Esconde el texto de forma accesible */
        white-space: nowrap;
        overflow: hidden;
    }

    /* Asegura que el icono Font Awesome se mantenga visible y centrado */
    .btn-social i {
        text-indent: 0;
        display: block;
    }


/* ==========================================
   ESTILOS DEL FOOTER GENERAL
   ========================================== */
.main-footer {
    background-color: #1a2920; /* Verde súper oscuro y elegante para el fondo */
    padding: 80px 0 0 0;
    color: #D4C9B0; /* Tu tono crema suave para los textos cortos */
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(130, 142, 101, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.1fr; /* Proporciones limpias de columnas */
    gap: 50px;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #828E65; /* Tu verde oliva para títulos secundarios */
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 600;
}

/* COLUMNA 1: BRANDING */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo-circle {
    width: 45px;
    height: 45px;
    border: 1px solid #828E65;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: #828E65;
    font-weight: bold;
}

.logo-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #FFFFFF;
    margin: 0;
}

.logo-text p,a{
    font-size: 0.6rem;
    letter-spacing: 2px;
    margin: 2px 0 0 0;
    opacity: 0.7;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 25px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    color: #f4f4f4;
    font-size: 0.9rem;
    opacity: 0.5;
    transition: opacity 0.3s, color 0.3s;
}

.footer-social-icons a:hover {
    opacity: 1;
    color: #828E65;
}

/* COLUMNA 2: NAVEGACIÓN */
.col-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.col-nav a {
    color: #D4C9B0;
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.7;
    transition: opacity 0.3s, padding-left 0.3s;
}

.col-nav a:hover {
    opacity: 1;
    padding-left: 5px;
    color: #FFFFFF;
}

/* COLUMNA 3: HORARIOS */
.hours-item {
    margin-bottom: 15px;
}

.hours-item h5 {
    font-size: 0.85rem;
    color: #FFFFFF;
    margin-bottom: 4px;
    font-weight: 500;
}

.hours-item p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.6;
    line-height: 1.4;
}

/* COLUMNA 4: CONTACTO */
.col-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.col-contact li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.7;
}

.col-contact li i {
    color: #828E65;
    font-size: 0.9rem;
    margin-top: 3px;
}

/* BARRA INFERIOR DE COPYRIGHT */
.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(212, 201, 176, 0.05);
    padding: 25px 0;
}

.bottom-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    opacity: 0.4;
    letter-spacing: 0.5px;
}
.bottom-wrapper  a{
   color: #ffffff;
}

/* ==========================================
   RESPONSIVO DEL FOOTER
   ========================================== */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr; /* 2 columnas en tablets */
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr; /* 1 columna vertical en móvil */
        gap: 35px;
    }
    
    .footer-col h4 {
        margin-bottom: 15px;
    }
    
    .bottom-wrapper {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}