* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    background-color: #b87333;
    min-height: 100%;
}

/* HEADER */
header {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0.8rem 2rem 0rem 2rem;
}

.header-contenedor {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}

/* H1 - centrado */
h1 {
    color: bisque;
    font-size: 2rem;
    margin: 0;
    line-height: 1.2;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: 1px;
    text-align: center;
}

/* BANDERAS - a la derecha */
.banderas {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.bandera {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 228, 196, 0.5);
    flex-shrink: 0;
}

.bandera:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: bisque;
}

.bandera:active {
    transform: scale(0.96);
}

.bandera img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MENÚ DE NAVEGACIÓN */
.menu-navegacion {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    padding: 1rem 0 0.8rem 0;
    border-top: 1px solid rgba(255, 228, 196, 0.3);
    margin-top: 0.5rem;
}

/* BOTONES CON TAMAÑO FIJO */
.boton-menu {
    display: inline-block;
    background: transparent;
    color: bisque;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1.5px solid rgba(255, 228, 196, 0.4);
    letter-spacing: 0.5px;
    width: 130px;
    height: 48px;
    text-align: center;
    line-height: 45px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.boton-menu:hover {
    background-color: bisque;
    color: #b87333;
    border-color: bisque;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.boton-menu:active {
    transform: translateY(1px);
}

/* ========== SECCIÓN NUESTRA HISTORIA ========== */
.historia-section {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.historia-contenedor {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2rem;
    padding: 2rem;
    backdrop-filter: blur(2px);
}

/* TEXTO DE LA HISTORIA - OCUPA EL 60% */
.historia-texto {
    flex: 1.5;
}

.historia-texto h2 {
    color: bisque;
    font-size: 2.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin-bottom: 1.5rem;
    border-left: 5px solid bisque;
    padding-left: 1rem;
}

.historia-texto h3 {
    color: #f5deb3;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.historia-texto p {
    color: #fff5e6;
    line-height: 1.6;
    font-size: 1rem;
    text-align: justify;
    margin-bottom: 1rem;
}

.gentilicio {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 1rem;
    margin-top: 1.5rem;
    border-left: 4px solid bisque;
    font-style: italic;
}

/* IMAGEN - OCUPA EL 40% */
.historia-imagen {
    flex: 1;
    position: sticky;
    top: 2rem;
}

.historia-imagen img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 228, 196, 0.5);
    transition: transform 0.3s ease;
}

.historia-imagen img:hover {
    transform: scale(1.02);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .boton-menu {
        width: 110px;
        height: 44px;
        line-height: 41px;
        font-size: 0.9rem;
    }
    
    .historia-contenedor {
        flex-direction: column;
    }
    
    .historia-imagen {
        order: -1;
        margin-bottom: 1.5rem;
        position: static;
    }
    
    .historia-imagen img {
        max-height: 400px;
        object-fit: cover;
    }
    
    .historia-texto h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.8rem 1rem 0rem 1rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .bandera {
        width: 40px;
        height: 40px;
    }
    
    .historia-section {
        padding: 2rem 1rem;
    }
    
    .historia-contenedor {
        padding: 1.5rem;
    }
    
    .historia-texto h2 {
        font-size: 1.8rem;
    }
    
    .historia-texto h3 {
        font-size: 1.1rem;
    }
    
    .boton-menu {
        width: 100px;
        height: 40px;
        line-height: 37px;
        font-size: 0.85rem;
    }
}

@media (max-width: 580px) {
    .header-contenedor {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .banderas {
        position: static;
        transform: none;
        justify-content: center;
    }
    
    h1 {
        font-size: 1.3rem;
    }
    
    .bandera {
        width: 38px;
        height: 38px;
    }
    
    .boton-menu {
        width: 85px;
        height: 38px;
        line-height: 35px;
        font-size: 0.75rem;
    }
    
    .historia-texto h2 {
        font-size: 1.5rem;
    }
    
    .historia-texto p {
        font-size: 0.9rem;
    }
}
/* ========== FOOTER ========== */
.footer {
    background-color: #1a1510;
    color: #d4c5b5;
    margin-top: 4rem;
    padding: 3rem 2rem 1rem 2rem;
    border-top: 3px solid #b87333;
}

.footer-contenedor {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-columna h3 {
    color: bisque;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-columna h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #b87333;
}

.footer-columna p {
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Listas del footer */
.footer-lista {
    list-style: none;
    padding: 0;
}

.footer-lista li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-lista li i {
    color: #b87333;
    width: 20px;
    font-size: 1rem;
}

.footer-lista a {
    color: #d4c5b5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-lista a:hover {
    color: #b87333;
    padding-left: 5px;
}

/* Redes sociales */
.footer-redes {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.red-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(184, 115, 51, 0.2);
    border-radius: 50%;
    color: bisque;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(184, 115, 51, 0.5);
}

.red-social:hover {
    background-color: #b87333;
    color: #1a1510;
    transform: translateY(-3px);
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 115, 51, 0.3);
    font-size: 0.8rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-gentilicio {
    color: #b87333;
    font-style: italic;
    font-size: 0.85rem;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem 1rem 1rem;
    }
    
    .footer-contenedor {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .footer-columna h3 {
        font-size: 1rem;
    }
    
    .footer-lista li {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-contenedor {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-columna h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-lista li {
        justify-content: center;
    }
    
    .footer-redes {
        justify-content: center;
    }
}
.hero-contenido{
    text-align: center;
    margin: 1em;
    color: white;
}
/* ========== PÁGINA DE SERVICIOS ========== */
.servicios-page {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.servicios-contenedor {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2rem;
    padding: 2rem;
    backdrop-filter: blur(2px);
}

.servicios-header {
    text-align: center;
    margin-bottom: 3rem;
}

.servicios-titulo-principal {
    color: bisque;
    font-size: 2.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin-bottom: 1rem;
}

.servicios-subtitulo {
    color: #f5deb3;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.servicio-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 228, 196, 0.2);
}

.servicio-card:hover {
    transform: translateY(-8px);
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 228, 196, 0.5);
}

.servicio-icono {
    font-size: 3rem;
    color: #b87333;
    margin-bottom: 1rem;
}

.servicio-card h3 {
    color: bisque;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.servicio-card p {
    color: #d4c5b5;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .servicios-page {
        padding: 2rem 1rem;
    }
    
    .servicios-contenedor {
        padding: 1.5rem;
    }
    
    .servicios-titulo-principal {
        font-size: 2rem;
    }
    
    .servicios-subtitulo {
        font-size: 1rem;
    }
    
    .servicio-card {
        padding: 1.5rem;
    }
    
    .servicio-icono {
        font-size: 2.5rem;
    }
    
    .servicio-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .servicios-titulo-principal {
        font-size: 1.6rem;
    }
    
    .servicios-grid {
        gap: 1.2rem;
    }
}
/* ========== PÁGINA DE SERVICIOS ========== */
.servicios-page {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.servicios-contenedor {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2rem;
    padding: 2rem;
    backdrop-filter: blur(2px);
}

.servicios-header {
    text-align: center;
    margin-bottom: 3rem;
}

.servicios-titulo-principal {
    color: bisque;
    font-size: 2.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin-bottom: 1rem;
}

.servicios-subtitulo {
    color: #f5deb3;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.servicio-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 228, 196, 0.2);
}

.servicio-card:hover {
    transform: translateY(-8px);
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 228, 196, 0.5);
}

.servicio-icono {
    font-size: 3rem;
    color: #b87333;
    margin-bottom: 1rem;
}

.servicio-card h3 {
    color: bisque;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.servicio-card p {
    color: #d4c5b5;
    font-size: 0.95rem;
    line-height: 1.5;
}

.servicios-nota {
    margin-top: 3rem;
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
    color: #f5deb3;
    font-size: 0.9rem;
}

.servicios-nota i {
    color: #b87333;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .servicios-page {
        padding: 2rem 1rem;
    }
    
    .servicios-contenedor {
        padding: 1.5rem;
    }
    
    .servicios-titulo-principal {
        font-size: 2rem;
    }
    
    .servicios-subtitulo {
        font-size: 1rem;
    }
    
    .servicio-card {
        padding: 1.5rem;
    }
    
    .servicio-icono {
        font-size: 2.5rem;
    }
    
    .servicio-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .servicios-titulo-principal {
        font-size: 1.6rem;
    }
    
    .servicios-grid {
        gap: 1.2rem;
    }
}
/* ========== PÁGINA DE RESTAURANTE ========== */
.restaurante-page {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.restaurante-contenedor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* VISOR DE IMÁGENES */
.restaurante-visor {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1.5rem;
    padding: 1.5rem;
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.visor-contenedor {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visor-imagenes {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 1rem;
}

.visor-imagen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.visor-imagen.active {
    opacity: 1;
}

.visor-btn {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.visor-btn:hover {
    background: #b87333;
    transform: scale(1.05);
}

.visor-prev {
    left: -20px;
}

.visor-next {
    right: -20px;
}

.visor-indicadores {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.indicador {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 228, 196, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicador:hover {
    background: rgba(255, 228, 196, 0.8);
}

.indicador.active {
    width: 25px;
    border-radius: 10px;
    background: #b87333;
}

.visor-autoplay {
    text-align: center;
    margin-top: 1rem;
}

.visor-btn-play {
    background: rgba(0, 0, 0, 0.5);
    color: bisque;
    border: 1px solid rgba(255, 228, 196, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.visor-btn-play:hover {
    background: #b87333;
    color: white;
    border-color: #b87333;
}

/* INFORMACIÓN DEL RESTAURANTE */
.restaurante-info {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(2px);
}

.restaurante-titulo {
    color: bisque;
    font-size: 2.2rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin-bottom: 1.5rem;
    border-left: 4px solid bisque;
    padding-left: 1rem;
}

.restaurante-info h2 {
    color: #f5deb3;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.restaurante-info p {
    color: #fff5e6;
    line-height: 1.6;
    font-size: 1rem;
    text-align: justify;
}

/* Platos destacados */
.platos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.plato-categoria {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    padding: 1rem;
}

.plato-categoria h3 {
    color: bisque;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

.plato-categoria ul {
    list-style: none;
    padding: 0;
}

.plato-categoria li {
    color: #d4c5b5;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.plato-categoria li::before {
    content: "🍽️";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/* Horario */
.horario-lista {
    list-style: none;
    padding: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    padding: 1rem;
}

.horario-lista li {
    color: #f5deb3;
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.horario-lista li strong {
    color: bisque;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .restaurante-contenedor {
        grid-template-columns: 1fr;
    }
    
    .restaurante-visor {
        position: static;
        margin-bottom: 2rem;
    }
    
    .visor-imagenes {
        height: 300px;
    }
    
    .visor-prev {
        left: 5px;
    }
    
    .visor-next {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .restaurante-page {
        padding: 2rem 1rem;
    }
    
    .restaurante-info {
        padding: 1.5rem;
    }
    
    .restaurante-titulo {
        font-size: 1.8rem;
    }
    
    .platos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .visor-imagenes {
        height: 250px;
    }
    
    .visor-btn {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .restaurante-titulo {
        font-size: 1.5rem;
    }
    
    .restaurante-info h2 {
        font-size: 1.1rem;
    }
    
    .visor-imagenes {
        height: 200px;
    }
}
/* ========== PÁGINA DE CONTACTO ========== */
.contacto-page {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contacto-contenedor {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2rem;
    padding: 2rem;
    backdrop-filter: blur(2px);
}

.contacto-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contacto-titulo {
    color: bisque;
    font-size: 2.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin-bottom: 1rem;
}

.contacto-subtitulo {
    color: #f5deb3;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Tarjetas de información */
.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contacto-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 228, 196, 0.2);
}

.contacto-card:hover {
    transform: translateX(5px);
    border-color: rgba(255, 228, 196, 0.5);
    background: rgba(0, 0, 0, 0.4);
}

.contacto-icono {
    font-size: 2rem;
    color: #b87333;
    min-width: 50px;
    text-align: center;
}

.contacto-detalle h3 {
    color: bisque;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contacto-detalle p {
    color: #d4c5b5;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.3rem;
}

.contacto-whatsapp {
    color: #25D366 !important;
}

/* Mapa */
.contacto-mapa {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 228, 196, 0.2);
}

.contacto-mapa h3 {
    color: bisque;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.mapa-contenedor {
    width: 100%;
    height: 350px;
    border-radius: 1rem;
    overflow: hidden;
}

.mapa-contenedor iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.mapa-nota {
    text-align: center;
    margin-top: 1rem;
    color: #f5deb3;
    font-size: 0.85rem;
}

/* Formulario */
.contacto-formulario {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 228, 196, 0.2);
}

.contacto-formulario h3 {
    color: bisque;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.formulario {
    max-width: 800px;
    margin: 0 auto;
}

.form-grupo {
    position: relative;
    margin-bottom: 2rem;
}

.form-grupo input,
.form-grupo textarea,
.form-grupo select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 228, 196, 0.3);
    border-radius: 1rem;
    font-size: 1rem;
    color: #fff5e6;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.form-grupo select {
    cursor: pointer;
}

.form-grupo select option {
    background: #1a1510;
    color: #fff5e6;
}

.form-grupo input:focus,
.form-grupo textarea:focus,
.form-grupo select:focus {
    border-color: #b87333;
    background: rgba(0, 0, 0, 0.4);
}

.form-grupo label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #d4c5b5;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 0.3rem;
}

.form-grupo.focus label,
.form-grupo input:focus ~ label,
.form-grupo textarea:focus ~ label,
.form-grupo select:focus ~ label,
.form-grupo input:not(:placeholder-shown) ~ label,
.form-grupo textarea:not(:placeholder-shown) ~ label {
    top: -0.6rem;
    left: 0.8rem;
    font-size: 0.8rem;
    background: #1a1510;
    color: #b87333;
}

.form-btn {
    background: #b87333;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: inherit;
}

.form-btn:hover {
    background: #9b5e2c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.form-mensaje-enviado {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contacto-page {
        padding: 2rem 1rem;
    }
    
    .contacto-grid {
        grid-template-columns: 1fr;
    }
    
    .contacto-titulo {
        font-size: 2rem;
    }
    
    .mapa-contenedor {
        height: 300px;
    }
    
    .contacto-card {
        padding: 1rem;
    }
    
    .contacto-icono {
        font-size: 1.5rem;
        min-width: 40px;
    }
}

@media (max-width: 480px) {
    .contacto-titulo {
        font-size: 1.6rem;
    }
    
    .contacto-subtitulo {
        font-size: 0.9rem;
    }
    
    .contacto-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .mapa-contenedor {
        height: 250px;
    }
    
    .form-grupo input,
    .form-grupo textarea,
    .form-grupo select {
        font-size: 0.9rem;
    }
}
/* ========== PÁGINA DE ENTORNO ========== */
.entorno-page {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.entorno-contenedor {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2rem;
    padding: 2rem;
    backdrop-filter: blur(2px);
}

.entorno-header {
    text-align: center;
    margin-bottom: 3rem;
}

.entorno-titulo {
    color: bisque;
    font-size: 2.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin-bottom: 1rem;
}

.entorno-subtitulo {
    color: #f5deb3;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Lugares destacados */
.lugares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.lugar-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 228, 196, 0.2);
}

.lugar-card:hover {
    transform: translateX(5px);
    border-color: rgba(255, 228, 196, 0.5);
    background: rgba(0, 0, 0, 0.4);
}

.lugar-icono {
    font-size: 2rem;
    color: #b87333;
    min-width: 50px;
    text-align: center;
}

.lugar-info h3 {
    color: bisque;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.lugar-info p {
    color: #d4c5b5;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Galería de imágenes */
.galeria-section {
    margin-top: 2rem;
}

.galeria-titulo {
    color: bisque;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.galeria-subtitulo {
    color: #f5deb3;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.2rem;
}

.galeria-col {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1 / 0.8;
}

.galeria-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.galeria-col:hover img {
    transform: scale(1.08);
}

.galeria-col:hover .galeria-caption {
    transform: translateY(0);
    opacity: 1;
}

.galeria-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1rem;
    font-size: 0.85rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-imagen {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 1rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: #f5deb3;
    margin-top: 1rem;
    font-size: 1rem;
    text-align: center;
    max-width: 80%;
}

.lightbox-cerrar {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f5deb3;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-cerrar:hover {
    color: #b87333;
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.lightbox-btn:hover {
    background: #b87333;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .entorno-page {
        padding: 2rem 1rem;
    }
    
    .entorno-contenedor {
        padding: 1.5rem;
    }
    
    .entorno-titulo {
        font-size: 2rem;
    }
    
    .lugares-grid {
        grid-template-columns: 1fr;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .lightbox-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .entorno-titulo {
        font-size: 1.6rem;
    }
    
    .entorno-subtitulo {
        font-size: 0.9rem;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.8rem;
    }
    
    .lugar-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
/* ========== CARRUSEL (mismo que restaurante) ========== */
.carrusel-section {
    margin-top: 3rem;
}

.carrusel-titulo {
    color: bisque;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.carrusel-subtitulo {
    color: #f5deb3;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.carrusel-contenedor {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.carrusel-track-container {
    overflow: hidden;
    border-radius: 1.5rem;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carrusel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.carrusel-slide {
    min-width: 100%;
    position: relative;
    cursor: pointer;
    aspect-ratio: 16 / 9;
}

.carrusel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carrusel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.carrusel-btn {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.2rem;
}

.carrusel-btn:hover {
    background: #b87333;
    transform: scale(1.05);
}

.carrusel-prev {
    left: -60px;
}

.carrusel-next {
    right: -60px;
}

.carrusel-indicadores {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.carrusel-indicador {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 228, 196, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carrusel-indicador:hover {
    background: rgba(255, 228, 196, 0.8);
}

.carrusel-indicador.active {
    width: 25px;
    border-radius: 10px;
    background: #b87333;
}

.carrusel-autoplay {
    text-align: center;
    margin-top: 0.5rem;
}

.carrusel-btn-play {
    background: rgba(0, 0, 0, 0.5);
    color: bisque;
    border: 1px solid rgba(255, 228, 196, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.carrusel-btn-play:hover {
    background: #b87333;
    color: white;
    border-color: #b87333;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-imagen {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 1rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: #f5deb3;
    margin-top: 1rem;
    font-size: 1rem;
    text-align: center;
    max-width: 80%;
}

.lightbox-cerrar {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f5deb3;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-cerrar:hover {
    color: #b87333;
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.lightbox-btn:hover {
    background: #b87333;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Responsive carrusel */
@media (max-width: 1100px) {
    .carrusel-prev { left: -40px; }
    .carrusel-next { right: -40px; }
}

@media (max-width: 768px) {
    .carrusel-prev { left: -30px; }
    .carrusel-next { right: -30px; }
    .carrusel-btn { width: 35px; height: 35px; font-size: 0.9rem; }
    .carrusel-caption { font-size: 0.8rem; padding: 0.6rem; }
    .lightbox-btn { width: 40px; height: 40px; font-size: 1rem; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

@media (max-width: 480px) {
    .carrusel-prev { left: -20px; }
    .carrusel-next { right: -20px; }
    .carrusel-btn { width: 30px; height: 30px; font-size: 0.8rem; }
    .carrusel-titulo { font-size: 1.5rem; }
    .lightbox-cerrar { font-size: 30px; right: 20px; top: 15px; }
}
.instalaciones-subtitulo {
    text-align: center;
    color: white;
}
/* ========== AVISO DE COOKIES ========== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 21, 16, 0.95);
    backdrop-filter: blur(10px);
    color: #d4c5b5;
    padding: 1rem 2rem;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 2px solid #b87333;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-texto {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.4;
}

.cookie-texto a {
    color: #b87333;
    text-decoration: none;
}

.cookie-texto a:hover {
    text-decoration: underline;
}

.cookie-botones {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cookie-btn-aceptar {
    background: #b87333;
    color: white;
}

.cookie-btn-aceptar:hover {
    background: #9b5e2c;
    transform: scale(1.02);
}

.cookie-btn-rechazar {
    background: transparent;
    color: #d4c5b5;
    border: 1px solid rgba(255, 228, 196, 0.3);
}

.cookie-btn-rechazar:hover {
    background: rgba(184, 115, 51, 0.2);
    border-color: #b87333;
}

.cookie-btn-config {
    background: transparent;
    color: #d4c5b5;
    border: 1px solid rgba(255, 228, 196, 0.3);
}

.cookie-btn-config:hover {
    background: rgba(184, 115, 51, 0.2);
    border-color: #b87333;
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-texto {
        font-size: 0.75rem;
    }
    
    .cookie-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}