/* ================= ANIMACIONES INICIALES ================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================= CLASES PARA EL JS (SCROLL REVEAL) ================= */
.oculto-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.oculto-reveal.mostrar {
    opacity: 1;
    transform: translateY(0);
}

/* ================= HERO SERVICIOS ================= */
.hero-container {
    padding: 30px 20px; 
    max-width: 1350px;
    margin: 0 auto;
    margin-bottom: 40px; /* Reducido */
}

.hero-servicios {
    height: 75vh; 
    min-height: 500px; 
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 24px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.15); 
    overflow: hidden;
}

.hero-servicios-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.15); 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: #2e4d25; 
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.7);
    text-transform: uppercase;
}

/* ================= TÍTULOS DE SECCIÓN ================= */
.line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ================= DISEÑO DE CABAÑAS (ESPACIOS REDUCIDOS) ================= */
.cabin-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; /* Reducido de 60 a 40 */
    align-items: center;
    margin-bottom: 30px; /* REDUCIDO: Menos espacio en blanco entre tarjetas */
    
    background-color: #ffffff;
    padding: 40px; /* REDUCIDO: Recuadros más compactos */
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f5f5f5;
}

.cabin-image img {
    width: 100%;
    height: auto;
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
    transition: transform 0.4s ease;
}

.cabin-image img:hover {
    transform: scale(1.02);
}

.cabin-content h2 {
    font-size: 2.2rem; /* Ligeramente más pequeño para mejor balance */
    color: #2e4d25;
    margin-bottom: 20px;
}

.cabin-content p {
    font-size: 1.05rem;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.6; /* Interlineado más compacto */
}

.cabin-content h4 {
    font-size: 1.15rem;
    color: #222222;
    margin-top: 25px;
    margin-bottom: 15px;
}

.prices-list {
    list-style-type: none; 
    margin-bottom: 25px;
}

.prices-list li {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.prices-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.free-wine {
    font-style: italic;
    color: #444444;
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

/* ================= SECCIÓN SABÍAS QUÉ ================= */
.did-you-know {
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 80px 20px; /* REDUCIDO de 120px a 80px */
    text-align: center;
    background-attachment: fixed;
    margin-top: 20px;
}

.did-you-know-content {
    background: rgba(255, 255, 255, 0.75);
    padding: 50px 30px; /* Reducido */
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.did-you-know h2 {
    font-size: 2.2rem;
    color: #2e4d25;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.did-you-know p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .hero-container {
        padding: 15px 10px;
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem; 
        letter-spacing: 2px;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }
    
    .cabin-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px; 
        text-align: center;
        margin-bottom: 20px; /* Aún más compacto en móviles */
    }
    
    .reverse-layout .cabin-image {
        order: -1;
    }

    .did-you-know {
        padding: 60px 20px;
    }
    
    .did-you-know-content {
        padding: 40px 20px;
    }
}