/* ==========================================================================
   CONFIGURACIONES GENERALES, RESET Y VARIABLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #475569; /* Gris pizarra elegante */
    line-height: 1.6;
    letter-spacing: -0.1px;
}

.container {
    width: 88%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.text-white { color: #ffffff !important; }
.text-silver { color: #cbd5e1 !important; }

/* ==========================================================================
   BARRA SUPERIOR INFORMATIVA (SOBRIA, ELEGANTE Y PROFESIONAL)
   ========================================================================== */
.suits-top-bar {
    background-color: #1e293b; /* Gris pizarra oscuro y sobrio de alta gama */
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-flex {
    display: flex;
    justify-content: flex-end; /* Alineación forzada a la derecha */
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 24px; /* Separación simétrica */
}

.top-info-item {
    color: #cbd5e1; /* Texto gris claro sutil para máxima sobriedad */
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.top-info-item:hover {
    color: #ffffff; /* Brilla a blanco puro al pasar el mouse */
}

.top-bar-icon {
    width: 14px;
    height: 14px;
    stroke-width: 2px;
}

/* ==========================================================================
   CABECERA RESTAURADA CON ENTORNO CLARO Y LOGO ORIGINAL DE IMAGEN
   ========================================================================== */
.suits-header {
    background-color: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px; 
    width: auto;
    display: block;
}

.suits-nav {
    display: flex;
    align-items: center;
}

.nav-item {
    color: #64748b;
    text-decoration: none;
    margin-right: 28px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.nav-icon {
    width: 15px;
    height: 15px;
    stroke-width: 2px;
}

.nav-item:hover, .nav-item.active {
    color: #170A3D; /* Azul marino de tu logotipo */
}

/* CLASE ESPECIAL EXCLUSIVA PARA ZEROOFFLINE */
.nav-item-premium {
    color: #E3065C !important;
    font-weight: 700;
    position: relative;
    border-bottom: 1px solid rgba(227, 6, 92, 0.1);
    padding-bottom: 2px;
}

.nav-item-premium:hover {
    color: #b30043 !important;
}

.menu-beacon-dot {
    width: 6px;
    height: 6px;
    background-color: #E3065C;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #E3065C;
    animation: menuBeaconPulse 1.8s infinite ease-in-out;
}

@keyframes menuBeaconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.3; }
}

/* MENÚ DESPLEGABLE CORPORATIVO */
.suits-dropdown {
    position: relative;
    margin-right: 28px;
}

.drop-btn {
    background: none;
    border: none;
    color: #64748b;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

.suits-dropdown:hover .drop-btn { color: #170A3D; }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    min-width: 320px;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(23, 10, 61, 0.06);
    padding: 8px 0;
    margin-top: 14px;
}

.dropdown-menu a {
    color: #475569;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #f8fafc;
    color: #170A3D;
    font-weight: 600;
}

.dropdown-menu a.premium-link {
    color: #E3065C;
    font-weight: 600;
    border-top: 1px solid #f1f5f9;
}

.suits-dropdown:hover .dropdown-menu { display: block; }

/* BOTÓN DESTACADO DE RECAUDO ALEGRA + WOMPI */
.btn-payment-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #000000;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.2s ease;
    border-bottom: 3px solid #FDDA24; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Estado Próximamente del botón de pagos */
.btn-payment-soon {
    position: relative;
    cursor: default;
    opacity: 0.95;
}

.soon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2A8BC7 0%, #4fb3ff 100%);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .3px;
    text-transform: uppercase;
    box-shadow: 0 0 12px rgba(42, 139, 199, 0.35);
}

.btn-payment-soon:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background-color: #000000;
}



.btn-payment-nav svg {
    width: 15px;
    height: 15px;
    stroke: #FDDA24; 
    stroke-width: 2.5px;
}

.btn-payment-nav:hover {
    background-color: #1c1c1c;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   HERO CENTRADO CON PAISAJE DE NUESTROS NODOS REALES (GUATAPÉ)
   ========================================================================== */
.hero-centered-bg {
    position: relative;
    padding: 160px 0;
    background-image: url('../img/nodo-guatape.jpg'); 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-center-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.tag-centered {
    border-left: none;
    border-bottom: 2px solid #E3065C;
    padding-left: 0;
    padding-bottom: 6px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.suits-title.text-white {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    color: #ffffff !important;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.highlight-title-light {
    color: #E3065C;
    text-shadow: 0 0 15px rgba(227, 6, 92, 0.6), 2px 2px 5px rgba(0, 0, 0, 0.9);
}

.suits-lead.text-silver {
    font-size: 17px;
    color: #ffffff !important;
    margin-bottom: 35px;
    font-weight: 500;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9);
}

.center-actions {
    justify-content: center;
    margin-top: 40px;
}

.hero-actions-group {
    display: flex;
    gap: 20px;
}

.btn-suits-primary {
    display: inline-block;
    background-color: #E3065C;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(227, 6, 92, 0.4);
}

.btn-suits-primary:hover {
    background-color: #c2004b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227, 6, 92, 0.6);
}

.btn-suits-secondary.text-white-border {
    display: inline-block;
    color: #ffffff;
    border: 2px solid #ffffff;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 14px 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-suits-secondary.text-white-border:hover {
    border-color: #2A8BC7;
    background-color: rgba(42, 139, 199, 0.3);
    color: #ffffff;
}

/* ==========================================================================
   SECCIÓN DE PLANES COMERCIALES
   ========================================================================== */

.planes-section {
    padding: 90px 0 40px 0; /* arriba derecha abajo izquierda */
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.planes-grid {
    display: grid;
    gap: 30px;
    margin: 0 auto;
}

.grid-triple {
    grid-template-columns: repeat(3, 1fr);
}

.plan-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 35px;
    border-radius: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(23, 10, 61, 0.05);
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.plan-icon {
    width: 22px;
    height: 22px;
    color: #170A3D;
    stroke-width: 1.5px;
}

.plan-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #170A3D;
    font-size: 19px;
    font-weight: 700;
}

.plan-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #170A3D;
    margin-bottom: 16px;
}

.price-period {
    font-size: 14px;
    color: #64748b;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.plan-description {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
    flex-grow: 1;
}

.btn-plan-action {
    display: block;
    text-align: center;
    border: 1px solid #cbd5e1;
    color: #170A3D;
    padding: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.btn-plan-action:hover {
    border-color: #170A3D;
    background-color: #170A3D;
    color: #ffffff;
}

/* Plan Destacado Residencial */
.plan-featured {
    border-color: rgba(227, 6, 92, 0.3);
    box-shadow: 0 10px 30px rgba(227, 6, 92, 0.04);
}

.featured-badge {position: absolute;top: -12px;right: 24px;background-color: #E3065C;color: #ffffff;font-size: 10px;font-weight: 700;text-transform: uppercase;padding: 4px 12px;border-radius: 20px;letter-spacing: 0.5px;}.plan-icon-featured {width: 22px;height: 22px;color: #E3065C;stroke-width: 1.5px;}.btn-plan-action-featured {display: block;text-align: center;background-color: #E3065C;color: #ffffff;padding: 12px;text-decoration: none;font-size: 14px;font-weight: 600;border-radius: 10px;transition: all 0.2s ease;}.btn-plan-action-featured:hover {background-color: #c2004b;box-shadow: 0 6px 16px rgba(227, 6, 92, 0.2);}

/* ==========================================================================
   SECCIÓN EMBLEMA: ZEROOFFLINE CON FONDO TECNOLÓGICO MODERNO
   ========================================================================== */

.zerooffline-showcase-section {
    padding: 40px 0 35px 0; /* menos espacio inferior */
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

/* =========================================================
   TÍTULO SUPERIOR ZEROOFFLINE
   ========================================================= */
.zero-title-top {
    text-align: center;
    margin-bottom: 18px;
}

.zero-title-top h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.zero-title-main {
    font-size: 54px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1px;
    color: #170A3D;
}

.zero-title-sub {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #475569;
}

.zero-glow-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 560px;

    /* Imagen de fondo del centro de datos */
    background-image: url('../img/zerooffline-datacenter.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    box-shadow:
        0 24px 60px rgba(23, 10, 61, 0.20),
        0 0 0 1px rgba(255,255,255,0.06);
}

/* Overlay oscuro elegante para mantener legible el texto */
.zero-glow-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(7,10,22,0.88) 0%,
            rgba(7,10,22,0.82) 38%,
            rgba(7,10,22,0.45) 62%,
            rgba(7,10,22,0.20) 100%);
    z-index: 1;
}

/* Brillo superior corporativo */
.zero-glow-card::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(227,6,92,0.22) 0%, rgba(227,6,92,0) 70%);
    z-index: 1;
}

.magenta-laser-line-thick {
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #E3065C 0%, #2A8BC7 100%);
    box-shadow: 0 0 18px rgba(227,6,92,0.7);
    z-index: 3;
}

.zero-grid-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    min-height: 560px;
    padding: 58px;
}

.zero-content {
    max-width: 620px;
}

.elite-beacon-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(227,6,92,0.14);
    border: 1px solid rgba(227,6,92,0.35);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
}

.beacon-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E3065C;
    box-shadow: 0 0 14px #E3065C;
    animation: beaconPulse 1.8s infinite ease-in-out;
}

