/* Declaración de fuentes personalizadas */
@font-face {
    font-family: 'Acropolis HTF';
    src: url('fuentes/Acropolis HTF-Black Regular.otf') format('opentype');
    font-weight: 900; /* Asignar un peso numérico alto para "Black" */
    font-style: normal;
    font-display: swap; /* Mejora la carga de la fuente */
}

/* Resto de tu CSS con las fuentes aplicadas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f5f5f5;
    color: #333;
    font-family: 'Winchester new ITCStd', serif; /* Aplicado al texto normal */
}

html {
    overflow-x: hidden
}

header {
    background-color: #000;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    position: relative;
    gap: 20px;
}

.logo {
    text-align: center;
    flex-grow: 1;
}

.header-buttons {
    display: flex;
    gap: 15px;
    margin-right: auto;
}

.header-button {
    background-color: #d4a762;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    font-family: 'Winchester new ITCStd', serif;
}

.header-button:hover {
    background-color: #b38e55;
}

.logo img {
    height: 50px;
    width: auto;
}

.menu-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    color: white;
    position: static;
    transform: none;
    font-family: 'Winchester new ITCStd', serif;
}

.menu-nav {
    background-color: #000;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
}

.menu-nav.active {
    max-height: 500px;
}

.main-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 15px 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.main-menu > li {
    margin: 0 10px;
    position: relative;
    display: flex;
    justify-content: center;
}

.main-menu a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    padding: 8px 12px;
    transition: color 0.2s;
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: 'Winchester new ITCStd', serif;
}

.main-menu a:hover {
    color: #d4a762;
}

.language-menu {
    display: flex;
    flex-direction: column;
    padding: 8px 12px;
    align-items: center;
    width: 100%;
}

.language-menu span {
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 2px 0;
    cursor: pointer;
    transition: color 0.2s;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    font-family: 'Winchester new ITCStd', serif;
}

.language-menu span:hover,
.language-menu span.selected {
    color: #d4a762;
}

/* Section 1 Styles */
.section1 {
    height: 800px;
    position: relative;
    overflow: hidden;
}

.section1 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.section1-text {
    position: relative;
    z-index: 2;
    font-size: 48px;
    font-weight: 900; /* Usa el peso "Black" de Acropolis HTF */
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 0 20px;
    font-family: 'Acropolis HTF', sans-serif; /* Título */
}

/* Sección 2 */
.section2 {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: left;
    position: relative;
    box-shadow: none;
    border-radius: 0;
    margin-top: 40px;
    margin-bottom: 40px;
    overflow: visible;
}

.section2 .content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding-left: 80px;
    padding-right: 40px;
}

.section2 .text-content {
    flex: 1;
    min-width: 500px;
    max-width: 800px;
}

.section2 .text-content h2,
.section2 .text-content p,
.section2 .text-content .button-container,
.section2 .text-content .note {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: auto;
}

.section2 h2 {
    font-size: 36px;
    color: #333;
    font-weight: 900; /* Usa el peso "Black" de Acropolis HTF */
    margin-bottom: 20px;
    font-family: 'Acropolis HTF', sans-serif; /* Título */
}

.section2 p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    font-family: 'Winchester new ITCStd', serif; /* Texto normal */
}

.section2 p:last-of-type {
    margin-bottom: 0;
}

.section2 .button-container {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.section2 .menu-button-img img {
    height: 100px;
    width: auto;
    transition: transform 0.2s ease;
}

.section2 .menu-button-img img:hover {
    transform: scale(1.05);
}

.section2 .note {
    font-size: 14px;
    color: #555;
    margin-top: 20px;
    font-family: 'Winchester new ITCStd', serif; /* Texto normal */
}

/* ESTILOS PARA LA IMAGEN */
.section2 .image-overlay-container {
    flex-shrink: 0;
    width: 650px;
    height: 950px;
    margin-top: -300px;
    z-index: 3;
    position: relative;
}

.section2 .overlay-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Estilos comunes para ambos carruseles */
.carousel-container {
    position: relative;
    max-width: 1200px; /* Ancho máximo del carrusel */
    margin: 0 auto;
    overflow: hidden; /* Oculta las imágenes que no están visibles */
    padding: 0 40px; /* Espacio para las flechas */
}

.carousel-slides-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Transición suave al mover las imágenes */
}

