        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* Header/Hero Carousel - Pantalla Completa */
        .hero-carousel {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease;
        }

        .carousel-slide.active {
            opacity: 1;
            z-index: 1;
        }

        .carousel-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .carousel-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
            z-index: 1;
        }

        .carousel-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .carousel-slide.active .carousel-image img {
            animation: zoomOut 4s ease-out forwards;
        }

        .carousel-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .carousel-image .img-desktop {
            display: block;
        }

        .carousel-image .img-mobile {
            display: none;
        }

        @keyframes zoomOut {
            0% {
                transform: scale(1.3);
            }

            100% {
                transform: scale(1);
            }
        }

        .carousel-content {
            position: absolute;
            top: 50%;
            left: 5%;
            transform: translateY(-50%);
            max-width: 600px;
            z-index: 10;
        }

        .carousel-slide.active .carousel-text {
            animation: slideInLeft 0.8s ease-out forwards;
        }

        .carousel-text {
            opacity: 0;
            transform: translateX(-50px);
        }

        @keyframes slideInLeft {
            0% {
                opacity: 0;
                transform: translateX(-50px);
            }

            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .carousel-text h1 {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #ffffff;
            text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
        }

        .carousel-text h1 .highlight {
            background: linear-gradient(135deg, #ff6b00, #ff9500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
        }

        .carousel-text p {
            font-size: 1.3rem;
            color: #ffffff;
            margin-bottom: 2rem;
            line-height: 1.6;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
        }

        .carousel-slide.active .carousel-button {
            animation: slideInLeft 0.8s ease-out 0.3s forwards;
        }

        .carousel-button {
            opacity: 0;
            transform: translateX(-50px);
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: linear-gradient(135deg, #ff6b00, #ff9500);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
        }

        /* Controles del Carrusel - Círculos con Progreso */
        .carousel-controls {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .carousel-dot {
            position: relative;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot:hover {
            background: rgba(255, 255, 255, 0.8);
            transform: scale(1.2);
        }

        .carousel-dot.active {
            background: rgba(255, 255, 255, 0.8);
        }

        .carousel-dot-progress {
            position: absolute;
            top: -4px;
            left: -4px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 3px solid transparent;
            border-top-color: #ff6b00;
            transform: rotate(-90deg);
            opacity: 0;
        }

        .carousel-dot.active .carousel-dot-progress {
            opacity: 1;
            animation: fillCircle 4s linear forwards;
        }

        @keyframes fillCircle {
            0% {
                border-top-color: #ff6b00;
                border-right-color: transparent;
                border-bottom-color: transparent;
                border-left-color: transparent;
            }

            25% {
                border-top-color: #ff6b00;
                border-right-color: #ff6b00;
                border-bottom-color: transparent;
                border-left-color: transparent;
            }

            50% {
                border-top-color: #ff6b00;
                border-right-color: #ff6b00;
                border-bottom-color: #ff6b00;
                border-left-color: transparent;
            }

            75% {
                border-top-color: #ff6b00;
                border-right-color: #ff6b00;
                border-bottom-color: #ff6b00;
                border-left-color: #ff6b00;
            }

            100% {
                border-top-color: #ff6b00;
                border-right-color: #ff6b00;
                border-bottom-color: #ff6b00;
                border-left-color: #ff6b00;
            }
        }

        /* Navigation Logo y Menu */




        /* Asesoria Section */
        .asesoria-section {
            position: relative;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin: 0;
            padding: 0;
        }

        .asesoria-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 45, 45, 0.85) 100%);
            z-index: 2;
        }

        .asesoria-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            background-attachment: fixed;
            background-image: url('https://motossiniva.com/wp-content/uploads/2025/06/cr5200-negromate-02-600x522-1.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .asesoria-content {
            position: relative;
            z-index: 3;
            text-align: center;
            padding: 4rem 5%;
            max-width: 800px;
        }

        .asesoria-content h2 {
            font-size: 3rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 0.8s ease;
        }

        .asesoria-content p {
            font-size: 1.3rem;
            color: white;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .asesoria-button {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1.3rem 3rem;
            background: white;
            color: #ff6b00;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .asesoria-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            gap: 1.2rem;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Benefits Section */
        .benefits {
            padding: 8rem 5%;
            background: #1a1a1a;
            color: white;
            position: relative;
            overflow: hidden;
            transition: background 2s ease-in-out;
        }

        .benefits::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 149, 0, 0.1) 100%);
            opacity: 0;
            animation: soft-glow 8s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes soft-glow {

            0%,
            100% {
                opacity: 0;
            }

            50% {
                opacity: 0.4;
            }
        }

        .benefits-spotlight {
            display: none;
        }

        .benefits-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .benefits-title-section {
            text-align: center;
            margin-bottom: 5rem;
        }

        .benefits-title-section h2 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .benefits-title-section p {
            font-size: 1.3rem;
            color: #999;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
        }

        .benefit-card {
            position: relative;
            padding: 3rem 2.5rem;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(50px);
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 149, 0, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
        }

        .benefit-card:hover::before {
            opacity: 1;
        }

        .benefit-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .benefit-card:hover::after {
            left: 100%;
        }

        .benefit-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .benefit-card:hover {
            transform: translateY(-15px) scale(1.03);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 107, 0, 0.5);
            box-shadow: 0 20px 60px rgba(255, 107, 0, 0.2);
        }

        .benefit-icon-wrapper {
            position: relative;
            width: 80px;
            height: 80px;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 149, 0, 0.1));
            border-radius: 20px;
            transition: all 0.4s ease;
        }

        .benefit-card:hover .benefit-icon-wrapper {
            background: linear-gradient(135deg, rgba(255, 107, 0, 0.3), rgba(255, 149, 0, 0.2));
            transform: rotate(5deg) scale(1.1);
        }

        .benefit-icon {
            font-size: 3rem;
            position: relative;
            z-index: 1;
            transition: transform 0.4s ease;
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.2);
        }

        .benefit-content {
            position: relative;
            z-index: 1;
        }

        .benefit-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #ffffff;
            font-weight: 800;
            transition: color 0.3s ease;
        }

        .benefit-card:hover h3 {
            color: #ff9500;
        }

        .benefit-card p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            font-size: 1.05rem;
            transition: color 0.3s ease;
        }

        .benefit-card:hover p {
            color: rgba(255, 255, 255, 0.9);
        }

        .benefit-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 4rem;
            font-weight: 900;
            color: rgba(255, 107, 0, 0.1);
            line-height: 1;
            transition: all 0.4s ease;
        }

        .benefit-card:hover .benefit-number {
            color: rgba(255, 107, 0, 0.2);
            transform: scale(1.2);
        }

        /* Scrolling Text */
        .scrolling-text {
            padding: 3rem 0;
            background: linear-gradient(135deg, #ff6b00, #ff9500);
            overflow: hidden;
            position: relative;
        }

        .scrolling-content {
            display: flex;
            animation: scroll 30s linear infinite;
            white-space: nowrap;
        }

        .scrolling-content span {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin: 0 3rem;
            display: inline-block;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* FAQ Section */
        .faq {
            padding: 6rem 5%;
            background: #f8f9fa;
        }

        .faq-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            padding: 1.5rem;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: #ff6b00;
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            font-weight: 300;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-content {
            padding: 0 1.5rem 1.5rem;
            color: #666;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        /* Footer */
        footer {
            padding: 3rem 5%;
            background: #1a1a1a;
            color: white;
            text-align: center;
        }

        footer p {
            color: rgba(255, 255, 255, 0.6);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-menu {
                display: none;
            }

            .nav-menu.mobile-open {
                display: flex;
            }

            .carousel-content {
                left: 5%;
                right: 5%;
                max-width: 90%;
            }

            .carousel-text h1 {
                font-size: 2.5rem;
            }

            .carousel-text p {
                font-size: 1.1rem;
            }

            .carousel-image .img-desktop {
                display: none;
            }

            .carousel-image .img-mobile {
                display: block;
            }

            .asesoria-content h2 {
                font-size: 2.2rem;
            }

            .asesoria-content p {
                font-size: 1.1rem;
            }

            .asesoria-button {
                font-size: 1rem;
                padding: 1.1rem 2rem;
            }

            .asesoria-content h2 {
                font-size: 2.2rem;
            }

            .asesoria-content p {
                font-size: 1.1rem;
            }

            .asesoria-button {
                font-size: 1rem;
                padding: 1.1rem 2rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .scrolling-content span {
                font-size: 1.5rem;
            }
        }