body {
    font-family: var(--font-family-ligth);
    font-size: var(--font-size-default);
    line-height: 1em;
    color: var(--font-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-style: normal;
}

/* Accesibilidad: Indicador visual de foco para navegación por teclado (WCAG 2.4.7) */
a:focus-visible,
area:focus,
area:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex="0"]:focus-visible,
[tabindex="1"]:focus-visible {
    outline: 2px solid var(--primary-color) !important;
    outline-offset: 2px !important;
}



header {
    position: fixed;
    top: -100px;
    left: 50%;
    width: calc(100% - 240px);
    transform: translateX(-50%);
    background-color: var(--primary-color);
    z-index: 999999;
    border-radius: 0 0 20px 20px;
}

html.loaded header {
    top: -0px;
    opacity: 1;
}


header .wrap_btn_menu,
header .wrap_lang {
    position: absolute;
    top: 0;
    left: 5px;
    width: 50px;
    height: 50px;
    color: white;
}

header .wrap_lang {
    left: auto;
    right: 5px;
}


header .wrap_btn_menu>a,
header .wrap_lang>a {
    color: var(--font-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: block;
    text-align: center;
    font-size: 30px;
}


header .wrap_btn_menu>a:focus-visible,
header .wrap_lang>a:focus-visible {
    outline: 2px solid black !important;
    outline-offset: 2px !important;
}


header .wrap_lang>a {
    font-size: 20px;
}

header .wrap_btn_menu>a i.la-times {
    display: none;
}

html.menu_open header .wrap_btn_menu>a i.la-bars {
    display: none;
}

html.menu_open header .wrap_btn_menu>a i.la-times {
    display: inline-block;
}

html[lang='es'] header .wrap_lang>a.btn_lang_es,
html[lang='en'] header .wrap_lang>a.btn_lang_en {
    display: none;
}

header .wrap_menu {
    position: absolute;
    top: 100%;
    left: 0;
    color: white;
    max-height: 0;
    overflow: hidden;
    height: 500px;
    padding: 0 20px;
    visibility: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, visibility 0.3s ease;
}

html.menu_open header .wrap_menu {
    max-height: 500px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    visibility: visible;
}

header .wrap_menu .wrap_menu_top {
    padding: 20px 0;
    font-family: var(--font-family-text-bold);
    color: white;
    font-size: 18px;
    line-height: 25px;
}

header .wrap_menu .wrap_menu_top a {
    color: white;
    display: block;
    position: relative;
    font-size: 18px;
    line-height: 25px;
    padding-right: 30px;
}

header .wrap_menu .wrap_menu_top a>i {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    line-height: 25px;
    display: none;
}

header .wrap_menu .wrap_menu_top ul li {
    margin-bottom: 10px;
}

header .wrap_menu .wrap_menu_top ul ul {
    display: none;
}

header .wrap_menu .wrap_menu_bottom {
    display: none;
}

header .wrap_logo {
    padding: 15px 0;
    text-align: center;
}

header .wrap_logo svg,
header .wrap_logo img {
    height: 22px;
}

header .wrap_logo svg path {
    fill: white;
}

header .wrap_logo>a:focus-visible {
    outline: 2px solid black !important;
    outline-offset: 2px !important;
}

.home_block {
    width: 100%;
    position: relative;
}


.home_block.home_block_1 {
    min-height: 100vh;
    padding-top: 100px;
}

.home_block.home_block_1 h1,
.home_block.home_block_1 h2 {
    font-family: var(--font-family-text-bold);
    font-size: 50px;
    line-height: 50px;
    text-align: center;
    color: black;
    margin-bottom: 40px;
}



footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: white;
    z-index: 999;
    box-sizing: border-box;
    padding: 10px 20px;
    line-height: 20px;
    font-size: 12px;
    font-family: var(--font-family-text-regular);
    display: flex;
}

footer a {
    color: black;
}

