/* Importar fuentes necesarias */
@import url('https://fonts.googleapis.com/css2?family=League+Script&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

/* Habitaciones Carousel Styles */
.habitacion-carousel {
    width: 100%;
    position: relative;
    touch-action: pan-y;
    overflow: visible;
    max-width: 100%;
    box-sizing: border-box;
    padding-bottom: 1rem;
}

.habitacion-carousel.habitacion-carousel-left {
    max-width: 100%;
    box-sizing: border-box;
}

/* Prevent any scrolling on carousel area */
.habitaciones-section {
    touch-action: pan-y;
    overscroll-behavior: contain;
}

.habitacion-carousel-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    touch-action: none;
    -webkit-overflow-scrolling: auto;
    overscroll-behavior: none;
    max-width: 100%;
    contain: layout style;
}

.habitacion-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    touch-action: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

.habitacion-carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
}

.habitacion-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    touch-action: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}

.habitacion-carousel-slide:hover img {
    transform: scale(1.05);
}

/* Carousel Indicators */
.habitacion-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    flex-wrap: wrap;
}

.habitacion-carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.habitacion-carousel-indicator.active {
    background: white;
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.habitacion-carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Navigation arrows (optional, hidden by default) */
.habitacion-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.habitacion-carousel:hover .habitacion-carousel-arrow {
    opacity: 1;
}

.habitacion-carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.habitacion-carousel-arrow-left {
    left: 10px;
}

.habitacion-carousel-arrow-right {
    right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .habitacion-carousel-wrapper {
        height: 300px;
    }
    
    .habitacion-carousel-indicators {
        gap: 0.8rem;
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
        padding: 0.5rem;
    }
    
    .habitacion-carousel-indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .habitacion-carousel-wrapper {
        height: 250px;
    }
    
    .habitacion-carousel-indicators {
        gap: 0.5rem;
    }
}

/* Hospedaje Page Styles */

/* Prevent horizontal scroll globally */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
    max-width: 100%;
}

/* Header */
.hospedaje-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 108, 66, 0.2);
}

.hospedaje-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.back-btn {
    color: #8B6C42;
    text-decoration: none;
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border: 2px solid #8B6C42;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #8B6C42;
    color: white;
    transform: translateY(-2px);
}

.header-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Hero Section Hospedaje */
.hero-hospedaje {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('imagenes/Hospedaje/CasaYuma.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero-hospedaje-content {
    animation: fadeInUp 1s ease-out;
}

.hospedaje-title {
    font-family: 'League Script', Georgia, serif;
    font-style: normal;
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: white !important;
}

.hospedaje-logo-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.hospedaje-logo-image img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255,255,255,0.5));
    }
    to {
        filter: brightness(0) invert(1) drop-shadow(0 0 40px rgba(255,255,255,0.8));
    }
}

/* Casa Yuma Section */
.casa-yuma-section {
    background: #eae4cc;
    padding: 100px 20px 80px;
    color: #3B2F2F;
}

.section-title-hospedaje {
    font-family: 'League Script', Georgia, serif;
    font-style: normal;
    font-size: 4rem;
    text-align: center;
    color: #8B6C42;
    margin-bottom: 60px;
    letter-spacing: 3px;
    font-weight: 400;
}

.casa-yuma-title-center {
    font-family: 'League Script', Georgia, serif;
    font-style: normal;
    font-size: 4rem;
    text-align: center;
    color: #8B6C42;
    margin-bottom: 60px;
    margin-top: 0;
    letter-spacing: 3px;
    font-weight: 400;
    width: 100%;
    grid-column: 1 / -1;
}

.casa-yuma-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Casa Yuma Carousel Styles */
.casa-yuma-carousel {
    width: 100%;
    position: relative;
    touch-action: pan-y;
    overflow: visible;
    max-width: 100%;
    box-sizing: border-box;
    padding-bottom: 1rem;
}

.casa-yuma-carousel-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    touch-action: none;
    -webkit-overflow-scrolling: auto;
    overscroll-behavior: none;
    max-width: 100%;
    contain: layout style;
}

.casa-yuma-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    touch-action: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

.casa-yuma-carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
}

.casa-yuma-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    touch-action: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}

.casa-yuma-carousel-slide:hover img {
    transform: scale(1.05);
}

