/* =========================
   SOLUCIONES LOGISTICAS CSS
========================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

body{
    font-family: 'Inter', sans-serif;
    background: #020617;
    color: #fff;
    overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */

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

.hero-logistica{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(2, 6, 23, 0.123)),
        url('../img/fondo_logistica.jpg') center/cover no-repeat;
}

.overlay-logistica{
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right,
        rgba(59,130,246,.22),
        transparent 40%);
}

.contenido-logistica{
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.mini-logistica{
    display: inline-block;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: 3px;
    font-size: .85rem;
    font-weight: 700;
}

.contenido-logistica h1{
    font-size: 4.2rem;
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 24px;
}

.contenido-logistica p{
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255,255,255,.75);
    max-width: 650px;
    margin-bottom: 35px;
}

/* =========================
   SECCIONES
========================= */

.descripcion-logistica,
.detalle-logistica,
.features-logistica,
.metricas-logistica,
.beneficios-logistica,
.cta-logistica{
    position: relative;
    padding: 120px 0;
}

.descripcion-logistica{
    background: linear-gradient(to bottom,#020617,#071226);
}

.detalle-logistica{
    background: #020817;
}

.features-logistica{
    background: linear-gradient(to bottom,#071226,#08162c);
}

.metricas-logistica{
    position: relative;

    padding: 100px 0;

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

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

.beneficios-logistica{
    background: #020617;
}

.cta-logistica{
    background:
        linear-gradient(rgba(2,6,23,.84), rgba(2,6,23,.9)),
        url('../img/logistica-cta.jpg') center/cover no-repeat;
}

/* =========================
   TEXTOS
========================= */

.mini-section,
.metrica-section{
    display: inline-block;
    margin-bottom: 20px;
    color: #60a5fa;
    letter-spacing: 3px;
    font-size: .82rem;
    font-weight: 800;
}

.titulo-logistica,
.titulo-detalle,
.titulo-center,
.cta-logistica h2{
    font-size: 3rem;
    line-height: 1.12;
    font-weight: 900;
    margin-bottom: 28px;
}

.texto-logistica,
.texto-detalle,
.cta-logistica p{
    color: rgba(255,255,255,.72);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* =========================
   IMAGENES
========================= */

.img-logistica{
    border-radius: 28px;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.45);
    transition: .5s ease;
}

.img-logistica:hover{
    transform: scale(1.03);
}

/* =========================
   LISTAS
========================= */

.lista-logistica,
.info-box-logistica{
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 35px;
}

.item-logistica,
.info-item{
    padding: 22px 24px;
    border-radius: 18px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.88);
    font-weight: 500;
    transition: .35s ease;
    backdrop-filter: blur(8px);
}

.item-logistica:hover,
.info-item:hover{
    transform: translateX(8px);
    border-color: rgba(59,130,246,.45);
    background: rgba(59,130,246,.08);
}

/* =========================
   CARDS
========================= */

.feature-card,
.beneficio-card{
    height: 100%;
    padding: 45px 35px;
    border-radius: 28px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.05);
    transition: .4s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
}

.feature-card::before,
.beneficio-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(59,130,246,.15),
        transparent 50%
    );
    opacity: 0;
    transition: .4s ease;
}

.feature-card:hover::before,
.beneficio-card:hover::before{
    opacity: 1;
}

.feature-card:hover,
.beneficio-card:hover{
    transform: translateY(-10px);
    border-color: rgba(59,130,246,.3);
    box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

.feature-card h3,
.beneficio-card h4{
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.feature-card p,
.beneficio-card p{
    color: rgba(255,255,255,.7);
    line-height: 1.8;
}

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

.metrica{
    margin-top: 40px;
}

.metrica h2{
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 25px rgba(59,130,246,.35);
}

.metrica p{
    color: rgba(255,255,255,.72);
    font-size: 1.05rem;
}

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

.cta-logistica .container{
    max-width: 900px;
}

.cta-logistica h2{
    margin-bottom: 25px;
}

.cta-logistica p{
    max-width: 760px;
    margin: auto auto 35px;
}

/* =========================
   FOOTER
========================= */

.footer{
    padding: 45px 0;
    background: #01040f;
    border-top: 1px solid rgba(255,255,255,.05);
}

.footer h3{
    font-weight: 900;
    margin-bottom: 10px;
}

.footer p{
    color: rgba(255,255,255,.6);
    margin-bottom: 8px;
}

/* =========================
   BOTON VIBRACION
========================= */

@keyframes vibrar {

    0%{ transform: translateX(0); }

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

    40%{ transform: translateX(4px); }

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

    80%{ transform: translateX(4px); }

    100%{ transform: translateX(0); }

}

.vibrando{
    animation: vibrar .5s ease;
}

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

@media(max-width: 991px){

    .contenido-logistica h1{
        font-size: 3rem;
    }

    .titulo-logistica,
    .titulo-detalle,
    .titulo-center,
    .cta-logistica h2{
        font-size: 2.3rem;
    }

    .navbar-nav{
        margin-top: 25px;
        margin-bottom: 25px;
    }

}

@media(max-width: 768px){

    .hero-logistica{
        text-align: center;
        padding-top: 130px;
    }

    .contenido-logistica{
        margin: auto;
    }

    .contenido-logistica h1{
        font-size: 2.3rem;
    }

    .titulo-logistica,
    .titulo-detalle,
    .titulo-center,
    .cta-logistica h2{
        font-size: 2rem;
    }

    .metrica h2{
        font-size: 3.5rem;
    }

    .descripcion-logistica,
    .detalle-logistica,
    .features-logistica,
    .metricas-logistica,
    .beneficios-logistica,
    .cta-logistica{
        padding: 90px 0;
    }

}

@media(max-width: 576px){

    .contenido-logistica h1{
        font-size: 2rem;
    }

    .contenido-logistica p{
        font-size: 1rem;
    }

    .feature-card,
    .beneficio-card{
        padding: 35px 25px;
    }

}