 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            scroll-behavior: smooth;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Mejorado */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #1a4d2a;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo span {
            color: #2e8b57;
        }

        .logo i {
            font-size: 1.5rem;
            color: #a52a2a;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav li {
            margin-left: 2rem;
            position: relative;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
            padding: 0.5rem 0;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #a52a2a;
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a:hover {
            color: #1a4d2a;
        }

        /* Hero Section Mejorada */
        .hero {
            position: relative;
            height: 85vh;
            overflow: hidden;
        }

        .carousel {
            position: relative;
            height: 100%;
            width: 100%;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            background-size: cover;
            background-position: center;
            transform: scale(1.1);
        }

        .carousel-slide.active {
            opacity: 1;
            transform: scale(1);
        }

        .carousel-slide:nth-child(1) {
            background-image: url('../imagenes/garganta-del-diablo.jpg');
        }

        .carousel-slide:nth-child(2) {
            background-image: url('../imagenes/taxiguazu-hojas-verdes.jpg');
        }

        .carousel-slide:nth-child(3) {
            background-image: url('../imagenes/taxiguazu-parque-aves.jpg');
        }

        .hero-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(26, 77, 42, 0.3) 0%, rgba(165, 42, 42, 0.2) 100%);
            z-index: 2;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out;
        }

        .hero p {
            font-size: 1.4rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Botones Mejorados */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #a52a2a;
            color: white;
            padding: 14px 32px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            background: transparent;
            color: #fff;
            border-color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(165, 42, 42, 0.3);
        }

        .btn-whatsapp {
            background: #25D366;
            color: white;
        }

        .btn-whatsapp:hover {
            background: transparent;
            color: #25D366;
            border-color: #25D366;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
        }

        /* Secciones Mejoradas */
        section {
            padding: 100px 0;
            position: relative;
        }

        section h2 {
            text-align: center;
            margin-bottom: 4rem;
            color: #1a4d2a;
            font-size: 2.5rem;
            position: relative;
            font-weight: 700;
        }

        section h2::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #a52a2a, #2e8b57);
            margin: 15px auto;
            border-radius: 2px;
        }

        /* Services & Destinations Mejorados */
        .services-grid,
        .destinos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .service-card,
        .destino-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            border-top: 4px solid #2e8b57;
            position: relative;
        }

        .service-card::before,
        .destino-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #a52a2a, #2e8b57);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before,
        .destino-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover,
        .destino-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(165, 42, 42, 0.15);
        }

        .card-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .service-card:hover .card-img img,
        .destino-card:hover .card-img img {
            transform: scale(1.1) rotate(1deg);
        }

        .card-content {
            padding: 2rem;
            position: relative;
        }

        .service-card h3,
        .destino-card h3 {
            color: #1a4d2a;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .service-card p,
        .destino-card p {
            color: #666;
            line-height: 1.7;
        }

        /* WhatsApp flotante mejorado */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            opacity: 1;
            pointer-events: auto;
            transition: all 0.3s ease-in-out;
        }

        .whatsapp-float a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
            position: relative;
            overflow: hidden;
        }

        .whatsapp-float a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transform: scale(0);
            transition: transform 0.3s ease;
        }

        .whatsapp-float a:hover::before {
            transform: scale(1);
        }

        .whatsapp-float a:hover {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            }

            50% {
                transform: scale(1.08);
                box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            }
        }

        .whatsapp-float i {
            font-size: 2rem;
            position: relative;
            z-index: 1;
        }

        /* Reservation Form Mejorado */
        .reservation {
            background: linear-gradient(135deg, #e9f7ef 0%, #f0f9f4 100%);
            position: relative;
        }

        .reservation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #a52a2a, #2e8b57);
        }

        .reservation-form {
            max-width: 650px;
            margin: 0 auto;
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(46, 139, 87, 0.1);
            position: relative;
        }

        .reservation-form::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #a52a2a, #2e8b57);
            border-radius: 17px;
            z-index: -1;
            opacity: 0.1;
        }

        .form-group {
            margin-bottom: 1.8rem;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.7rem;
            font-weight: 600;
            color: #1a4d2a;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #2e8b57;
            background: white;
            box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
        }

        .form-row {
            display: flex;
            gap: 1.5rem;
        }

        .form-row .form-group {
            flex: 1;
        }

        /* Enlace de requisitos migratorios */
        .migration-link {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #e9ecef;
        }

        .migration-link a {
            color: #1a4d2a;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .migration-link a:hover {
            color: #a52a2a;
            text-decoration: underline;
        }

        /* Contact Section Mejorada */
        .contact {
            background: linear-gradient(135deg, #1a4d2a 0%, #2e8b57 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('imagenes/hojas-verdes.jpg') center/cover;
            opacity: 0.1;
        }

        .contact .container {
            position: relative;
            z-index: 1;
        }

        .contact h2 {
            color: white;
        }

        .contact h2::after {
            background: rgba(255, 255, 255, 0.8);
        }

        .contact p {
            color: rgba(255, 255, 255, 0.9);
        }

        .contact-icons {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 2rem;
        }

        .contact-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: white;
            transition: all 0.3s;
            padding: 1.5rem;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-icon:hover {
            transform: translateY(-8px) scale(1.05);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .icon-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .contact-icon:hover .icon-circle {
            transform: scale(1.1);
        }

        .whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
        }

        .facebook {
            background: linear-gradient(135deg, #3b5998, #2d4373);
            color: white;
        }

        /* Language Selector Mejorado */
        .language-selector {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 1000;
        }

        .lang-btn {
            background: linear-gradient(135deg, #1a4d2a, #2e8b57);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(26, 77, 42, 0.3);
        }

        .lang-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(26, 77, 42, 0.4);
        }

        .lang-options {
            display: none;
            position: absolute;
            bottom: 100%;
            left: 0;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 10px;
            min-width: 150px;
            border: 1px solid #e9ecef;
        }

        .lang-options a {
            display: block;
            padding: 12px 20px;
            text-decoration: none;
            color: #333;
            transition: all 0.2s ease;
            border-bottom: 1px solid #f8f9fa;
        }

        .lang-options a:last-child {
            border-bottom: none;
        }

        .lang-options a:hover {
            background: #f8f9fa;
            color: #1a4d2a;
            padding-left: 25px;
        }

        /* Footer Mejorado */
        footer {
            background: linear-gradient(135deg, #0f3a22 0%, #1a4d2a 100%);
            color: white;
            text-align: center;
            padding: 3rem 0 2rem;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #a52a2a, #2e8b57);
        }

        footer p {
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        footer p:last-child {
            margin-bottom: 0;
            opacity: 0.7;
            font-size: 0.9rem;
        }

       

        /* Notificaciones de idioma */
        .lang-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #25D366;
            color: white;
            padding: 15px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            z-index: 10000;
            font-weight: 600;
            animation: slideInRight 0.4s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideOutRight {
            from {
                transform: translateX(0);
                opacity: 1;
            }

            to {
                transform: translateX(100%);
                opacity: 0;
            }
        }

        /* Mejorar selector de idioma */
        .lang-options a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 15px;
            transition: all 0.3s ease;
        }