@charset "UTF-8";
/*====================================================
    LCOMP CUSTOM STYLES
====================================================*/

/*====================================================
    LCOMP FEATURE CARDS
====================================================*/

.tv-feature-box .border{
    border-color:rgba(255,255,255,.18)!important;
}

.feature-tags{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin-top:12px;
}

.feature-tags span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 14px;
    font-size:13px;
    line-height:1;
    color:#fff;
    border:1px solid rgba(255,255,255,.20);
    border-radius:30px;
    background:rgba(255,255,255,.05);
    transition:.30s;
}

.feature-tags span:hover{
    background:#fff;
    color:#2457F5;
    border-color:#fff;
}

.tv-feature-box{
    height:100%;
    display:flex;
    flex-direction:column;
}

.tv-feature-box p{
    min-height:105px;
}

/* =========================================================
   WHY LCOMP CARDS
========================================================= */

.lcomp-why-card {
    position: relative;
    height: 100%;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 28px;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.lcomp-why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.85);

    box-shadow:
        0 26px 55px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Imagen */
.lcomp-why-image {
    position: relative;
    height: 310px;
    margin: 18px 18px 0;
    overflow: hidden;

    background: #e9eef7;
    border-radius: 21px;
}

/* Anula cualquier pseudo-elemento heredado */
.lcomp-why-image::before,
.lcomp-why-image::after,
.lcomp-why-card::before,
.lcomp-why-card::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

.lcomp-why-image img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter: none;
    opacity: 1;
    transform: scale(1);

    transition: transform 0.5s ease;
}

.lcomp-why-card:hover .lcomp-why-image img {
    transform: scale(1.04);
}

/* Caja de texto */
.lcomp-why-content {
    position: relative;
    z-index: 2;

    width: calc(100% - 64px);
    min-height: 145px;
    margin: -46px auto 18px;
    padding: 24px 26px;

    text-align: center;

    background: #f4f7fd;
    border-radius: 20px;

    box-shadow: 0 12px 28px rgba(6, 17, 83, 0.14);
}

.lcomp-why-content h3 {
    margin: 0 0 12px;

    color: #07175f;
    font-size: 23px;
    line-height: 1.2;
    font-weight: 700;
}

.lcomp-why-content p {
    margin: 0;

    color: #536078;
    font-size: 15px;
    line-height: 1.65;
}

/* Responsive */
@media (max-width: 1199px) {
    .lcomp-why-image {
        height: 290px;
    }
}

@media (max-width: 767px) {
    .lcomp-why-card {
        max-width: 460px;
        margin: 0 auto;
    }

    .lcomp-why-image {
        height: 260px;
    }

    .lcomp-why-content {
        width: calc(100% - 42px);
        margin-top: -36px;
        padding: 21px 20px;
    }

    .lcomp-why-content h3 {
        font-size: 21px;
    }
}

/*=========================================================
LCOMP - PROBLEMAS
=========================================================*/

.lcomp-problems-section{

    padding:110px 0;

    background:#ffffff;

}

.lcomp-section-title h2{

    font-size:48px;

    font-weight:700;

    color:#091B4B;

    margin-bottom:15px;

}

.lcomp-section-title p{

    font-size:19px;

    color:#6D7B98;

    margin-bottom:35px;

}

.problem-card{

    display:flex;

    align-items:center;

    gap:18px;

    height:100%;

    min-height:110px;

    padding:28px;

    background:#F8FBFF;

    border:1px solid #E6EEF8;

    border-radius:18px;

    transition:.35s;

    box-shadow:0 10px 30px rgba(18,45,95,.06);

}

.problem-card img{

    width:42px;

    height:42px;

    transition:.35s;

}

.problem-card span{

    font-size:17px;

    font-weight:600;

    color:#142B57;

    line-height:1.45;

    transition:.35s;

}

.problem-card:hover{

    transform:translateY(-8px);

    background:#2454F6;

    border-color:#2454F6;

    box-shadow:0 18px 45px rgba(36,84,246,.30);

}

.problem-card:hover span{

    color:white;

}

.problem-card:hover img{

    filter:brightness(0) invert(1);

}

.problems-second-row{

    margin-left:35px;

}

@media(max-width:991px){

.problems-second-row{

margin-left:0;

}

}

@media(max-width:768px){

.lcomp-section-title h2{

font-size:34px;

}

.problem-card{

padding:22px;

min-height:95px;

}

.problem-card span{

font-size:16px;

}

}

/*==================================================
LCOMP SECTORS
==================================================*/

.lcomp-sectors-section{

    padding:100px 0;

    background:#fff;

}

.lcomp-sectors-grid{

    display:grid;

    grid-template-columns:repeat(7,1fr);

    gap:22px;

    margin-top:45px;

}

.sector-card{

    display:block;

    overflow:hidden;

    text-decoration:none;

    background:#fff;

    border:1px solid #EDF2FA;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(18,45,95,.06);

    transition:.35s;

}

.sector-card img{

    width:100%;

    height:120px;

    object-fit:cover;

    transition:.4s;

}

.sector-card span{

    display:block;

    padding:18px;

    text-align:center;

    font-weight:700;

    color:#132A58;

    transition:.35s;

}

.sector-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(36,84,246,.18);

}

.sector-card:hover img{

    transform:scale(1.08);

}

.sector-card:hover span{

    color:#2454F6;

}

@media(max-width:1400px){

.lcomp-sectors-grid{

grid-template-columns:repeat(4,1fr);

}

}

@media(max-width:991px){

.lcomp-sectors-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.lcomp-sectors-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:480px){

.lcomp-sectors-grid{

grid-template-columns:1fr;

}

}

/*==================================================
LCOMP - TECNOLOGÍAS Y PARTNERS
==================================================*/

.lcomp-partners-section {
    padding: 95px 0;
    background: #ffffff;
}

.lcomp-partners-title {
    max-width: 820px;
    margin: 0 auto 52px;
}

.lcomp-partners-title h2 {
    margin-bottom: 14px;
    color: #07175f;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
}

.lcomp-partners-title p {
    margin: 0;
    color: #6d7890;
    font-size: 18px;
    line-height: 1.65;
}

.lcomp-partners-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
}

.lcomp-partner-logo{

    display:flex;
    justify-content:center;
    align-items:center;

    background:#fff;

    border-radius:18px;

    min-height:110px;

    border:1px solid #edf2fb;

    transition:.35s;

}

.lcomp-partner-logo img{

    display:block;

    width:auto;
    max-width:100%;
    height:auto;
    max-height:60px;

    object-fit:contain;

    transition:.35s;

}

.lcomp-partner-logo:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

    border-color:#2f63ff;

}

.lcomp-partner-logo:hover img{

    transform:scale(1.06);

}

/* Responsive */

@media (max-width: 1199px) {
    .lcomp-partners-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .lcomp-partners-section {
        padding: 72px 0;
    }

    .lcomp-partners-title {
        margin-bottom: 38px;
    }

    .lcomp-partners-title h2 {
        font-size: 34px;
    }

    .lcomp-partners-title p {
        font-size: 16px;
    }

    .lcomp-partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .lcomp-partner-logo {
        min-height: 102px;
        padding: 20px 16px;
    }

    .lcomp-partner-logo img {
        max-height: 38px;
    }
}

@media (max-width: 420px) {
    .lcomp-partners-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MENU PRINCIPAL ===== */

.main-menu ul.navigation > li > a{
    font-size:17px !important;
    font-weight:600;
    letter-spacing:0.3px;
    padding:35px 0 !important;
}

.main-menu ul.navigation > li{
    margin:0 18px;
}

/* ===== Footer ===== */

.footer-description{
    color:#c9d2f1;
    font-size:16px;
    line-height:1.8;
    margin:22px 0 35px;
    max-width:340px;
}


/*==================================================
    LEGAL PAGES
==================================================*/

.legal-hero{

    background:linear-gradient(135deg,#07153f 0%,#0b2d87 100%);

    padding:110px 0 90px;

    text-align:center;

}

.legal-hero-content{

    color:#fff;

}

.legal-badge{

    display:inline-block;

    background:rgba(255,255,255,.12);

    color:#fff;

    padding:8px 18px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

    margin-bottom:25px;

}

.legal-hero h1{

    color:#fff;

    font-size:64px;

    font-weight:800;

    margin-bottom:20px;

}

.legal-hero p{

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

    font-size:21px;

    line-height:1.8;

    margin:auto;

    max-width:850px;

}

.legal-section{

    background:#f4f7fc;

    padding:90px 0;

}

.legal-box{

    background:#fff;

    border-radius:22px;

    padding:70px;

    box-shadow:0 20px 60px rgba(0,0,0,.06);

}

.legal-update{

    display:inline-block;

    background:#eef4ff;

    color:#2458F6;

    padding:12px 18px;

    border-radius:10px;

    margin-bottom:40px;

    font-size:15px;

}

.legal-box h2{

    font-size:34px;

    color:#07153f;

    margin-bottom:25px;

    margin-top:55px;

    font-weight:700;

}

.legal-box h2:first-of-type{

    margin-top:0;

}

.legal-box p{

    font-size:17px;

    line-height:2;

    color:#5d6477;

    margin-bottom:20px;

}

.legal-box ul{

    margin-top:20px;

    margin-bottom:30px;

    padding-left:22px;

}

.legal-box li{

    font-size:17px;

    line-height:2;

    color:#5d6477;

}

.legal-box hr{

    margin:55px 0;

    border:none;

    border-top:1px solid #eceff6;

}

.legal-box a{

    color:#2458F6;

    font-weight:600;

}

.legal-box a:hover{

    text-decoration:underline;

}

@media(max-width:768px){

.legal-hero{

    padding:70px 0;

}

.legal-hero h1{

    font-size:42px;

}

.legal-hero p{

    font-size:17px;

}

.legal-box{

    padding:35px;

}

.legal-box h2{

    font-size:28px;

}

}

/*==================================================
    CONTACTO - LCOMP
==================================================*/

.contact-card{

    background:#ffffff;

    border-radius:22px;

    padding:50px;

    box-shadow:0 20px 55px rgba(15,23,42,.06);

    border:1px solid #edf2f7;

}

.contact-card .title{

    margin-bottom:15px;

}

.contact-card p{

    color:#667085;

    line-height:1.8;

}


/*==================================================
    COLUMNA IZQUIERDA
==================================================*/

.contact-company{

    margin-top:45px;

}

.contact-company h4{

    font-size:24px;

    margin-bottom:22px;

    color:#101828;

}

.contact-company ul{

    margin:0;

    padding:0;

    list-style:none;

}

.contact-company li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:16px;

    color:#475467;

    font-size:16px;

}

.contact-company li i{

    color:#2458f6;

    margin-top:5px;

}


.contact-location{

    margin-top:40px;

    padding-top:30px;

    border-top:1px solid #edf2f7;

}

.contact-location h4{

    margin-bottom:15px;

    font-size:22px;

}

.contact-location p{

    margin:0;

    color:#667085;

    line-height:1.8;

}

.contact-location strong{

    color:#101828;

}


/*==================================================
    METODOS CONTACTO
==================================================*/

.contact-method{

    display:flex;

    gap:22px;

    align-items:flex-start;

    padding:22px 0;

    border-bottom:1px solid #edf2f7;

}

.contact-method:last-of-type{

    border-bottom:none;

}

.method-icon{

    width:58px;

    height:58px;

    border-radius:50%;

    background:#2458f6;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#ffffff;

    font-size:22px;

    flex-shrink:0;

}

.contact-method h5{

    margin-bottom:6px;

    font-size:18px;

    font-weight:700;

    color:#101828;

}

.contact-method a{

    color:#2458f6;

    font-weight:600;

    text-decoration:none;

}

.contact-method a:hover{

    text-decoration:underline;

}

.contact-method p{

    margin:0;

}


/*==================================================
    REUNION ONLINE
==================================================*/

.contact-meeting{

    margin-top:40px;

    padding:28px;

    background:#f8faff;

    border-left:4px solid #2458f6;

    border-radius:14px;

}

.contact-meeting h4{

    margin-bottom:12px;

    font-size:22px;

}

.contact-meeting p{

    margin:0;

}


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

.contact-benefits{

    margin-top:35px;

}

.benefit{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:14px;

    font-size:16px;

    color:#475467;

}

.benefit i{

    color:#2458f6;

}


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

.contact-actions{

    margin-top:40px;

}

.contact-actions .theme-btn{

    width:100%;

    justify-content:center;

}


/*==================================================
    REDES
==================================================*/

.social-links{

    margin-top:45px;

}


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

@media(max-width:991px){

.contact-card{

    margin-top:35px;

    padding:35px;

}

.contact-method{

    gap:16px;

}

.method-icon{

    width:50px;

    height:50px;

    font-size:18px;

}

}

@media(max-width:576px){

.contact-card{

    padding:28px;

}

.contact-company h4,

.contact-location h4,

.contact-meeting h4{

    font-size:20px;

}

.contact-method{

    flex-direction:column;

}

.method-icon{

    margin-bottom:5px;

}

}

/*==================================================
    ERROR 404
==================================================*/

.error-links{

    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:14px;

}

.error-links span{

    color:#c5cad7;

}

.error-links a{

    color:#0f2d7d;
    font-weight:600;
    transition:.25s;

}

.error-links a:hover{

    color:#2458F6;

}