@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* Variables de Diseño */
:root {
    --verde-profundo: #0B3B24;
    --verde-brillante: #1E824C;
    --verde-suave: #E8F8F5;
    --dorado: #D4AC0D;
    --dorado-oscuro: #B7950B;
    --crema: #FAF9F6;
    --oscuro: #1C2833;
    --gris-suave: #F2F4F4;
    --gris-texto: #5D6D7E;
    --blanco: #FFFFFF;
    --sombra: 0 10px 30px rgba(11, 59, 36, 0.08);
    --sombra-hover: 0 15px 40px rgba(11, 59, 36, 0.15);
    --transicion: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset Global */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--crema);
    color: var(--oscuro);
    line-height: 1.6;
    font-size: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transicion);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--verde-profundo);
    font-weight: 700;
}

.section-padding {
    padding: 80px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Botones Premium */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transicion);
    text-transform: uppercase;
    border: none;
}

.btn-primary {
    background-color: var(--verde-profundo);
    color: var(--blanco);
    border: 2px solid var(--verde-profundo);
}

.btn-primary:hover {
    background-color: var(--verde-brillante);
    border-color: var(--verde-brillante);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 130, 76, 0.3);
}

.btn-secondary {
    background-color: var(--dorado);
    color: var(--blanco);
    border: 2px solid var(--dorado);
}

.btn-secondary:hover {
    background-color: var(--dorado-oscuro);
    border-color: var(--dorado-oscuro);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 172, 13, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--verde-profundo);
    border: 2px solid var(--verde-profundo);
}

.btn-outline:hover {
    background-color: var(--verde-profundo);
    color: var(--blanco);
    transform: translateY(-2px);
}

/* Cabecera (Navbar) */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transicion);
}

header.scroll-active {
    background-color: var(--verde-profundo);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.3));
}

.hotel-title {
    font-size: 16px;
    line-height: 1.2;
    color: var(--blanco);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hotel-title span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: var(--dorado);
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-item a {
    color: var(--blanco);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--dorado);
    transition: var(--transicion);
}

.nav-item a:hover::after,
.nav-item.active a::after {
    width: 100%;
}

.nav-item a:hover {
    color: var(--dorado);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: transparent;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--blanco);
    border-radius: 3px;
    transition: var(--transicion);
}

/* Hero Slider (Inicio) */
.hero-slider-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slider-wrapper {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 59, 36, 0.8) 0%, rgba(28, 40, 51, 0.4) 100%);
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--blanco);
    max-width: 700px;
    padding: 0 5%;
    transform: translateY(30px);
    transition: transform 1s ease-out;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide-content h2 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--blanco);
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--gris-suave);
    font-weight: 300;
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 5%;
    right: auto;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--blanco);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transicion);
}

.slider-btn:hover {
    background: var(--dorado);
    border-color: var(--dorado);
}

/* Buscador de disponibilidad rápido */
.availability-bar {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    background: var(--blanco);
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 15px 45px rgba(11, 59, 36, 0.15);
}

.bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 20px;
    align-items: flex-end;
}

.form-group-bar {
    display: flex;
    flex-direction: column;
}

.form-group-bar label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--verde-profundo);
    margin-bottom: 8px;
}

.form-group-bar input,
.form-group-bar select {
    padding: 12px;
    border: 1px solid var(--gris-suave);
    background-color: var(--gris-suave);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    color: var(--oscuro);
    outline: none;
    transition: var(--transicion);
}

.form-group-bar input:focus,
.form-group-bar select:focus {
    border-color: var(--verde-brillante);
    background-color: var(--blanco);
}

/* Sections Generales */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--dorado);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--gris-texto);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

/* Tarjetas de Habitaciones Destacadas */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.room-card {
    background: var(--blanco);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: var(--transicion);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-hover);
}

.room-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-img {
    transform: scale(1.05);
}

.room-price-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--dorado);
    color: var(--blanco);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.room-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-card-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.room-card-content p {
    color: var(--gris-texto);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--gris-suave);
}

.room-feature-item {
    font-size: 12px;
    color: var(--verde-profundo);
    background: var(--verde-suave);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 500;
}

.room-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-capacity {
    font-size: 13px;
    color: var(--gris-texto);
    font-weight: 500;
}

/* Nosotros Preview */
.about-preview {
    background: var(--gris-suave);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gris-texto);
    margin-bottom: 20px;
}

.features-list {
    margin-bottom: 30px;
    list-style: none;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-list-item::before {
    content: '✓';
    color: var(--verde-brillante);
    font-size: 18px;
    font-weight: bold;
}

.about-images-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-img-box {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--sombra);
}

.about-img-box:nth-child(2) {
    transform: translateY(20px);
}

/* Testimonios (Con fotos de la modelo) */
.testimonials-section {
    background: var(--verde-profundo);
    color: var(--blanco);
}