@keyframes beaconPulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.45); opacity: 0.45; }
}

.zero-glow-card h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.8px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.zero-lead-text {
    color: #e2e8f0;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 26px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.zero-bullets-group {
    display: grid;
    gap: 14px;
    margin-bottom: 34px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.bullet-item svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5px;
    color: #E3065C;
    flex-shrink: 0;
}

.btn-zero-landing-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #E3065C 0%, #b30043 100%);
    color: #ffffff;
    padding: 15px 32px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 10px 24px rgba(227,6,92,0.34);
}

.btn-zero-landing-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(227,6,92,0.46);
}

.btn-zero-landing-action svg {
    width: 17px;
    height: 17px;
    transition: transform .2s ease;
}

.btn-zero-landing-action:hover svg {
    transform: translateX(4px);
}

/* Tarjeta lateral tipo panel de monitoreo */
.zero-visual-glow-box {
    display: none;
}

.pulse-core-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227,6,92,0.34) 0%, rgba(227,6,92,0) 70%);
    filter: blur(12px);
    animation: auraGlow 4s infinite ease-in-out;
}

@keyframes auraGlow {
    0%,100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.16); opacity: 1; }
}

.zero-shield-icon {
    width: 86px;
    height: 86px;
    color: #E3065C;
    stroke-width: 1.3px;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 0 18px rgba(227,6,92,0.6));
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
    .zero-grid-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 42px 34px;
    }

    .zero-content {
        max-width: 100%;
    }

    .zero-visual-glow-box {
        min-height: 240px;
    }

    .zero-glow-card h2 {
        font-size: 36px;
    }

    .zero-glow-card::before {
        background: linear-gradient(180deg,
            rgba(7,10,22,0.86) 0%,
            rgba(7,10,22,0.70) 55%,
            rgba(7,10,22,0.42) 100%);
    }
}

