
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .gradient-primary {
            background: linear-gradient(135deg, #B8860B 0%, #DAA520 50%, #F4E4BC 100%);
        }

        .hero-section {
            background: linear-gradient(135deg, #FDFCF8 0%, #F8F6F0 50%, #F0EDE4 100%);
            min-height: 50vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero-curve {
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            height: 50px;
            background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
            clip-path: ellipse(100% 100% at 50% 100%);
        }

        .about-section {
            background: linear-gradient(135deg, #B8860B 0%, #DAA520 50%, #DEB887 100%);
            position: relative;
        }

        .packages-section {
            background: linear-gradient(135deg, #FDFCF8 0%, #FAF8F3 50%, #F5F3ED 100%);
        }

        .media-section {
            background: linear-gradient(135deg, #F9F7F4 0%, #F5F2EE 50%, #F0EDE8 100%);
        }

        .faq-section {
            background: linear-gradient(135deg, #FEFEFE 0%, #FAFAFA 50%, #F5F5F5 100%);
        }

        .contact-section {
            background: linear-gradient(135deg, #F5F1E8 0%, #F0EDE4 50%, #E8E2D5 100%);
        }

        .card-hover {
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(0);
        }

        .card-hover:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 50px rgba(184, 134, 11, 0.15);
        }

        .package-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(184, 134, 11, 0.1);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .price-badge {
            background: linear-gradient(135deg, #B8860B, #DAA520);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-weight: 700;
            font-size: 1.125rem;
            box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .nav-link {
            position: relative;
            transition: all 0.3s ease;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: 300;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-link:hover {
            color: #B8860B;
            background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(218, 165, 32, 0.05));
            transform: translateY(-2px);
        }

        .btn-primary {
            background: linear-gradient(135deg, #B8860B, #DAA520);
            color: white;
            padding: 1rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(184, 134, 11, 0.3);
            position: relative;
            overflow: hidden;
            min-height: 44px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(184, 134, 11, 0.4);
        }

        .btn-whatsapp {
            background: linear-gradient(135deg, #B8860B, #DAA520);
            color: white;
            padding: 0.875rem 1.75rem;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(184, 134, 11, 0.3);
            position: relative;
            overflow: hidden;
            width: 100%;
            min-height: 44px;
        }

        .btn-whatsapp:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 30px rgba(184, 134, 11, 0.4);
        }
        

        .carousel-container {
            position: relative;
            overflow: hidden;
            padding: 1rem 0;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

                .news-image {
                height: 170px; 
                background: #f3f4f6;
                display: flex;
                align-items: center;
                justify-content: center;
                overflow: hidden;
            }

            .news-image img {
                width: 100%;
                height: 100%;
                object-fit: contain; 
                display: block;
            }


        .carousel-item {
            min-width: 70%;
            flex: 0 0 auto;
            padding: 0 0.5rem;
        }



        @media (min-width: 768px) {
            .carousel-item {
                min-width: 50%;
            }
        }

        @media (min-width: 1024px) {
            .carousel-item {
                min-width: 33.333333%;
            }
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, rgba(184, 134, 11, 0.9), rgba(218, 165, 32, 0.9));
            backdrop-filter: blur(10px);
            color: white;
            border: none;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
        }

        .carousel-btn:hover {
            background: linear-gradient(135deg, rgba(184, 134, 11, 1), rgba(218, 165, 32, 1));
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 12px 35px rgba(184, 134, 11, 0.4);
        }

        .carousel-btn.prev {
            left: 30px;
        }

        .carousel-btn.next {
            right: 30px;
        }

        .feature-grid {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
            padding: 3rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s ease;
            text-align: center;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(184, 134, 11, 0.2);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #B8860B, #DAA520);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(184, 134, 11, 0.4);
        }


        .sync-status {
            position: fixed;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #10B981, #059669);
            color: white;
            padding: 0.75rem 1.25rem;
            border-radius: 12px;
            font-size: 0.875rem;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.4s ease;
            z-index: 1000;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
        }

        .sync-status.show {
            opacity: 1;
            transform: translateY(0);
        }

        .sync-status.error {
            background: linear-gradient(135deg, #EF4444, #DC2626);
        }

        .loading-skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
            border-radius: 12px;
        }

        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        .contact-item {
            display: flex;
            align-items: center;
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 1rem;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateX(8px);
            box-shadow: 0 8px 25px rgba(184, 134, 11, 0.15);
        }

        .contact-icon-simple {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #B8860B, #DAA520);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .contact-item:hover .contact-icon-simple {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3);
        }

        .map-simple {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(184, 134, 11, 0.2);
            background: white;
        }

        .mascot-char {
            font-size: 8rem;
            line-height: 1;
            filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .news-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(184, 134, 11, 0.1);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }

        .news-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(184, 134, 11, 0.15);
        }

        .news-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .news-card:hover .news-image {
            transform: scale(1.05);
        }

        .news-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .news-source {
            background: linear-gradient(135deg, #B8860B, #DAA520);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 0.75rem;
            width: fit-content;
        }

        .news-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.75rem;
            line-height: 1.4;
            flex-grow: 1;
        }

        .news-description {
            color: #6b7280;
            font-size: 0.875rem;
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .news-link {
            color: #B8860B;
            font-size: 0.875rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            transition: all 0.3s ease;
        }

        .news-link:hover {
            color: #8B6914;
            transform: translateX(4px);
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(184, 134, 11, 0.1);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 8px 25px rgba(184, 134, 11, 0.1);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem !important;
            }
            
            .mascot-char {
                font-size: 5rem;
            }
            
            .carousel-btn {
                width: 48px;
                height: 48px;
            }
            
            .carousel-btn.prev {
                left: 15px;
            }
            
            .carousel-btn.next {
                right: 15px;
            }

            .hero-content {
                padding-left: 0 !important;
            }

            .news-image {
                height: 160px;
            }

            .news-content {
                padding: 1rem;
            }
        }