.testimonials-section .section-header h2 {
    color: var(--blanco);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    position: relative;
}

.testifier-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testifier-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--dorado);
}

.testifier-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--blanco);
}

.testifier-role {
    font-size: 12px;
    color: var(--dorado);
}

.testimonial-rating {
    color: var(--dorado);
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--gris-suave);
    font-size: 14px;
    font-style: italic;
}

/* Pie de Página (Footer) */
footer {
    background-color: #121E18;
    color: #A6ACAF;
    padding-top: 60px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-col h4 {
    color: var(--blanco);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--dorado);
    bottom: 0;
    left: 0;
}

.footer-col p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--dorado);
    padding-left: 5px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    height: 180px;
    box-shadow: var(--sombra);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    background: #0D1612;
}

.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.footer-legal-links a:hover {
    color: var(--dorado);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    transition: var(--transicion);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* Floating Social Sidebar */
.social-sidebar {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1001;
}

.social-sidebar-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(245, 247, 248, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verde-profundo);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.social-sidebar-item:hover {
    transform: scale(1.18);
    background-color: var(--brand-color, var(--dorado));
    color: var(--blanco);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    border-color: transparent;
}

/* Adjustments for smaller devices so it doesn't overlap text */
@media (max-width: 768px) {
    .social-sidebar {
        right: 15px;
        gap: 8px;
    }
    .social-sidebar-item {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }
}

/* Pagina Nosotros */
.nosotros-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nosotros-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 59, 36, 0.7);
}

.nosotros-hero-content {
    position: relative;
    z-index: 2;
    color: var(--blanco);
    text-align: center;
}

.nosotros-hero-content h1 {
    font-size: 50px;
    color: var(--blanco);
}

.mision-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.mv-card {
    background: var(--blanco);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--sombra);
    border-top: 4px solid var(--verde-profundo);
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Pagina Habitaciones con filtros */
.filter-container {
    background: var(--blanco);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--sombra);
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 200px;
}

.filter-group label {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--verde-profundo);
    margin-bottom: 6px;
}

.filter-group select {
    padding: 10px;
    border: 1px solid var(--gris-suave);
    border-radius: 4px;
    font-family: inherit;
}

/* Pagina Galeria */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 8px 20px;
    border-radius: 30px;
    background: var(--gris-suave);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transicion);
}

.gallery-filter-btn.active, .gallery-filter-btn:hover {
    background: var(--verde-profundo);
    color: var(--blanco);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--sombra);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transicion);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 59, 36, 0.7);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transicion);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--blanco);
    border: 1px solid var(--blanco);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
}

/* Pagina de Contacto */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-box {
    background: var(--verde-profundo);
    color: var(--blanco);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--sombra);
}

.contact-info-box h3 {
    color: var(--blanco);
    font-size: 24px;
    margin-bottom: 25px;
}

.contact-detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-detail-icon {
    font-size: 20px;
    color: var(--dorado);
}

.contact-detail-text h5 {
    color: var(--blanco);
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-form-box {
    background: var(--blanco);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--sombra);
}

.contact-form-box h3 {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    font-size: 12px;
    color: var(--verde-profundo);
    margin-bottom: 8px;
}

.form-group input, .form-group textarea, .form-group select {
    padding: 12px;
    border: 1px solid var(--gris-suave);
    background: var(--gris-suave);
    border-radius: 6px;
    font-family: inherit;
    outline: none;
    transition: var(--transicion);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--verde-brillante);
    background: var(--blanco);
}

/* Lightbox para Galeria */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1100;
    display: none;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
}

.lightbox-content img {
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--blanco);
    font-size: 40px;
    cursor: pointer;
}

/* Wizard de Reservar.php */
.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gris-suave);
    z-index: 1;
}

.wizard-progress-bar {
    position: absolute;
    top: 15px;
    left: 0;
    height: 3px;
    background: var(--verde-profundo);
    z-index: 1;
    transition: width 0.3s ease;
}

.wizard-step {
    position: relative;
    z-index: 2;
    background: var(--crema);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px solid var(--gris-suave);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gris-texto);
    transition: var(--transicion);
}

.wizard-step.active {
    border-color: var(--verde-profundo);
    background: var(--verde-profundo);
    color: var(--blanco);
}

.wizard-step.completed {
    border-color: var(--verde-brillante);
    background: var(--verde-brillante);
    color: var(--blanco);
}

.wizard-step-label {
    position: absolute;
    top: 45px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
}

.wizard-panel {
    background: var(--blanco);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--sombra);
    margin-bottom: 30px;
    display: none;
}

.wizard-panel.active {
    display: block;
}