@media (max-width: 576px) {
    .zerooffline-showcase-section {
        padding: 72px 0;
    }

    .zero-glow-card {
        min-height: auto;
        border-radius: 22px;
    }

    .zero-grid-layout {
        padding: 32px 22px;
        gap: 28px;
    }

    .zero-glow-card h2 {
        font-size: 30px;
    }

    .zero-lead-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .btn-zero-landing-action {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   PORTAFOLIO DE INGENIERÍA CORPORATIVA
   ========================================================================= */

.portfolio-section {
    padding: 45px 0 45px 0; /* menos espacio abajo */
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.portfolio-header { margin-bottom: 60px; }
.center-tag { display: table; margin: 0 auto 16px auto; }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.glass-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    padding: 28px;
    border-radius: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    min-height: 260px;
}


.glass-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(23, 10, 61, 0.03);
}

.corporate-highlight-card {
    border-color: rgba(42, 139, 199, 0.3);
    background: linear-gradient(180deg, #ffffff 0%, #f0f7fc 100%);
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.card-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    color: #2A8BC7;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.service-inline-icon {
    width: 20px;
    height: 20px;
    color: #2A8BC7;
    stroke-width: 1.5px;
}

.service-inline-icon.text-corporate { color: #170A3D; }

.glass-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #170A3D;
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 10px;
    font-weight: 700;
}

.glass-card p {
    font-size: 13.5px;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 14px;
    flex-grow: 1;
}

.corporate-btn {
    margin-top: 14px;
    background-color: #170A3D;
    color: #ffffff;
    border: none;
}
.corporate-btn:hover { background-color: #24125c; }

/* ==========================================================================
   TRAYECTORIA HISTÓRICA Y ELEMENTOS ADICIONALES
   ========================================================================== */
.legacy-section {
    padding: 45px 0 35px 0; /* menos espacio abajo */
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid #e2e8f0;
}

.legacy-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.suits-tag-dark {
    display: inline-block;
    color: #E3065C;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-suits-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    color: #170A3D;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}

.legacy-content p {
    color: #475569;
    margin-bottom: 16px;
    font-size: 15px;
}

.legacy-visuals {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 24px;
    border-radius: 12px;
}

.card-shifted {
    margin-left: 30px;
    border-left: 3px solid #E3065C;
}

.year-accent {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 30px;
    color: #170A3D;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.text-magenta { color: #E3065C; }


/* ==========================================================================
RAZONES CORPORATIVAS - WHY CHOOSE US
========================================================================== */
.reasons-section {
position: relative;
padding: 55px 0 55px;
background:
radial-gradient(circle at top right, rgba(227,6,92,0.05), transparent 25%),
radial-gradient(circle at bottom left, rgba(42,139,199,0.06), transparent 25%),
#ffffff;
border-top: 1px solid #eef2f7;
border-bottom: 1px solid #eef2f7;
overflow: hidden;
}

.reasons-header {
max-width: 820px;
margin: 0 auto 42px;
text-align: center;
}

.reasons-kicker {
display: inline-block;
font-family: 'Plus Jakarta Sans', sans-serif;
font-size: 12px;
font-weight: 800;
letter-spacing: 2px;
text-transform: uppercase;
color: #2A8BC7;
margin-bottom: 14px;
}

.reasons-title {
font-family: 'Plus Jakarta Sans', sans-serif;
font-size: 46px;
line-height: 1.08;
font-weight: 800;
letter-spacing: -1.2px;
color: #170A3D;
margin-bottom: 18px;
}

.reasons-title span {
color: #2A8BC7;
}

.reasons-lead {
font-size: 16px;
line-height: 1.8;
color: #64748b;
}

.reasons-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 22px;
}

.reason-card {
    position: relative;
    background: rgba(255,255,255,0.96);
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 18px 18px 18px 64px;
    min-height: 112px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    box-shadow: 0 6px 18px rgba(15,23,42,0.04);
}


.reason-card:hover {
    transform: translateY(-3px);
    border-color: rgba(42,139,199,0.35);
    box-shadow: 0 12px 28px rgba(15,23,42,0.08);
}

.reason-icon {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 28px;
    height: 28px;
    color: #2A8BC7;
    stroke-width: 2px;
    padding: 6px;
    border-radius: 12px;
    background: rgba(42,139,199,0.10);
}


.reason-card p {
    position: relative;
    margin: 0;
    padding-left: 18px;
    font-size: 13.5px;
    line-height: 1.55;
    color: #334155;
    font-weight: 500;
}

.reason-card p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2A8BC7;
    box-shadow: 0 0 0 3px rgba(42,139,199,0.12);
}


.reason-card-featured {
    border-color: rgba(42,139,199,0.32);
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
}


@media (max-width: 992px) {
.reasons-grid {
grid-template-columns: 1fr;
}

.reasons-title {
    font-size: 38px;
}

}

@media (max-width: 576px) {
.reasons-section {
padding: 70px 0;
}

.reasons-title {
    font-size: 30px;
    line-height: 1.12;
}

.reasons-lead {
    font-size: 15px;
}

.reason-card {
    padding: 22px 20px 22px 68px;
    min-height: auto;
}

.reason-icon {
    width: 28px;
    height: 28px;
    left: 20px;
}

}



/* ==========================================================================
SUSPENSIÓN Y RECONEXIÓN - ESTILO PREMIUM
========================================================================== */
.billing-section {
position: relative;
padding: 65px 0 70px;
background:
radial-gradient(circle at top left, rgba(42,139,199,0.06), transparent 22%),
radial-gradient(circle at bottom right, rgba(23,10,61,0.05), transparent 24%),
#f8fafc;
border-top: 1px solid #eef2f7;
border-bottom: 1px solid #eef2f7;
}

.billing-header {
max-width: 860px;
margin: 0 auto 44px;
text-align: center;
}

.billing-kicker {
display: inline-block;
font-family: 'Plus Jakarta Sans', sans-serif;
font-size: 12px;
font-weight: 800;
letter-spacing: 2px;
text-transform: uppercase;
color: #2A8BC7;
margin-bottom: 14px;
}

.billing-title {
font-family: 'Plus Jakarta Sans', sans-serif;
font-size: 44px;
line-height: 1.08;
font-weight: 800;
letter-spacing: -1.1px;
color: #170A3D;
margin-bottom: 18px;
}

.billing-lead {
font-size: 16px;
line-height: 1.8;
color: #64748b;
}

.billing-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 24px;
}

.billing-card {
position: relative;
background: rgba(255,255,255,0.96);
border: 1px solid #e2e8f0;
border-radius: 24px;
padding: 28px;
box-shadow: 0 10px 30px rgba(15,23,42,0.05);
transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.billing-card:hover {
transform: translateY(-4px);
border-color: rgba(42,139,199,0.32);
box-shadow: 0 18px 40px rgba(15,23,42,0.10);
}

.billing-card-primary {
background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
border-color: rgba(42,139,199,0.32);
}

.billing-card-danger {
background: linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
border-color: rgba(239,68,68,0.28);
}

.billing-card-contact {
background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
border-color: rgba(42,139,199,0.32);
}

.billing-card-icon {
width: 52px;
height: 52px;
border-radius: 16px;
background: rgba(42,139,199,0.12);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 18px;
}

.billing-card-danger .billing-card-icon {
background: rgba(239,68,68,0.12);
}

.billing-card-icon svg {
width: 26px;
height: 26px;
color: #2A8BC7;
stroke-width: 2px;
}

.billing-card-danger .billing-card-icon svg {
color: #dc2626;
}

.billing-card h3 {
font-family: 'Plus Jakarta Sans', sans-serif;
font-size: 22px;
line-height: 1.2;
color: #170A3D;
margin-bottom: 12px;
font-weight: 700;
}

.billing-card p {
font-size: 14.5px;
line-height: 1.75;
color: #475569;
margin-bottom: 16px;
}

.billing-highlight {
display: inline-block;
padding: 10px 16px;
border-radius: 999px;
background: rgba(42,139,199,0.10);
color: #2A8BC7;
font-size: 13px;
font-weight: 700;
}

.billing-highlight-danger {
background: rgba(239,68,68,0.10);
color: #dc2626;
}

.billing-note {
padding: 14px 16px;
border-radius: 14px;
background: #f8fafc;
border: 1px dashed #cbd5e1;
font-size: 13px;
color: #475569;
}

.billing-contact-list {
display: grid;
gap: 12px;
margin-bottom: 22px;
}

.billing-contact-item {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 14px;
border-radius: 14px;
background: #f8fafc;
border: 1px solid #e2e8f0;
color: #334155;
font-size: 14px;
}

.billing-contact-item svg {
width: 18px;
height: 18px;
color: #2A8BC7;
}

.billing-actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
}

.btn-billing-primary,
.btn-billing-secondary {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 18px;
border-radius: 12px;
text-decoration: none;
font-size: 14px;
font-weight: 700;
transition: all .2s ease;
}

.btn-billing-primary {
background: #2A8BC7;
color: #ffffff;
box-shadow: 0 8px 20px rgba(42,139,199,0.25);
}

.btn-billing-primary:hover {
background: #2478ad;
transform: translateY(-2px);
}

.btn-billing-secondary {
background: #ffffff;
color: #170A3D;
border: 1px solid #cbd5e1;
}

.btn-billing-secondary:hover {
border-color: #2A8BC7;
color: #2A8BC7;
}

.billing-footer-note {
margin-top: 28px;
display: flex;
align-items: flex-start;
gap: 12px;
padding: 18px 20px;
border-radius: 18px;
background: #ffffff;
border: 1px solid #e2e8f0;
color: #64748b;
font-size: 14px;
line-height: 1.7;
}

.billing-footer-note svg {
width: 20px;
height: 20px;
color: #2A8BC7;
flex-shrink: 0;
margin-top: 2px;
}

@media (max-width: 992px) {
.billing-grid {
grid-template-columns: 1fr;
}


.billing-title {
    font-size: 36px;
}


}

@media (max-width: 576px) {
.billing-section {
padding: 56px 0 60px;
}

.billing-title {
    font-size: 30px;
    line-height: 1.12;
}

.billing-lead {
    font-size: 15px;
}

.billing-card {
    padding: 22px;
    border-radius: 20px;
}

.billing-actions {
    flex-direction: column;
}

.btn-billing-primary,
.btn-billing-secondary {
    width: 100%;
    justify-content: center;
}

}








/* ==========================================================================
   SOPORTE Y FORMULARIO DE ALIANZAS
   ========================================================================== */
.suits-contact-section {
    padding: 40px 0 100px 0; /* menos espacio arriba */
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.contact-suits-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.contact-suits-text h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #170A3D;
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-suits-text p { margin-bottom: 24px; color: #475569; font-size: 15px; }

.contact-suits-text .btn-suits-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-suits-text .btn-suits-primary svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.5px;
}

.contact-suits-form-box {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 40px;
    border-radius: 14px;
}

.contact-suits-form-box h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #170A3D;
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-suits-form-box p { font-size: 14px; margin-bottom: 24px; color: #64748b; }

.detail-block {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-icon {
    width: 18px;
    height: 18px;
    color: #2A8BC7;
    margin-top: 4px;
    stroke-width: 1.5px;
}

.detail-line { font-size: 15px; color: #170A3D; font-weight: 600; }
.detail-line span { color: #64748b; display: block; font-size: 12px; margin-bottom: 2px; font-weight: 400; }


/* ==========================================================================
   FOOTER CORPORATIVO PREMIUM CON IMAGEN DE FONDO
   ========================================================================== */
.suits-footer {
    position: relative;
    overflow: hidden;
    color: #ffffff;

    /* Imagen visible y elegante */
    background-image:
        linear-gradient(rgba(8, 6, 25, 0.45), rgba(8, 6, 25, 0.65)),
        url('../img/footer-guatape-10com.jpg');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    /* Altura más generosa para lucir la imagen */
    min-height: 560px;
}


.footer-main-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 90px 0 70px;
}


.footer-logo {
    width: 190px;
    max-width: 100%;
    margin-bottom: 18px;
    filter: none;
}

.footer-brand-text {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 26px;
    max-width: 360px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}

/* Contenedor visual de los botones sin tocar el HTML */
.footer-whatsapp-btn{
    margin-right:16px;
    vertical-align:top;
}


/* ==========================================================================
   CONTENEDOR DE BOTONES DEL FOOTER
   ========================================================================== */
.footer-action-buttons {
    display: flex;
    align-items: stretch;      /* misma altura */
    gap: 16px;
    margin-top: 12px;
    flex-wrap: nowrap;
}


/* ==========================================================================
   BOTÓN WHATSAPP
   ========================================================================== */
.footer-whatsapp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:linear-gradient(135deg,#2A8BC7 0%,#1d6fa3 100%);
    color:#ffffff;
    padding:0 26px;
    height:56px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    font-size:15px;
    min-width:240px;
    box-shadow:0 10px 24px rgba(42,139,199,.25);
    transition:all .25s ease;
}

.footer-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(42,139,199,0.35);
    color: #ffffff;
}

/* ==========================================================================
   BOTÓN SOPORTE NEXO
   ========================================================================== */
.footer-support-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    background:linear-gradient(135deg,#2A8BC7 0%,#1d6fa3 100%);
    color:#ffffff;
    padding:0 26px;
    height:56px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    font-size:15px;
    min-width:240px;
    box-shadow:0 10px 24px rgba(42,139,199,.25);
    transition:all .25s ease;
    vertical-align:top;
}

.footer-support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(42, 139, 199, 0.35);
    color: #ffffff;
}


/* Icono NEXO completo */
.footer-support-icon{
    width:102px;
    height:102px;
    object-fit:contain;
    display:block;
    flex-shrink:0;
    background:transparent;
    border:none;
    box-shadow:none;
    padding:0;
}

.footer-support-btn span {
    white-space: nowrap;
}

.footer-column h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}

.footer-list,
.footer-links {
list-style: none;
padding: 0;
margin: 0;
display: grid;
gap: 12px;
}

.footer-list li,
.footer-links li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}


.footer-list svg {
width: 16px;
height: 16px;
color: #2A8BC7;
flex-shrink: 0;
margin-top: 3px;
}

.footer-list a,
.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color .2s ease;
}


.footer-list a:hover,
.footer-links a:hover {
color: #ffffff;
}

.footer-bottom-bar {
position: relative;
z-index: 2;
border-top: 1px solid rgba(255,255,255,0.08);
padding: 18px 0;
}

.footer-bottom-flex {
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
flex-wrap: wrap;
}

.footer-bottom-flex p {
margin: 0;
font-size: 13px;
color: #cbd5e1;
}

.footer-bottom-flex strong {
color: #ffffff;
}

@media (max-width: 992px) {
.footer-main-grid {
grid-template-columns: repeat(2, 1fr);
gap: 32px;
}
}

@media (max-width: 576px) {

.suits-footer {
        background-attachment: scroll;
	min-height: auto;
    }

.footer-main-grid {
grid-template-columns: 1fr;
padding: 56px 0 40px;
}


.footer-brand-text {
    max-width: none;
}

.footer-bottom-flex {
    flex-direction: column;
    text-align: center;
}

.footer-action-buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.footer-whatsapp-btn,
.footer-support-btn {
    width: 100%;
    min-width: 100%;
    justify-content: center;
}

}

/* ==========================================================================
   SISTEMA DE ADAPTABILIDAD RESPONSIVE AUTOMÁTICO
   ========================================================================== */
@media (max-width: 992px) {
    .suits-top-bar {
        display: none; /* Oculta la barra gris en celulares */
    }
    .logo img {
        height: 40px;
    }
    .hero-centered-bg {
        padding: 100px 0;
        background-attachment: scroll;
    }
    .hero-actions-group {
        flex-direction: column;
        gap: 14px;
        width: 100%;
    }
    .btn-suits-secondary.text-white-border {
        width: 100%;
        text-align: center;
    }
    .hero-grid, .legacy-grid, .portfolio-grid, .contact-suits-grid { 
        grid-template-columns: 1fr; 
    }
.grid-triple {grid-template-columns: 1fr;}.zero-grid-layout {grid-template-columns: 1fr;}
.zero-visual-glow-box {order: -1;height: 140px;}.elite-card { grid-column: auto; }.nav-item-premium {border-bottom: none;padding-bottom: 0;}.suits-nav { display: none; }.suits-title { font-size: 34px; }.zero-glow-card h2 { font-size: 28px; }}


/* =========================================================
   BOTÓN WHATSAPP ZEROOFFLINE
   ========================================================= */
.zero-actions-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}

