/*/////////////////////// HOME ///////////////////////*/

/*RESPONSIVO*/

@media (max-width: 992px){

    .navbar-custom{

        width: calc(100% - 0px);

        left: 0px;

        transform: none;

        padding: 12px 14px;

        border-radius: 22px;
    }

}
@media (max-width: 992px){
    .empresa-exp{
        margin-left: 0;
        width: 100%;
    }
}
@media (max-width: 992px){
    .logo-img{
        width: 130px;
        height: auto;
    }
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

html,
body{
    overflow-x: hidden;
}
/*LOGO*/

.logo-img {
    width: 50%;
    height: 50%;
}

/*CARUSEL DE CLIENTES*/
.logos-section {
    overflow: hidden;
    background: transparent;
    padding: 0px 0px;
    top: 0px;
    white-space: nowrap;
    position: relative;

    /* EFECTO DESVANECIDO */
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%);

    mask-image: linear-gradient(to right,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%);
}

.logos-slide {
    display: inline-block;
    animation: 25s slide infinite linear;
}

.logos-slide img {
    height: 50px;
    margin: 0 60px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s;
}

.logos-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}


/*MENU PRESENTACION*/
.contenido-hero h1{

    font-size: clamp(1.9rem, 6vw, 4.8rem);

    font-weight: 800;
    line-height: 1.15;

    color: #fff;

    text-align: center;

    letter-spacing: -1px;

    text-shadow: 0 10px 40px rgba(0,0,0,.35);
}

.contenido-hero > p{

    margin: 0 auto;

    max-width: 800px;

    font-size: clamp(.95rem, 2vw, 1.25rem);

    line-height: 1.8;

    color: rgba(255,255,255,.85);

    text-align: center;
}
.hero-cards{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-top: 60px;
    margin-bottom: 70px;
}

.hero-card{
    position: relative;
    padding: 35px 30px;
    border-radius: 20px;

    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition: .35s ease;
    overflow: hidden;
}

.hero-card::before{
    content: '';
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        135deg,
        rgba(0,170,255,.12),
        transparent 50%
    );

    opacity: 0;
    transition: .35s;
}

.hero-card:hover{
    transform: translateY(-8px);
    border-color: rgba(0,170,255,.35);
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.hero-card:hover::before{
    opacity: 1;
}

.card-icon{
    font-size: 2rem;
    color: #00aaff;
    margin-bottom: 20px;
}

.hero-card h3{
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-card p{
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    font-size: .95rem;
}
@media(max-width: 992px){

    .hero-cards{
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .contenido-hero h1{
        font-size: 2.8rem;
    }

    .contenido-hero > p{
        font-size: 1.1rem;
    }
}
@media (max-width: 480px){

    .contenido-hero h1{

        font-size: 2rem;

        line-height: 1.15;

        letter-spacing: -.5px;
    }

    .contenido-hero > p{

        font-size: .95rem;

        padding: 0 10px;
    }

}

/*CARD SOLUCIONES*/

.card-solucion {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
}

/* La imagen ahora es TODA la card */
.card-solucion img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 22px;
    transition: transform .5s ease;
}

/* Overlay encima de la imagen */
.card-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 8, 30, 0.55);
    backdrop-filter: blur(4px);

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 30px;

    opacity: 0;
    transition: .4s ease;
}

/* Hover */
.card-solucion:hover .card-overlay {
    opacity: 1;
}

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

/* Textos */
.card-overlay h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-overlay p {
    color: #dce6ff;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/*GENERICO*/

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

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;

    background: var(--bg-main);
    color: var(--text-main);

    transition:
        background .3s ease,
        color .3s ease;
}

/* NAVBAR */

.navbar-custom {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1350px;
    padding: 15px 25px;
    border-radius: 28px;
    background: var(--navbar-bg);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);

    z-index: 9999;
}

.navbar-brand-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-block {

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    text-decoration: none;

    min-width: max-content;
}

/* LOGO */
.logo-img {

    width: clamp(100px, 12vw, 220px);

    height: auto;
}
@media (max-width: 768px) {

    .navbar-brand-area {
        max-width: 180px;
    }

    .logo-img {
        width: 140px;
    }

    .empresa-exp {
        width: 100%;
        font-size: 0.42rem;
        margin-left: 28px;
        margin-top: -4px;
    }
}

