        * {
            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 1fr;
            align-items: center;
            min-height: 100vh;
            padding-top: 8rem;
            padding-left: 2rem;
            padding-right: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            gap: 4rem;
            position: relative;
        }

        hero-image img{
            width: 80%;
        }

        .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;
        }

        .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 p {
            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);
        }

        .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;
        }

        .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;
        }

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

        .featured-image {
            width: 100%;
            max-width: 500px;
            height: 600px;
            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 Servicios */
        .services {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .services-title {
            font-family: 'Bangers', cursive;
            font-size: 3.5rem;
            color: #FFD700;
            text-align: center;
            margin-bottom: 4rem;
            animation: neonGlow 3s infinite alternate;
            letter-spacing: 3px;
        }

        .service-section {
            margin-bottom: 5rem;
            padding: 3rem;
            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);
            position: relative;
            overflow: hidden;
            transition: all 0.4s;
            animation: fadeInUp 0.8s ease-out;
        }

        .service-section::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;
        }

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

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

        .service-section p {
            color: #ccc;
            margin-bottom: 2.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);
        }

        .ver-mas-btn {
            background: transparent;
            border: 3px solid #FFD700;
            color: #FFD700;
            padding: 1rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.2rem;
            letter-spacing: 1px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            z-index: 2;
        }

        .ver-mas-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #FFD700, #FFA500);
            transition: left 0.3s;
            z-index: -1;
        }

        .ver-mas-btn:hover::before {
            left: 0;
        }

        .ver-mas-btn:hover {
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
        }

        /* Zonas de Servicio */
        .zonas-servicio {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
        }

        .zonas-servicio h2 {
            font-family: 'Bangers', cursive;
            font-size: 3.5rem;
            color: #FFD700;
            text-align: center;
            margin-bottom: 3rem;
            animation: neonGlow 3s infinite alternate;
            letter-spacing: 3px;
        }

        .zonas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 4rem;
        }

        .zona-item {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
            padding: 2rem;
            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 h3 {
            color: #FFD700;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        /* CTA Final */
        .cta-final {
            text-align: center;
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .cta-final h2 {
            font-family: 'Bangers', cursive;
            font-size: 3rem;
            color: #FFD700;
            margin-bottom: 2rem;
            animation: neonGlow 3s infinite alternate;
        }

        .cta-final p {
            font-size: 1.3rem;
            color: #ccc;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Ubicación */
        .ubicacion {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .map-container {
            border-radius: 20px;
            overflow: hidden;
            border: 3px solid #FFD700;
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
            animation: fadeInUp 0.8s ease-out;
            transition: all 0.4s;
        }

        .map-container:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
        }

        .map-container iframe {
            width: 100%;
            height: 400px;
        }

        /* 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);
            }

            .nav-links {
                gap: 1rem;
            }

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

            .service-section {
                padding: 2rem;
            }

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