.btn-zero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    transition: all .2s ease;
}

.btn-zero-whatsapp svg {
    width: 18px;
    height: 18px;
}

.btn-zero-whatsapp:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.38);
    transform: translateY(-2px);
}

/* Móvil */
@media (max-width: 576px) {
    .zero-actions-group {
        flex-direction: column;
    }

    .btn-zero-whatsapp,
    .btn-zero-landing-action {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .zero-title-main {
        font-size: 40px;
    }

    .zero-title-sub {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .zero-title-main {
        font-size: 32px;
    }

    .zero-title-sub {
        font-size: 15px;
    }
}


/* =========================================================
   TÍTULO PRINCIPAL - NUESTRA TRAYECTORIA
   ========================================================= */
.suits-tag-dark.suits-tag-trayectoria {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 48px !important;
    font-weight: 800 !important;
    line-height: 1.05 !important;
    letter-spacing: -1px !important;
    color: #E3065C !important;
    margin-bottom: 16px !important;
    display: block !important;
    text-transform: none !important;
}


@media (max-width: 768px) {
    .suits-tag-dark.suits-tag-trayectoria {
        font-size: 38px !important;
    }
}

@media (max-width: 480px) {
    .suits-tag-dark.suits-tag-trayectoria {
        font-size: 30px !important;
    }
}