/* TEXTO CHICO */
.empresa-exp {

    font-size: clamp(.45rem, .7vw, .6rem);

    color: rgba(255, 255, 255, 0.55);

    margin-top: -6px;

    margin-left: clamp(40px, 4vw, 0px);

    letter-spacing: 1px;

    text-transform: uppercase;

    font-weight: 500;

    line-height: 1.4;
}

.nav-link {
    color: var(--text-main) !important;
    margin: 0 15px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #3da5ff !important;
    transform: scale(1.1);
}

.btn-contacto {
    border: 1px solid white;
    border-radius: 40px;
    padding: 12px 30px;
     color: var(--text-main);
}

.btn-contacto:hover {
background: var(--text-main);
    color: var(--bg-main);
}

/* HERO */

.hero {
    min-height: 100vh;

    background-image: url('../img/fondo.jpg');
    background-size: cover;
    background-position: center;

    position: relative;

    display: flex;
    align-items: center;

    padding-top: 120px;
    padding-bottom: 60px;
}
.contenido-hero{
    position: relative;
    z-index: 2;
    color: white;

    width: 100%;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 40, 0.24);
}



.titulo {
    font-size: 90px;
    font-weight: bold;
}

.subtitulo {
    font-size: 45px;
    max-width: 900px;
    margin-top: 20px;
}

