﻿/* =========================================
   ESTILOS GENERALES
========================================= */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    color: #1f2937;
    margin: 0;
    padding: 0;
}

.main-content {
    padding-top: 40px;
}

a {
    text-decoration: none;
}

/* =========================================
   HEADER
========================================= */

.navbar {
    min-height: 80px;
    background-color: #ffffff !important;
}

.logo-itg {
    height: 60px;
    width: auto;
}

.nav-link {
    color: #1f2937 !important;
    font-size: 15px;
    font-weight: 500;
    margin-left: 8px;
    margin-right: 8px;
    transition: all 0.3s;
}

    .nav-link:hover {
        color: #2563eb !important;
    }

    .nav-link.active {
        color: #2563eb !important;
        font-weight: 600;
    }

.btn-demo {
    background: #2563eb;
    color: white !important;
    border-radius: 10px;
    padding: 12px 22px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

    .btn-demo:hover {
        background: #1d4ed8;
        color: white !important;
    }

/* =========================================
   HERO
========================================= */

.hero-section {
    padding: 80px 0;
}

.hero-badge {
    display: inline-block;
    background: #eef4ff;
    color: #2563eb;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 25px;
    margin-bottom: 25px;
    color: #0f172a;
}

    .hero-title span {
        color: #2563eb;
    }

.hero-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-primary-custom {
    background: #2563eb;
    color: white;
    border-radius: 10px;
    padding: 14px 28px;
    font-weight: 600;
    display: inline-block;
    margin-right: 10px;
}

    .btn-primary-custom:hover {
        background: #1d4ed8;
        color: white;
    }

.btn-outline-custom {
    border: 2px solid #2563eb;
    color: #2563eb;
    border-radius: 10px;
    padding: 12px 28px;
    font-weight: 600;
    display: inline-block;
}

    .btn-outline-custom:hover {
        background: #2563eb;
        color: white;
    }

/* =========================================
   TARJETAS PRODUCTOS
========================================= */

.service-card {
    border-radius: 18px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    transition: all .3s ease;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,.08);
    }

    .service-card h4 {
        font-size: 24px;
        font-weight: 700;
    }

    .service-card p {
        color: #64748b;
    }

/* =========================================
   BENEFICIOS
========================================= */

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2563eb;
}

.benefit-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-text {
    color: #64748b;
}

/* =========================================
   ESTADISTICAS
========================================= */

.stats-section {
    background: linear-gradient(90deg,#0066ff,#0051d4);
    color: white;
    padding: 50px 0;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
}

.stat-text {
    opacity: .9;
}

/* =========================================
   CTA FINAL
========================================= */

.cta-box {
    background: #0f4de8;
    color: white;
    border-radius: 20px;
    padding: 40px;
}

    .cta-box h3 {
        font-weight: 700;
    }

    .cta-box p {
        margin-bottom: 0;
    }

/* =========================================
   FOOTER
========================================= */

footer {
    background: #0f172a;
    color: white;
    padding: 40px 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {

    .hero-title {
        font-size: 40px;
    }

    .logo-itg {
        height: 50px;
    }

    .navbar-nav {
        margin-top: 20px;
    }

    .btn-demo {
        margin-top: 15px;
        display: inline-block;
    }
}

@media (max-width: 768px) {

    .hero-title {
        font-size: 34px;
    }

    .hero-description {
        font-size: 16px;
    }

    .logo-itg {
        height: 45px;
    }
}


.hero-dashboard {
    margin-top: 40px;
    background: #ffffff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.10);
    position: relative;
    overflow: visible;
}

    .hero-dashboard::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: #dbeafe;
        border-radius: 50%;
        top: 50%;
        left: -100px;
        transform: translateY(-50%);
        z-index: -1;
    }

    .hero-dashboard::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        background: #dbeafe;
        border-radius: 50%;
        right: -80px;
        top: 30%;
        z-index: -1;
    }

    .hero-dashboard img {
        border-radius: 16px;
    }


.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}



.solutions-section {
    padding: 100px 0;
}

.solution-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    border: 1px solid #eef2f7;
    box-shadow: 0 10px 30px rgba(0,0,0,.04), 0 2px 8px rgba(0,0,0,.03);
    transition: .3s;
}

    .solution-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(37,99,235,.10), 0 10px 20px rgba(0,0,0,.05);
    }

    .solution-card img {
        height: 60px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        margin-bottom: 25px;
    }

    .solution-card h3 {
        font-size: 28px;
        font-weight: 700;
        color: #08122f;
        margin-bottom: 15px;
    }

    .solution-card p {
        color: #6b7280;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .solution-card a {
        color: #2563eb;
        text-decoration: none;
        font-weight: 600;
    }

.powerbi-card {
    background: #fffdf4;
}

.solution-icon {
    margin-bottom: 25px;
}

    .solution-icon img {
        width: 120px !important;
        height: 120px !important;
        max-width: none !important;
        object-fit: contain;
        display: block;
    }

.solution-card:hover .solution-icon img {
    transform: scale(1.08);
}