/* Casa Yuma Carousel Indicators */
.casa-yuma-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    flex-wrap: wrap;
}

.casa-yuma-carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 108, 66, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.casa-yuma-carousel-indicator.active {
    background: #8B6C42;
    transform: scale(1.3);
    border-color: rgba(139, 108, 66, 0.6);
    box-shadow: 0 0 10px rgba(139, 108, 66, 0.5);
}

.casa-yuma-carousel-indicator:hover {
    background: rgba(139, 108, 66, 0.8);
    transform: scale(1.1);
}

.casa-yuma-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.casa-yuma-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.casa-yuma-image:hover img {
    transform: scale(1.05);
}

.casa-yuma-text {
    color: #8B6C42;
    font-size: 1.1rem;
    line-height: 1.7;
    font-family: 'Lora', serif;
}

.casa-yuma-text p {
    margin-bottom: 2rem;
}

.direccion-info h3 {
    color: #8B6C42;
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
    font-weight: 500;
}

.direccion-info p {
    color: #8B6C42;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.map-btn {
    background: #8B6C42;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-btn:hover {
    background: #6B5230;
    transform: translateY(-2px);
}

/* Habitaciones Section */
.habitaciones-section {
    background: #8B6C42;
    padding: 80px 0;
    color: white;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    position: relative;
}

.habitaciones-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    box-sizing: border-box;
    padding: 0 20px;
}

.habitaciones-title-center {
    font-family: 'League Script', Georgia, serif;
    font-style: normal;
    font-size: 4rem;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    margin-top: 0;
    letter-spacing: 3px;
    font-weight: 400;
    grid-column: 1 / -1;
}