.btn-principal {
    background: #178bff;
    padding: 15px 35px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.btn-principal:hover {
    background: #0d6efd;
}

.btn-secundario {
    border: 1px solid white;
    padding: 15px 35px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
}

.btn-secundario:hover {
    background: white;
    color: black;
}

/* CLIENTES */

.clientes {
    background: #020617;
    color: white;
    padding: 30px;
    font-size: 24px;
}

/**/
.soluciones,
/*.fortalezas,*/
.proceso,
.blog-section {
    padding: 120px 0;
background: var(--bg-section);
    color: var(--text-main);
}

.mini-titulo {
    color: #2d8cff;
    font-weight: bold;
    letter-spacing: 2px;
}

.titulo-seccion {
    font-size: 50px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.animacion-custom {
    transform: translateY(60px);
}



.descripcion-seccion {
    color: #b8b8b8;
    max-width: 800px;
    margin: auto;
}

.card-solucion {
    background: #0b1225;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
}

.card-solucion:hover {
    transform: translateY(-10px);
}

.card-solucion img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-solucion h3 {
    padding: 20px 20px 10px;
}

.card-solucion p {
    padding: 0 20px 20px;
    color: #c7c7c7;
}

/*
.caja-fortaleza {
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    border-radius: 30px;
    padding: 80px;
    text-align: center;
}


.caja-fortaleza h1 {
    font-size: 90px;
}
*/

.paso {
    background: #0b1225;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    transition: 0.3s;
}

.paso:hover {
    transform: translateY(-10px);
}

.paso h1 {
    color: #0d6efd;
    font-size: 70px;
}

.blog-card {
    background: #0b1225;
    border-radius: 20px;
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.contenido-blog {
    padding: 20px;
}

.footer {
    background: #020617;
    color: white;
    padding: 60px 0;
}

.fortalezas {

    padding: 140px 0;
    background: #020617;
}

/* VISUAL */
.fortaleza-visual {

    position: relative;

    height: 650px;

    border-radius: 30px;

    overflow: hidden;
}

/* IMAGEN */
.img-fondo {

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 30px;
}

/* CARD FLOTANTE */
.card-floating {

    position: absolute;

    top: 50px;
    left: 50px;

    width: 75%;

    background: white;

    border-radius: 25px;

    padding: 40px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .12);
}

/* TEXTO ARRIBA */
.mini-chart-text {

    font-size: .95rem;

    color: #3b82f6;

    display: block;

    margin-bottom: 40px;
}

/* ICONO */
.icono-chart {

    margin-bottom: 40px;

    color: #111827;
}

/* GRAFICO */
.grafico {

    height: 220px;

    display: flex;

    align-items: flex-end;

    gap: 18px;

    background: #f5f7fb;

    padding: 30px;

    border-radius: 20px;
}

.grafico div {

    flex: 1;

    background: linear-gradient(to top,
            #1d4ed8,
            #60a5fa);

    border-radius: 10px 10px 0 0;

    animation: subir 2s ease infinite alternate;
}

/* ALTURAS */
.grafico div:nth-child(1) {
    height: 45%;
}

.grafico div:nth-child(2) {
    height: 70%;
}

.grafico div:nth-child(3) {
    height: 60%;
}

.grafico div:nth-child(4) {
    height: 80%;
}

.grafico div:nth-child(5) {
    height: 65%;
}

.grafico div:nth-child(6) {
    height: 95%;
}

/* ANIMACION */
@keyframes subir {

    from {
        transform: scaleY(.9);
    }

    to {
        transform: scaleY(1);
    }
}

/* TEXTO */
.contenido-fortaleza {

    padding-left: 50px;
}

/* MINI TITULO */
.linea {

    position: relative;

    padding-left: 70px;
}

.linea::before {

    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 50px;
    height: 2px;

    background: #2563eb;
}

/* TITULO */
.titulo-fortaleza {

    font-size: clamp(2.5rem, 5vw, 5rem);

    font-weight: 800;

    line-height: 1.05;

    color: #ffffff;

    margin: 30px 0;
}

/* DESCRIPCION */
.descripcion-fortaleza {

    font-size: 1.15rem;

    line-height: 1.9;

    color: #b8b8b8;

    max-width: 550px;

    margin-bottom: 50px;
}

/* LISTA */
.lista-fortalezas {

    display: flex;

    flex-direction: column;

    gap: 25px;
}

.item-fortaleza {

    font-size: 1.05rem;

    color: #ffffff;

    font-weight: 500;
}

@media (max-width: 992px) {

    .contenido-fortaleza {

        padding-left: 0;
    }

    .fortaleza-visual {

        height: 500px;
    }

    .card-floating {

        width: 85%;

        left: 25px;
        top: 25px;
    }

}

/* =========================
   ELEGIRNOS
========================= */

.elegirnos {
    padding: 120px 0;
    background: #020617;
}

.elegirnos-header {
    max-width: 750px;
    margin: auto;
}

.linea-centro {
    position: relative;
    display: inline-block;
    color: #2f80ed;
    font-weight: 600;
    margin-bottom: 25px;
}

.linea-centro::before {
    content: "";
    width: 45px;
    height: 2px;
    background: #2f80ed;
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.titulo-elegirnos {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 35px;
}

.descripcion-elegirnos {
    font-size: 20px;
    line-height: 1.9;
    color: #b8b8b8;
}

/* CARDS */

.card-elegirnos {
    padding: 50px;
    height: 100%;
    margin: 1rem;
    border-right: 1px solid #0b1225;
    border-radius: 1rem;
    transition: .4s;
    background: var(--bg-card);
}

.card-elegirnos:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.icono-elegirnos {
    width: 70px;
    height: 70px;
    background: #2f80ed;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 30px;
}

.card-elegirnos h3 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 25px;
    color: #ffffff;
}

.card-elegirnos p {
    color: #b8b8b8;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.card-elegirnos a {
    text-decoration: none;
    color: #2f80ed;
    font-weight: 600;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .titulo-elegirnos {
        font-size: 42px;
    }

    .card-elegirnos {
        border-right: none;
        border-bottom: 1px solid #0b1225;
    }

}



/*/////////////////////// SOLUCIONES ///////////////////////*/

/* =========================
   SERVICES XN
========================= */

.services-xn {
    padding: 120px 0;
    background: #020617;
    ;
}

.services-header {
    max-width: 900px;
    margin: auto;
}

.mini-service {
    display: inline-block;
    color: #4aa8ea;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 14px;
}

.titulo-services {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 30px;
}

.descripcion-services {
    font-size: 19px;
    color: #b8b8b8;
    line-height: 1.9;
}

/* CARDS */

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    height: 540px;
    transition: .5s;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .82),
            rgba(0, 0, 0, .2));

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 45px;
    color: white;
    transition: .5s;
}

.service-overlay span {
    color: #78c4ff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.service-overlay h3 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 18px;
}

.service-overlay p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 25px;
}

.service-overlay a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.service-overlay a:hover {
    color: #78c4ff;
}

/* HOVER */

.service-card:hover img {
    transform: scale(1.08);
}

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

/* RESPONSIVE */

@media(max-width:992px) {

    .titulo-services {
        font-size: 38px;
    }

    .service-card {
        height: 450px;
    }

}

/* =========================
   SOLUCIONES TX
========================= */

/* =========================
   HERO TX
========================= */