/* =========================================
   SECTION HEADER
========================================= */

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 35px auto;
}

    .section-header h2::after {
        content: "";
        display: block;
        width: 90px;
        height: 4px;
        background: #2563eb;
        margin: 20px auto 0;
        border-radius: 20px;
    }

.section-badge {
    display: inline-block;
    background: #eef4ff;
    color: #2563eb;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 46px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
}

/* =========================================
   WHY SECTION
========================================= */

.why-section {
    padding: 100px 0;
    background: #ffffff;
}

.why-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 45px 30px;
    height: 100%;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 25px rgba(0,0,0,.04), 0 2px 8px rgba(0,0,0,.02);
    transition: .3s;
}

    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(37,99,235,.08), 0 10px 20px rgba(0,0,0,.05);
    }
.why-icon {
    color: #2563eb;
    font-size: 50px;
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #08122f;
    margin-bottom: 12px;
}

.why-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

/* =========================================
   STATS BANNER
========================================= */

.stats-banner {
    background: linear-gradient(90deg,#0d6efd,#0056d6);
    color: white;
    padding: 70px 0;
}

    .stats-banner h3 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .stats-banner p {
        margin: 0;
        opacity: .9;
        font-size: 16px;
    }

/* =========================================
   CTA SECTION
========================================= */

.cta-section {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(90deg,#0d6efd,#0056d6);
    border-radius: 24px;
    padding: 60px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

    .cta-box h2 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .cta-box p {
        margin: 0;
        opacity: .95;
        font-size: 18px;
    }

/* =========================================
   RESPONSIVE NUEVAS SECCIONES
========================================= */

@media (max-width: 992px) {

    .section-header h2 {
        font-size: 36px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

        .cta-box h2 {
            font-size: 34px;
        }
}

@media (max-width: 768px) {

    .solutions-section,
    .why-section,
    .cta-section {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .stats-banner h3 {
        font-size: 32px;
    }

    .cta-box {
        padding: 35px;
    }

        .cta-box h2 {
            font-size: 28px;
        }
}


.hero-divider {
    height: 120px;
    background: linear-gradient( 180deg, #ffffff 0%, #f8fbff 100% );
}


/* =========================================
   DECORACION DE FONDO
========================================= */

.solutions-section,
.why-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient( 180deg, #ffffff 0%, #f8fbff 100% );
}

    /* Blob superior izquierda */
    .solutions-section::before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        background: #dbeafe;
        opacity: .35;
        border-radius: 45% 55% 60% 40%;
        top: -120px;
        left: -180px;
        z-index: 0;
    }

    /* Blob lado derecho */
    .solutions-section::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #dbeafe;
        opacity: .30;
        border-radius: 60% 40% 50% 50%;
        right: -120px;
        top: 250px;
        z-index: 0;
    }

    /* Blob inferior */
    .why-section::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: #dbeafe;
        opacity: .25;
        border-radius: 55% 45% 50% 50%;
        left: -200px;
        bottom: -250px;
        z-index: 0;
    }

    /* Mantener contenido encima */

    .solutions-section .container,
    .why-section .container {
        position: relative;
        z-index: 2;
    }


.dots {
    position: absolute;
    width: 120px;
    height: 120px;
    z-index: 1;
    background-image: radial-gradient(#bfd6ff 2px, transparent 2px);
    background-size: 20px 20px;
}

.dots-right {
    top: 80px;
    right: 60px;
}

.dots-bottom {
    bottom: 80px;
    right: 80px;
}


.why-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

    /* Mancha izquierda */

    .why-section::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: #dbeafe;
        opacity: .35;
        border-radius: 50%;
        left: -220px;
        bottom: -180px;
        z-index: 0;
    }

    /* Mancha derecha */

    .why-section::after {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        background: #dbeafe;
        opacity: .20;
        border-radius: 50%;
        right: -180px;
        top: 120px;
        z-index: 0;
    }

    .why-section .container {
        position: relative;
        z-index: 2;
    }


.dots-why-right {
    right: 120px;
    bottom: 120px;
}

.dots-why-left {
    left: 120px;
    top: 180px;
}



.hero-partners {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    margin-top: 35px;
    flex-wrap: wrap;
}

    .hero-partners img {
        display: block;
        width: auto;
        height: 55px;
        object-fit: contain;
    }


.contact-section {
    padding: 80px 0;
}

.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
}

    .contact-card h3 {
        margin-bottom: 30px;
        font-weight: 700;
    }

.contact-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
}

    .contact-item i {
        color: #2563eb;
        font-size: 22px;
    }

.btn-whatsapp {
    display: inline-block;
    margin-top: 25px;
    background: #25D366;
    color: white;
    padding: 14px 25px;
    border-radius: 12px;
    font-weight: 600;
}

    .btn-whatsapp:hover {
        color: white;
    }


/* =========================================
   OVERLAY ENVIO
========================================= */

.overlay-enviar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.85);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.overlay-content {
    text-align: center;
    color: white;
}

    .overlay-content h4 {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .overlay-content p {
        margin: 0;
        opacity: .9;
    }

.about-hero {
    padding-top: 60px;
    padding-bottom: 80px;
}

.solutions-title {
    margin-top: 70px;
}

.about-growth {
    padding-top: 60px;
}


.solution-section {
    padding: 90px 0;
}

.solutions-cta {
    padding: 90px 0;
}

    .solution-section img,
    .solutions-cta img {
        width: 100%;
    }

@media (max-width: 991px) {

    .solution-section {
        padding: 60px 0;
    }

        .solution-section h2 {
            margin-bottom: 25px;
        }

        .solution-section img {
            margin-top: 25px;
        }

    .solutions-cta {
        padding: 60px 0;
    }
}


/* =========================================
   PRODUCTOS
========================================= */

.products-hero {
    padding: 140px 0 80px;
}

.product-section {
    padding: 90px 0;
}

    .product-section h2 {
        font-size: 2.6rem;
        font-weight: 700;
        margin-bottom: 25px;
        color: #12284c;
    }

    .product-section p {
        font-size: 1.1rem;
        line-height: 1.9;
        color: #444;
        margin-bottom: 20px;
    }

    .product-section img {
        width: 100%;
        display: block;
    }

.products-cta {
    padding: 80px 0 100px;
}

    .products-cta img {
        width: 100%;
        transition: .3s;
    }

        .products-cta img:hover {
            transform: translateY(-5px);
        }

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .products-hero {
        padding: 120px 0 60px;
    }

        .products-hero h1 {
            margin-top: 25px;
            margin-bottom: 25px;
        }

        .products-hero img {
            margin-top: 40px;
        }

    .product-section {
        padding: 60px 0;
    }

        .product-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            margin-top: 20px;
        }

        .product-section img {
            margin-top: 30px;
        }

    .products-cta {
        padding: 60px 0 80px;
    }
}