.habitacion-text {
    color: white;
    font-size: 1.1rem;
    line-height: 1.7;
    font-family: 'Lora', serif;
    padding-right: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.habitacion-text h3 {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
    font-weight: 500;
    color: white;
}

.habitacion-text p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.habitacion-details {
    margin-bottom: 2rem;
}

.habitacion-details div {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.price {
    font-size: 1.3rem;
    margin-top: 20px;
}

.price strong {
    color: white;
    font-weight: 400;
}

.habitacion-image {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
}

.habitacion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.habitacion-image:hover img {
    transform: scale(1.05);
}

/* Segunda habitación - Layout invertido */
.habitacion-image-left {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    
}

.habitacion-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.habitacion-image-left:hover img {
    transform: scale(1.05);
}

.habitacion-text-right {
    color: white;
    font-size: 1.1rem;
    line-height: 1.7;
    font-family: 'Lora', serif;
    padding-left: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.habitacion-text-right h3 {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
    font-weight: 500;
    color: white;
}

.habitacion-text-right p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Mensaje de contacto para reservas */
.contacto-reserva {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contacto-icon {
    flex-shrink: 0;
}

.contacto-icon svg {
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.contacto-reserva p {
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Lora', serif;
    color: white;
    text-align: center;
    line-height: 1.6;
}



/* Footer Hospedaje */
.footer-hospedaje {
    background: #eae4cc;
    padding: 80px 20px;
    color: #3B2F2F;
}

.footer-hospedaje-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

.footer-hospedaje-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 40px;
}

.footer-logo-image {
    margin-bottom: 2rem;
}

.footer-logo-image img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.footer-names {
    font-family: 'League Script', Georgia, serif;
    font-style: normal;
    font-size: 2.5rem;
    color: #8B6C42;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    font-weight: 400;
}

.footer-date {
    font-family: 'League Script', Georgia, serif;
    font-style: normal;
    font-size: 2.8rem;
    color: #8B6C42;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    font-weight: 400;
}

.footer-message {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 2.2rem;
    color: #8B6C42;
    opacity: 0.8;
    font-weight: 400;
}

.footer-hospedaje-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.footer-hospedaje-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.footer-hospedaje-image:hover img {
    transform: scale(1.02);
}

/* ============================================
   SECCIÓN: OPCIONES ADICIONALES - NUEVO DISEÑO
   ============================================ */

.opciones-adicionales {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f1e8 0%, #e8dcc8 100%);
}

/* Sobreescribir estilos del container general */
.opciones-adicionales .container {
    display: block !important;
    height: auto !important;
}

.opciones-title {
    font-family: 'League Script', Georgia, serif;
    font-size: 4rem;
    color: #6b5744;
    text-align: center;
    margin: 0 0 60px 0;
    font-weight: 400;
    letter-spacing: 3px;
    display: block;
    width: 100%;
}

.opciones-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.opcion-box {
    display: flex;
    align-items: center;
    gap: 30px;
}

.opcion-logo {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.opcion-btn {
    display: inline-block;
    background: #6b5744;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 87, 68, 0.2);
    white-space: nowrap;
    text-transform: uppercase;
}

.opcion-btn:hover {
    background: #8b7355;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 87, 68, 0.3);
}

/* ============================================
   SECCIÓN: TRASLADO - MEJORADO
   ============================================ */

.traslado-section {
    padding: 100px 20px;
    background: #8B6C42;
    color: white;
}

/* Sobreescribir estilos del container general */
.traslado-section .container {
    display: block !important;
    height: auto !important;
}

.traslado-title {
    font-family: 'League Script', Georgia, serif;
    font-size: 4rem;
    color: white;
    text-align: center;
    margin: 0 0 40px 0;
    font-weight: 400;
    letter-spacing: 4px;
    display: block;
    width: 100%;
}

.traslado-descripcion {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 80px;
    line-height: 1.8;
    color: white;
    font-family: 'Lora', serif;
    display: block;
    width: 100%;
    opacity: 0.95;
}

.traslado-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1100px;
    margin: 0 auto;
}

.traslado-column {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.traslado-column:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.traslado-subtitle {
    font-family: 'League Script', Georgia, serif;
    font-size: 3rem;
    color: white;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 400;
    letter-spacing: 3px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.traslado-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    background: transparent;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.traslado-contact:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.traslado-contact:last-child {
    margin-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.traslado-contact:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: #8B6C42;
}

.contact-info {
    flex: 1;
}

.contact-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: white !important;
    font-family: 'Lora', serif;
    letter-spacing: 0.5px;
}

.contact-phone {
    display: block;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 4px;
    transition: all 0.3s ease;
    font-family: 'Lora', serif;
    padding-left: 5px;
}

.contact-phone:hover {
    color: #eae4cc !important;
    text-decoration: underline;
    padding-left: 10px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .opciones-title,
    .traslado-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .opciones-adicionales {
        padding: 60px 20px;
    }

    .opciones-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .opcion-box {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .opcion-logo {
        width: 120px;
        height: 60px;
    }

    .opcion-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .traslado-section {
        padding: 60px 20px;
    }

    .traslado-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .traslado-column {
        padding: 30px 20px;
    }

    .traslado-subtitle {
        font-size: 2.5rem;
    }

    .traslado-descripcion {
        font-size: 1rem;
        margin-bottom: 50px;
    }
    
    .traslado-contact {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .opciones-title,
    .traslado-title {
        font-size: 2rem;
    }

    .opcion-logo {
        width: 100px;
        height: 50px;
    }

    .opcion-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
    }

    .contact-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-name {
        font-size: 0.95rem;
    }

    .contact-phone {
        font-size: 0.85rem;
    }

    .traslado-subtitle {
        font-size: 2rem;
    }
    
    .traslado-column {
        padding: 25px 15px;
    }
}


/* Responsive Design */
@media (max-width: 1024px) {
    .casa-yuma-content,
    .habitaciones-content,
    .footer-hospedaje-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .habitaciones-content {
        display: flex;
        flex-direction: column;
    }
    
    /* Orden para pantallas medianas y pequeñas */
    .habitaciones-title-center {
        order: 1;
    }
    
    /* Primera habitación */
    .habitacion-text {
        order: 2;
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }
    
    .habitacion-carousel:not(.habitacion-carousel-left) {
        order: 3;
    }
    
    /* Segunda habitación - texto primero */
    .habitacion-text-right {
        order: 4;
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }
    
    .habitacion-carousel.habitacion-carousel-left {
        order: 5;
    }
    
    .habitaciones-content {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .hospedaje-header .container {
        padding: 0 1rem;
    }
    
    .back-btn {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .header-logo img {
        width: 50px;
        height: 50px;
    }
    
    .hospedaje-title {
        font-size: 3rem;
    }
    
    .hospedaje-logo-image img {
        width: 120px;
        height: 120px;
    }
    
    .section-title-hospedaje,
    .habitaciones-title-center {
        font-size: 2.5rem;
    }
    
    .casa-yuma-section {
        padding: 120px 20px 60px;
    }
    
    .casa-yuma-carousel-wrapper,
    .casa-yuma-image {
        height: 250px;
    }
    
    .casa-yuma-carousel-indicators {
        gap: 0.8rem;
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
        padding: 0.5rem;
    }
    
    .casa-yuma-carousel-indicator {
        width: 10px;
        height: 10px;
    }
    
    .casa-yuma-title-center {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .habitacion-image,
    .habitacion-image-left {
        height: 300px;
    }
    
    .footer-hospedaje-content {
        min-height: 400px;
        gap: 20px;
    }
    
    .footer-hospedaje-text {
        padding-right: 0;
        padding-bottom: 20px;
    }
    
    .footer-hospedaje-image {
        height: 300px;
        border-radius: 15px;
    }
    
    .footer-logo-image img {
        width: 100px;
        height: 100px;
    }
    
    .footer-names {
        font-size: 2rem;
    }
    
    .footer-date {
        font-size: 2.2rem;
    }
    
    .footer-message {
        font-size: 1.8rem;
    }
    
    .habitacion {
        margin-bottom: 60px;
    }
    
    /* Ensure no horizontal scroll on mobile */
    .habitaciones-content {
        padding: 0 10px;
        gap: 30px;
        display: flex;
        flex-direction: column;
    }
    
    /* Mantener el orden en móviles */
    .habitaciones-title-center {
        order: 1;
    }
    
    .habitacion-text {
        order: 2;
        padding: 0;
        max-width: 100%;
    }
    
    .habitacion-carousel:not(.habitacion-carousel-left) {
        order: 3;
    }
    
    .habitacion-text-right {
        order: 4;
        padding: 0;
        max-width: 100%;
    }
    
    .habitacion-carousel.habitacion-carousel-left {
        order: 5;
    }
    
    /* Mensaje de contacto en móvil */
    .contacto-reserva {
        order: 6;
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0.8rem;
    }
    
    .contacto-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .contacto-reserva p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hospedaje-title {
        font-size: 2.2rem;
    }
    
    .hospedaje-logo-image img {
        width: 100px;
        height: 100px;
    }
    
    .section-title-hospedaje,
    .habitaciones-title-center {
        font-size: 2rem;
    }
    
    .casa-yuma-section,
    .habitaciones-section,
    .footer-hospedaje {
        padding: 60px 10px;
    }
    
    .casa-yuma-section {
        padding-top: 100px;
    }
    
    .casa-yuma-text {
        font-size: 1rem;
    }
    
    .casa-yuma-title-center {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .casa-yuma-carousel-indicators {
        gap: 0.6rem;
        margin-top: 1.2rem;
        margin-bottom: 0.5rem;
        padding: 0.4rem;
    }
    
    .habitacion-text h3 {
        font-size: 1.6rem;
    }
    
    .habitacion-text p,
    .habitacion-text-right p {
        font-size: 1rem;
    }
    
    .habitacion-text-right h3 {
        font-size: 1.6rem;
    }
    
    .footer-names {
        font-size: 1.4rem;
    }
    
    .footer-date {
        font-size: 1.6rem;
    }
    
    .footer-message {
        font-size: 1.4rem;
    }
    
    .footer-logo-image img {
        width: 80px;
        height: 80px;
    }
    
    /* Extra protection against horizontal scroll */
    .habitaciones-content {
        padding: 0 5px;
        gap: 20px;
        display: flex;
        flex-direction: column;
    }
    
    /* Mantener el orden en pantallas muy pequeñas */
    .habitaciones-title-center {
        order: 1;
    }
    
    .habitacion-text {
        order: 2;
        padding: 0;
        font-size: 0.95rem;
    }
    
    .habitacion-carousel:not(.habitacion-carousel-left) {
        order: 3;
    }
    
    .habitacion-text-right {
        order: 4;
        padding: 0;
        font-size: 0.95rem;
    }
    
    .habitacion-carousel.habitacion-carousel-left {
        order: 5;
    }
    
    /* Mensaje de contacto en pantallas pequeñas */
    .contacto-reserva {
        order: 6;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .contacto-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .contacto-reserva p {
        font-size: 0.95rem;
    }
    
    .casa-yuma-carousel-wrapper {
        height: 200px;
    }
}