.carousel-slide {
    flex: 0 0 calc(100% / 3 - 20px); /* 3 imágenes visibles, con 20px de espacio entre ellas */
    margin: 0 10px; /* 10px a cada lado para un total de 20px entre imágenes */
    height: 300px; /* CAMBIADO: Altura para hacer las imágenes más horizontales (escritorio) */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eee;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cubre el área manteniendo la proporción */
    display: block;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    transition: background-color 0.3s;
}

.carousel-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-arrow.left {
    left: 0;
}

.carousel-arrow.right {
    right: 0;
}

/* Sección 3 y 7: Carrusel de Imágenes */
.section3, .section7 { /* APLICADO A AMBOS CAROUSELES */
    background-color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.section3 h2, .section7 h2 { /* Títulos de carruseles */
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;
    font-weight: 900; /* Usa el peso "Black" de Acropolis HTF */
    font-family: 'Acropolis HTF', sans-serif; /* Título */
}

/* Sección 4: Nueva sección con 2 imágenes de fondo y texto */
.section4 {
    display: flex; /* Para que las columnas estén lado a lado */
    min-height: 600px; /* Altura mínima para la sección, ajusta según el contenido */
    background-color: #f5f5f5; /* Color de fondo si las imágenes no cubren todo */
    margin-top: 40px;
    margin-bottom: 0; /* ELIMINADO: Separación con la sección 5 */
}

.section4-left-column {
    flex: 1; /* Ocupa el espacio disponible */
    display: flex; /* Para controlar el posicionamiento del texto */
    align-items: flex-start; /* Alinea el texto al inicio (arriba) de la columna */
    justify-content: flex-start; /* Alinea el texto al inicio (izquierda) de la columna */
    background-image: url('izquierda.png');
    background-size: cover; /* Cubre el área manteniendo la proporción */
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0;
}

.section4-text-content {
    background-color: transparent;
    box-shadow: none;
    padding-left: 40px;
    padding-right: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: 600px;
    text-align: left;
    border-radius: 0;
    width: 100%;
}

.section4-text-content h3 {
    font-size: 40px;
    color: white;
    margin-bottom: 20px;
    font-weight: 900; /* Usa el peso "Black" de Acropolis HTF */
    font-family: 'Acropolis HTF', sans-serif; /* Título */
}

.section4-text-content p {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    font-family: 'Winchester new ITCStd', serif; /* Texto normal */
}

.section4-right-column {
    flex: 1;
    background-image: url('derecha.PNG');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Sección 5: Nueva sección con fondo y texto */
.section5 {
    background-image: url('fondo2.PNG');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 1100px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 60px 0;
    margin-top: 0;
    margin-bottom: 0; /* ELIMINADO: Separación con la sección 6 */
}

.section5-content-wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-right: 80px;
    padding-left: 20px;
}

.section5-text-container {
    max-width: 600px;
    text-align: right;
    color: white;
    line-height: 1.6;
}

.section5-text-container h2 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 900; /* Usa el peso "Black" de Acropolis HTF */
    font-family: 'Acropolis HTF', sans-serif; /* Título */
}

.section5-text-container h3 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 900; /* Usa el peso "Black" de Acropolis HTF o ajusta si quieres un peso menor */
    font-family: 'Acropolis HTF', sans-serif; /* Título */
}

.section5-text-container p {
    font-size: 18px;
    margin-bottom: 15px;
    font-family: 'Winchester new ITCStd', serif; /* Texto normal */
}

.section5-text-container p:last-of-type {
    margin-bottom: 0;
}

/* Sección 6: Similar a la sección 2, pero con texto a la derecha e imagen a la izquierda */
.section6 {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: left;
    position: relative;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0; /* ELIMINADO: Separación con la sección 5 */
    margin-bottom: 0; /* ELIMINADO: Separación con la sección 7 */
    overflow: visible;
}

.section6 .content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding-left: 40px;
    padding-right: 80px;
}

.section6 .text-content {
    flex: 1;
    min-width: 500px;
    max-width: 800px;
    text-align: left;
}