/* ===========================
   SERVICIOS
=========================== */

.services-hero,
.services-cards,
.services-cta {
    padding: 90px 0;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
}

    .service-card:hover {
        transform: translateY(-5px);
    }

    .service-card i {
        font-size: 3rem;
        color: #2563eb;
        margin-bottom: 20px;
        display: block;
    }

    .service-card h3 {
        margin-bottom: 15px;
    }

.services-cta {
    background: #f8fafc;
    text-align: center;
}

    .services-cta h2 {
        margin-bottom: 20px;
    }

    .services-cta p {
        max-width: 700px;
        margin: 0 auto 30px;
    }

@media (max-width: 991px) {

    .services-hero,
    .services-cards,
    .services-cta {
        padding: 60px 0;
    }

        .services-hero img {
            margin-top: 30px;
        }

    .service-card {
        padding: 25px;
    }
}


/* =========================================
   INDUSTRIES
========================================= */

.industries-hero {
    padding: 140px 0 80px;
}

.industry-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
}

    .industry-card:hover {
        transform: translateY(-5px);
    }

    .industry-card i {
        font-size: 3rem;
        color: #2563eb;
        margin-bottom: 20px;
    }

    .industry-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .industry-card p {
        margin-bottom: 0;
        color: #555;
        line-height: 1.8;
    }

.industries-section {
    padding: 90px 0;
}

.industries-cta {
    padding: 90px 0;
}

    .industries-cta img {
        transition: .3s;
    }

        .industries-cta img:hover {
            transform: scale(1.01);
        }

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .industries-hero {
        padding: 120px 0 60px;
        text-align: center;
    }

        .industries-hero img {
            margin-top: 30px;
        }

    .industries-section {
        padding: 60px 0;
    }

    .industry-card {
        margin-bottom: 25px;
    }

    .industries-cta {
        padding: 60px 0;
    }
}

html,
body {
    overflow-x: hidden;
}

/* ========================================
   PRESENCIA DIGITAL
======================================== */

.digital-hero {
    padding: 120px 0 80px;
}

    .digital-hero h1 {
        font-size: 3rem;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 25px;
    }

    .digital-hero .lead {
        font-size: 1.2rem;
        color: #64748b;
        line-height: 1.8;
    }

.digital-services {
    padding: 90px 0;
    background: #f8fafc;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    text-align: center;
    transition: all .3s ease;
    border: 1px solid #e5e7eb;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,.08);
    }

    .service-card i {
        font-size: 3rem;
        color: #2563eb;
        margin-bottom: 20px;
    }

    .service-card h4 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #0f172a;
    }

    .service-card p {
        color: #64748b;
        margin: 0;
        line-height: 1.7;
    }

.digital-process {
    padding: 90px 0;
}

.process-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.process-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.process-card p {
    color: #64748b;
    margin: 0;
}

.digital-cta {
    padding: 90px 0;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991px) {

    .digital-hero {
        padding: 100px 0 60px;
        text-align: center;
    }

        .digital-hero h1 {
            font-size: 2.3rem;
        }

        .digital-hero img {
            margin-top: 30px;
        }
}

@media (max-width: 768px) {

    .digital-services,
    .digital-process,
    .digital-cta {
        padding: 60px 0;
    }

    .digital-hero h1 {
        font-size: 2rem;
    }

    .service-card,
    .process-card {
        padding: 25px 20px;
    }
}