
        @layer base {
            body {
                @apply bg-stone-light text-slate-900 font-sans;
            }
        }
        .hero-overlay {
            background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 60%, rgba(252, 252, 249, 1) 100%);
        }
        .search-shadow {
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        /* Buscador estilo casita ilustrada - inspirado en La Casita de Pule */
        @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

        .search-sketchy {
            background: #fef9e7;
            border: 3px solid #2d5a3d;
            border-radius: 30px;
            position: relative;
            padding: 20px 25px;
            font-family: 'Quicksand', sans-serif;
            box-shadow: 
                0 8px 25px rgba(45, 90, 61, 0.15),
                inset 0 2px 0 rgba(255, 255, 255, 0.8);
        }

        /* Techo coral decorativo */
        .search-sketchy::before {
            content: '';
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 35px;
            background: linear-gradient(135deg, #f28b82 0%, #e07065 100%);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            border-radius: 5px 5px 0 0;
        }

        /* Chimenea pequeña */
        .search-sketchy::after {
            content: '';
            position: absolute;
            top: -28px;
            left: calc(50% + 30px);
            width: 15px;
            height: 18px;
            background: linear-gradient(to bottom, #d4a574, #c9956a);
            border-radius: 2px 2px 0 0;
        }

        .search-sketchy .search-field {
            background: white;
            border: 2px solid #7cb987;
            border-radius: 15px;
            padding: 12px 16px;
            position: relative;
            transition: all 0.3s ease;
        }

        .search-sketchy .search-field:hover {
            border-color: #5a9c6a;
            box-shadow: 0 4px 12px rgba(124, 185, 135, 0.2);
        }

        .search-sketchy .search-field:focus-within {
            border-color: #6dcad0;
            box-shadow: 0 0 0 3px rgba(109, 202, 208, 0.25);
        }

        .search-sketchy .search-icon {
            color: #5a9c6a;
            font-size: 22px;
        }

        .search-sketchy .search-label {
            color: #2d5a3d;
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 11px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .search-sketchy input {
            background: transparent;
            border: none;
            color: #3d3d3d;
            font-family: 'Quicksand', sans-serif;
            font-size: 14px;
            font-weight: 500;
        }

        .search-sketchy input::placeholder {
            color: #a8c4ae;
            font-weight: 500;
        }

        .search-sketchy .search-btn-warm {
            background: linear-gradient(135deg, #6dcad0 0%, #5bb8be 100%);
            border: none;
            border-radius: 18px;
            color: white;
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(109, 202, 208, 0.4);
        }

        .search-sketchy .search-btn-warm:hover {
            background: linear-gradient(135deg, #7dd4da 0%, #6dcad0 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(109, 202, 208, 0.5);
        }

        .search-sketchy .search-btn-warm:active {
            transform: translateY(0);
            box-shadow: 0 2px 10px rgba(109, 202, 208, 0.4);
        }

        .search-divider {
            width: 2px;
            height: 40px;
            background: linear-gradient(to bottom, transparent, #7cb987, transparent);
            border-radius: 2px;
        }

        /* Hojas decorativas */
        .leaf-deco {
            position: absolute;
            font-size: 20px;
            opacity: 0.7;
            pointer-events: none;
        }

        /* Cards estilo casita ilustrada */
        .listing-card {
            background: #fef9e7;
            border: 3px solid #7cb987;
            border-radius: 24px;
            padding: 16px;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(45, 90, 61, 0.1);
            font-family: 'Quicksand', sans-serif;
        }

        .listing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(45, 90, 61, 0.2);
            border-color: #5a9c6a;
        }

        /* Techo decorativo en las cards */
        .listing-card::before {
            content: '';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 24px;
            background: linear-gradient(135deg, #f28b82 0%, #e07065 100%);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            border-radius: 4px 4px 0 0;
            z-index: 10;
        }

        .listing-card .relative.aspect-\[4\/3\] {
            border-radius: 16px !important;
            border: 2px solid #a8d4ae;
            overflow: hidden;
        }

        .listing-card h3 {
            color: #2d5a3d !important;
            font-family: 'Quicksand', sans-serif !important;
            font-weight: 700 !important;
        }

        .listing-card .text-primary {
            color: #5a9c6a !important;
        }

        .listing-card .text-stone-500 {
            color: #6b8f6b !important;
        }

        .listing-card .bg-stone-100 {
            background: #e8f5e9 !important;
            border: 1px solid #a8d4ae;
        }

        .listing-card .text-yellow-500 {
            color: #f5a623 !important;
        }

        .listing-card .border-t {
            border-color: #c8e6c9 !important;
        }

        .listing-card .text-slate-900 {
            color: #2d5a3d !important;
        }

        .listing-card .text-stone-400 {
            color: #7cb987 !important;
        }

        /* Botón Ver Detalles estilo puerta celeste */
        .listing-card .bg-forest-dark {
            background: linear-gradient(135deg, #6dcad0 0%, #5bb8be 100%) !important;
            border: none !important;
            border-radius: 12px !important;
            font-family: 'Quicksand', sans-serif !important;
            font-weight: 700 !important;
            box-shadow: 0 4px 12px rgba(109, 202, 208, 0.3);
            transition: all 0.3s ease !important;
        }

        .listing-card .bg-forest-dark:hover {
            background: linear-gradient(135deg, #7dd4da 0%, #6dcad0 100%) !important;
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(109, 202, 208, 0.4);
        }

        /* Botón favorito estilo */
        .listing-card button[class*="bg-white/20"] {
            background: rgba(254, 249, 231, 0.9) !important;
            border: 2px solid #f28b82;
        }

        .listing-card button[class*="bg-white/20"]:hover {
            background: #f28b82 !important;
            color: white !important;
        }

        .listing-card button[class*="bg-white/20"] span {
            color: #f28b82;
        }

        .listing-card button[class*="bg-white/20"]:hover span {
            color: white !important;
        }

        /* Badge Más Popular */
        .listing-card .bg-accent {
            background: linear-gradient(135deg, #f28b82 0%, #e07065 100%) !important;
            border-radius: 8px !important;
            font-family: 'Quicksand', sans-serif !important;
        }

        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }

        /* Animaciones de entrada */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .animate-fadeInUp {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .animate-fadeInDown {
            animation: fadeInDown 0.6s ease-out forwards;
            opacity: 0;
        }

        .animate-fadeInLeft {
            animation: fadeInLeft 0.6s ease-out forwards;
            opacity: 0;
        }

        .animate-fadeInRight {
            animation: fadeInRight 0.6s ease-out forwards;
            opacity: 0;
        }

        .animate-scaleIn {
            animation: scaleIn 0.6s ease-out forwards;
            opacity: 0;
        }

        .listing-card.animate-fadeInUp {
            animation-delay: calc(var(--card-index, 0) * 0.1s);
        }

        /* Preload del hero */
        .hero-section {
            min-height: 100vh;
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
        }

        /* Animación mejorada del header */
        @keyframes slideDownHeader {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        header {
            animation: slideDownHeader 0.8s ease-out;
        }

        header .logo-brand {
            transition: all 0.3s ease;
        }

        header .logo-brand:hover {
            transform: scale(1.05);
        }

        nav a {
            position: relative;
            transition: all 0.3s ease;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: rgba(255, 255, 255, 0.8);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .btn-reservar {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .btn-reservar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .btn-reservar:hover::before {
            left: 100%;
        }

        /* Chatbot Flotante - Estilo Casita */
        .chatbot-bubble {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 8000;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 10px;
            font-family: 'Quicksand', sans-serif;
        }

        .chatbot-tooltip {
            background: #fef9e7;
            color: #2d5a3d;
            padding: 12px 18px;
            border-radius: 20px;
            border: 2px solid #7cb987;
            box-shadow: 0 4px 15px rgba(45, 90, 61, 0.15);
            font-size: 14px;
            font-weight: 600;
            max-width: 200px;
            text-align: center;
            animation: slideInRight 0.4s ease-out forwards;
            margin-bottom: 8px;
            position: relative;
            font-family: 'Quicksand', sans-serif;
        }

        .chatbot-tooltip::before {
            content: '🌿';
            position: absolute;
            top: -8px;
            left: 10px;
            font-size: 16px;
        }

        .chatbot-tooltip::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 25px;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 0 solid transparent;
            border-top: 10px solid #7cb987;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .chatbot-btn {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            background: #fef9e7;
            border: 3px solid #7cb987;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 
                0 6px 20px rgba(45, 90, 61, 0.2),
                inset 0 2px 0 rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
            font-size: 28px;
            animation: scaleInBounce 0.5s ease-out;
            position: relative;
            overflow: visible;
        }

        /* Techo de la casita en el botón */
        .chatbot-btn::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 18px;
            background: linear-gradient(135deg, #f28b82 0%, #e07065 100%);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            border-radius: 3px 3px 0 0;
        }

        /* Hojas decorativas */
        .chatbot-btn::after {
            content: '🌿';
            position: absolute;
            bottom: -5px;
            right: -8px;
            font-size: 18px;
            opacity: 0.8;
        }

        .chatbot-btn:hover {
            transform: scale(1.08) translateY(-3px);
            box-shadow: 
                0 10px 25px rgba(45, 90, 61, 0.25),
                inset 0 2px 0 rgba(255, 255, 255, 0.8);
            border-color: #5a9c6a;
        }

        .chatbot-btn:active {
            transform: scale(0.98);
        }

        @keyframes scaleInBounce {
            0% {
                opacity: 0;
                transform: scale(0);
            }
            70% {
                transform: scale(1.15);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .chatbot-modal {
            position: fixed;
            bottom: 100px;
            right: 20px;
            width: 90%;
            max-width: 400px;
            background: #fef9e7;
            border: 3px solid #7cb987;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(45, 90, 61, 0.2);
            z-index: 8001;
            display: none;
            flex-direction: column;
            max-height: 550px;
            animation: slideUp 0.3s ease-out forwards;
            overflow: hidden;
            font-family: 'Quicksand', sans-serif;
        }

        /* Techo del modal */
        .chatbot-modal::before {
            content: '';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 30px;
            background: linear-gradient(135deg, #f28b82 0%, #e07065 100%);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            border-radius: 4px 4px 0 0;
            z-index: 10;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .chatbot-modal.active {
            display: flex;
        }

        .chatbot-header {
            background: linear-gradient(135deg, #5a9c6a 0%, #7cb987 100%);
            color: white;
            padding: 18px 20px;
            border-radius: 20px 20px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            font-size: 15px;
            font-family: 'Quicksand', sans-serif;
        }

        .chatbot-close {
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            cursor: pointer;
            font-size: 18px;
            padding: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .chatbot-close:hover {
            background: rgba(255,255,255,0.3);
            transform: rotate(90deg);
        }

        .chatbot-messages {
            flex: 1;
            overflow-y: auto;
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            background: #f9f6ed;
        }

        .chatbot-messages::-webkit-scrollbar {
            width: 6px;
        }

        .chatbot-messages::-webkit-scrollbar-track {
            background: #e8f5e9;
            border-radius: 10px;
        }

        .chatbot-messages::-webkit-scrollbar-thumb {
            background: #7cb987;
            border-radius: 10px;
        }

        .message {
            display: flex;
            gap: 8px;
            animation: fadeInUp 0.3s ease-out forwards;
        }

        .message.user {
            justify-content: flex-end;
        }

        .message-content {
            padding: 12px 14px;
            border-radius: 16px;
            font-size: 13px;
            line-height: 1.5;
            max-width: 85%;
            font-family: 'Quicksand', sans-serif;
        }

        .message.bot .message-content {
            background: white;
            color: #2d5a3d;
            border: 2px solid #a8d4ae;
            border-radius: 16px 16px 16px 4px;
        }

        .message.user .message-content {
            background: linear-gradient(135deg, #6dcad0 0%, #5bb8be 100%);
            color: white;
            border-radius: 16px 16px 4px 16px;
        }

        .chatbot-input-area {
            padding: 14px;
            border-top: 2px solid #c8e6c9;
            display: flex;
            gap: 10px;
            background: #fef9e7;
            border-radius: 0 0 20px 20px;
        }

        .chatbot-input {
            flex: 1;
            border: 2px solid #a8d4ae;
            border-radius: 20px;
            padding: 10px 16px;
            font-size: 14px;
            font-family: 'Quicksand', sans-serif;
            outline: none;
            transition: all 0.2s ease;
            background: white;
        }

        .chatbot-input:focus {
            border-color: #6dcad0;
            box-shadow: 0 0 0 3px rgba(109, 202, 208, 0.2);
        }

        .chatbot-send {
            background: linear-gradient(135deg, #6dcad0 0%, #5bb8be 100%);
            border: none;
            color: white;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 18px;
            box-shadow: 0 3px 10px rgba(109, 202, 208, 0.3);
        }

        .chatbot-send:hover {
            background: linear-gradient(135deg, #7dd4da 0%, #6dcad0 100%);
            transform: scale(1.1);
        }

        .chatbot-send:active {
            transform: scale(0.95);
        }

        /* ========================================
           RESPONSIVE - MEDIA QUERIES COMPLETAS
           ======================================== */

        /* Tablets y pantallas medianas */
        @media (max-width: 1024px) {
            .search-sketchy {
                padding: 18px 20px;
            }
            
            .search-sketchy .search-field {
                padding: 10px 14px;
            }
            
            .listing-card {
                padding: 14px;
            }
        }

        /* Móviles grandes y tablets pequeñas */
        @media (max-width: 768px) {
            /* Header */
            header {
                padding: 12px 15px !important;
                margin: 0 10px !important;
                top: 15px !important;
                border-radius: 25px !important;
            }
            
            header nav {
                gap: 8px !important;
            }
            
            header .containerImgHeader img {
                width: 100px !important;
                top: -25px !important;
            }
            
            header nav a {
                font-size: 9px !important;
                letter-spacing: 0.1em !important;
            }
            
            header .btn-reservar {
                padding: 6px 12px !important;
                font-size: 9px !important;
            }
            
            /* Hero Section */
            section.relative {
                padding-top: 120px !important;
                padding-bottom: 30px !important;
            }
            
            .relative h2.text-7xl {
                font-size: 2.5rem !important;
                line-height: 1.1 !important;
                margin-bottom: 1.5rem !important;
            }
            
            .relative span.block {
                font-size: 10px !important;
                letter-spacing: 0.2em !important;
                margin-bottom: 1rem !important;
            }
            
            /* Buscador */
            .search-sketchy {
                padding: 20px 15px;
                border-radius: 20px;
                margin-top: 25px;
            }
            
            .search-sketchy::before {
                width: 80px;
                height: 25px;
                top: -14px;
            }
            
            .search-sketchy::after {
                top: -22px;
                width: 10px;
                height: 12px;
                left: calc(50% + 20px);
            }
            
            .search-sketchy .search-field {
                padding: 12px;
                width: 100%;
            }
            
            .search-sketchy .search-btn-warm {
                width: 100%;
                justify-content: center;
                padding: 14px 20px;
                margin-top: 5px;
            }
            
            .leaf-deco {
                font-size: 14px !important;
                opacity: 0.5 !important;
            }
            
            /* Sección de listings */
            section.bg-stone-light {
                padding: 2rem 1rem !important;
            }
            
            /* Filtros */
            .flex.gap-8.overflow-x-auto {
                gap: 12px !important;
                padding-bottom: 10px !important;
            }
            
            .filter-btn {
                font-size: 11px !important;
                white-space: nowrap;
            }
            
            /* Cards */
            .listing-card {
                padding: 12px;
                border-radius: 18px;
                margin-top: 15px;
            }
            
            .listing-card::before {
                width: 60px;
                height: 18px;
                top: -10px;
            }
            
            .listing-card h3 {
                font-size: 1.25rem !important;
            }
            
            .listing-card p {
                font-size: 12px !important;
            }
            
            .listing-card .text-xl {
                font-size: 1rem !important;
            }
            
            .listing-card button.bg-forest-dark {
                padding: 8px 14px !important;
                font-size: 9px !important;
            }
            
            /* Grid de cards */
            #listings-grid {
                gap: 2rem !important;
            }
            
            /* Chatbot */
            .chatbot-modal {
                width: calc(100% - 30px);
                max-height: 70vh;
                right: 15px;
                bottom: 90px;
            }
            
            .chatbot-tooltip {
                max-width: 160px;
                font-size: 12px;
                padding: 10px 14px;
            }
            
            .chatbot-btn {
                width: 60px;
                height: 60px;
            }
            
            .chatbot-btn::before {
                width: 40px;
                height: 14px;
                top: -8px;
            }
            
            .chatbot-btn span {
                font-size: 24px !important;
            }
            
            .chatbot-header {
                padding: 14px 16px;
                font-size: 14px;
            }
            
            .chatbot-input {
                font-size: 14px;
                padding: 10px 14px;
            }
            
            /* Footer */
            footer {
                padding: 2rem 1rem !important;
            }
            
            footer .grid {
                gap: 1.5rem !important;
            }
        }

        /* Móviles pequeños */
        @media (max-width: 480px) {
            /* Header - versión más compacta */
            header {
                padding: 10px 12px !important;
                margin: 0 8px !important;
                top: 10px !important;
                border-radius: 20px !important;
            }
            
            header nav {
                flex-wrap: wrap;
                justify-content: center !important;
                gap: 6px !important;
            }
            
            header nav a:not(.btn-reservar) {
                display: none;
            }
            
            header .containerImgHeader img {
                width: 80px !important;
                top: -20px !important;
                position: relative !important;
            }
            
            header .btn-reservar {
                padding: 8px 16px !important;
                font-size: 10px !important;
                background: #6dcad0 !important;
                color: white !important;
                border: none !important;
            }
            
            /* Hero */
            section.relative {
                padding-top: 100px !important;
                padding-bottom: 25px !important;
            }
            
            .relative h2.text-7xl {
                font-size: 2rem !important;
                line-height: 1.15 !important;
                margin-bottom: 1.2rem !important;
            }
            
            .relative span.block {
                font-size: 9px !important;
                letter-spacing: 0.15em !important;
            }
            
            /* Buscador móvil */
            .search-sketchy {
                padding: 18px 12px;
                border-radius: 18px;
                border-width: 2px;
            }
            
            .search-sketchy::before {
                width: 60px;
                height: 20px;
                top: -12px;
            }
            
            .search-sketchy::after {
                display: none;
            }
            
            .search-sketchy .search-field {
                padding: 10px;
                border-radius: 12px;
            }
            
            .search-sketchy .search-icon {
                font-size: 18px !important;
            }
            
            .search-sketchy .search-label {
                font-size: 9px !important;
            }
            
            .search-sketchy input {
                font-size: 12px !important;
            }
            
            .search-sketchy .search-btn-warm {
                padding: 12px 16px;
                font-size: 12px !important;
                border-radius: 14px !important;
            }
            
            .leaf-deco {
                display: none !important;
            }
            
            /* Filtros móvil */
            .flex.gap-8.overflow-x-auto {
                gap: 8px !important;
                -webkit-overflow-scrolling: touch;
            }
            
            .filter-btn {
                font-size: 10px !important;
                padding: 4px 0;
            }
            
            /* Info alojamientos */
            .flex.items-center.gap-4 span {
                font-size: 10px !important;
            }
            
            .flex.items-center.gap-4 button {
                font-size: 9px !important;
            }
            
            /* Cards móvil */
            .listing-card {
                padding: 10px;
                border-radius: 16px;
                border-width: 2px;
            }
            
            .listing-card::before {
                width: 50px;
                height: 15px;
                top: -8px;
            }
            
            .listing-card .aspect-\[4\/3\] {
                border-radius: 12px !important;
            }
            
            .listing-card h3 {
                font-size: 1.1rem !important;
            }
            
            .listing-card .text-\[10px\] {
                font-size: 9px !important;
            }
            
            .listing-card p.text-stone-500 {
                font-size: 11px !important;
                margin-bottom: 8px !important;
            }
            
            .listing-card .pt-4 {
                padding-top: 10px !important;
                flex-direction: column;
                gap: 10px;
            }
            
            .listing-card .text-xl {
                font-size: 0.95rem !important;
            }
            
            .listing-card button.bg-forest-dark {
                width: 100% !important;
                padding: 10px !important;
                font-size: 10px !important;
                justify-content: center;
            }
            
            /* Chatbot móvil */
            .chatbot-bubble {
                bottom: 15px;
                right: 15px;
            }
            
            .chatbot-modal {
                width: calc(100% - 20px);
                right: 10px;
                left: 10px;
                bottom: 85px;
                max-height: 65vh;
                border-radius: 20px;
            }
            
            .chatbot-modal::before {
                width: 70px;
                height: 22px;
                top: -12px;
            }
            
            .chatbot-tooltip {
                max-width: 140px;
                font-size: 11px;
                padding: 8px 12px;
            }
            
            .chatbot-btn {
                width: 55px;
                height: 55px;
                border-radius: 16px;
            }
            
            .chatbot-btn::before {
                width: 35px;
                height: 12px;
                top: -7px;
            }
            
            .chatbot-btn::after {
                font-size: 14px !important;
                bottom: -3px;
                right: -5px;
            }
            
            .chatbot-btn span {
                font-size: 22px !important;
            }
            
            .chatbot-header {
                padding: 12px 14px;
                font-size: 13px;
                border-radius: 18px 18px 0 0;
            }
            
            .chatbot-messages {
                padding: 12px;
            }
            
            .message-content {
                font-size: 12px !important;
                padding: 10px 12px !important;
            }
            
            .chatbot-input-area {
                padding: 10px;
            }
            
            .chatbot-input {
                font-size: 13px;
                padding: 8px 12px;
            }
            
            .chatbot-send {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
            
            /* Footer móvil */
            footer {
                padding: 1.5rem 1rem !important;
                text-align: center;
            }
            
            footer .grid {
                grid-template-columns: 1fr !important;
                gap: 1.5rem !important;
            }
            
            footer h4 {
                font-size: 14px !important;
            }
            
            footer a, footer p {
                font-size: 12px !important;
            }
        }

        /* Ajustes para pantallas muy pequeñas */
        @media (max-width: 360px) {
            .relative h2.text-7xl {
                font-size: 1.75rem !important;
            }
            
            .search-sketchy {
                padding: 15px 10px;
            }
            
            .search-sketchy .search-field {
                padding: 8px;
            }
            
            .listing-card h3 {
                font-size: 1rem !important;
            }
            
            .chatbot-modal {
                max-height: 60vh;
            }
        }

        /* Orientación landscape en móviles */
        @media (max-height: 500px) and (orientation: landscape) {
            section.relative {
                padding-top: 80px !important;
                min-height: auto !important;
                height: auto !important;
            }
            
            .relative h2.text-7xl {
                font-size: 2rem !important;
                margin-bottom: 1rem !important;
            }
            
            .chatbot-modal {
                max-height: 80vh;
            }
        }

        /* ========================================
           MENÚ HAMBURGUESA MÓVIL
           ======================================== */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background: #fef9e7;
            border: 2px solid #7cb987;
            border-radius: 10px;
            cursor: pointer;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn span {
            display: block;
            width: 20px;
            height: 2px;
            background: #2d5a3d;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(254, 249, 231, 0.98);
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 25px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-nav.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav a {
            font-family: 'Quicksand', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: #2d5a3d;
            text-decoration: none;
            padding: 12px 30px;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .mobile-nav a:hover {
            background: #7cb987;
            color: white;
        }

        .mobile-nav .btn-reservar-mobile {
            background: linear-gradient(135deg, #6dcad0 0%, #5bb8be 100%);
            color: white !important;
            padding: 15px 40px;
            border-radius: 20px;
            font-weight: 700;
            margin-top: 10px;
        }

        .mobile-nav-logo {
            margin-bottom: 30px;
        }

        .mobile-nav-logo img {
            width: 120px;
        }

        @media (max-width: 1024px) {
            .mobile-menu-btn {
                display: flex;
            }
            
            .mobile-nav {
                display: flex;
            }
            
            header nav.hidden {
                display: none !important;
            }
        }

        @media (min-width: 1025px) {
            .mobile-menu-btn {
                display: none !important;
            }
            
            .mobile-nav {
                display: none !important;
            }
        }
        /* Galería de imágenes en cards de cabañas */
.principal-img-container {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    margin-bottom: 8px;
}
.principal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(45,90,61,0.08);
}
.miniaturas-container {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    justify-content: flex-start;
}
.miniatura-img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e8e8e8;
    cursor: pointer;
    transition: border 0.2s, box-shadow 0.2s;
}
.miniatura-img:hover {
    border: 2px solid #7cb987;
    box-shadow: 0 2px 8px rgba(124,185,135,0.15);
}
.miniatura-activa {
    border: 2px solid #7cb987 !important;
}