 /* Responsive Mejorado */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
            }

            nav ul {
                margin-top: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            nav li {
                margin: 0.5rem;
            }

            .hero {
                height: 70vh;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            section {
                padding: 70px 0;
            }

            section h2 {
                font-size: 2rem;
                margin-bottom: 3rem;
            }

            .services-grid,
            .destinos-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }

            .contact-icons {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
            }

            .contact-icon {
                width: 100%;
                max-width: 250px;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
            }

            .language-selector {
                bottom: 20px;
                left: 20px;
            }

            .reservation-form {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 1rem;
            }

            section h2 {
                font-size: 1.8rem;
            }

            .reservation-form {
                padding: 1.5rem;
            }
        }