        /* ==========================================================================
           Estilos Base - Reset
           ========================================================================== */
        body,
        h1,
        h2,
        h3,
        h4,
        p,
        ul,
        li {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.5;
            color: #333;
            overflow-x: hidden;
            background-color: #ffffff;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul {
            list-style: none;
        }

        button {
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }

        button:hover {
            opacity: 0.9;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ==========================================================================
           Cabecera (Navbar)
           ========================================================================== */
        header {
            background-color: #f7f7f7;
            padding: 10px 0;
            border-bottom: 1px solid #eaeaea;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-img {
            height: 45px;
            width: auto;
        }

        .logo-text {
            font-size: 1.4em;
            font-weight: bold;
            color: #444;
        }

        .logo-text span {
            color: #6576b4;
        }

        .nav-menu {
            display: flex;
            gap: 20px;
            align-items: center;
            font-size: 0.85em;
        }

        .btn-getstarted {
            background-color: #6576b4;
            color: white !important;
            padding: 8px 18px;
            border-radius: 4px;
            font-weight: 500;
        }

        /* ==========================================================================
           Hero Section
           ========================================================================== */
        .hero {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .hero-inner {
            display: flex;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            flex: 1;
        }

        .hero-content h1 {
            font-size: 2.8em;
            font-weight: 700;
            margin-bottom: 20px;
            color: #222;
            line-height: 1.1;
        }

        .hero-content p {
            color: #666;
            margin-bottom: 30px;
            font-size: 1em;
            max-width: 550px;
        }

        .hero-image {
            flex: 1;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .btn-hero-red {
            padding: 12px 24px;
            border-radius: 4px;
            background: #ff6e6e;
            color: white;
            font-weight: 600;
        }

        .btn-hero-blue {
            padding: 12px 24px;
            border-radius: 4px;
            background: #6187f5;
            color: white;
            font-weight: 600;
        }

        /* ==========================================================================
           Servicios Rápidos (Iconos)
           ========================================================================== */
        .features {
            padding: 80px 0;
            background-color: #f7f7f7;
            text-align: center;
        }

        .features h2 {
            font-size: 2.2em;
            font-weight: 700;
            margin-bottom: 50px;
            color: #222;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .feature-item {
            padding: 20px;
            text-align: center;
        }

        .feature-item svg {
            margin-bottom: 20px;
        }

        .feature-item h3 {
            font-size: 1.25em;
            margin-bottom: 15px;
            font-weight: 600;
            color: #333;
        }

        .feature-item p {
            font-size: 0.9em;
            color: #777;
            line-height: 1.7;
        }

        /* ==========================================================================
   Módulos DebiCont (Versión Optimizada)
   ========================================================================== */
        .modules-section {
            background-color: #f0f4f8;
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.2em;
            font-weight: 700;
            margin-bottom: 50px;
            color: #222;
            text-align: center;
        }

        /* Contenedor de las dos columnas grandes */
        .modules-grid-large {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Tarjeta moderna y ancha */
        .module-card-wide {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            text-align: left;
            border-top: 5px solid #6187f5;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .module-card-wide:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .module-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .module-header h3 {
            color: #1a365d;
            font-size: 1.6em;
            margin: 0;
            font-weight: 700;
        }

        .icon-box {
            font-size: 28px;
            background: #ebf5ff;
            padding: 12px;
            border-radius: 12px;
            line-height: 1;
        }

        /* Listado de características */
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list li {
            padding: 10px 0;
            border-bottom: 1px solid #f5f5f5;
            font-size: 0.95em;
            color: #4a5568;
            display: flex;
            align-items: center;
        }

        .feature-list li::before {
            content: "•";
            color: #6187f5;
            font-weight: bold;
            margin-right: 10px;
        }

        .badge-new {
            background: #25D366;
            color: white;
            font-size: 0.7em;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: bold;
            margin-left: auto;
        }

        /* Efecto de expansión "Leer más" */
        .extra-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
        }

        .extra-content.open {
            max-height: 1000px;
            /* Suficiente para que quepa todo el texto */
            transition: max-height 0.5s ease-in-out;
        }

        .btn-read-more {
            margin-top: 20px;
            background: #ebf5ff;
            color: #1e3a8a;
            font-weight: 700;
            font-size: 0.9em;
            padding: 10px 20px;
            border-radius: 8px;
            width: fit-content;
            align-self: flex-start;
            transition: 0.3s;
        }

        .btn-read-more:hover {
            background: #6187f5;
            color: white;
        }

        .modules-grid-large {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            /* Cambio a 3 columnas */
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ==========================================================================
   Soluciones Detalladas (Layout Alternado tipo Hero)
   ========================================================================== */
        .solution-row {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 90px;
        }

        /* La magia para invertir el orden: Texto a la Izquierda, Imagen Derecha */
        .solution-row.reverse {
            flex-direction: row-reverse;
        }

        .solution-image {
            flex: 1;
        }

        .solution-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            object-fit: cover;
        }

        .solution-content {
            flex: 1;
        }

        .solution-content h2 {
            font-size: 2.2em;
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 20px;
        }

        .solution-desc {
            color: #555;
            font-size: 1.05em;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .solution-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .solution-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 0.95em;
            color: #444;
            line-height: 1.5;
        }

        .solution-list li svg {
            flex-shrink: 0;
            margin-top: 2px;
            width: 22px;
            height: 22px;
        }

        /* Para que en tablets se vea de a 2 y en móviles de a 1 */
        @media (max-width: 1100px) {
            .modules-grid-large {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .modules-grid-large {
                grid-template-columns: 1fr;
            }
        }

        /* Adaptación para móviles */
        @media (max-width: 900px) {
            .modules-grid-large {
                grid-template-columns: 1fr;
                padding: 0 20px;
            }
        }

        /* ==========================================================================
           Why clients choose us (Mejorado)
           ========================================================================== */
        .why-us {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .why-us-inner {
            display: flex;
            gap: 60px;
            align-items: center;
        }

        .why-us-content {
            flex: 1;
        }

        .why-us-content h2 {
            font-size: 2.4em;
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 20px;
        }

        .why-us-intro {
            color: #555;
            font-size: 1.05em;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .why-us-list {
            list-style: none;
            padding: 0;
        }

        .why-us-list li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 18px;
            font-size: 0.95em;
            color: #444;
            line-height: 1.5;
        }

        .why-us-list li svg {
            flex-shrink: 0;
            margin-top: 3px;
        }

        .why-us-image {
            flex: 1;
        }

        .why-us-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            object-fit: cover;
        }

        /* ==========================================================================
           Sección de Contacto (Formulario y Cajas)
           ========================================================================== */
        .contact-section {
            padding: 80px 0;
            background-color: #ffffff;
            text-align: center;
        }

        .contact-form-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: #ffffff;
            padding: 50px;
            border-radius: 12px;
            box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.05);
        }

        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            width: 100%;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #eaeaea;
            background-color: #f7f7f7;
            border-radius: 6px;
            font-family: inherit;
            font-size: 0.95em;
            color: #333;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }

        .contact-form .full-width {
            grid-column: span 2;
        }

        .contact-form textarea {
            height: 120px;
        }

        .btn-send {
            grid-column: 1 / -1;
            justify-self: center;
            background-color: #6187f5;
            color: white;
            padding: 14px 50px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1em;
            cursor: pointer;
            margin-top: 10px;
            transition: 0.3s;
        }

        .btn-send:hover {
            background-color: #4a6bdc;
            transform: translateY(-2px);
        }

        .contact-boxes {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 50px;
            text-align: left;
        }

        .info-box {
            background: #fdfdfd;
            padding: 30px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 20px;
            border: 1px solid #f0f0f0;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
        }

        .info-box .icon {
            flex-shrink: 0;
            color: #6187f5;
        }

        /* ==========================================================================
           WhatsApp Directo
           ========================================================================== */
        .whatsapp-section {
            background-color: #ffffff;
            padding: 0 0 80px 0;
        }

        .whatsapp-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .whatsapp-card {
            display: flex;
            align-items: center;
            gap: 20px;
            background: #fdfdfd;
            padding: 15px 35px;
            border-radius: 50px;
            border: 2px solid #eaeaea;
            color: #333;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-card:hover {
            border-color: #25D366;
            background: #f0fdf4;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.15);
        }

        .whatsapp-card h4 {
            margin: 0 0 2px 0;
            font-size: 1.1em;
            color: #1a365d;
        }

        .whatsapp-card span {
            font-weight: 700;
            color: #555;
            font-size: 1.1em;
        }

        .wa-icon {
            display: flex;
            align-items: center;
        }

        /* ==========================================================================
           Footer
           ========================================================================== */
        .footer-bottom {
            background-color: #2e3136;
            color: rgba(255, 255, 255, 0.7);
            padding: 40px 0;
            text-align: center;
            font-size: 0.9em;
        }

        /* ==========================================================================
           Media Queries (Móviles)
           ========================================================================== */
        @media (max-width: 991px) {
            .modules-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767px) {
            .nav-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .nav-menu {
                display: flex;
                overflow-x: auto;
                width: 100%;
                padding-bottom: 10px;
                -webkit-overflow-scrolling: touch;
            }

            .nav-menu::-webkit-scrollbar {
                display: none;
            }

            .nav-menu li {
                flex: 0 0 auto;
            }

            .hero-inner {
                flex-direction: column-reverse;
                text-align: center;
                gap: 30px;
            }

            .hero-content h1 {
                font-size: 2em;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .modules-grid {
                grid-template-columns: 1fr;
            }

            /* Corrección para Why us en móvil */
            .why-us-inner {
                flex-direction: column;
                text-align: left;
                gap: 40px;
            }

            .why-us-content h2 {
                font-size: 2em;
                text-align: center;
            }

            .why-us-intro {
                text-align: center;
            }

            .contact-form-container {
                padding: 30px 20px;
            }

            .contact-form {
                grid-template-columns: 1fr;
            }

            .contact-form .full-width,
            .btn-send {
                grid-column: span 1;
                width: 100%;
            }

            .contact-boxes {
                grid-template-columns: 1fr;
            }
        }

        /* ==========================================================================
   Sección de Precios
   ========================================================================== */
        .pricing-section {
            padding: 80px 0;
            background-color: #f7f7f7;
        }

        .pricing-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .pricing-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            width: 300px;
            text-align: center;
            position: relative;
            transition: transform 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
        }

        .pricing-card.featured {
            border: 2px solid #6187f5;
            transform: scale(1.05);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-5px);
        }

        .badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #6187f5;
            color: #fff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8em;
            font-weight: bold;
        }

        .pricing-card h3 {
            margin-bottom: 20px;
            color: #333;
        }

        .price {
            font-size: 2.2em;
            font-weight: 800;
            color: #1a365d;
            margin-bottom: 20px;
        }

        .price span {
            font-size: 0.4em;
            color: #777;
            font-weight: 400;
        }

        .pricing-card ul {
            margin-bottom: 30px;
            padding: 0;
        }

        .pricing-card ul li {
            margin-bottom: 12px;
            color: #666;
            font-size: 0.95em;
        }

        .btn-pricing {
            display: inline-block;
            padding: 12px 30px;
            border: 2px solid #6187f5;
            color: #6187f5;
            border-radius: 5px;
            font-weight: 600;
            transition: 0.3s;
        }

        .featured .btn-pricing,
        .btn-pricing:hover {
            background: #6187f5;
            color: #fff;
        }