.hero-tx {
    position: relative;
    min-height: 120vh;
    background-image: url('../img/hero_tx.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.overlay-tx {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.178);
}

.contenido-tx {
    position: relative;
    z-index: 2;
    margin-top: 6rem;
    max-width: 800px;
    color: white;
}

.mini-tx {
    color: #ffffff;
    font-weight: 700;
    margin-top: 6rem;
    letter-spacing: 2px;
    font-size: 14px;
}

.contenido-tx h1 {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
}

.contenido-tx p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 30px;
}

.btn-tx {
    border: 1px solid white;
    border-radius: 40px;
    padding: 12px 30px;
    color: white;
}

.btn-tx:hover {
    background: white;
    color: black;
}


/* =========================
   DESCRIPCION
========================= */

.descripcion-tx {
    padding: 20px 0;
    background: #020617;
}

.img-tx {
    margin-top: 0rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.mini-section {
    color: #5AA9E6;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
}

.titulo-tx {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin: 25px 0;
    color: #ffffff;
}

.texto-tx {
    font-size: 19px;
    line-height: 1.9;
    color: #cacaca;
}

.lista-tx {
    margin-top: 35px;
}

.item-tx {
    margin-bottom: 18px;
    font-size: 18px;
    color: #cfcfcf;
}

/* =========================
   FEATURES
========================= */

.features-tx {
    padding: 50px 0;
    background: #020617;
}

.titulo-center {
    font-size: 54px;
    font-weight: 800;
    color: #ffffff;
}

.feature-card {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: .4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #56a8ff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.feature-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.feature-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #cacaca;
}

/* =========================
   METRICAS
========================= */

.metricas-tx {
    position: relative;

    padding: 100px 0;

    background:
    url('../img/fondo_metrica.png');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.metrica h2 {
    font-size: 72px;
    font-weight: 800;
    color: #5AA9E6;
}

.metrica p {
    color: white;
    font-size: 20px;
}

.metrica-section {
    color: #5AA9E6;
    padding: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
}

/* =========================
   CTA
========================= */

.cta-tx {
    padding: 60px 0;
    background: linear-gradient(135deg,
            #040b29,
            #08113a);
    color: white;
}

.cta-tx h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
}

.cta-tx p {
    font-size: 18px;
    max-width: 850px;
    margin: auto;
    margin-bottom: 40px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px) {

    .contenido-tx h1 {
        font-size: 46px;
    }

    .titulo-tx,
    .titulo-center,
    .cta-tx h2 {
        font-size: 38px;
    }

}

/* =========================================
   DETALLE SERVICIOS TX
========================================= */

.detalle-servicios {
    padding: 50px 0;
    background:
        linear-gradient(rgba(2, 6, 23, .92), rgba(2, 6, 23, .92));
}

.titulo-detalle {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 30px;
}

.texto-detalle {
    font-size: 19px;
    line-height: 1.9;
    color: #d0d1d1;
    margin-bottom: 25px;
}

.info-box-tx {
    background: #040b29;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
    border: 1px solid rgba(0, 0, 0, .04);
}

.info-item {
    font-size: 20px;
    color: #f1f1f1;
    margin-bottom: 22px;
    font-weight: 500;
}

/* =========================================
   FUNCIONALIDADES AVANZADAS
========================================= */

.funcionalidades-avanzadas {
    padding: 50px 0;
    background:
        linear-gradient(rgba(2, 6, 23, .92), rgba(2, 6, 23, .92));
    background-size: cover;
    background-position: center;
}

.funcionalidades-avanzadas .titulo-center {
    color: white;
}

.func-card {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: .4s;
}

.func-card:hover {
    transform: translateY(-10px);
    border-color: #56a8ff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.func-card h4 {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.func-card p {
    color: #cacaca;
    line-height: 1.8;
    font-size: 17px;
}

/* =========================================
   PRODUCTOS TX
========================================= */

.productos-tx {
    padding: 50px 0;
    background:
        linear-gradient(rgba(2, 6, 23, .92), rgba(2, 6, 23, .92));
}

.producto-card {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: .4s;
}

.producto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    border-color: #56a8ff;
}

.producto-card h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.producto-card p {
    color: #cacaca;
    ;
    line-height: 1.9;
    font-size: 17px;
}

/* =========================================
   BENEFICIOS
========================================= */

.beneficios-tx {
    padding: 50px 0;
    background: #020617;
}

.beneficio-card {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: .4s;
}

.beneficio-card:hover {
    transform: translateY(-10px);
    border-color: #56a8ff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.beneficio-card h4 {
    font-size: 25px;
    color: #ffffff;
    margin-bottom: 18px;
    font-weight: 700;
}

.beneficio-card p {
    color: #cacaca;
    line-height: 1.8;
    font-size: 16px;
}

/* =========================================
   TITULOS GENERALES
========================================= */

.titulo-center {
    font-size: 54px;
    font-weight: 800;
    color: #ffffff;
    margin-top: 15px;
}

.mini-section {
    color: #56a8ff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
}

/* =========================
   EFECTO VIBRACION CTA
========================= */

.btn-vibrar {
    transition: transform .2s ease;
}

/* animacion */

@keyframes vibrarBoton {

    0% {
        transform: translateX(0);
    }

    15% {
        transform: translateX(-4px);
        transform: translateY(-4px);
    }

    30% {
        transform: translateX(4px);
        transform: translateY(6px);
    }

    45% {
        transform: translateX(-4px);
        transform: translateY(-2px);
    }

    60% {
        transform: translateX(4px);
        transform: translateY(4px);
    }

    75% {
        transform: translateX(-2px);
        transform: translateY(0px);
    }

    100% {
        transform: translateX(0);
        transform: translateY(2px)
    }

}

/* clase que activa vibracion */

.vibrando {
    animation: vibrarBoton 0.5s ease;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 991px) {

    .titulo-detalle,
    .titulo-center {
        font-size: 38px;
    }

    .texto-detalle {
        font-size: 17px;
    }

    .info-box-tx {
        padding: 35px;
    }

    .func-card,
    .producto-card,
    .beneficio-card {
        padding: 30px;
    }

}

/*///////////////////
SOLUCIONES INFRAESTRUCTURA
///////////////////*/

/* HERO */

.hero-it {
    position: relative;
    min-height: 100vh;
    background: url('../img/hero-it.jpg') center/cover;
    display: flex;
    align-items: center;
}

.overlay-it {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.contenido-it {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.mini-it {
    display: inline-block;
    background: rgba(0, 195, 255, 0.15);
    color: #00c3ff;
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 14px;
    letter-spacing: 1px;
}

.contenido-it h1 {
    font-size: 62px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.contenido-it p {
    font-size: 20px;
    color: #cfcfcf;
    margin-bottom: 35px;
}

/* SECCIONES */

section {
    padding: 110px 0;
}

.mini-section {
    color: #00c3ff;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.titulo-it,
.titulo-detalle,
.titulo-center {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 25px;
}

.texto-it,
.texto-detalle {
    color: #bcbcbc;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* IMG */

.img-it {
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* LISTA */

.lista-it {
    margin-top: 30px;
}

.item-it {
    background: #0f1728;
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* INFO */

.info-box-it {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-item {
    background: #0f1728;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.info-item:hover {
    transform: translateX(10px);
    border-color: #00c3ff;
}

/* FEATURES */

.feature-card,
.func-card {
    background: #0f1728;
    padding: 40px;
    border-radius: 24px;
    height: 100%;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover,
.func-card:hover {
    transform: translateY(-10px);
    border-color: #00c3ff;
    box-shadow: 0 20px 40px rgba(0, 195, 255, 0.1);
}

.feature-card h3,
.func-card h4 {
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-card p,
.func-card p {
    color: #bdbdbd;
    line-height: 1.7;
}

/* METRICAS */

.metricas-it {
    background: url('../img/fondo_metrica.png') center/cover;
}

.metrica-section {
    color: #00c3ff;
    margin-bottom: 60px;
    display: block;
    letter-spacing: 2px;
}

.metrica h2 {
    font-size: 70px;
    font-weight: 900;
    color: #00c3ff;
}

.metrica p {
    color: #cfcfcf;
}

/* CTA */

.cta-it {
    background: linear-gradient(135deg, #071120, #0a1d35);
    text-align: center;
}

.cta-it h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
}

.cta-it p {
    max-width: 800px;
    margin: auto;
    color: #bcbcbc;
    margin-bottom: 35px;
    line-height: 1.8;
}

/* BOTON VIBRAR */

@keyframes vibrar {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    50% {
        transform: translateX(3px);
    }

    75% {
        transform: translateX(-3px);
    }

    100% {
        transform: translateX(0);
    }
}

.vibrando {
    animation: vibrar 0.4s linear;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .contenido-it h1 {
        font-size: 44px;
    }

    .titulo-it,
    .titulo-detalle,
    .titulo-center {
        font-size: 34px;
    }

    .cta-it h2 {
        font-size: 38px;
    }

}

@media(max-width:768px) {

    .contenido-it h1 {
        font-size: 36px;
    }

    .contenido-it p {
        font-size: 17px;
    }

    section {
        padding: 80px 0;
    }

}

/*SELECTOR DE IDIOMA*/

.language-selector {
    display: flex;
    margin: 8px;
    gap: 8px;
}

.language-selector button {
    border: none;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    transition: .3s;
    font-size: 13px;
}

.language-selector button:hover {
    background: #00c2ff;
    transform: translateY(-2px);
}


/* ==========================
   TIMELINE HOME
========================== */

.timeline-home{
    padding:100px 0;
    background:#071120;
    position:relative;
}

.timeline-home h2{
    color:white;
    font-weight:500;
    margin-bottom:10px;
}

/* SCROLL */

.timeline-scroll{
    overflow-x:auto;
    overflow-y:visible;
    padding-bottom:20px;
}

.timeline-scroll::-webkit-scrollbar{
    height:8px;
}

.timeline-scroll::-webkit-scrollbar-thumb{
    background:#2563eb;
    border-radius:20px;
}

/* CONTENEDOR GENERAL */

.timeline-track{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    min-width:1100px;

    position:relative;

    padding-top:50px;
}

/* LINEA */

.timeline-track::before{
    content:"";
    position:absolute;

    top:25px;
    left:0;
    right:0;

    height:4px;

    background:linear-gradient(
        90deg,
        #2563eb,
        #60a5fa,
        #2563eb
    );

    box-shadow:
        0 0 20px rgba(37,99,235,.5);
}

/* ITEM */

.timeline-event{
    position:relative;

    flex:1;
    max-width:220px;
    top:10px;
    padding:10px;

    text-align:center;

    transition:.3s ease;
}

/* PUNTO */

.timeline-event::before{
    content:"";

    position:absolute;

    left:50%;
    top:-40px;

    transform:translateX(-50%);

    width:18px;
    height:18px;

    border-radius:50%;

    background:#60a5fa;

    box-shadow:
        0 0 0 8px rgba(96,165,250,.15),
        0 0 20px rgba(96,165,250,.7);
}

/* HOVER */

.timeline-event:hover{
    background: #112a4e;
    border-radius: 10%;
}

/* TEXTO */
.timeline-event span{
    color:#60a5fa;
    font-weight:700;
    display:block;
    margin-bottom:10px;
}

.timeline-event h5{
    color:white;
    font-weight:700;
    margin-bottom:10px;
    font-size:1.1rem;
}

.timeline-event p{
    color:rgba(255,255,255,.7);
    font-size:.9rem;
    line-height:1.6;
}


/* RESPONSIVE */

@media(max-width:992px){

    .timeline-track{
        gap:60px;
        justify-content:flex-start;
    }

    .timeline-event{
        flex:none;
        width:220px;
        max-width:none;
    }

}

@media(max-width:768px){

    .timeline-home{
        padding:90px 0;
    }

    .timeline-event{
        width:200px;
    }

    .timeline-event h5{
        font-size:1rem;
    }

    .timeline-event p{
        font-size:.85rem;
    }

}

:root {

    /* MODO CLARO */

    --bg-main: #f5f7fb;
    --bg-section: #ffffff;
    --bg-card: #edf2f7;

    --text-main: #111827;
    --text-secondary: #4b5563;

    --navbar-bg: rgba(255,255,255,.85);

    --border-color: rgba(0,0,0,.08);

    --accent: #2563eb;
}

[data-theme="dark"] {

    /* MODO OSCURO */

    --bg-main: #020617;
    --bg-section: #050816;
    --bg-card: #0b1225;

    --text-main: #ffffff;
    --text-secondary: #b8b8b8;

    --navbar-bg: rgba(23,32,158,.45);

    --border-color: rgba(255,255,255,.08);

    --accent: #56a8ff;
}

.theme-btn {
    background: transparent;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    margin-right: 15px;
    transition: transform 0.2s;
}

.theme-btn:hover {
    transform: scale(1.1);
}