@charset "utf-8";

/* =======================================================
   CONTENEDOR PRINCIPAL (GRID) - NOMBRES ORIGINALES
   ======================================================= */
.contenedor-mapa-elegante {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

#reservas {
    scroll-margin-top: 100px;
}

/* PC: Mapa a la derecha */
.grid-contacto-mapa {
    display: flex;
    flex-direction: row; 
    flex-wrap: wrap; /* Permite que baje en móvil */
    gap: 40px;
    align-items: stretch;
    justify-content: flex-start;
}

/* =======================================================
   COLUMNA IZQUIERDA: CONTACTO
   ======================================================= */
.col-contacto {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
	order: 1; /* Texto y botones primero */
}

.titulo-reservas {
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 25px;
    width: 100%;
}

/* TARJETA LLAMADA - Mantengo tus estilos de padding y bordes */
.tarjeta-contacto {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 480px; 
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 15px 25px;
    margin-bottom: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* EL ICONO DORADO */
.icono-circular {
    background-color: #d4af37;
    color: #1a0f0a;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.2rem;
}

/* TEXTO "LLÁMANOS" Y NÚMERO (Uno encima de otro) */
.info-texto {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-texto .label {
    font-size: 0.7rem;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.info-texto .dato {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

/* FILA WIFI Y CESTA (LOS CUADRADITOS) */
.fila-mini-servicios {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 480px;
    margin-top: 10px;
}

.mini-caja {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #333;
    padding: 12px;
    border-radius: 12px;
}

.mini-caja p {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
    line-height: 1.3;
}

/* =======================================================
   COLUMNA DERECHA: EL MAPA (PC)
   ======================================================= */
.marco-mapa {
    flex: 1;
    min-width: 320px;
    height: 450px; /* Altura PC */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
	order: 2; /* Mapa segundo */
}


.marco-mapa {
    position: relative;
}

.marco-mapa iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    border: 0;
}
/* =======================================================
   RESPONSIVE (MÓVIL Y TABLET) - ¡MIRA ESTO!
   ======================================================= */
@media (max-width: 992px) {
    .grid-contacto-mapa {
        flex-direction: column; /* Apila reserva arriba y mapa abajo */
    }

    .col-contacto {
        width: 100%;
        align-items: center; /* Centra el contenido en móvil */
        text-align: center;
        order: 1; /* RESERVA PRIMERO */
    }

    .info-texto {
        align-items: center; /* Centra "Llámanos" y el número en el móvil */
    }

    .tarjeta-contacto, .fila-mini-servicios {
        margin-left: auto;
        margin-right: auto;
    }

    /* EL MAPA: ABAJO Y BIEN GRANDE */
    .marco-mapa {
        display: block;    /* Asegura que se comporte como bloque */
        width: 100%;       /* Ocupa todo el ancho */
        height: 500px;     /* <--- CAMBIO: Usa píxeles fijos en lugar de vh */
        min-height: 500px; /* <--- FUERZA la altura mínima */
        margin-top: 20px;
        position: relative; /* Crucial para que el iframe se estire */
    }

    .marco-mapa iframe {
        height: 100% !important; /* Obliga al contenido de Google a rellenar los 500px */
    }
	
}