.section6 .text-content h2 {
    font-size: 36px;
    color: #333;
    font-weight: 900; /* Usa el peso "Black" de Acropolis HTF */
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: auto;
    font-family: 'Acropolis HTF', sans-serif; /* Título */
}

.section6 .text-content h3 {
    font-size: 22px;
    color: #333;
    font-weight: 900; /* Usa el peso "Black" de Acropolis HTF o ajusta si quieres un peso menor */
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: auto;
    font-family: 'Acropolis HTF', sans-serif; /* Título */
}

.section6 .text-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    margin-left: 0;
    margin-right: auto;
    font-family: 'Winchester new ITCStd', serif; /* Texto normal */
}

/* ESTILOS PARA LA IMAGEN DE SECTION 6 */
.section6 .image-overlay-container {
    flex-shrink: 0;
    width: 650px;
    height: 950px;
    margin-top: -275px;
    z-index: 3;
    position: relative;
}

.section6 .overlay-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Sección 8: Similar a la sección 4, con imágenes de fondo y texto en blanco a la izquierda */
.section8 {
    display: flex;
    min-height: 600px;
    background-color: #f5f5f5;
    margin-top: 0; /* ELIMINADO: Separación con la sección 7 */
    margin-bottom: 0; /* ELIMINADO: Separación con el footer */
}

.section8-left-column {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background-image: url('izquierda_2.PNG');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0;
}

.section8-text-content {
    background-color: transparent;
    box-shadow: none;
    padding-left: 40px;
    padding-right: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: 600px;
    text-align: left;
    border-radius: 0;
    width: 100%;
}

.section8-text-content h2 {
    font-size: 40px;
    color: white;
    margin-bottom: 10px;
    font-weight: 900; /* Usa el peso "Black" de Acropolis HTF */
    font-family: 'Acropolis HTF', sans-serif; /* Título */
}

.section8-text-content h3 {
    font-size: 22px;
    color: white;
    font-weight: 900; /* Usa el peso "Black" de Acropolis HTF o ajusta si quieres un peso menor */
    margin-bottom: 20px;
    font-family: 'Acropolis HTF', sans-serif; /* Título */
}

.section8-text-content p {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    font-family: 'Winchester new ITCStd', serif; /* Texto normal */
}

