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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Header y Navegación */
        header {
            position: fixed;
            width: 100%;
            background: #ffffff;
            padding: 1rem 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #1a1a2e;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-img {
            max-width: 100%;
            height: 50px;
            width: auto;
            object-fit: contain;
            object-position: center;
            display: block;
            transition: transform 0.3s ease;
            background: transparent;
        }

        .logo-img:hover {
            transform: scale(1.05);
        }

        /* Para logos muy anchos */
        @media (max-width: 768px) {
            .logo-img {
                height: 40px;
                max-width: 150px;
            }
        }

        @media (max-width: 480px) {
            .logo-img {
                height: 35px;
                max-width: 120px;
            }
        }

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

        .nav-links a {
            color: #1a1a2e;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #d4af37;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #1a1a2e;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, #000000 0%, #000000 50%, #0e0e0e 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212,175,55,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveBackground 20s linear infinite;
        }

        @keyframes moveBackground {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 2rem;
        }
        
        .hero-img {
            max-width: 90%;
            height: 200px;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero .subtitle {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            animation: fadeInUp 1.2s ease;
            color: #d4af37;
            font-weight: bold;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1.4s ease;
            color: #e0e0e0;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
            color: #1a1a2e;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            animation: fadeInUp 1.6s ease;
        }


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

        /* Secciones Generales */
        section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #1a1a2e;
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #d4af37, #f4d03f);
            border-radius: 2px;
        }

        /* Nosotros */
        #nosotros {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text h3 {
            color: #d4af37;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .about-text p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            text-align: justify;
        }

        .about-image {
            width: 100%;
            height: 300px;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .about-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #d4af37;
            margin-bottom: 0.5rem;
        }

        /* Servicios */
        .services-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
            color: #555;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: #fff;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid #d4af37;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #d4af37;
        }

        .service-card h3 {
            margin-bottom: 1rem;
            color: #1a1a2e;
        }

        /* Consultoría */
        #consultoria {
            background: linear-gradient(135deg, #000000 0%, #141414 100%);
            color: #fff;
        }

        #consultoria .section-title {
            color: #fff;
        }

        .consultoria-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .consultoria-item {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212,175,55,0.3);
            transition: background 0.3s;
        }

        .consultoria-item:hover {
            background: rgba(212,175,55,0.2);
        }

        .consultoria-item h4 {
            color: #d4af37;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .consultoria-item ul {
            list-style: none;
            padding-left: 0;
        }

        .consultoria-item li {
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .consultoria-item li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #d4af37;
            font-weight: bold;
        }

        /* Nueva subsección Contable - Fiscal */
        .consultoria-subtitle {
            text-align: center;
            font-size: 2rem;
            margin: 3rem 0 2rem;
            color: #d4af37;
            font-weight: bold;
        }

        .consultoria-grid-two {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        @media (max-width: 768px) {
            .consultoria-grid-two {
                grid-template-columns: 1fr;
            }
        }

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

        .benefit-card {
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s;
        }

        .benefit-card:hover {
            transform: scale(1.05);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .benefit-card h3 {
            color: #1a1a2e;
            margin-bottom: 1rem;
        }

        /* Misión y Visión */
        #mision-vision {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .mv-card {
            background: #fff;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border-left: 5px solid #d4af37;
            max-width: 900px;
            margin: 0 auto;
        }

        .mv-card h3 {
            color: #d4af37;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .mv-card p {
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }

        .mv-highlight {
            background: linear-gradient(135deg, #000000 0%, #141414 100%);
            color: #fff;
            padding: 2rem;
            border-radius: 10px;
            margin-top: 2rem;
            text-align: center;
        }

        .mv-highlight strong {
            color: #d4af37;
        }

        /* Clientes */
        #clientes {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        /* Contenedor wrapper para el carrusel en móvil */
        .clients-wrapper {
            width: 100%;
            overflow: hidden;
        }

        .client-item {
            background: #fff;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            text-align: center;
            border-left: 4px solid #d4af37;
        }

        .client-item:hover {
            transform: translateY(-5px);
        }

        .client-logo {
            font-size: 2.5rem;
            color: #d4af37;
            margin-bottom: 0.5rem;
        }

        .client-logo img {
            max-width: 100%;
            height: 60px;
            width: auto;
            object-fit: contain;
            object-position: center;
            display: block;
            margin: 0 auto 0.5rem;
        }

        .client-item h4 {
            color: #1a1a2e;
            font-size: 0.95rem;
        }

        /* Ocultar elementos duplicados en desktop (empiezan en el elemento 34) */
        .clients-grid > .client-item:nth-child(n+34) {
            display: none;
        }

        /* Carrusel de clientes para móvil */
        @media (max-width: 768px) {
            #clientes {
                overflow: hidden;
            }

            /* Mostrar todos los elementos en móvil */
            .clients-grid > .client-item:nth-child(n+34) {
                display: flex;
            }

            .clients-grid {
                display: flex;
                overflow: hidden;
                width: max-content;
                gap: 1rem;
                padding: 1rem 0;
                animation: scroll 30s linear infinite;
            }

            .client-item {
                min-width: 200px;
                flex-shrink: 0;
                margin: 0;
                display: flex;
                flex-direction: column;
            }

            @keyframes scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-50% - 0.5rem));
                }
            }
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #000000 0%, #151515 100%);
            color: #fff;
            padding: 3rem 2rem 1rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #d4af37;
            margin-bottom: 1rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(212,175,55,0.3);
            padding-top: 1rem;
            margin-top: 2rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: #ffffff;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
                gap: 1rem;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }

            .nav-links a {
                color: #1a1a2e;
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero .subtitle {
                font-size: 1.2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-image {
                height: 250px;
            }
        }

        /* Scroll suave */
        html {
            scroll-behavior: smooth;
        }