    :root {
            --primary: #FF9F1C;
            --secondary: #2EC4B6;
            --dark: #011627;
            --light: #FDFFFC;
            --accent: #E71D36;
            --honduras-blue: #0073CF;
            --honduras-white: #FFFFFF;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        
        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--dark);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 159, 28, 0.3);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 159, 28, 0.4);
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 600px;
            background: linear-gradient(rgba(1, 22, 39, 0.8), rgba(46, 196, 182, 0.3)), 
                        url('https://images.unsplash.com/photo-1483729558449-99ef09a8c325?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top, var(--light), transparent);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }
        
        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .honduras-flag {
            display: inline-flex;
            height: 20px;
            width: 60px;
            margin-left: 10px;
            position: relative;
            top: 4px;
        }
        
        .honduras-flag span {
            display: inline-block;
            height: 4px;
            width: 100%;
        }
        
        .honduras-flag span:first-child {
            background-color: var(--honduras-blue);
            position: absolute;
            top: 0;
        }
        
        .honduras-flag span:nth-child(2) {
            background-color: var(--honduras-white);
            position: absolute;
            top: 8px;
        }
        
        .honduras-flag span:last-child {
            background-color: var(--honduras-blue);
            position: absolute;
            top: 16px;
        }
        
        /* Sección Lugares Turísticos */
        .unique-spots {
            padding: 5rem 0;
            background: linear-gradient(to bottom, #f8f9fa, #ffffff);
            position: relative;
        }
        
        .unique-spots::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1544989164-31f6a2a31773?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.03;
            z-index: 0;
        }
        
        .unique-spots .container {
            position: relative;
            z-index: 1;
        }
        
        .unique-spots h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .unique-spots h2 span {
            color: var(--primary);
        }
        
        .unique-spots .subtitle {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
            color: #666;
        }
        
        .spots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .spot-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .spot-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .spot-image {
            height: 250px;
            position: relative;
            overflow: hidden;
        }
        
        .spot-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.25, 0.45, 0.45, 0.95);
        }
        
        .spot-card:hover .spot-image img {
            transform: scale(1.1);
        }
        
        .spot-label {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background-color: var(--secondary);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .spot-content {
            padding: 1.5rem;
        }
        
        .spot-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .spot-details {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        
        .spot-details span {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: #666;
        }
        
        .spot-details i {
            margin-right: 5px;
            color: var(--primary);
        }
        
        .spot-content p {
            color: #444;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        /* Sección Sobre Danilo */
        .about-guide {
            padding: 5rem 0;
            background-color: var(--dark);
            color: white;
        }
        
        .guide-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .guide-photo {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        
        .guide-photo img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .guide-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background-color: var(--primary);
            color: var(--dark);
            padding: 1.5rem;
            border-radius: 50%;
            width: 120px;
            height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(255, 159, 28, 0.4);
            z-index: 2;
        }
        
        .guide-badge span:first-child {
            font-size: 2rem;
            line-height: 1;
        }
        
        .guide-info h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
        }
        
        .guide-info h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--primary);
        }
        
        .guide-info p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        
        .honduras-heritage {
            display: inline-flex;
            align-items: center;
            background-color: rgba(0, 115, 207, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            margin-top: 1rem;
        }
        
        /* Sección Testimonios */
        .testimonials {
            padding: 5rem 0;
            background-color: var(--secondary);
            color: var(--dark);
        }
        
        .testimonials h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--dark);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .testimonial-card {
            background-color: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .testimonial-card::before {
            content: """;
            font-family: Georgia, serif;
            font-size: 5rem;
            color: rgba(1, 22, 39, 0.1);
            position: absolute;
            top: 10px;
            left: 20px;
            line-height: 1;
        }
        
        .testimonial-text {
            margin-bottom: 1.5rem;
            font-style: italic;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
            border: 3px solid var(--primary);
        }
        
        .author-info h4 {
            margin-bottom: 0.3rem;
            color: var(--dark);
        }
        
        .author-info p {
            color: var(--secondary);
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .rating {
            color: var(--primary);
            margin-top: 0.3rem;
        }
        
        /* Sección Reserva */
        .booking {
            padding: 5rem 0;
            background: linear-gradient(rgba(1, 22, 39, 0.9), rgba(1, 22, 39, 0.9)), 
                        url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
            color: white;
        }
        
        .booking h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .booking p {
            max-width: 600px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
        }
        
        .booking-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto 3rem;
        }
        
        .step {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .step:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        
        .step-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: var(--dark);
            border-radius: 50%;
            font-weight: bold;
            line-height: 40px;
            margin-bottom: 1rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            position: relative;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .footer-column p {
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        
        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .contact-info i {
            margin-right: 1rem;
            color: var(--secondary);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background-color: var(--primary);
            color: var(--dark);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .guide-container {
                grid-template-columns: 1fr;
            }
            
            .guide-photo {
                max-width: 500px;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                height: auto;
                padding: 8rem 0;
            }
            
            .unique-spots h2,
            .testimonials h2,
            .booking h2 {
                font-size: 2rem;
            }
            
            .spots-grid {
                grid-template-columns: 1fr;
            }
        }