.section8-right-column {
    flex: 1;
    background-image: url('derecha_2.PNG');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* FOOTER STYLES */
.footer {
    background-color: #000;
    color: white; /* Todo el texto del footer será blanco por defecto */
    padding: 80px 20px; /* AUMENTADO: Más padding vertical para hacerlo más largo */
    display: flex;
    flex-direction: column; /* Apila el header y el contenido */
    align-items: center; /* Centra el contenido horizontalmente */
    text-align: center; /* Alineación por defecto para el texto del footer */
}

.footer-header {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 60px; /* AUMENTADO: Más espacio entre el logo y las columnas */
}

.footer-header .logo {
    flex-grow: 0; /* Desactiva el crecimiento del logo */
    text-align: center; /* Centra el logo */
}

.footer-header .logo img {
    height: 90px; /* AUMENTADO: Tamaño del logo en el footer */
    width: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* CAMBIADO: Centra las columnas */
    max-width: 1200px;
    width: 100%;
    gap: 60px; /* AUMENTADO: Más espacio entre columnas */
}

.footer-column {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center; /* CAMBIADO: Centra el texto de cada columna */
}

.footer-column h4 {
    font-size: 20px; /* AUMENTADO: Títulos de columna un poco más grandes */
    font-weight: 900; /* Usa el peso "Black" de Acropolis HTF */
    color: white; /* CAMBIADO: Color blanco para los títulos */
    margin-bottom: 25px; /* AUMENTADO: Más espacio debajo de los títulos */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Acropolis HTF', sans-serif; /* Título */
}

.footer-column h4 a { /* NUEVO: Estilo para el enlace dentro de h4 (JOIN THE TEAM) */
    color: white; /* Asegura que el enlace dentro de h4 sea blanco */
    text-decoration: none; /* Quita el subrayado por defecto */
    transition: color 0.2s;
    font-family: 'Acropolis HTF', sans-serif; /* Título */
}

.footer-column h4 a:hover {
    color: #d4a762; /* Mantiene el hover dorado */
}

.footer-column p {
    font-size: 15px; /* AUMENTADO: Texto normal un poco más grande */
    line-height: 1.8; /* AUMENTADO: Más espacio entre líneas */
    margin-bottom: 10px; /* AUMENTADO: Más espacio entre párrafos */
    color: white; /* Asegura que el color sea blanco */
    font-family: 'Winchester new ITCStd', serif; /* Texto normal */
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 15px; /* AUMENTADO: Enlaces un poco más grandes */
    transition: color 0.2s;
    display: block;
    margin-bottom: 8px; /* AUMENTADO: Más espacio entre enlaces */
    font-family: 'Winchester new ITCStd', serif; /* Texto normal */
}

.footer-column a:hover {
    color: #d4a762; /* Mantiene el hover dorado */
}

.footer-column .location-info {
    margin-bottom: 35px; /* AUMENTADO: Más espacio entre bloques de ubicación */
}

.footer-column .location-info img {
    height: 35px; /* AUMENTADO: Iconos de ubicación más grandes */
    width: auto;
    vertical-align: middle;
    margin-right: 12px; /* AUMENTADO: Más espacio a la derecha del icono */
    margin-bottom: 8px; /* AUMENTADO: Más espacio debajo del icono */
}

.footer-column .social-icons {
    display: flex;
    justify-content: center; /* Centra los iconos sociales */
    gap: 20px; /* AUMENTADO: Más espacio entre iconos sociales */
    margin-top: 25px; /* AUMENTADO: Más espacio arriba de los iconos */
    margin-bottom: 40px; /* AUMENTADO: Más espacio debajo de los iconos */
}

.footer-column .social-icons i {
    font-size: 35px; /* AUMENTADO: Iconos sociales más grandes */
    color: white;
    transition: color 0.2s;
}

.footer-column .social-icons i:hover {
    color: #d4a762;
}

.footer-column .language-options span {
    display: block;
    font-size: 15px; /* AUMENTADO: Opciones de idioma más grandes */
    cursor: pointer;
    margin-bottom: 8px; /* AUMENTADO: Más espacio entre opciones de idioma */
    transition: color 0.2s;
    color: white; /* Asegura que el color sea blanco */
    font-family: 'Winchester new ITCStd', serif; /* Texto de idioma normal */
}

.footer-column .language-options span:hover,
.footer-column .language-options span.selected {
    color: #d4a762; /* Mantiene el hover y seleccionado dorado */
}


@media (max-width: 992px) { /* Para tablets y pantallas un poco más pequeñas */
    .section4 {
        flex-direction: column;
        min-height: auto;
    }
    .section4-left-column,
    .section4-right-column {
        width: 100%;
        min-height: 400px;
    }
    .section4-text-content {
        max-width: 90%;
        padding-left: 30px;
        padding-right: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
        margin: 0 auto;
    }
    .section4-left-column {
        justify-content: center;
        align-items: center;
    }

    /* Sección 5 en Tablet */
    .section5 {
        justify-content: center;
        text-align: center;
        min-height: 900px;
    }
    .section5-content-wrapper {
        padding-right: 20px;
        padding-left: 20px;
    }
    .section5-text-container {
        text-align: center;
        max-width: 80%;
    }
    .section5-text-container h2 {
        font-size: 40px;
    }
    .section5-text-container h3 {
        font-size: 20px;
    }
    .section5-text-container p {
        font-size: 16px;
    }

    /* Sección 6 en Tablet */
    .section6 .content-wrapper {
        flex-direction: column;
        align-items: center;
        padding-left: 20px;
        padding-right: 20px;
    }
    .section6 .text-content {
        text-align: center;
        min-width: 100%;
        max-width: 100%;
    }
    .section6 .text-content h2,
    .section6 .text-content h3,
    .section6 .text-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .section6 .image-overlay-container {
        position: static;
        width: 100%;
        height: auto;
        margin-top: 0;
        order: -1;
    }

    /* Carrusel de Imágenes en Tablet (se aplican los mismos estilos genéricos) */
    .carousel-slide {
        height: 250px;
    }

    /* Sección 8 en Tablet */
    .section8 {
        flex-direction: column;
        min-height: auto;
    }
    .section8-left-column,
    .section8-right-column {
        width: 100%;
        min-height: 400px;
    }
    .section8-text-content {
        max-width: 90%;
        padding-left: 30px;
        padding-right: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
        margin: 0 auto;
    }
    .section8-left-column {
        justify-content: center;
        align-items: center;
    }

    /* FOOTER en Tablet */
    .footer {
        padding: 60px 20px; /* Ajuste de padding para tablet */
    }
    .footer-header {
        margin-bottom: 40px; /* Ajuste de margen para tablet */
    }
    .footer-content {
        flex-direction: column; /* Apila las columnas en tablet */
        align-items: center;
        gap: 40px; /* Ajuste de gap para tablet */
    }
    .footer-column {
        min-width: auto;
        max-width: 90%;
        width: 100%;
        text-align: center; /* Centra el texto de las columnas en tablet */
    }
    .footer-column h4 {
        margin-bottom: 20px;
    }
    .footer-column .social-icons {
        margin-bottom: 30px;
    }
    .footer-column .language-options span {
        display: inline-block; /* Para que los idiomas estén en línea */
        margin: 0 15px;
    }
}


@media (max-width: 768px) {
    .main-menu {
        flex-direction: column;
        align-items: center;
        padding: 10px 20px;
    }
    .main-menu > li {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
    .main-menu a {
        padding: 10px 0;
    }
    .language-menu {
        align-items: center;
        width: 100%;
    }
    .language-menu span {
        width: 100%;
        text-align: center;
    }
    .section1 {
        height: 450px;
    }
    .section1-text {
        font-size: 32px;
    }
    .section2 {
        padding: 40px 0px;
        text-align: left;
    }

    .section2 .content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
        padding-right: 20px;
        gap: 5px;
    }

    .section2 .text-content {
        min-width: 100%;
        max-width: 100%;
    }

    .section2 .text-content h2,
    .section2 .text-content p,
    .section2 .text-content .button-container,
    .section2 .text-content .note {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: auto;
    }

    .section2 .button-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .section2 .menu-button-img img {
        height: 80px;
    }

    .section2 .image-overlay-container {
        position: static;
        width: 100%;
        height: auto;
        margin-top: 0px;
        order: -1;
        left: auto;
        right: auto;
        top: auto;
    }

    .section2 .overlay-image {
        object-fit: contain;
    }

    /* Carrusel de Imágenes en Móvil */
    .carousel-container {
        padding: 0 10px;
    }
    .carousel-slide {
        flex: 0 0 calc(100% - 20px);
        margin: 0 10px;
        height: 200px;
    }
    .carousel-arrow {
        padding: 10px 5px;
        font-size: 20px;
    }

    /* Sección 4 en Móvil */
    .section4-text-content {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
        max-width: 100%;
    }
    .section4-text-content h3 {
        font-size: 32px;
    }
    .section4-text-content p {
        font-size: 16px;
    }
    .section4-left-column,
    .section4-right-column {
        min-height: 300px;
    }

    /* Sección 5 en Móvil */
    .section5 {
        justify-content: center;
        text-align: center;
        min-height: 750px;
        margin-top: 0;
    }
    .section5-content-wrapper {
        padding-right: 15px;
        padding-left: 15px;
    }
    .section5-text-container {
        text-align: center;
        max-width: 100%;
    }
    .section5-text-container h2 {
        font-size: 36px;
    }
    .section5-text-container h3 {
        font-size: 20px;
    }
    .section5-text-container p {
        font-size: 16px;
    }

    /* Sección 6 en Móvil */
    .section6 .content-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
    .section6 .text-content h2,
    .section6 .text-content h3,
    .section6 .text-content p {
        margin-left: auto;
        margin-right: auto;
    }

    /* Sección 8 en Móvil */
    .section8-text-content {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
        max-width: 100%;
    }
    .section8-text-content h2 {
        font-size: 32px;
    }
    .section8-text-content h3 {
        font-size: 20px;
    }
    .section8-text-content p {
        font-size: 16px;
    }
    .section8-left-column,
    .section8-right-column {
        min-height: 300px;
    }

    /* FOOTER en Móvil */
    .footer {
        padding: 40px 15px;
        gap: 25px;
    }
    .footer-header {
        margin-bottom: 30px;
    }
    .footer-header .logo img {
        height: 70px;
    }
    .footer-column {
        text-align: center;
    }
    .footer-column .social-icons {
        margin-bottom: 20px;
    }
    .footer-column .language-options span {
        margin: 0 8px;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap; /* Permite que los elementos se envuelvan */
        justify-content: center; /* Centra los elementos */
        gap: 10px; /* Reducir el espacio en móviles */
    }

    .logo {
        flex-basis: 100%; /* El logo ocupa todo el ancho */
        margin-bottom: 10px; /* Espacio debajo del logo */
    }

    .header-buttons {
        flex-basis: 100%; /* Los botones ocupan todo el ancho */
        justify-content: center; /* Centra los botones en móvil */
        margin-right: 0; /* Elimina el margen automático */
        margin-bottom: 10px; /* Espacio debajo de los botones */
    }

    .header-button {
        padding: 8px 12px;
        font-size: 12px;
    }

    .menu-button {
        flex-basis: 100%; /* El botón de menú ocupa todo el ancho */
        text-align: center; /* Centra el botón de menú */
        margin-left: auto;
        margin-right: auto;
    }

    .menu-nav.active {
        max-height: 500px;
        position: static; /* Cambia a estático para que no se superponga */
    }
}

/* Ajustes para el menú de navegación cuando está activo en móvil */
@media (max-width: 768px) {
    .menu-nav {
        /* Asegura que el menú ocupe el espacio completo cuando se abre */
        position: absolute; /* Vuelve a absolute para que se superponga al contenido */
        top: 100%; /* Debajo del header */
        left: 0;
        width: 100%;
        background-color: #000;
        z-index: 998; /* Un z-index menor que el del header-top para que no tape el logo/botones cuando está cerrado, pero alto cuando abierto */
    }

    .main-menu {
        flex-direction: column;
        align-items: center;
        padding: 10px 20px;
    }
}

/* NEW: Styles for bottom legal links */
.footer-bottom-legal {
    margin-top: 40px; /* Space above legal links section */
    padding-top: 20px; /* Padding within the section */
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Optional: a subtle line above the links */
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center; /* Center the links horizontally */
    align-items: center;
    flex-wrap: wrap; /* Allow links to wrap on smaller screens */
    gap: 15px; /* Space between links */
}

.footer-bottom-legal a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    white-space: nowrap; /* Prevent links from breaking */
    font-family: 'Winchester new ITCStd', serif; /* Texto normal */
}

