/* Estilos Generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    margin: 0;
    padding: 0;
    color: #333;
}

.portada-header {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.portada-header h1 {
    margin: 0;
    font-size: 2.5rem;
}

/* Contenedor de Tarjetas */
.contenedor-tarjetas {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: -40px auto 50px auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

/* Tarjetas */
.tarjeta {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 30px;
    width: 300px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tarjeta:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.tarjeta h2 {
    font-size: 1.8rem;
    margin-top: 10px;
    color: #1e3c72;
}

.caracteristicas {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.caracteristicas li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

/* Botones */
.boton {
    display: block;
    background-color: #1e3c72;
    color: white;
    padding: 12px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.2s;
}

.boton:hover {
    background-color: #2a5298;
}

/* Detalles especiales para la Intermedia (Destacada) */
.intermedia {
    border: 2px solid #2a5298;
    transform: scale(1.05);
}
.intermedia:hover {
    transform: scale(1.05) translateY(-5px);
}
.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4757;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* ==========================================================================
   Estilos de la Barra de Control del Catálogo (Común para todas las demos)
   ========================================================================== */
.barra-demo-catalogo {
    background-color: #222;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.boton-volver {
    background-color: #ff4757;
    color: white;
    text-decoration: none;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.2s;
}
.boton-volver:hover {
    background-color: #ff6b81;
}

/* ==========================================================================
   Estilos Específicos: Landing Básica
   ========================================================================== */
.landing-basica-hero {
    min-height: calc(100vh - 44px); /* Ajuste por la barra superior */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1517838277536-f5f99be501cd?q=80&w=1200') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 40px;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.hero-contenido {
    color: white;
    max-width: 500px;
}
.hero-contenido .tagline {
    background-color: #2ed573;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}
.hero-contenido h1 {
    font-size: 2.8rem;
    margin: 15px 0;
    line-height: 1.2;
}
.hero-contenido p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}
.beneficios-rapidos {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}
.beneficios-rapidos li {
    margin-bottom: 10px;
    font-weight: 500;
}

/* Formulario Landing Básica */
.hero-formulario {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 350px;
}
.hero-formulario h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #222;
}
.grupo-input {
    margin-bottom: 15px;
    text-align: left;
}
.grupo-input label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.85rem;
    font-weight: bold;
    color: #555;
}
.grupo-input input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.boton-landing-basica {
    width: 100%;
    background-color: #2ed573;
    color: white;
    border: none;
    padding: 12px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}
.boton-landing-basica:hover {
    background-color: #26af5f;
}
/* Estilos Específicos para Landing Restaurante */
.landing-restaurante {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 10%;
    background-color: #fdf6e3; /* Tono crema papel antiguo */
    min-height: 100vh;
    align-items: center;
}

.col-izquierda { flex: 1; min-width: 300px; }
.col-derecha { flex: 0 0 400px; }

.col-izquierda h1 { font-size: 3rem; color: #4a1c1c; line-height: 1.1; margin-bottom: 20px; }
.grid-imagenes { display: flex; gap: 15px; margin-top: 30px; }
.grid-imagenes img { width: 48%; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }

/* La Tarjeta de la derecha */
.card-reserva {
    background: #5d0f0f; /* Guinda oscuro */
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.card-reserva h2 { margin-bottom: 20px; font-size: 1.5rem; }
.btn-whatsapp {
    display: block;
    background: #25d366; /* Verde WhatsApp */
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin: 20px 0;
    transition: transform 0.2s;
}
.btn-whatsapp:hover { transform: scale(1.05); }
.small-text { font-size: 0.9rem; opacity: 0.8; }
.direccion { margin-top: 20px; font-size: 0.8rem; border-top: 1px solid #7a2222; padding-top: 10px; }

/* ==========================================================================
   Estilos Específicos: Landing GROWTH (Bar Trendy)
   ========================================================================== */

/* Hero con Video */
.hero-video-container {
    position: relative;
    height: 85vh;
    min-height: 500px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.video-fondo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.capa-oscura {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 12, 0.75); /* Oscurece el video para legibilidad */
    z-index: 2;
}

.contenido-hero-video {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 700px;
    padding: 0 20px;
}

.subtitulo-bar {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #ff007f; /* Rosa Neón */
    font-weight: bold;
}

.contenido-hero-video h1 {
    font-size: 4rem;
    margin: 10px 0 20px 0;
    letter-spacing: 2px;
    font-family: 'Impact', 'Arial Black', sans-serif;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}

.contenido-hero-video p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}

.btn-reserva-bar {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #ff007f;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-reserva-bar:hover {
    background: #ff007f;
    box-shadow: 0 0 15px #ff007f;
}

/* Sección Concepto */
.seccion-bar-concepto {
    background-color: #0a0a0c;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.texto-concepto max-width {
    max-width: 600px;
    margin: 0 auto;
}

.seccion-bar-concepto h2 {
    color: #00f0ff; /* Cian Neón */
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Galería de fotos del paquete */
.seccion-bar-galeria {
    background-color: #0a0a0c;
    padding: 0 20px 60px 20px;
}

.grid-bar-fotos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.foto-item {
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    filter: grayscale(30%) brightness(90%);
    transition: all 0.3s ease;
}

.foto-item:hover {
    filter: grayscale(0%) brightness(100%);
    transform: scale(1.02);
}

/* Formulario y Contacto */
.seccion-bar-contacto {
    background: linear-gradient(to bottom, #0a0a0c, #141419);
    color: #fff;
    padding: 80px 20px;
}

.contenedor-contacto-bar {
    max-width: 450px;
    margin: 0 auto;
    background: #1c1c24;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #2d2d3d;
    text-align: center;
}

.form-bar input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    border-radius: 6px;
    box-sizing: border-box;
}

.btn-enviar-bar {
    width: 100%;
    padding: 12px;
    background: #00f0ff;
    color: #000;
    border: none;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
}

.divisor-bar {
    margin: 20px 0;
    color: #666;
    font-size: 0.85rem;
}

.btn-whatsapp-bar {
    display: block;
    background: #25d366;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

/* ==========================================================================
   Estilos Específicos: Landing PREMIUM (Glamping de Lujo)
   ========================================================================== */

.hero-premium {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.capa-oscura-premium {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(19, 42, 19, 0.65); /* Filtro verde bosque oscuro */
    z-index: 2;
}
.contenido-hero-premium { position: relative; z-index: 3; color: white; max-width: 750px; padding: 0 20px; }
.tagline-premium { color: #cca43b; font-weight: bold; text-transform: uppercase; letter-spacing: 3px; font-size: 0.9rem; }
.contenido-hero-premium h1 { font-size: 4.5rem; margin: 15px 0; font-family: 'Georgia', serif; }
.btn-premium {
    display: inline-block;
    background: #cca43b;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background 0.3s;
}
.btn-premium:hover { background: #b58f32; }

/* Estilos de Sección Comunes */
.titulo-seccion { text-align: center; margin-bottom: 50px; }
.titulo-seccion h2 { font-size: 2.2rem; color: #132a13; font-family: 'Georgia', serif; }

.seccion-amenidades, .seccion-testimoniales, .seccion-faq {
    padding: 80px 10%;
    background: #fff;
}

/* Grid de Amenidades */
.grid-amenidades { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.amenidad-item { background: #f4f7f4; padding: 30px; width: 280px; border-radius: 8px; text-align: center; }
.amenidad-item .icono { font-size: 2.5rem; display: block; margin-bottom: 15px; }
.amenidad-item h3 { color: #132a13; margin-bottom: 10px; }

/* Testimoniales */
.seccion-testimoniales { background: #f9fbf9; }
.contenedor-testimoniales { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.tarjeta-testimonial { background: white; padding: 30px; border-radius: 8px; width: 45%; min-width: 300px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.comentario { font-style: italic; line-height: 1.6; color: #555; }
.autor { margin-top: 20px; display: flex; flex-direction: column; }
.autor strong { color: #132a13; }
.autor span { font-size: 0.8rem; color: #888; }

/* Acordeón FAQ Interactiva */
.acordeon-faq { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e2e8f0; }
.faq-pregunta {
    width: 100%; background: none; border: none; padding: 20px 0;
    text-align: left; font-size: 1.1rem; font-weight: bold; color: #132a13;
    cursor: pointer; display: flex; justify-content: space-between;
}
.faq-respuesta { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; color: #555; line-height: 1.6; }
.faq-item.activo .faq-respuesta { max-height: 200px; padding-bottom: 20px; }

/* Cotizador Avanzado */
.seccion-cotizador { background: #132a13; color: white; padding: 80px 10%; }
.contenedor-cotizador { max-width: 650px; margin: 0 auto; text-align: center; }
.form-avanzado { margin-top: 40px; text-align: left; }
.fila-form { display: flex; gap: 20px; margin-bottom: 20px; }
.fila-form input, .fila-form select { flex: 1; padding: 12px; border-radius: 4px; border: 1px solid #284e28; background: #1f3e1f; color: white; }
.fila-form input::placeholder { color: #a3bda3; }
.check-experiencias { background: #1f3e1f; padding: 20px; border-radius: 6px; margin-bottom: 25px; }
.check-experiencias label { display: block; margin: 10px 0; cursor: pointer; }
.btn-enviar-premium { width: 100%; padding: 15px; background: #cca43b; color: white; border: none; font-weight: bold; border-radius: 4px; cursor: pointer; text-transform: uppercase; }
.btn-enviar-premium:hover { background: #b58f32; }