footer .copy_footer {
    width: 400px;
}

footer .menu_footer {
    width: calc(100% - 420px);
    text-align: right;
}

footer .menu_footer li {
    display: inline-block;
    margin-left: 15px;
}

/* gv_number_big */
.gv_number_big {
    text-align: center;
    font-family: var(--font-family-black);
}

.gv_number_big .gv_number_big_number_type {
    white-space: nowrap;
    color: var(--primary-color);
}

.gv_number_big .gv_number_big_number_type .gv_number_big_number {
    font-size: 80px;
    line-height: 70px;
}

.gv_number_big .gv_number_big_number_type .gv_number_big_type {
    font-size: 25px;
    line-height: 70px;
}

.gv_number_big .gv_number_big_number_text {
    color: black;
    font-size: 18px;
    line-height: 22px;
}

#main {
    position: relative;
}

#main:after {
    content: '';
    width: calc(100% - 80px);
    height: calc(100vh);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    position: fixed;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0);
}


html.loaded #main:after {
    background-color: #e5e5e54a;
}

#main #content_main {
    position: relative;
    z-index: 10;
}

/* Vertical Slides */
.v-slide {
    /* Restando el footer */
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 80px 10% 30px 10%;
    /* Ajustado para el header de 91px */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

#slide-6 {
    min-height: calc(100vh - 160px);
}

