        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #A008B2;
            --primary-dark: #7A0689;
            --primary-light: #C844D4;
            --accent: #E040FB;
        }

        body {
            font-family: 'Sora', sans-serif;
            /* overflow-x: hidden; */
            background: #ffffff;
            color: #1a1a1a;
        }

        

        /* HERO SECTION */
        .hero {
            min-height: 100vh;
            /* max-width: 1600px; */
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 4rem;
            /* padding: 8rem 5% 4rem; */
            padding: 0 40px;
            background: linear-gradient(135deg, #faf5ff 0%, #ffffff 50%, #f3e8ff 100%);
        }

        /* Three.js Background */
        #bg-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            /* overflow: hidden !important; */
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 600px;
        }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.6rem 1.5rem;
            background: white;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 2rem;
            box-shadow: 0 4px 16px rgba(160, 8, 178, 0.15);
            border: 1px solid rgba(160, 8, 178, 0.2);
        }

        .pulse-dot {
            width: 10px;
            height: 10px;
            background: var(--primary);
            border-radius: 50%;
            position: relative;
        }

        .pulse-dot::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--primary);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.8);
                opacity: 0;
            }
        }

        .hero-title {
            font-size: 45px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
            letter-spacing: -3px;
            text-align: center;
        }

        .highlight {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 20px;
            background: var(--accent);
            opacity: 0.2;
            z-index: -1;
            border-radius: 10px;
        }

        .hero-description {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 2.5rem;
            text-align: justify;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-bottom: 3rem;
            flex-wrap: wrap
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
            line-height: 1;
            margin-bottom: 0.3rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #999;
            font-weight: 600;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn {
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 17px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            box-shadow: 0 8px 24px rgba(160, 8, 178, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(160, 8, 178, 0.4);
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }

        /* CAROUSEL SECTION */
        .hero-carousel {
            position: relative;
            z-index: 10;
            height: 600px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .swiper {
            width: 100%;
            height: 100%;
        }

        .swiper-slide {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .slide-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
            padding: 2rem;
        }

        .slide-icon {
            font-size: 5rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .slide-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .slide-description {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 400px;
            margin: 0 auto;
        }

        .slide-1 {
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url("../assets/portada/instalacioncamaras.png");
            background-size: cover;
            /* Ajusta la imagen al div */
            background-position: center;
            /* Centrada */
            background-repeat: no-repeat;
        }

        .slide-2 {
            /* background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); */
            background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url("../assets/portada/fibraoptica.png");
            background-size: cover;
            /* Ajusta la imagen al div */
            background-position: center;
            /* Centrada */
            background-repeat: no-repeat;
        }

        .slide-3 {
            /* background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); */
            background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url("../assets/portada/matenimientocamaras.png");
            background-size: cover;
            /* Ajusta la imagen al div */
            background-position: center;
            /* Centrada */
            background-repeat: no-repeat;
        }

        .slide-4 {
            /* background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); */
            background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url("../assets/portada/equipotrabajo.png");
            background-size: cover;
            /* Ajusta la imagen al div */
            background-position: center;
            /* Centrada */
            background-repeat: no-repeat;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: white;
            opacity: 0.5;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
            background: white;
        }

        /* FLOATING ELEMENTS */
        .floating-element {
            position: absolute;
            z-index: 5;
            animation: float 6s ease-in-out infinite;
        }

        .float-1 {
            top: 15%;
            left: 10%;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            opacity: 0.1;
            animation-delay: 0s;
        }

        .float-2 {
            top: 60%;
            left: 5%;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            border-radius: 50%;
            opacity: 0.15;
            animation-delay: 2s;
        }

        .float-3 {
            bottom: 20%;
            right: 15%;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
            opacity: 0.1;
            animation-delay: 4s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }

        /* PARTNERS BADGE */
        .partners-badge {
            position: absolute;
            bottom: 4rem;
            left: 5%;
            background: white;
            padding: 1.5rem 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .partners-text {
            font-size: 0.85rem;
            color: #999;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .partners-logos {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .partner-logo {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--primary);
            padding: 0.5rem 1rem;
            background: rgba(160, 8, 178, 0.1);
            border-radius: 10px;
        }

        /* RESPONSIVE */
        @media (max-width: 1200px) {
            .hero {
                grid-template-columns: 1fr;
                padding-top: 6rem;
            }

            .hero-carousel {
                height: 500px;
            }

            .hero-title {
                font-size: 25px !important;
            }

            .partners-badge {
                position: relative;
                bottom: auto;
                left: auto;
                margin-top: 2rem;
            }

        }

        @media screen and (min-width: 1300px) {
            .hero {

                padding: 8rem 5% 4rem;
            }

            .hero-title {
                text-align: left;
            }
        }

/* WhatsApp Flotante */
.whatsapp-flotante {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-flotante:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .whatsapp-flotante {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        bottom: 1.5rem;
        left: 1.5rem;
    }
}