.footer-bottom-legal a:hover {
    color: #d4a762;
}

.footer-bottom-legal .legal-separator {
    color: white;
    font-size: 14px;
    margin: 0 5px; /* Space around the separator */
    font-family: 'Winchester new ITCStd', serif; /* Texto normal */
}

/* ... (otras media queries existentes) ... */

@media (max-width: 992px) {
    /* ... (otros estilos) ... */
    /* NEW: Legal links on tablet */
    .footer-bottom-legal {
        flex-direction: row; /* Keep horizontal */
        gap: 10px; /* Adjust gap */
    }
}

@media (max-width: 768px) {
    /* ... (otros estilos) ... */
    /* NEW: Legal links on mobile */
    .footer-bottom-legal {
        flex-direction: column; /* Stack vertically on very small screens */
        gap: 8px; /* Adjust gap */
    }
    .footer-bottom-legal .legal-separator {
        display: none; /* Hide separator when stacked vertically */
    }
}

/* Estilo del texto por defecto */
.amsterdam-link .location-info p, 
.amsterdam-link .location-info a {
    transition: color 0.2s ease; /* Añade una transición suave al color */
    color: inherit; /* Mantiene el color original del texto */
}

/* Cambia el color del texto cuando el enlace se sobrepasa con el cursor */
.amsterdam-link:hover .location-info p,
.amsterdam-link:hover .location-info a {
    color: #d4a762; /* El color naranja deseado */
}