.v-slide.v-slide-active,
.v-slide:focus-within {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.v-slide:focus-within {
    transition: none !important;
}

/* Vertical Nav Dots */
.v-nav-dots {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.v-nav-dots .v-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    padding: 0;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
}

.v-nav-dots .v-dot:hover {
    background-color: var(--primary-color);
}

.v-nav-dots .v-dot.v-dot-active {
    background-color: var(--primary-color);
    transform: scale(1.3);
    border-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.v-slide-title {
    font-family: var(--font-family-bold);
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.v-slide-content {
    font-family: var(--font-family-regular);
    font-size: 19px;
    line-height: 24px;
}

/* Landing Slide Squares */
.v-slide-landing-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.landing-squares {
    position: relative;
    width: 700px;
    /* Tamaño de referencia base */
    height: 700px;
    display: block;
    transform-origin: center center;
}

.sq-item {
    position: absolute;
    box-sizing: border-box;
}

.sq-frame {
    width: 370px;
    height: 370px;
    border: 2px solid var(--primary-color);
    top: 0;
    right: 90px;
    z-index: 1;
}

.sq-main {
    width: 475px;
    height: 475px;
    background-color: var(--primary-color);
    top: 15%;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: var(--font-color) !important;
    font-family: var(--font-family-text-bold) !important;
    font-size: 55px !important;
    line-height: 1.1 !important;
    margin: 0 !important;
    font-weight: normal !important;
}

.sq-accent {
    width: 230px;
    height: 230px;
    background-color: var(--color-azul);
    bottom: 0;
    left: 475px;
    z-index: 3;
}

/* Slide 2: Orígenes e historia */
.s2-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
}

.s2-left {
    width: 300px;
    flex-shrink: 0;
    position: relative;
}

.s2-title-box {
    background-color: var(--color-azul);
    padding: 30px;
    width: 100%;
    aspect-ratio: 1;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.s2-title-box h2 {
    font-family: var(--font-family-text-bold);
    font-size: 43px;
    line-height: 1.1;
    color: var(--bg-black);
    margin: 0;
}

.s2-deco-letter {
    position: absolute;
    top: 380px;
    left: -90px;
    font-size: 600px;
    line-height: 0.7;
    font-family: var(--font-family-bold);
    color: var(--color-azul);
    opacity: 1;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    text-align: center;
    width: calc(100% + 180px);
    display: none !important;
}

.s2-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.s2-right .timelineItem {
    display: flex;
    flex-direction: row;
    gap: 20px;
}


.s2-right .timelineItem-year {
    font-family: var(--font-family-bold);
    font-size: 25px;
    line-height: 1.1;
    color: var(--bg-black);
    text-align: center;
    position: relative;
}

.s2-right .timelineItem-year::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(50% - 3px);
    width: 0;
    height: calc(100% - 20px);
    z-index: -1;
    border-right: 7px dotted var(--primary-color);
}

.s2-right .timelineItem-content {
    font-family: var(--font-family-regular);
    font-size: 19px;
    line-height: 24px;
    color: #333;
    text-align: left;
}

.s2-right b,
.s2-right strong {
    font-family: var(--font-family-bold);
}

.s2-right .timelineItem-content p:last-child {
    margin-bottom: 0;
}

/* Slide 3: Evolución y cambios */
.s3-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
}

.s3-left {
    width: 300px;
    flex-shrink: 0;
    position: relative;
}

.s3-title-box {
    background-color: var(--color-amarillo);
    padding: 30px;
    width: 100%;
    aspect-ratio: 1;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    display: flex;
}

.s3-title-box h2 {
    font-family: var(--font-family-text-bold);
    font-size: 43px;
    line-height: 1.1;
    color: var(--font-color);
    margin: 0;
}

.s3-highlights {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.s3-highlight-item {
    border: 1px solid var(--color-amarillo);
    padding: 15px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: white;
}

.s3-highlight-item .icon {
    width: 40px;
    flex-shrink: 0;
    color: var(--primary-color);
}

.s3-highlight-item .icon img {
    width: 100%;
    height: auto;
}

.s3-highlight-item .text {
    font-family: var(--font-family-regular);
    font-size: 13px;
    line-height: 1.4;
    color: #333;
}

.s3-highlight-item .text b {
    display: block;
    margin-bottom: 3px;
    font-family: var(--font-family-bold);
}

.s3-right {
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.s2-right p,
.s3-right p,
.s4-right p,
.s5-right p,
.s6-right p {
    font-family: var(--font-family-regular);
    font-size: 19px;
    line-height: 24px;
    margin-bottom: 30px;
    color: #333;
    text-align: left;
}

.s3-right b,
.s3-right strong {
    font-family: var(--font-family-bold);
}


.s3-section-title {
    font-family: var(--font-family-bold);
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--bg-black);
}

.s3-directores-list {
    margin-bottom: 40px;
}

.s3-director-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-family: var(--font-family-regular);
    font-size: 19px;
    line-height: 24px;
    color: #333;
}

.s3-director-dot {
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.s3-hitos-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.s3-hito-item {
    display: flex;
    gap: 12px;
    font-family: var(--font-family-regular);
    font-size: 19px;
    line-height: 24px;
    color: #333;
}

.s3-hito-square {
    width: 15px;
    height: 15px;
    background-color: var(--color-amarillo);
    flex-shrink: 0;
    margin-top: 5px;
}

/* Slide 4: Fortalezas actuales */
.s4-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
}

.s4-left {
    width: 300px;
    flex-shrink: 0;
    position: relative;
}

.s4-title-box {
    background-color: var(--primary-color);
    padding: 30px;
    width: 100%;
    aspect-ratio: 1;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    display: flex;
}

.s4-title-box h2 {
    font-family: var(--font-family-text-bold);
    font-size: 43px;
    line-height: 1.1;
    color: var(--font-color);
    margin: 0;
}

.s4-right {
    flex-grow: 1;
}

.s4-strengths-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.s4-strength-item {
    display: flex;
    gap: 12px;
    font-family: var(--font-family-regular);
    font-size: 19px;
    line-height: 24px;
    color: #333;
}

.s4-strength-square {
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 8px;
}

/* Key Data Section */
.s4-key-data {
    margin-top: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.s4-key-data h2 {
    color: var(--primary-color);
    font-family: var(--font-family-text-bold);
    font-size: 43px;
    line-height: 1.1;
    margin: 0;
    margin-bottom: 60px;
}

.s4-data-grid {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    gap: 20px;
}

.s4-data-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.s4-data-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.s4-data-icon img {
    width: 100%;
    height: 100%;
}

.s4-data-label {
    font-family: var(--font-family-bold);
    font-size: 24px;
    color: var(--bg-black);
    margin-bottom: 20px;
    line-height: 1.1;
    height: 50px;
    display: flex;
    align-items: flex-end;
}

.s4-data-value {
    font-family: var(--font-family-text-regular);
    font-size: 60px;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
}

.s4-data-sub {
    font-family: var(--font-family-regular);
    font-size: 14px;
    line-height: 1.4;
    color: #666;
    max-width: 180px;
}

.s4-data-sub>b {
    font-family: var(--font-family-bold);
    color: var(--primary-color);
    font-size: 14px;
    line-height: 1.4;
    display: block;
    margin-bottom: 10px;
}

.s4-data-sub-large {
    font-family: var(--font-family-regular);
    font-size: 28px;
    line-height: 1.2;
    color: var(--primary-color);
    text-align: center;
    margin-top: 10px;
}

/* Slide 5: Perspectiva de futuro */
.s5-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
}

.s5-left {
    width: 300px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.s5-title-box {
    background-color: var(--primary-color);
    padding: 30px;
    width: 100%;
    aspect-ratio: 1;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    display: flex;
}

.s5-title-box h2 {
    font-family: var(--font-family-text-bold);
    font-size: 43px;
    line-height: 1.1;
    color: var(--font-color);
    margin: 0;
}

.s5-right {
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.s5-section {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.s5-section-icon {
    width: 60px;
    flex-shrink: 0;
    margin-top: 5px;
}

.s5-section-icon img {
    width: 100%;
    height: auto;
    margin-top: -15px;
}

.s5-section-content {
    flex-grow: 1;
}


.s5-section-title {
    font-family: var(--font-family-bold);
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--bg-black);
}

.s5-goals-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.s5-goal-item {
    display: flex;
    gap: 15px;
    font-family: var(--font-family-regular);
    font-size: 19px;
    line-height: 24px;
    color: #333;
}

.s5-goal-square {
    width: 18px;
    height: 18px;
    background-color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 5px;
}


.s5-bottom-content {
    display: block;
    max-width: 900px;
    margin: 60px auto 0;
}

.s5-image-container {
    width: 100%;
    /* Misma altura que el s3-title-box aproximadamente para alinearse */
    overflow: hidden;
    position: relative;
}

.s5-image-container img {
    width: 100%;
}

/* Slide 6: Cierre */
.s6-layout {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding-bottom: 50px;
    text-align: center;
    position: relative;
}

.s6-content {
    max-width: 100%;
    width: 800px;
    margin: 0 auto;
    margin-bottom: 80px;
}

.s6-content p {
    font-family: var(--font-family-bold);
    /* Usamos bold para que destaque */
    font-size: 26px;
    line-height: 1.4;
    color: var(--bg-black);
    margin: 5px 0;
}

.s6-content p.s6-message {
    font-family: var(--font-family-ligth);
    font-style: italic;
    margin-top: 30px;
    font-size: 22px;
}

.s6-logo-container {
    width: 250px;
    margin-bottom: 40px;
}

.s6-logo-container img {
    width: 100%;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 1023px) {
    .v-slide {
        padding: 80px 5% 40px 5%;
    }

    /* Landing */
    .landing-squares {
        transform: scale(0.6);
    }

    #slide-1 .v-slide-landing-wrapper {
        height: 450px;
        position: relative
    }

    #slide-1 .v-slide-landing-wrapper .landing-squares {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -350px;
        margin-left: -350px;
    }

    /* Slides 2, 3, 4, 5 common layout */
    .s2-layout,
    .s3-layout,
    .s4-layout,
    .s5-layout {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        max-width: 100%;
    }

    .s2-left,
    .s3-left,
    .s4-left,
    .s5-left {
        width: 100%;
        padding: 0 35px;
    }

    .s2-left .s2-title-box,
    .s3-left .s3-title-box,
    .s4-left .s4-title-box,
    .s5-left .s5-title-box {
        width: 250px;
        margin: 0 auto;
    }


    .s2-right,
    .s3-right,
    .s4-right,
    .s5-right,
    .s4-key-data,
    .s5-bottom-content {
        width: 100%;
        padding: 0 35px;
    }

    .s2-title-box h2,
    .s3-title-box h2,
    .s4-title-box h2,
    .s5-title-box h2 {
        font-size: 32px;
    }

    .s2-deco-letter {
        font-size: 400px;
        top: 200px;
        left: 0;
        opacity: 0.1;
        width: 100% !important;
        text-align: center;
    }

    .s2-right p,
    .s3-right p,
    .s5-right p,
    .s6-right p,
    .s4-right p,
    .s4-strength-text,
    .s5-goal-item {
        font-size: 17px;
        text-align: left;
    }

    /* Slide 3 specific */

    .s3-highlights {
        flex-direction: row;
    }

    .s3-highlight-item {
        width: 300px;
    }

    .s3-highlight-item .text {
        font-size: 12px;
    }

    /* Slide 4 specific */
    .s4-key-data h2 {
        font-size: 32px;
        text-align: center;
    }

    .s4-data-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }

    .s4-data-label {
        font-size: 18px;
        height: auto;
        min-height: 0;
    }

    .s4-data-value {
        font-size: 45px;
    }

    .s4-data-sub-large {
        font-size: 20px;
    }

    /* Slide 5 specific */
    .s5-bottom-content {
        margin-top: 40px;
    }

    .s5-section-title {
        font-size: 24px;
    }

    /* Slide 6 specific */
    .s6-content p {
        font-size: 20px;
    }

    .s6-logo-container {
        width: 180px;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {

    .home_block.home_block_1 h1,
    .home_block.home_block_1 h2 {
        font-size: 30px;
        line-height: 30px;
    }

    body {
        background-color: #ffffff;
    }

    #main:after {
        display: none !important;
    }

    header {
        width: 100%;
        border-radius: 0;
    }

    header .wrap_logo svg,
    header .wrap_logo img {
        height: 18px;
    }

    .v-slide {
        padding: 60px 20px 30px 20px;
    }

    /* Landing */
    .landing-squares {
        transform: scale(0.45);
    }

    #slide-1 .v-slide-landing-wrapper {
        height: 350px;
    }

    /* General Typography */
    .s2-title-box h2,
    .s3-title-box h2,
    .s4-title-box h2,
    .s5-title-box h2,
    .s4-key-data h2 {
        font-size: 28px;
    }

    .s2-right p,
    .s3-right p,
    .s4-right p,
    .s5-right p,
    .s6-right p,
    .s4-strength-text,
    .s5-goal-item,
    .s3-section-title,
    .s3-director-item,
    .s3-hito-item {
        font-size: 16px;
    }

    /* Column widths */
    .s2-left .s2-title-box,
    .s3-left .s3-title-box,
    .s4-left .s4-title-box,
    .s5-left .s5-title-box {
        width: 200px;
        padding: 15px;
    }

    .s2-right,
    .s3-right,
    .s4-right,
    .s5-right,
    .s4-key-data,
    .s5-bottom-content {
        padding: 0;
    }

    /* Slide 3 specific */
    .s3-highlights {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .s3-highlight-item {
        width: 100%;
        max-width: 320px;
    }

    /* Slide 4 specific */

    .s4-data-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .s4-data-value {
        font-size: 50px;
    }

    .s4-data-label {
        font-size: 20px;
        margin-bottom: 10px;
    }

    /* Slide 6 specific */
    .s6-content p {
        font-size: 18px;
    }

    .s6-logo-container {
        width: 150px;
    }

    footer,
    footer .copy_footer,
    footer .menu_footer {
        position: static;
        height: auto;
        display: block;
        text-align: center;
        width: 100%;
    }

    footer .copy_footer {
        margin-bottom: 10px;
    }

    .s2-right .timelineItem-year {
        font-size: 20px;

    }

    .s2-right .timelineItem-year::after {
        border-right: 5px dotted var(--primary-color);
    }

    .s5-section-icon {
        width: 40px;
    }
}

/* Small mobile adjustments */
@media (max-width: 399px) {

    .home_block.home_block_1 h1,
    .home_block.home_block_1 h2 {
        font-size: 24px;
        line-height: 24px;
    }

    .v-slide {
        padding: 50px 15px 30px 15px;
        min-height: auto;
    }

    /* Landing */
    .landing-squares {
        transform: scale(0.35);
    }

    #slide-1 .v-slide-landing-wrapper {
        height: 300px;
    }

    /* General Typography */
    .s2-title-box h2,
    .s3-title-box h2,
    .s4-title-box h2,
    .s5-title-box h2,
    .s4-key-data h2 {
        font-size: 24px;
    }

    .s2-right p,
    .s3-right p,
    .s4-right p,
    .s5-right p,
    .s6-right p,
    .s4-strength-text,
    .s5-goal-item,
    .s3-section-title,
    .s3-director-item,
    .s3-hito-item {
        font-size: 15px;
    }

    /* Column widths */
    .s2-left .s2-title-box,
    .s3-left .s3-title-box,
    .s4-left .s4-title-box,
    .s5-left .s5-title-box {
        width: 170px;
    }

    /* Slide 4 specific */
    .s4-data-value {
        font-size: 40px;
    }

    .s4-data-label {
        font-size: 18px;
    }

    .s4-data-sub-large {
        font-size: 18px;
    }

    /* Slide 6 specific */
    .s6-content p {
        font-size: 16px;
    }

    .s6-logo-container {
        width: 130px;
    }
}

