/* ============================================
   SKELETON SCREEN - Estilos Modulares Específicos
   Cada módulo tiene estructura visual única
   ============================================ */

/* === OCULTAR CONTENIDO REAL MIENTRAS SKELETON ESTA VISIBLE === */
body:has(.skeleton-screen:not(.skeleton-hidden)) {
    overflow-y: scroll;
}
body:has(.skeleton-screen:not(.skeleton-hidden)) > .menu-responsive,
body:has(.skeleton-screen:not(.skeleton-hidden)) > main,
body:has(.skeleton-screen:not(.skeleton-hidden)) > .footer-nuevo,
body:has(.skeleton-screen:not(.skeleton-hidden)) > .privacy {
    visibility: hidden;
}

/* === BASE === */
.skeleton-screen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 125;
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.skeleton-content {
    padding-top: 95px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1199px) {
    .skeleton-content {
        padding-top: 65px;
    }
}

.skeleton-screen.skeleton-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* === ANIMACIÓN SHIMMER === */
@keyframes sk-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.sk-element {
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 1.5s infinite;
    border-radius: 4px;
}

.sk-element-light {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    animation: sk-pulse 1.5s ease-in-out infinite;
}

@keyframes sk-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* === CONTENEDORES === */
.sk-container {
    max-width: 1110px;
    margin: 0 auto;
    padding: 0 15px;
}

.sk-container--narrow {
    max-width: 800px;
}

/* ============================================
   BREADCRUMB
   Real: guia tiene height:50px, sin padding, centrado vertical
   ============================================ */
.sk-breadcrumb {
    height: 50px;
    background: #fff;
    display: flex;
    align-items: center;
}

.sk-breadcrumb .sk-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.sk-breadcrumb__item {
    height: 16px;
    width: 80px;
}

.sk-breadcrumb__sep {
    color: #ccc;
    font-size: 12px;
}

/* ============================================
   BANNER HOME (Solo página inicio)
   ============================================ */