.wizard-rooms-select {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.room-select-row {
    display: grid;
    grid-template-columns: 180px 1fr 150px;
    border: 1px solid var(--gris-suave);
    border-radius: 8px;
    overflow: hidden;
    align-items: center;
    transition: var(--transicion);
}

.room-select-row:hover {
    box-shadow: var(--sombra);
    border-color: var(--verde-profundo);
}

.room-select-img {
    height: 120px;
    width: 100%;
    object-fit: cover;
}

.room-select-details {
    padding: 20px;
}

.room-select-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.room-select-details p {
    color: var(--gris-texto);
    font-size: 12px;
}

.room-select-action {
    padding: 20px;
    text-align: center;
    border-left: 1px solid var(--gris-suave);
}

.room-select-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--verde-profundo);
    margin-bottom: 10px;
}

.wizard-buttons {
    display: flex;
    justify-content: space-between;
}

.booking-summary-card {
    background: var(--gris-suave);
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.booking-summary-card h4 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.booking-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Estilo para Paginas Legales */
.legal-content-card {
    background: var(--blanco);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--sombra);
    margin-bottom: 50px;
}

.legal-content-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.legal-content-card h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content-card p, .legal-content-card ul {
    margin-bottom: 20px;
    color: var(--gris-texto);
}

.legal-content-card ul {
    padding-left: 20px;
}

/* Libro de Reclamaciones */
.reclamacion-section {
    max-width: 900px;
    margin: 0 auto;
}

/* Mobile QR Page (qr.php) */
.qr-page-body {
    background: #091a11;
    color: #f0f3f1;
}

.qr-header {
    background: linear-gradient(180deg, var(--verde-profundo) 0%, #091a11 100%);
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.qr-header img {
    height: 70px;
    margin: 0 auto 15px auto;
}

.qr-header h1 {
    color: var(--blanco);
    font-size: 24px;
}

.qr-header p {
    color: var(--dorado);
    font-size: 13px;
    letter-spacing: 1px;
}

.qr-menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 20px;
}

.qr-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: var(--transicion);
}

.qr-card-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.qr-card-title h3 {
    color: var(--blanco);
    font-size: 18px;
}

.qr-icon {
    font-size: 24px;
    color: var(--dorado);
}

.wifi-info-box {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.wifi-label {
    font-size: 11px;
    color: var(--gris-texto);
    text-transform: uppercase;
}

.wifi-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--dorado);
    margin-bottom: 15px;
}

.tv-guide-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.tv-guide-table th, .tv-guide-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tv-guide-table th {
    color: var(--dorado);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
}

.tv-logo-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    overflow: hidden;
}

.tv-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.qr-copy-btn {
    width: 100%;
    background: var(--verde-profundo);
    color: var(--blanco);
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    transition: var(--transicion);
}

.qr-copy-btn:hover {
    background: var(--verde-brillante);
}

/* Panel Cliente / Perfil */
.profile-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.profile-sidebar {
    background: var(--blanco);
    border-radius: 8px;
    box-shadow: var(--sombra);
    padding: 30px;
    height: fit-content;
}

.profile-avatar-wrapper {
    text-align: center;
    margin-bottom: 25px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    background: var(--verde-suave);
    color: var(--verde-profundo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0 auto 15px auto;
}

.profile-nav {
    list-style: none;
}

.profile-nav li {
    margin-bottom: 10px;
}

.profile-nav a {
    display: block;
    padding: 12px 15px;
    border-radius: 6px;
    font-weight: 600;
    color: var(--gris-texto);
    transition: var(--transicion);
}

.profile-nav li.active a, .profile-nav a:hover {
    background: var(--verde-suave);
    color: var(--verde-profundo);
}

.profile-content {
    background: var(--blanco);
    border-radius: 8px;
    box-shadow: var(--sombra);
    padding: 40px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.custom-table th, .custom-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--gris-suave);
}

.custom-table th {
    background: var(--gris-suave);
    color: var(--verde-profundo);
    font-weight: 600;
}

.badge {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-pending {
    background: #FEF9E7;
    color: #F39C12;
}

.badge-confirmed {
    background: #E8F8F5;
    color: #117864;
}

.badge-cancelled {
    background: #FDEDEC;
    color: #C0392B;
}

/* Media Queries Responsivo */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .about-grid, .contact-grid, .profile-grid, .mision-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .about-images-wrapper {
        margin-top: 30px;
    }
    
    .slide-content h2 {
        font-size: 40px;
    }
    
    .bar-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .bar-grid button {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .bar-grid {
        grid-template-columns: 1fr;
    }
    
    .bar-grid button {
        grid-column: span 1;
    }
    
    .room-select-row {
        grid-template-columns: 1fr;
    }
    
    .room-select-img {
        height: 200px;
    }
    
    .room-select-action {
        border-left: none;
        border-top: 1px solid var(--gris-suave);
    }
    
    .footer-bottom-grid {
        flex-direction: column;
        text-align: center;
    }
}
