        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #000;
            color: #fff;
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Animaciones */
        @keyframes neonGlow {
            0%, 100% { text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700, 0 0 15px #FFD700; }
            50% { text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFD700, 0 0 40px #FFA500; }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-100px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(100px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes floatingAnimation {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        /* Navegación */
        nav {
            background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(20,20,20,0.95));
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(15px);
            border-bottom: 2px solid #FFD700;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            width: 60px;
            height: 60px;
            background: url('logo.png') center/contain no-repeat;
            border: 3px solid #FFD700;
            border-radius: 50%;
            animation: pulse 3s infinite;
            filter: drop-shadow(0 0 10px #FFD700);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.2rem;
            letter-spacing: 1px;
            transition: all 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #FFD700, #FFA500);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: #FFD700;
            text-shadow: 0 0 10px #FFD700;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Partículas de fondo */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: #FFD700;
            animation: floatingAnimation 6s infinite linear;
            opacity: 0.3;
        }

        /* Hero Section */
        .hero {
            display: grid;
            grid-template-columns: 1fr 400px;
            align-items: center;
            min-height: 100vh;
            padding: 0 2rem;
            max-width: 1200px;
            margin: 0 auto;
            gap: 4rem;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            animation: slideInLeft 1s ease-out;
            z-index: 2;
            margin-top: 150px;
        }

        .hero-content h1 {
            font-family: 'Bangers', cursive;
            font-size: 4rem;
            color: #FFD700;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: 2px;
        }

        .hero-content .opening-paragraph {
            font-size: 1.3rem;
            color: #ccc;
            margin-bottom: 2.5rem;
            line-height: 1.8;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid #FFD700;
        }

        /* Imagen destacada */
        .hero-image {
            animation: slideInRight 1s ease-out;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .featured-image {
            width: 100%;
            height: 400px;
            border-radius: 20px;
            border: 3px solid #FFD700;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
            transition: all 0.4s;
        }

        .featured-image:hover {
            transform: scale(1.02) rotateY(2deg);
            box-shadow: 0 30px 60px rgba(255, 215, 0, 0.6);
        }

        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Secciones de contenido */
        .content-section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-container {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 165, 0, 0.05));
            border-radius: 20px;
            border: 2px solid rgba(255, 215, 0, 0.3);
            padding: 3rem;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s;
            animation: fadeInUp 0.8s ease-out;
        }

        .section-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
            animation: floatingAnimation 8s infinite linear;
            pointer-events: none;
        }

        .section-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
            border-color: #FFD700;
        }

        .section-container h2 {
            font-family: 'Bangers', cursive;
            font-size: 2.8rem;
            color: #FFD700;
            margin-bottom: 2rem;
            letter-spacing: 2px;
            position: relative;
            z-index: 2;
        }

        .section-container h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: #FFD700;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
            position: relative;
            z-index: 2;
        }

        .section-container p {
            color: #ccc;
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
            line-height: 1.8;
            position: relative;
            z-index: 2;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .section-container ul {
            color: #ccc;
            margin-bottom: 1.5rem;
            padding-left: 2rem;
            position: relative;
            z-index: 2;
        }

        .section-container li {
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .price-card {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.08));
            border: 2px solid #FFD700;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
        }

        .price-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
        }

        .price-card h4 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            color: #FFD700;
            margin-bottom: 1rem;
        }

        .price-card .price {
            font-size: 2.5rem;
            color: #FFD700;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        /* Zonas de Servicio */
        .zonas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .zona-item {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
            padding: 1.5rem;
            border-radius: 15px;
            border: 2px solid rgba(255, 215, 0, 0.3);
            text-align: center;
            transition: all 0.3s;
            animation: fadeInUp 0.8s ease-out;
        }

        .zona-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
            border-color: #FFD700;
        }

        .zona-item h4 {
            color: #FFD700;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
        }

        /* CTA Button */
        .cta-button {
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
            color: #000;
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            font-family: 'Bebas Neue', sans-serif;
            letter-spacing: 1px;
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
            position: relative;
            overflow: hidden;
            margin-top: 2rem;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 215, 0, 0.6);
            animation: pulse 0.5s;
        }

        /* CTA Final Section */
        .cta-final {
            text-align: center;
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
            border-radius: 20px;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #111, #000);
            padding: 3rem 2rem;
            text-align: center;
            color: #666;
            border-top: 2px solid #FFD700;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
                padding-top: 8rem;
                gap: 3rem;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .featured-image {
                height: 400px;
            }

            .zonas-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .nav-links {
                gap: 1rem;
            }

            .nav-links a {
                font-size: 1rem;
            }

            .section-container {
                padding: 2rem;
            }

            .section-container h2 {
                font-size: 2.2rem;
            }
        }