.sk-banner-home {
    width: 100%;
    height: 540px;
    position: relative;
    background: linear-gradient(90deg, #c0c0c0 25%, #d8d8d8 50%, #c0c0c0 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 2s infinite;
}

.sk-banner-home__content {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 755px;
    width: 90%;
}

.sk-banner-home__title {
    height: 56px;
    width: 100%;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.sk-banner-home__title-2 {
    height: 56px;
    width: 80%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

@media (max-width: 767px) {
    .sk-banner-home {
        height: 400px;
    }
    .sk-banner-home__content {
        bottom: 60px;
    }
    .sk-banner-home__title,
    .sk-banner-home__title-2 {
        height: 40px;
    }
}

/* ============================================
   POSTBANNER ICONS (Inicio - bajo banner)
   ============================================ */
.sk-postbanner {
    width: 100%;
    height: 65px;
    margin-top: -85px;
    position: relative;
    z-index: 111;
}

.sk-postbanner .sk-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    height: 100%;
}

.sk-postbanner__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sk-postbanner__icon {
    width: 32px;
    height: 32px;
    margin-bottom: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.sk-postbanner__text {
    width: 120px;
    height: 16px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

@media (max-width: 991px) {
    .sk-postbanner .sk-container {
        justify-content: flex-start;
        gap: 20px;
        overflow-x: auto;
    }
}

/* ============================================
   PILARES SECTION (Inicio)
   Real: section padding:80px 0, mapinfo__box margin-bottom:40px padding-bottom:40px
   ============================================ */
.sk-pilares {
    padding: 80px 0;
    background: #fff;
}

.sk-pilares__header {
    width: 280px;
    height: 34px;
    margin-bottom: 40px;
    position: relative;
    margin-left: 16px;
}

.sk-pilares__header::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #f93549;
}

.sk-pilares__row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 80px;
}

.sk-pilares__boxes {
    flex: 1;
    min-width: 280px;
}

.sk-pilares__box {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ccdbe3;
}

.sk-pilares__box:last-child {
    border-bottom: none;
}

.sk-pilares__box-title {
    height: 28px;
    width: 60%;
    margin-bottom: 15px;
}

.sk-pilares__box-text {
    height: 60px;
    width: 100%;
}

.sk-pilares__map {
    flex: 1;
    min-width: 280px;
    height: 320px;
    border-radius: 8px;
}

.sk-pilares__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sk-pilares__card {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.sk-pilares__card-img {
    height: 200px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 15px;
    border-radius: 8px;
}

.sk-pilares__card-label {
    height: 24px;
    width: 60%;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .sk-pilares {
        padding: 40px 0;
    }
    .sk-pilares__card {
        flex: 100%;
    }
}

/* ============================================
   KEYS CIFRAS (Inicio)
   Real: section.section__keys.keys padding-top:10px padding-bottom:110px
   ============================================ */
.sk-keys {
    padding: 10px 0 110px;
    background: #fff;
}

.sk-keys__title {
    height: 30px;
    width: 200px;
    margin: 0 auto 50px;
}

.sk-keys__row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 50px;
    border-bottom: 1px solid #e8e8e8;
}

.sk-keys__item {
    width: 250px;
    padding: 0 20px;
    text-align: center;
    position: relative;
}

.sk-keys__item::after {
    content: '';
    position: absolute;
    height: 80%;
    width: 1px;
    background: #e8e8e8;
    right: 0;
    top: 10%;
}

.sk-keys__item:last-child::after {
    display: none;
}

.sk-keys__number {
    height: 32px;
    width: 90%;
    margin: 0 auto 10px;
}

.sk-keys__label {
    height: 18px;
    width: 70%;
    margin: 0 auto 8px;
}

.sk-keys__sublabel {
    height: 16px;
    width: 50%;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .sk-keys__item {
        width: 50%;
        margin-bottom: 30px;
    }
    .sk-keys__item::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .sk-keys__item {
        width: 100%;
    }
}

/* ============================================
   BIGBOX (Título + descripción + imagen)
   Página real: caja roja 436x436 izquierda absolute + imagen 740x460 derecha
   ============================================ */
.sk-bigbox {
    padding: 45px 15px 0;
    background: #fff;
    margin-bottom: 120px;
}

.sk-bigbox .sk-container {
    position: relative;
    max-width: 1110px;
    margin: 0 auto;
    min-height: 460px;
}

.sk-bigbox__left {
    width: 436px;
    height: 436px;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #d8d8d8 25%, #e8e8e8 50%, #d8d8d8 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 1.5s infinite;
    padding: 65px 103px 65px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
}

.sk-bigbox__title {
    height: 46px;
    width: 65%;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.sk-bigbox__text {
    height: 16px;
    width: 100%;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
}

.sk-bigbox__text--short {
    width: 85%;
}

.sk-bigbox__right {
    width: 740px;
    height: 460px;
    margin-left: auto;
    padding-top: 35px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}

.sk-bigbox__image {
    width: 100%;
    min-height: 100%;
    background: linear-gradient(90deg, #e8e8e8 25%, #f2f2f2 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 1.5s infinite;
}

.sk-bigbox--simple .sk-bigbox__left {
    height: 300px;
}

.sk-bigbox--simple .sk-bigbox__text {
    display: none;
}

@media (max-width: 1199px) {
    .sk-bigbox__left {
        width: 380px;
        height: 380px;
        padding: 45px 60px 45px 35px;
    }
    .sk-bigbox__right {
        width: 640px;
        height: 400px;
    }
}

@media (max-width: 991px) {
    .sk-bigbox .sk-container {
        min-height: auto;
    }
    .sk-bigbox__left {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 180px;
        padding: 30px;
    }
    .sk-bigbox__right {
        width: 100%;
        height: auto;
        min-height: 250px;
        padding-top: 20px;
    }
}

/* ============================================
   QUOTE AUTHOR (Nosotros)
   Página real: about__text (cita) izq 50% + about__img der 50%
   about__img tiene max-height:400px, img max-width:470px min-height:400px
   section.section__about.about tiene padding-bottom:0
   ============================================ */
.sk-quote {
    padding: 50px 15px 80px;
    background: #fff;
}

.sk-quote .sk-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1110px;
    margin: 0 auto;
}

.sk-quote__left {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 30px 20px 0;
}

.sk-quote__text {
    height: 36px;
    width: 100%;
    margin-bottom: 14px;
    background: linear-gradient(90deg, #e8e8e8 25%, #f2f2f2 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 1.5s infinite;
    border-radius: 4px;
}

.sk-quote__text--short {
    width: 50%;
}

.sk-quote__right {
    flex: 0 0 50%;
    position: relative;
    text-align: right;
    max-height: 400px;
    overflow: hidden;
}

.sk-quote__photos {
    display: flex;
    justify-content: flex-end;
    height: 100%;
}

.sk-quote__image--large {
    width: 470px;
    max-width: 100%;
    min-height: 400px;
    background: linear-gradient(90deg, #e8e8e8 25%, #f2f2f2 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 1.5s infinite;
}

.sk-quote__image--small {
    display: none; /* No hay segunda imagen en el diseño real */
}

.sk-quote__info {
    position: absolute;
    bottom: 0;
    right: 24px;
    background: #fff;
    width: 250px;
    padding: 24px;
    text-align: left;
}

.sk-quote__name {
    height: 24px;
    width: 130px;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #e8e8e8 25%, #f2f2f2 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 1.5s infinite;
    border-radius: 3px;
}

.sk-quote__role {
    height: 13px;
    width: 150px;
    background: linear-gradient(90deg, #e8e8e8 25%, #f2f2f2 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 1.5s infinite;
    border-radius: 3px;
}

@media (max-width: 991px) {
    .sk-quote__left,
    .sk-quote__right {
        flex: 0 0 100%;
    }
    .sk-quote__left {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .sk-quote__image--large {
        width: 100%;
        min-height: 320px;
    }
}

@media (max-width: 767px) {
    .sk-quote__info {
        width: 200px;
        padding: 16px;
        right: 16px;
    }
}

/* ============================================
   TITLES
   Página real: section tiene padding:80px 0, h2 line-height:34px, margin-bottom:32px
   ============================================ */
.sk-title {
    padding: 90px 15px 0;
    margin-bottom: 40px;
    background: #fff;
}

.sk-title .sk-container {
    max-width: 1110px;
    margin: 0 auto;
}

.sk-title__text {
    height: 34px;
    width: 250px;
    position: relative;
    margin-left: 16px;
}

.sk-title__text::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #f93549;
}

.sk-title--centered {
    padding: 60px 15px 40px;
    text-align: center;
}

.sk-title--centered .sk-title__text {
    margin: 0 auto;
    width: 350px;
}

.sk-title--centered .sk-title__text::before {
    display: none;
}

/* Title Block (con subtítulo y botón) */
.sk-title-block {
    padding: 60px 0;
    background: #fff;
}

.sk-title-block__title {
    height: 32px;
    width: 250px;
    margin-bottom: 20px;
}

.sk-title-block__text {
    height: 20px;
    width: 80%;
    max-width: 600px;
    margin-bottom: 15px;
}

.sk-title-block__text--short {
    width: 40%;
    max-width: 300px;
    margin-bottom: 25px;
}

.sk-title-block__btn {
    height: 48px;
    width: 180px;
    border-radius: 8px;
}

/* ============================================
   CARDS IMG DESC (3 o 4 columnas)
   Real: mapinfo__boxes tiene margin-bottom:30px (mobile)
   ============================================ */
.sk-cards-img {
    padding: 40px 0 80px;
    background: #fff;
}

.sk-cards-img__grid {
    display: grid;
    gap: 25px;
}

.sk-cards-img__grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.sk-cards-img__grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.sk-cards-img__grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 991px) {
    .sk-cards-img__grid--3,
    .sk-cards-img__grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sk-cards-img__grid--2,
    .sk-cards-img__grid--3,
    .sk-cards-img__grid--4 {
        grid-template-columns: 1fr;
    }
}

.sk-cards-img__item {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sk-cards-img__image {
    height: 200px;
    width: 100%;
    border-radius: 0;
}

.sk-cards-img__content {
    padding: 20px;
}

.sk-cards-img__title {
    height: 24px;
    width: 70%;
    margin-bottom: 15px;
}

.sk-cards-img__desc {
    height: 18px;
    width: 100%;
    margin-bottom: 8px;
}

.sk-cards-img__desc--short {
    width: 60%;
}

/* ============================================
   CARDS ICON TITLE (Finanzas corporativas - 6)
   Real: research__box tiene margin-bottom:30px, padding:32px 40px
   ============================================ */
.sk-cards-icon {
    padding: 50px 0 100px;
    background: #fff;
}

.sk-cards-icon__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .sk-cards-icon__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sk-cards-icon__grid {
        grid-template-columns: 1fr;
    }
}

.sk-cards-icon__item {
    padding: 35px 30px;
    background: #f8f9fa;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 90px;
}

.sk-cards-icon__icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    flex-shrink: 0;
}

.sk-cards-icon__title {
    height: 22px;
    flex: 1;
}

/* ============================================
   CARDS TEXT BOX (Sostenibilidad - 4)
   Real: lead__top tiene padding:32px, min-height:225px
   ============================================ */
.sk-cards-text {
    padding: 40px 0 80px;
    background: #fff;
}

.sk-cards-text__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .sk-cards-text__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sk-cards-text__grid {
        grid-template-columns: 1fr;
    }
}

.sk-cards-text__item {
    padding: 25px;
    background: #f5f7f9;
    border-radius: 4px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.sk-cards-text__title {
    height: 24px;
    width: 80%;
    margin-bottom: 15px;
}

.sk-cards-text__desc {
    height: 16px;
    width: 100%;
    margin-bottom: 8px;
}

.sk-cards-text__link {
    height: 20px;
    width: 80px;
    margin-top: auto;
}

/* ============================================
   CARDS PREMIOS (Intermediación)
   3 boxes con borde y texto multilinea
   Real: box con borde gris, padding interno, 4-5 líneas de texto
   ============================================ */
.sk-cards-premios {
    padding: 50px 15px 80px;
    background: #fff;
}

.sk-cards-premios__grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    max-width: 950px;
    margin: 0 auto;
}

.sk-cards-premios__item {
    flex: 1;
    max-width: 280px;
    min-height: 140px;
    border: 1px solid #dbdbdb;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sk-cards-premios__line {
    height: 14px;
    width: 100%;
}

.sk-cards-premios__line:nth-child(2) {
    width: 70%;
}

.sk-cards-premios__line:nth-child(3) {
    width: 85%;
}

.sk-cards-premios__line:last-child {
    width: 55%;
}

@media (max-width: 767px) {
    .sk-cards-premios__grid {
        flex-direction: column;
        align-items: center;
    }
    
    .sk-cards-premios__item {
        max-width: 100%;
        width: 100%;
    }
}

/* ============================================
   CARDS LINK / ACCESOS (Gobierno corp, Info legal)
   Página real: accesos_informacion height:80px, border:1px solid #dbdbdb
   Gap entre items: margin-bottom:16px
   ============================================ */
.sk-cards-link {
    padding: 20px 15px 60px;
    background: #fff;
}

.sk-cards-link .sk-container {
    max-width: 1110px;
    margin: 0 auto;
}

.sk-cards-link__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 991px) {
    .sk-cards-link__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sk-cards-link__grid {
        grid-template-columns: 1fr;
    }
}

.sk-cards-link__item {
    height: 80px;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.sk-cards-link__text {
    height: 20px;
    width: 120px;
    background: linear-gradient(90deg, #e8e8e8 25%, #f2f2f2 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 1.5s infinite;
    border-radius: 3px;
}

.sk-cards-link__arrow {
    width: 24px;
    height: 24px;
    background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 1.5s infinite;
    border-radius: 3px;
}

/* Grid variante con 4 columnas (Info Legal) */
.sk-cards-link--grid {
    padding: 40px 15px 60px;
}

.sk-cards-link__grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 991px) {
    .sk-cards-link__grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sk-cards-link__grid--4 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   VALUES 4 ICONS (Nosotros)
   Página real: icono circular rojo 66px + texto al lado
   valores-items tiene border-top:5px solid #f93549, gap:15px
   ============================================ */
.sk-values {
    padding: 40px 15px 80px;
    background: #fff;
}

.sk-values .sk-container {
    max-width: 1110px;
    margin: 0 auto;
}

.sk-values__intro {
    height: 18px;
    width: 85%;
    max-width: 700px;
    margin-bottom: 30px;
}

.sk-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .sk-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sk-values__grid {
        grid-template-columns: 1fr;
    }
}

.sk-values__item {
    padding: 20px 15px;
    border-top: 5px solid #e8e8e8;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 235px;
}

.sk-values__icon {
    width: 66px;
    height: 66px;
    min-width: 66px;
    border-radius: 50%;
    background: linear-gradient(90deg, #e8e8e8 25%, #f2f2f2 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 1.5s infinite;
}

.sk-values__label {
    height: 18px;
    width: 90px;
    background: linear-gradient(90deg, #e8e8e8 25%, #f2f2f2 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 1.5s infinite;
}

/* ============================================
   INSIGHTS CAROUSEL (Inicio)
   Real: section padding:80px 0, owl-dots margin-top:50px margin-bottom:40px
   ============================================ */
.sk-insights {
    padding: 80px 0;
    background: #fff;
}

.sk-insights__header {
    height: 34px;
    width: 150px;
    margin-bottom: 32px;
    position: relative;
    margin-left: 16px;
}

.sk-insights__header::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #f93549;
}

.sk-insights__carousel {
    display: flex;
    gap: 25px;
    overflow: hidden;
    margin-bottom: 50px;
}

.sk-insights__item {
    min-width: 340px;
    flex: 1;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.sk-insights__img {
    height: 200px;
    width: 100%;
}

.sk-insights__content {
    padding: 20px;
}

.sk-insights__tag {
    width: 60px;
    height: 22px;
    margin-bottom: 12px;
}

.sk-insights__title {
    height: 48px;
    width: 90%;
    margin-bottom: 20px;
}

.sk-insights__meta {
    display: flex;
    gap: 25px;
}

.sk-insights__date,
.sk-insights__time {
    height: 16px;
    width: 100px;
}

.sk-insights__btn {
    height: 50px;
    width: 180px;
    margin: 0 auto;
    border-radius: 8px;
}

@media (max-width: 991px) {
    .sk-insights__carousel {
        flex-direction: column;
    }
    .sk-insights__item {
        min-width: 100%;
    }
}

/* ============================================
   INSIGHTS GRID (Página LV Insights)
   Real: categorias__box margin-bottom:40px
   ============================================ */
.sk-insights-grid {
    padding: 30px 0 80px;
    background: #fff;
}

.sk-insights-grid__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 25px;
}

@media (max-width: 991px) {
    .sk-insights-grid__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sk-insights-grid__items {
        grid-template-columns: 1fr;
    }
}

.sk-insights-grid__item {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.sk-insights-grid__img {
    height: 180px;
    width: 100%;
}

.sk-insights-grid__content {
    padding: 20px;
}

.sk-insights-grid__tag {
    height: 20px;
    width: 60px;
    margin-bottom: 12px;
}

.sk-insights-grid__title {
    height: 44px;
    width: 90%;
    margin-bottom: 15px;
}

.sk-insights-grid__date {
    height: 16px;
    width: 100px;
}

/* ============================================
   RECONOCIMIENTOS CAROUSEL (Inicio)
   Real: seccion__recon padding-top:0, owl-dots similar a insights
   ============================================ */
.sk-recon {
    padding: 0 0 80px;
    background: #fff;
}

.sk-recon__header {
    height: 34px;
    width: 280px;
    margin: 0 auto 30px;
}

.sk-recon__carousel {
    display: flex;
    gap: 15px;
    overflow: hidden;
    padding: 15px 0;
    margin-bottom: 50px;
}

.sk-recon__item {
    min-width: 180px;
    height: 200px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sk-recon__img {
    width: 90px;
    height: 100px;
    margin-bottom: 15px;
}

.sk-recon__year {
    width: 60px;
    height: 24px;
}

.sk-recon__btn {
    height: 50px;
    width: 220px;
    margin: 0 auto;
    border-radius: 8px;
}

/* ============================================
   PREMIOS YEAR GRID (Página Reconocimientos)
   Real: premios__year margin-bottom:25px, premios__box margin-bottom:25px
   ============================================ */
.sk-premios {
    padding: 30px 0 80px;
    background: #fff;
}

.sk-premios__year {
    height: 40px;
    width: 100px;
    margin-bottom: 25px;
}

.sk-premios__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 991px) {
    .sk-premios__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sk-premios__grid {
        grid-template-columns: 1fr;
    }
}

.sk-premios__item {
    background: #fff;
    padding: 20px;
    border: 1px solid #d7d7d7;
    border-radius: 4px;
    text-align: center;
    min-height: 335px;
}

.sk-premios__img {
    height: 100px;
    width: 100px;
    margin: 0 auto 20px;
}

.sk-premios__title {
    height: 22px;
    width: 80%;
    margin: 0 auto 12px;
}

.sk-premios__desc {
    height: 36px;
    width: 90%;
    margin: 0 auto;
}

/* ============================================
   PEOPLE GRID (Directores)
   Real: .ppl__box tiene margin-bottom:58px, width:24%
   ============================================ */
.sk-people {
    padding: 40px 0 80px;
    background: #fff;
}

.sk-people__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 58px 30px;
}

@media (max-width: 991px) {
    .sk-people__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .sk-people__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .sk-people__grid {
        grid-template-columns: 1fr;
    }
}

.sk-people__item {
    text-align: center;
}

.sk-people__avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 10px;
}

.sk-people__name {
    height: 20px;
    width: 80%;
    max-width: 150px;
    margin: 0 auto 8px;
}

.sk-people__role {
    height: 16px;
    width: 60%;
    max-width: 180px;
    margin: 0 auto;
}

/* Grid de 5 personas (LarrainVial Colombia) */
.sk-people__grid--5 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 991px) {
    .sk-people__grid--5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .sk-people__grid--5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Grid de 4 personas (LV Research) */
.sk-people__grid--4 {
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    max-width: 800px;
    margin: 0 auto;
    gap: 30px;
}

@media (max-width: 991px) {
    .sk-people__grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .sk-people__grid--4 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LINK CENTERED
   Link centrado con icono
   ============================================ */
.sk-link {
    padding: 30px 15px 40px;
    background: #fff;
    text-align: center;
}

.sk-link__text {
    height: 18px;
    width: 150px;
    margin: 0 auto;
    border-radius: 4px;
}

/* ============================================
   CARDS 2 PRODUCTS (LV Research)
   2 boxes lado a lado: PRODUCTOS y SERVICIOS
   ============================================ */
.sk-cards-products {
    padding: 50px 15px 70px;
    background: #fff;
}

.sk-cards-products__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 750px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .sk-cards-products__grid {
        grid-template-columns: 1fr;
    }
}

.sk-cards-products__item {
    padding: 35px;
    background: #f8f9fa;
    border-radius: 4px;
    min-height: 280px;
}

.sk-cards-products__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.sk-cards-products__title {
    height: 22px;
    width: 60%;
    margin-bottom: 20px;
}

.sk-cards-products__desc {
    height: 14px;
    width: 100%;
    margin-bottom: 10px;
}

.sk-cards-products__desc:last-child {
    width: 80%;
}

/* ============================================
   DISCLAIMER BOX
   Caja con texto de nota/advertencia
   ============================================ */
.sk-disclaimer {
    padding: 40px 15px 60px;
    background: #fff;
    text-align: center;
}

.sk-disclaimer__box {
    max-width: 650px;
    margin: 0 auto 25px;
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.sk-disclaimer__line {
    height: 14px;
    width: 100%;
    margin-bottom: 10px;
}

.sk-disclaimer__line--short {
    width: 70%;
    margin: 0 auto;
}

.sk-disclaimer__link {
    height: 16px;
    width: 300px;
    margin: 0 auto;
}

/* ============================================
   LOGOS ROW (BVC, AMV, VIGILADO)
   Fila de logos pequeños centrados
   ============================================ */
.sk-logos {
    padding: 50px 15px;
    background: #fff;
}

.sk-logos__row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.sk-logos__item {
    width: 80px;
    height: 35px;
    border-radius: 4px;
}

@media (max-width: 576px) {
    .sk-logos__row {
        gap: 25px;
    }
    .sk-logos__item {
        width: 60px;
        height: 28px;
    }
}

/* ============================================
   MAP LOCATION (Ubicación con mapa)
   Real: mapa 50% + info 50%, padding vertical 80px
   ============================================ */
.sk-map {
    padding: 60px 0 80px;
    background: #fff;
}

.sk-map__content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.sk-map__image {
    width: 50%;
    height: 280px;
    border-radius: 4px;
}

.sk-map__info {
    width: 50%;
}

.sk-map__title {
    height: 34px;
    width: 180px;
    margin-bottom: 24px;
    margin-left: 16px;
    position: relative;
}

.sk-map__title::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #f93549;
}

.sk-map__city {
    height: 24px;
    width: 200px;
    margin-bottom: 16px;
}

.sk-map__address {
    height: 16px;
    width: 320px;
    margin-bottom: 10px;
}

.sk-map__phone {
    height: 16px;
    width: 180px;
}

@media (max-width: 767px) {
    .sk-map__content {
        flex-direction: column;
    }
    
    .sk-map__image,
    .sk-map__info {
        width: 100%;
    }
    
    .sk-map__image {
        height: 200px;
    }
}

/* ============================================
   LOCATION CARDS (Presencia Internacional)
   Grid 2x3 de ubicaciones con imagen arriba + info debajo
   Real: pi__box margin-bottom:55px, pi__header img width:100%
   ============================================ */
.sk-location-cards {
    padding: 20px 0 100px;
    background: #fff;
}

.sk-location-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 70px;
    max-width: 850px;
    margin: 0 auto;
}

.sk-location-cards__item {
    display: flex;
    flex-direction: column;
}

.sk-location-cards__image {
    width: 100%;
    height: 160px;
    border-radius: 0;
    margin-bottom: 20px;
}

.sk-location-cards__info {
    padding: 0;
}

.sk-location-cards__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.sk-location-cards__flag {
    width: 22px;
    height: 15px;
    border-radius: 0;
    flex-shrink: 0;
}

.sk-location-cards__title {
    height: 16px;
    width: 120px;
}

.sk-location-cards__address {
    height: 14px;
    width: 85%;
    margin-bottom: 10px;
}

.sk-location-cards__link {
    height: 14px;
    width: 55px;
    margin-top: 15px;
}

@media (max-width: 991px) {
    .sk-location-cards__grid {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .sk-location-cards__grid {
        grid-template-columns: 1fr;
    }
    
    .sk-location-cards__item {
        flex-direction: column;
    }
    
    .sk-location-cards__image {
        width: 100%;
        height: 150px;
    }
}

/* ============================================
   TABS
   Real: fln-tabs__nav display:flex justify-content:space-between padding:20px
   tab__dobles margin-bottom:40px
   tabs con border-bottom:2px, activo tiene border-bottom:2px solid #f93549
   ============================================ */
.sk-tabs {
    padding: 30px 15px;
    margin-bottom: 50px;
    background: #fff;
}

.sk-tabs .sk-container {
    max-width: 1110px;
    margin: 0 auto;
}

.sk-tabs__nav {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 15px 20px;
    border-bottom: 2px solid #ccdbe3;
}

.sk-tabs__tab {
    height: 24px;
    width: 160px;
    background: transparent;
    border-bottom: 2px solid transparent;
    position: relative;
    margin-bottom: -2px;
}

.sk-tabs__tab:first-child {
    border-bottom-color: #f93549;
}

.sk-tabs__tab::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 16px;
    background: linear-gradient(90deg, #e8e8e8 25%, #f2f2f2 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 1.5s infinite;
    border-radius: 3px;
}

/* ============================================
   FORMS
   Real: contacto tiene más espacio vertical
   ============================================ */
.sk-form {
    padding: 40px 0 80px;
    background: #fff;
}

.sk-form__row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.sk-form__row--full {
    flex-direction: column;
}

.sk-form__row--center {
    justify-content: center;
}

.sk-form__field {
    flex: 1;
    height: 56px;
    border-radius: 4px;
}

.sk-form__textarea {
    height: 150px;
    width: 100%;
    border-radius: 4px;
}

.sk-form__btn {
    height: 50px;
    width: 180px;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .sk-form__row {
        flex-direction: column;
    }
}

/* ============================================
   LIST DOCUMENTS
   Real: documento-caja tiene padding similar
   ============================================ */
.sk-list {
    padding: 20px 0 60px;
    background: #fff;
}

.sk-list__items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sk-list__item {
    height: 56px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
}

/* ============================================
   ACCORDION
   Real: contenedor_deplegable h3.cabecera_desplegable tiene padding:1.5rem 2rem
   ============================================ */
.sk-accordion {
    padding: 20px 0 60px;
    background: #fff;
}

.sk-accordion__item {
    margin-bottom: 10px;
}

.sk-accordion__header {
    height: 60px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
}

/* ============================================
   MEMORIA DESTACADA (Memorias)
   Layout: texto+botón izq (8 col) + imagen der (4 col)
   Real: memoria__box margin-bottom:32px
   ============================================ */
.sk-memoria-dest {
    padding: 20px 15px 40px;
    background: #fff;
}

.sk-memoria-dest .sk-container {
    max-width: 1110px;
    margin: 0 auto;
}

.sk-memoria-dest__content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.sk-memoria-dest__left {
    flex: 0 0 calc(66.66% - 15px);
}

.sk-memoria-dest__title {
    height: 28px;
    width: 300px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #e8e8e8 25%, #f2f2f2 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 1.5s infinite;
    border-radius: 4px;
}

.sk-memoria-dest__btn {
    height: 48px;
    width: 140px;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
    background: linear-gradient(90deg, #f5f5f5 25%, #fafafa 50%, #f5f5f5 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 1.5s infinite;
}

.sk-memoria-dest__right {
    flex: 0 0 calc(33.33% - 15px);
}

.sk-memoria-dest__image {
    width: 100%;
    max-width: 280px;
    height: 360px;
    margin-left: auto;
    background: linear-gradient(90deg, #e8e8e8 25%, #f2f2f2 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 1.5s infinite;
    border-radius: 4px;
}

@media (max-width: 991px) {
    .sk-memoria-dest__left,
    .sk-memoria-dest__right {
        flex: 0 0 100%;
    }
    .sk-memoria-dest__image {
        margin: 0 auto;
        max-width: 200px;
        height: 260px;
    }
}

/* ============================================
   MEMORIAS GRID (Grid de portadas)
   Real: 6 columnas (lg2), imgs con texto debajo
   memoria__box margin-bottom:32px
   ============================================ */
.sk-memorias-grid {
    padding: 20px 15px 80px;
    background: #fff;
}

.sk-memorias-grid .sk-container {
    max-width: 1110px;
    margin: 0 auto;
}

.sk-memorias-grid__items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px 20px;
}

@media (max-width: 1199px) {
    .sk-memorias-grid__items {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .sk-memorias-grid__items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .sk-memorias-grid__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sk-memorias-grid__item {
    text-align: center;
}

.sk-memorias-grid__cover {
    width: 100%;
    padding-top: 130%;
    background: linear-gradient(90deg, #e8e8e8 25%, #f2f2f2 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 10px;
}

.sk-memorias-grid__label {
    height: 16px;
    width: 80%;
    margin: 0 auto;
}

/* ============================================
   TABLE
   Real: tabla tiene border:1px solid #ccdbe3
   ============================================ */
.sk-table {
    padding: 20px 0 60px;
    background: #fff;
}

.sk-table__header {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 4px 4px 0 0;
}

.sk-table__th {
    flex: 1;
    height: 20px;
}

.sk-table__row {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #e8e8e8;
}

.sk-table__td {
    flex: 1;
    height: 20px;
}

/* ============================================
   CONTENT
   Real: párrafos tienen margin-bottom:8px en privacidad-y-seguridad
   ============================================ */
.sk-content {
    padding: 0 15px;
    background: #fff;
}

.sk-content .sk-container {
    max-width: 1110px;
    margin: 0 auto;
}

.sk-content--paragraph {
    padding: 25px 15px 45px;
}

.sk-content__line {
    height: 18px;
    width: 100%;
    margin-bottom: 12px;
}

.sk-content__line--short {
    width: 70%;
}

/* ============================================
   FONDOS CATEGORIES
   Real: caja-fondo-acceso margin-bottom:3em, padding:2em
   ============================================ */
.sk-fondos {
    padding: 30px 0 80px;
    background: #fff;
}

.sk-fondos__category {
    height: 28px;
    width: 200px;
    margin-bottom: 20px;
}

.sk-fondos__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .sk-fondos__grid {
        grid-template-columns: 1fr;
    }
}

.sk-fondos__item {
    padding: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

.sk-fondos__name {
    height: 22px;
    width: 70%;
    margin-bottom: 10px;
}

.sk-fondos__info {
    height: 16px;
    width: 50%;
}

/* ============================================
   VIDEO PLAYER
   ============================================ */
.sk-video {
    padding: 40px 0;
    background: #fff;
}

.sk-video__player {
    height: 400px;
    width: 100%;
    border-radius: 8px;
    position: relative;
}

.sk-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
    .sk-video__player {
        height: 250px;
    }
}

/* ============================================
   ODS ICONS GRID (Objetivos Desarrollo Sostenible)
   Grid 2 filas de iconos
   ============================================ */
.sk-ods {
    padding: 40px 0;
    background: #fff;
}

.sk-ods__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.sk-ods__logo {
    width: 120px;
    height: 80px;
    border-radius: 4px;
}

.sk-ods__icon {
    width: 70px;
    height: 70px;
    border-radius: 4px;
}

@media (max-width: 576px) {
    .sk-ods__grid {
        gap: 10px;
    }
    
    .sk-ods__icon {
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   IMAGE CENTERED BTN (Imagen con botón)
   ============================================ */
.sk-image-btn {
    padding: 40px 0 80px;
    background: #fff;
}

.sk-image-btn__wrapper {
    text-align: center;
}

.sk-image-btn__image {
    width: 100%;
    max-width: 400px;
    height: 280px;
    margin: 0 auto 20px;
    border-radius: 8px;
}

.sk-image-btn__btn {
    height: 40px;
    width: 140px;
    margin: 0 auto;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .sk-image-btn__image {
        height: 200px;
    }
}

/* ============================================
   BUTTON CENTERED
   Real: btn-red-border tiene border:1px solid #f93549, padding:10px 25px
   ============================================ */
.sk-button {
    padding: 45px 15px 55px;
    background: #fff;
    text-align: center;
}

.sk-button .sk-container {
    max-width: 1110px;
    margin: 0 auto;
}

.sk-button__btn {
    height: 42px;
    width: 220px;
    margin: 0 auto;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
}

/* ============================================
   FOOTER (Peru - estructura simple)
   Real: footer-nuevo padding:65px 0
   ============================================ */
.sk-footer {
    padding: 65px 0;
    margin-top: auto;
}

.sk-footer__logo {
    width: 164px;
    height: 24px;
    margin-bottom: 45px;
}

.sk-footer__line {
    width: 100%;
    height: 1px;
    background: #9bb5c0;
    margin-bottom: 50px;
}

.sk-footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sk-footer__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sk-footer__text {
    width: 280px;
    height: 15px;
}

.sk-footer__text--short {
    width: 180px;
}

.sk-footer__social {
    display: flex;
    gap: 10px;
}

.sk-footer__social-icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .sk-footer__content {
        flex-direction: column;
        gap: 25px;
    }
}