.v-slides-container-nars .s2-deco-letter,
.v-slides-container-cme .s2-deco-letter {
    font-size: 200px;
    white-space: nowrap;
}

.v-slides-container-levante-baleares .s2-deco-letter {
    font-size: 200px;
    white-space: nowrap;
}

/* MAPA INTERACTIVO INDEX */
.map-container {
    width: 1150px;
    height: 852px;
    margin: 40px auto;
    position: relative;

}

.map-wrapper {
    width: 4500px;
    height: 3333px;
    line-height: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.25);
}

.map-wrapper area {
    cursor: pointer;
}

.map-base {
    width: 100%;
    height: auto;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 5;
    cursor: pointer;
}

.map-overlay.active {
    opacity: 1;
}

/* Responsive adjustments for map container if needed */
@media (max-width: 1279px) {
    .map-container {
        width: 900px;
        height: 700px;

    }

    .map-wrapper {
        transform: translate(-50%, -50%) scale(0.20);
    }
}

/* Responsive adjustments for map container if needed */
@media (max-width: 1023px) {
    .map-container {
        width: 675px;
        height: 500px;

    }

    .map-wrapper {
        transform: translate(-50%, -50%) scale(0.15);
    }
}

/* Responsive adjustments for map container if needed */
@media (max-width: 767px) {
    .map-container {
        width: 450px;
        height: 350px;

    }

    .map-wrapper {
        transform: translate(-50%, -50%) scale(0.1);
    }

    .home_block.home_block_1 {
        min-height: auto;
    }
}

/* Responsive adjustments for map container if needed */
@media (max-width: 449px) {
    .map-container {
        width: 315px;
        height: 250px;

    }

    .map-wrapper {
        transform: translate(-50%, -50%) scale(0.07);
    }
}