 /* ============ VARIABLES Y RESET ============ */
        :root {
            --color-primary: #eae4d7;
            --color-secondary: #5a3921;
            --color-accent: #9d5c34;
            --color-text: #7a6a58;
            --color-dark: #4a6c3f;
            --color-light: #f8f7f4;
            --color-white: #ffffff;
            --transicion: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--color-text);
            background-color: var(--color-white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--color-secondary);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* ============ LAYOUT GENERAL ============ */
        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
        }

        section {
            min-height: 100vh;
            padding: 100px 0;
            display: flex;
            align-items: center;
            position: relative;
        }

        /* ============ BARRA DE NAVEGACIÓN ============ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(90, 57, 33, 0.95);
            z-index: 1000;
            padding: 15px 0;
            transition: var(--transicion);
        }

        .navbar.scrolled {
            background: rgba(90, 57, 33, 0.98);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 10px 0;
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        /* Logo */
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            height: 50px;
            text-decoration: none;
            z-index: 1001;
        }

        .logo-img {
            margin-top: 20px;
            height: 160px;
            width: auto;
            transition: var(--transicion);
        }

        /* Menú desktop */
        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: var(--color-white);
            font-weight: 500;
            letter-spacing: 1px;
            position: relative;
            transition: var(--transicion);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-accent);
            transition: var(--transicion);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--color-accent);
        }

        /* Hamburguesa */
        .hamburger {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 20px;
            position: relative;
            z-index: 1001;
            background: none;
            border: none;
            padding: 0;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--color-white);
            position: absolute;
            left: 0;
            transition: var(--transicion);
            transform-origin: center;
        }

        .hamburger span:nth-child(1) { top: 0; }
        .hamburger span:nth-child(2) { top: 8px; }
        .hamburger span:nth-child(3) { top: 16px; }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg);
            top: 8px;
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg);
            top: 8px;
        }

        /* Menú móvil */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            background: rgba(90, 57, 33, 0.98);
            backdrop-filter: blur(10px);
            transition: var(--transicion);
            padding: 120px 30px 30px;
            z-index: 999;
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-links {
            list-style: none;
        }

        .mobile-links li {
            margin-bottom: 25px;
            opacity: 0;
            transform: translateX(20px);
            transition: var(--transicion);
        }

        .mobile-menu.active .mobile-links li {
            opacity: 1;
            transform: translateX(0);
            transition-delay: calc(0.1s * var(--i));
        }

        .mobile-links a {
            color: var(--color-white);
            text-decoration: none;
            font-size: 1.5rem;
            display: block;
            padding: 10px 0;
            transition: var(--transicion);
            font-weight: 500;
            position: relative;
        }

        .mobile-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-accent);
            transition: var(--transicion);
        }

        .mobile-links a:hover::after,
        .mobile-links a.active::after {
            width: 100%;
        }

        .mobile-links a:hover,
        .mobile-links a.active {
            color: var(--color-accent);
        }

        /* Overlay para el menú móvil */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: var(--transicion);
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* ============ HERO SECTION ============ */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            color: var(--color-white);
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            text-align: center;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 5rem;
            line-height: 1.1;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s 0.3s forwards;
            color: var(--color-white);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            line-height: 1.8;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s 0.6s forwards;
            color: var(--color-primary);
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            justify-content: center;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s 0.9s forwards;
        }

        .btn {
            padding: 15px 35px;
            border: 2px solid var(--color-white);
            color: var(--color-white);
            font-weight: 500;
            letter-spacing: 1px;
            transition: var(--transicion);
            border-radius: 4px;
        }

        .btn-primary {
            background-color: var(--color-accent);
            border-color: var(--color-accent);
            color: var(--color-white);
        }

        .btn:hover {
            background-color: var(--color-white);
            color: var(--color-secondary);
        }

        .btn-primary:hover {
            background-color: var(--color-dark);
            border-color: var(--color-dark);
            color: var(--color-white);
        }

        /* ============ SOBRE NOSOTROS ============ */
        .about {
            background-color: var(--color-light);
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-img {
            position: relative;
            height: 500px;
            overflow: visible;
        }

        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 1;
            border-radius: 8px;
        }

        .about-img::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: 20px;
            bottom: 20px;
            border: 2px solid var(--color-accent);
            border-radius: 8px;
            z-index: 0;
        }

        .about-text {
            padding: 20px;
        }

        .section-subtitle {
            position: relative;
            font-size: 1rem;
            color: var(--color-accent);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: block;
            font-weight: 600;
        }

        .section-title {
            font-size: 3rem;
            margin-bottom: 30px;
            line-height: 1.2;
            color: var(--color-secondary);
        }

        .about-text p {
            margin-bottom: 20px;
            line-height: 1.8;
            color: var(--color-text);
        }

        /* ============ MENÚ ============ */
        .menu {
            background-color: var(--color-primary);
            text-align: center;
        }

        .menu-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .menu-header {
            margin-bottom: 60px;
        }

        .menu-intro {
            font-size: 1.2rem;
            margin-bottom: 40px;
            line-height: 1.8;
            color: var(--color-text);
        }

        .menu-btn {
            margin-top: 30px;
        }

        /* ============ TESTIMONIOS ============ */
        .testimonials {
            background-color: var(--color-secondary);
            color: var(--color-white);
            text-align: center;
        }

        .testimonials .section-title,
        .testimonials .section-subtitle {
            color: var(--color-white);
        }

        .testimonial-platforms {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 60px;
            flex-wrap: wrap;
        }

        .platform-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 30px;
            width: 100%;
            max-width: 350px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            backdrop-filter: blur(10px);
            transition: var(--transicion);
        }

        .platform-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

        .platform-icon {
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }   

        .platform-icon svg {
            width: 50px;
            height: 50px;
        }

        .google-icon {
            width: 50px;
            height: 50px;
        }

        .tripadvisor-icon {
            width: 50px;
            height: 50px;
        }

        .platform-name {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--color-white);
        }

        .platform-desc {
            margin-bottom: 25px;
            color: var(--color-primary);
            line-height: 1.6;
        }

        .platform-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--color-accent);
            color: var(--color-white);
            border-radius: 4px;
            font-weight: 500;
            transition: var(--transicion);
        }

        .platform-btn:hover {
            background-color: var(--color-white);
            color: var(--color-secondary);
        }

        /* ============ CONTACTO ============ */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--color-secondary);
        }

        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .contact-detail i {
            font-size: 1.2rem;
            margin-right: 15px;
            color: var(--color-accent);
            width: 20px;
        }

        .contact-social {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .contact-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 1px solid var(--color-secondary);
            border-radius: 50%;
            transition: var(--transicion);
            color: var(--color-secondary);
        }

        .contact-social a:hover {
            background-color: var(--color-secondary);
            color: var(--color-white);
        }

        .contact-map {
            height: 100%;
            min-height: 400px;
            border-radius: 8px;
            overflow: hidden;
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ============ FOOTER ============ */
        footer {
            background-color: var(--color-secondary);
            color: var(--color-white);
            padding: 50px 0;
            text-align: center;
        }

        .footer-logo {
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--color-primary);
            font-family: 'Playfair Display', serif;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .footer-links a {
            transition: var(--transicion);
        }

        .footer-links a:hover {
            color: var(--color-accent);
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 1px solid var(--color-white);
            border-radius: 50%;
            transition: var(--transicion);
            color: var(--color-white);
        }

        .footer-social a:hover {
            background-color: var(--color-white);
            color: var(--color-secondary);
        }

        .copyright {
            font-size: 0.9rem;
            color: var(--color-primary);
        }

        /* ============ WHATSAPP BUTTON ============ */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 100;
            transition: var(--transicion);
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
        }

        /* ============ ANIMACIONES ============ */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .hero {
                padding: 100px 0;
            }
            
            .hero h1 {
                margin-top: 30px;
                font-size: 4rem;
            }
            
            .about-container, .contact-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .about-img {
                height: 400px;
                order: -1;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .hero-content {
                padding: 60px 0;
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .hamburger {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 80px 0;
                min-height: auto;
                height: auto;
            }
            
            .hero h1 {
                margin-bottom: 40px;
                padding-top: 20px;
                font-size: 3rem;
            }
            
            .hero-content {
                padding: 40px 0;
                margin: 40px auto;
                margin-top: 40px;
            }
            
            .hero p {
                margin-bottom: 50px;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 20px;
                margin-bottom: 40px;
            }
            
            .mobile-menu {
                width: 100%;
                max-width: none;
            }
            
            section {
                padding: 80px 0;
            }
            
            .testimonial-platforms {
                flex-direction: column;
                align-items: center;
            }

            .platform-icon svg {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 60px 0;
            }
            
            .hero-content {
                padding: 30px 0;
                margin: 30px auto;
            }
            
            .logo-img {
                margin-top: 20px;
                height: 160px;
            }
            
            .mobile-links a {
                font-size: 1.3rem;
            }
            
            .hero h1 {
                font-size: 2.2rem;
                margin-bottom: 30px;
                padding-top: 15px;
            }
            
            .hero p {
                margin-bottom: 40px;
                font-size: 1.1rem;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }