/* ================================================
   LT Group - Estilos de Secciones
   ================================================ */

/* ---- FUENTES ---- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;600;700;900&display=swap');

/* ================================================
   SECCIÓN 1: About / Imagen + Texto
   ================================================ */
.lt-about-section {
    font-family: 'DM Sans', sans-serif;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    box-sizing: border-box;
}

.lt-about-section .lt-about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.lt-about-section .lt-about-inner .lt-about-img-col {
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
    align-self: stretch;
}

.lt-about-section .lt-about-inner .lt-about-img-col .lt-about-img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.lt-about-section .lt-about-inner .lt-about-text-col {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
}

.lt-about-section .lt-about-inner .lt-about-text-col .lt-about-eyebrow {
    font-size: 20px;
    font-weight: 400;
    color: #006CB4;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.lt-about-section .lt-about-inner .lt-about-text-col .lt-about-heading {
    font-size: 36px;
    font-weight: 700;
    color: #005EAD;
    line-height: 1.2;
    margin: 0 0 18px 0;
    font-family: 'DM Sans', sans-serif;
}

.lt-about-section .lt-about-inner .lt-about-text-col .lt-about-body {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.8;
    margin: 0 0 22px 0;
    text-align: justify;
}

.lt-about-section .lt-about-inner .lt-about-text-col a.lt-about-btn,
.lt-about-section .lt-about-inner .lt-about-text-col a.lt-about-btn:link,
.lt-about-section .lt-about-inner .lt-about-text-col a.lt-about-btn:visited,
.lt-about-section .lt-about-inner .lt-about-text-col a.lt-about-btn:hover,
.lt-about-section .lt-about-inner .lt-about-text-col a.lt-about-btn:focus,
.lt-about-section .lt-about-inner .lt-about-text-col a.lt-about-btn:active {
    display: inline-block !important;
    margin-top: 6px !important;
    padding: 11px 26px !important;
    background: #f0f0f0 !important;
    background-color: #f0f0f0 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #005EAD !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    cursor: pointer !important;
    align-self: flex-start !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    border-radius: 10px;
}

/* Responsive - Sección 1 */
@media (max-width: 991px) {
    .lt-about-section .lt-about-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lt-about-section .lt-about-inner .lt-about-img-col {
        max-height: 320px;
    }

    .lt-about-section .lt-about-inner .lt-about-text-col .lt-about-heading {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .lt-about-section {
        padding: 30px 15px;
    }

    .lt-about-section .lt-about-inner .lt-about-text-col .lt-about-heading {
        font-size: 22px;
    }

    .lt-about-section .lt-about-inner .lt-about-text-col .lt-about-body {
        font-size: 14px;
    }
}

/* ================================================
   SECCIÓN 2: Contenedores / Tarjetas
   ================================================ */
.lt-contenedores-section {
    font-family: 'DM Sans', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
    box-sizing: border-box;
}

.lt-contenedores-section .lt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.lt-contenedores-section .lt-col-horizontal {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 100%;
    min-height: 0;
}

.lt-contenedores-section .lt-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.lt-contenedores-section .lt-card-wrapper {
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.lt-contenedores-section .lt-card-img-wrapper {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    display: flex;
    position: relative;
}

.lt-contenedores-section .lt-card.vertical .lt-card-img-wrapper {
    flex: 1;
    min-height: 0;
}

.lt-contenedores-section .lt-card.horizontal {
    flex: 1;
}

.lt-contenedores-section .lt-card.horizontal .lt-card-img-wrapper {
    flex: 1;
    min-height: 0;
}

.lt-contenedores-section .lt-card-img-wrapper picture {
    width: 100%;
    height: 100%;
    display: block;
}

.lt-contenedores-section .lt-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lt-contenedores-section .lt-card-content {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    margin-top: -45px;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 15px;
    flex-shrink: 0;
}

.lt-contenedores-section .lt-card.vertical .lt-card-content {
    height: 180px;
}

.lt-contenedores-section .lt-card.horizontal .lt-card-content {
    height: 180px;
}

.lt-contenedores-section .lt-card-texts {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.lt-contenedores-section .lt-card-title {
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-align: left;
}

.lt-contenedores-section .lt-card-text {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

.lt-contenedores-section .lt-card-logo {
    width: 65px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    align-self: center;
}

.lt-contenedores-section .lt-section-header {
    margin-bottom: 30px;
    text-align: left;
}

.lt-contenedores-section .lt-section-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 34px;
    color: #005EAD;
    margin: 0 0 10px 0;
    font-family: 'DM Sans', sans-serif;
}

.lt-contenedores-section .lt-section-subtitle {
    font-size: 21px;
    font-weight: 400;
    line-height: 24px;
    color: #333333;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}

/* Responsive - Sección 2 */
@media (max-width: 991px) {
    .lt-contenedores-section .lt-section-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .lt-contenedores-section .lt-section-subtitle {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }

    .lt-contenedores-section .lt-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .lt-contenedores-section .lt-card.vertical {
        order: 1 !important;
        grid-column: 1 / -1 !important;
    }

    .lt-contenedores-section div.lt-col-horizontal {
        grid-column: 1 / -1 !important;
        order: 2 !important;
        display: grid !important;
        grid-template-rows: 1fr !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
        align-items: stretch !important;
    }

    .lt-contenedores-section div.lt-col-horizontal .lt-card.horizontal,
    .lt-contenedores-section div.lt-col-horizontal .lt-card.horizontal .lt-card-wrapper {
        height: 100% !important;
    }

    .lt-contenedores-section .lt-card.vertical .lt-card-img-wrapper,
    .lt-contenedores-section .lt-card.vertical .lt-card-img-wrapper img.lt-card-img {
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
    }

    .lt-contenedores-section .lt-card.horizontal .lt-card-wrapper .lt-card-img-wrapper {
        height: 180px !important;
        min-height: 180px !important;
        max-height: 180px !important;
        width: 100% !important;
        flex: none !important;
        position: relative !important;
        overflow: hidden !important;
        display: block !important;
    }

    .lt-contenedores-section .lt-card.horizontal .lt-card-wrapper .lt-card-img-wrapper img.lt-card-img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        max-height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    .lt-contenedores-section .lt-card-content {
        margin-top: 0 !important;
        box-shadow: none !important;
        padding: 20px !important;
        flex: 1 !important;
        display: flex !important;
        border-radius: 0 0 10px 10px !important;
    }

    .lt-contenedores-section .lt-card.vertical .lt-card-content {
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        text-align: left !important;
        gap: 10px !important;
        min-height: auto !important;
    }

    .lt-contenedores-section .lt-card.horizontal .lt-card-content {
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        text-align: left !important;
        flex: 1 !important;
        min-height: 0 !important;
        height: auto !important;
        padding: 20px !important;
    }

    .lt-contenedores-section .lt-card.horizontal .lt-card-texts {
        flex: none !important;
        display: block !important;
        width: 100% !important;
    }

    .lt-contenedores-section .lt-card-logo {
        display: none !important;
    }

    .lt-contenedores-section .lt-card-text {
        text-align: left !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    .lt-contenedores-section .lt-card-title {
        font-size: 16px !important;
        margin-top: 0 !important;
        margin-bottom: 8px !important;
    }

    .lt-contenedores-section .lt-card.horizontal .lt-card-title {
        min-height: 40px !important;
    }
}

@media (max-width: 600px) {
    .lt-contenedores-section {
        padding: 0px 15px;
    }

    .lt-contenedores-section .lt-grid {
        gap: 15px;
    }

    .lt-contenedores-section .lt-col-horizontal {
        gap: 20px;
    }

    .lt-contenedores-section .lt-card.horizontal .lt-card-content {
        min-height: 0 !important;
    }
}

/* ================================================
   SECCIÓN 3: Carrusel / Logos
   ================================================ */
.carrusel-section {
    font-family: 'DM Sans', sans-serif;
    overflow: hidden;
    width: 100%;
}

.carrusel-section .carrusel-container {
    padding: 20px 0;
    overflow: hidden;
}

.carrusel-section .carrusel-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.carrusel-section .logo-item {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

.carrusel-section .logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Responsive - Sección 3 */
@media (max-width: 768px) {
    .carrusel-section .logo-item {
        width: 180px !important;
        min-width: 180px !important;
        height: 80px !important;
        min-height: 80px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: visible !important;
        padding: 0px !important;
        flex-shrink: 0 !important;
    }

    .carrusel-section .logo-item img {
        width: 100% !important;
        height: 100% !important;
        max-width: 180px !important;
        max-height: 80px !important;
        object-fit: contain !important;
        object-position: center !important;
        padding: 0px !important;
        margin: 0px !important;
        box-sizing: border-box !important;
    }

    .carrusel-section .carrusel-track {
        gap: 0px !important;
    }

    .carrusel-section .carrusel-container {
        padding: 8px 0 !important;
    }
}

/* ================================================
   BLOG LANDING PAGE
   ================================================ */
:root {
    --blog-primary: #006CB4;
    --blog-font-sans: 'Outfit', 'Inter', sans-serif;
}

.lt-blog-landing-isolated-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.lt-blog-landing-wrapper {
    background-color: #ffffff;
    padding: 60px 20px 80px;
    font-family: var(--blog-font-sans);
    color: #000;
    min-height: 100vh;
}

.lt-blog-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--blog-primary) !important;
    letter-spacing: -0.03em;
}

/* ================================================
   MENÚ MÓVIL (ElementsKit)
   ================================================ */
@media (max-width: 1024px) {

    .elementskit-menu-container {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        top: -110vh !important;
        height: auto !important;
        min-height: 520px;
        background-color: #006CB4 !important;
        transition: top 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        position: fixed !important;
        z-index: 99999 !important;
        padding-bottom: 50px !important;
    }

    .elementskit-menu-container.active {
        top: 0 !important;
    }

    .elementskit-nav-logo {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 10 !important;
        padding: 15px 0 15px 22px !important;
        overflow: hidden !important;
    }

    /* Anular el padding del <a> dentro del logo */
    .elementskit-nav-logo a {
        padding: 0 !important;
        margin: 0 !important;
        display: inline-block !important;
    }

    .elementskit-nav-logo img {
        max-width: 240px !important;
        height: 65px !important;
        object-fit: contain !important;
        object-position: left center !important;
        margin: 0 !important;
        margin-left: -10px !important;
        display: block !important;
    }

    .elementskit-menu-close {
        position: absolute !important;
        top: 27px !important;
        right: 20px !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: transparent !important;
        border: none !important;
        color: transparent !important;
        cursor: pointer !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .elementskit-menu-close:before {
        content: "\00d7" !important;
        color: #ffffff !important;
        font-size: 40px !important;
        font-family: Arial, sans-serif !important;
        line-height: 1 !important;
        display: block !important;
    }

    .elementskit-menu-close i {
        display: none !important;
    }

    .elementskit-navbar-nav {
        margin-top: 90px !important;
        padding: 0 !important;
    }

    .elementskit-navbar-nav>li>a {
        padding: 18px 22px !important;
        color: #ffffff !important;
        font-size: 20px !important;
        font-weight: 300 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .elementskit-submenu-panel,
    .elementskit-dropdown {
        position: relative !important;
        display: none;
        width: 100% !important;
        background: transparent !important;
    }

    .ekit-dropdown-active>.elementskit-submenu-panel,
    .ekit-dropdown-active>.elementskit-dropdown {
        display: block !important;
    }

    .elementskit-submenu-panel li a,
    .elementskit-dropdown li a {
        color: #ffffff !important;
        padding: 12px 25px 12px 45px !important;
        display: flex !important;
        align-items: center !important;
        min-height: 50px !important;
        background: transparent !important;
    }

    .elementskit-submenu-panel li a span,
    .elementskit-dropdown li a span {
        color: #ffffff !important;
        font-size: 15px !important;
        font-weight: normal !important;
        line-height: 1.3 !important;
    }

    .elementskit-submenu-panel img,
    .elementskit-dropdown img {
        filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)) !important;
        width: 22px !important;
        height: 22px !important;
        object-fit: contain !important;
        flex-shrink: 0 !important;
    }

    .elementskit-menu-overlay {
        display: none !important;
    }

    .elementskit-submenu-indicator {
        color: #ffffff !important;
        border: none !important;
    }
}