:root {
    --chocolate-oscuro: #3e2723;
    --chocolate-leche: #795548;
    --crema: #f5f5f5;
    --acento: #ff9800;
    --chocolate-suave: #bc8a5f;
    --whatsapp: #25d366;
    --instagram: #E1306C;
    --rosa-delicia: #e91e63;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #efebe9;
    margin: 0;
    color: var(--chocolate-oscuro);
}

/* --- HEADER --- */
header {
    background: url('https://img.freepik.com/foto-gratis/fondo-chocolate-derretido-ia-generativa_23-2150691361.jpg');
    background-size: cover;
    background-position: center;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.header-overlay {
    background: rgba(62, 39, 35, 0.7);
    width: 100%;
    padding: 20px;
    text-align: center;
}

/* --- CONTENEDOR PRINCIPAL --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- BOTONES DE INICIO --- */
.accesos-rapidos-vertical {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 20px;
    margin-top: 40px; 
    margin-bottom: 20px; 
    width: 100%;
}

.acceso-grupo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 260px; 
}

.etiqueta-boton {
    font-weight: bold;
    color: var(--chocolate-leche);
    margin-bottom: 6px;
    font-size: 0.8em;
    text-transform: uppercase;
}

.btn-acceso-v {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    height: 60px;
    width: 260px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--chocolate-oscuro);
    font-weight: 900;
    font-size: 1.1em;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* --- IDENTIFICADORES DE BOTONES --- */
#btn-servicios-main { border-left: 10px solid var(--acento); }
#btn-desayunos-main { border-left: 10px solid var(--rosa-delicia); }
.btn-ig { border-left: 10px solid var(--instagram); }
.btn-wa-directo { border-left: 10px solid var(--whatsapp); }

.btn-acceso-v:active { transform: scale(0.95); }

/* --- BOTÓN DE ADMIN --- */
.admin-container {
    margin: 20px 0 10px 0; 
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-admin {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--chocolate-oscuro);
    color: #fff8e1; 
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85em;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 1px solid var(--chocolate-leche);
}

/* --- PIE DE PÁGINA (Ajustado cerca del Admin) --- */
/* --- PIE DE PÁGINA (Ajustado y Centrado) --- */
/* --- PIE DE PÁGINA (Ajustado levemente a la izquierda) --- */
footer {
    text-align: left; /* Cambiamos de center a left */
    width: 100%;
    max-width: 260px; /* Le damos el mismo ancho que tienen tus botones superiores */
    margin: 40px auto; /* Lo centramos como bloque, pero el texto adentro va a la izquierda */
    padding: 0 0 0 10px; /* El "empujoncito" hacia la izquierda */
    box-sizing: border-box;
}

footer p {
    font-size: 0.88em;
    color: var(--chocolate-leche);
    margin: 0;
    line-height: 1.4;
}

footer a {
    text-decoration: none;
    color: var(--rosa-delicia);
    font-weight: bold;
    display: block; /* Para que tu nombre quede justo debajo del texto "Sitio Web creado por" */
    margin-top: 2px;
}

/* --- SECCIÓN COTIZADOR Y DESAYUNOS --- */
.selector-section {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.controles-cotizador {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap; 
}

.control-group {
    display: flex;
    flex-direction: column;
    min-width: 180px;
    flex: 1; 
}

.control-group label {
    font-size: 0.85em;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--chocolate-leche);
    text-transform: uppercase;
}

.control-group input, .control-group select {
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
}

/* --- GRID DE TARJETAS --- */
.grid-opciones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    padding-bottom: 50px;
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border-top: 6px solid var(--acento);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.card-header {
    background: #fff8e1;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
}

.card-body {
    padding: 25px;
}

.equipamiento-fijo {
    background-color: #fff8e1;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #ffe082;
}

.precio {
    display: block;
    font-size: 1.6em;
    color: var(--chocolate-oscuro);
    font-weight: 800;
    text-align: center;
    margin: 15px 0;
}

.btn-ws {
    display: block;
    background: var(--whatsapp);
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: bold;
}

/* --- CARTEL DE RESERVA --- */
.cartel-reserva {
    background-color: #fff8e1;
    border-left: 6px solid var(--acento);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.cartel-reserva h3 {
    margin: 0 0 10px 0;
    color: var(--chocolate-oscuro);
}

/* --- DESGLOSE INTERNO --- */
.desglose-interno {
    font-size: 0.85em;
    color: var(--chocolate-leche);
    background: #fdfdfd;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px dashed #ddd;
}

/* --- RESPONSIVIDAD --- */
@media (max-width: 600px) {
    .controles-cotizador {
        flex-direction: column;
        align-items: stretch;
    }
    .control-group {
        width: 100%;
    }
}