﻿/* ========================================= 
   ÍNDICE DE ESTILOS META EXPERIENCIAS
   =========================================
   1. Variables Globales
   2. Configuraciones de Fuentes
   3. Estilos Base y Tipografía
   4. Componentes Reutilizables
   5. Secciones Específicas
      5.1 Banner
      5.2 Valores
      5.3 Colaboración
      5.4 Agencias
      5.5 Afiliación
      5.6 Proveedores
      5.7 OTAS
   6. Componentes de Slider
   7. Secciones de Página de Inicio
   8. Media Queries
*/

/* 1. VARIABLES GLOBALES */
:root {
    /* Fuentes */
    --font-base: 'MontserratThin', sans-serif;
    --font-branding: var(--font-base);
    --font-titulo: 'MontHeavyDemo', sans-serif;
    --font-subtitulo: 'MontserratThin', sans-serif;
    --font-texto: 'MontserratThin', sans-serif;
    --font-resaltadores: 'RocaOneRg', sans-serif;
    --font-family: var(--font-base);

    /* Colores */
    --verde-oscuro: #2E4548;
    --verde-medio: #62D1B3;
    --verde-claro: #CCE8D6;
    --amarillo-oro: #F2C157;
    --blanco: #ffffff;
    --gris-oscuro: #1A1A1A;
    --gris-texto: #333;
}

/* 2. CONFIGURACIONES DE FUENTES */
@font-face {
    font-family: 'MontHeavyDemo';
    src: url('../fonts/meta/Mont-Heavy.woff2') format('woff2'),
         url('../fonts/meta/Mont-Heavy.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MontserratThin';
    src: url('../fonts/meta/Montserrat-Thin.woff2') format('woff2'),
         url('../fonts/meta/Montserrat-Thin.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'RocaOneRg';
    src: url('../fonts/meta/subset-RocaOne-Rg.woff2') format('woff2'),
         url('../fonts/meta/subset-RocaOne-Rg.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* 3. ESTILOS BASE Y TIPOGRAFÍA */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titulo) !important;
}

p, a {
    font-family: var(--font-texto) !important;
    font-weight: 600 !important;
}

span {
    font-weight: 600 !important;
}

.nav__link {
    font-size: 18px;
}

/* 4. COMPONENTES REUTILIZABLES */
.btn-press {
    transition: transform 0.1s ease;
}

.btn-press:active {
    transform: scale(0.95);
}

/* 5. SECCIONES ESPECÍFICAS */
/* 5.1 Banner */
.banner-meta-experiencias__imagen {
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    color: white;
}

.banner-meta-experiencias {
    text-align: center;
}

.banner-meta-experiencias__titulo {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: right;
    margin: 0;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-meta-experiencias__contenido {
    background-color: white;
    padding: 2rem;
}

.banner-meta-experiencias__texto {
    color: var(--verde-oscuro);
    font-family: var(--font-titulo);
    font-weight: 900;
    font-size: 3rem;
    line-height: 1.2;
    text-align: center;
}

/* 5.2 Valores */
.valores-meta-experiencias {
    margin-top: 5rem;
}

.valores-meta-experiencias__header {
    background-color: var(--amarillo-oro);
    padding: 1.5rem;
    text-align: center;
}

.valores-meta-experiencias__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}

.valores-meta-experiencias__item {
    padding: 2rem 1.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.valores-meta-experiencias__item--autenticidad,
.valores-meta-experiencias__item--sencillez {
    background-color: var(--verde-oscuro);
    color: var(--amarillo-oro);
}

.valores-meta-experiencias__item--accesibilidad {
    background-color: var(--verde-medio);
    color: #1A1A1A;
}

.valores-meta-experiencias__item--respeto {
    background-color: var(--verde-claro);
    color: #1A1A1A;
}

.valores-meta-experiencias__titulo {
    margin: 1rem 0 0.5rem;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 5px;
}

.valores-meta-experiencias__descripcion {
    font-size: 0.8rem;
    font-weight: bold !important;
    max-width: 250px;
    padding: 0px 10px;
    text-align: center;
}

.valores-meta-experiencias__icon img {
    width: 100px;
    height: 100px;
}

/*TEXTO COLUMNAS*/
    .colaboracion-meta-experiencias {
        background-image: url('https://eurocdn.azureedge.net/bucket/EBE/general/775Fondo-Nosotros.avif');
        background-repeat: no-repeat;
        background-size: cover;
        background-color: #fff;
        margin-left: calc(-50vw + 50%);
        position: relative;
        z-index: 0;
    }

.colaboracion-meta-experiencias__titulo {
    font-weight: 800;
    color: var(--verde-oscuro);
    position: relative;
    z-index: 1;
    padding: 10px 29rem;
    font-size: 2.5rem;
}

.colaboracion-meta-experiencias__texto,
.colaboracion-meta-experiencias__imagen {
    position: relative;
    z-index: 1;
}

.colaboracion-meta-experiencias__columna-texto {
    padding: 1rem 4rem 1rem 12rem;
}

.colaboracion-meta-experiencias__columna-imagen {
    padding: 4rem 6rem 4rem 2rem;
}

.colaboracion-meta-experiencias__textoStrong {
    color: var(--main-color);
    font-weight: 700;
}
.colaboracion-meta-experiencias__parrafo{
}
.colaboracion-meta-experiencias__textSpan {
    font-size: 2.1rem;
    font-weight: 900;
    margin-top: 4rem;
    color: var(--verde-oscuro);
}

/***************************************** AGENCIAS *******************************************/
.bannerAgencias-meta-experiencias__imagen {
    background-image: url('https://eurocdn.azureedge.net/bucket/EBE/general/689agencias.avif');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    color: #ffffff;
}

.bannerAgencias-meta-experiencias {
    text-align: center;
}

.bannerAgencias-meta-experiencias__titulo {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: right;
    margin: 0;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.bannerAgencias-meta-experiencias__contenido {
    background-color: white;
    padding: 2rem;
}

.bannerAgencias-meta-experiencias__texto {
    color: #12333C;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.6;
}

.bannerAgencias-meta-experiencias__texto {
    text-align: center;
}


.fondo-meta-experiencias--agencias {
    /* background-image: url(/assets/img/Nosotros-Web-Fondo2.jpg); */
    background-image: url('https://eurocdn.azureedge.net/bucket/EBE/general/17Fondo-Agencias.avif');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #fff;
    margin-left: calc(-50vw + 50%);
    position: relative;
    z-index: 0;
}

/* Encabezado AGENCIAS */
.agencias-meta-header {
    background-color: var(--verde-oscuro);
    background-size: cover;
    background-position: center;
    text-align: center;
}

    .agencias-meta-header h1 {
        font-family: var(--font-titulo);
        font-size: 3rem;
        font-weight: 800;
        color: white;
    }

/* Cuerpo contenido */
.agencias-meta-experiencias {
    font-family: var(--font-texto);
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

    .agencias-meta-experiencias h3,
    .agencias-meta-experiencias h5 {
        font-family: var(--font-titulo);
        color: var(--verde-oscuro);
    }

    .agencias-meta-experiencias ul {
        font-size: 1rem;
        color: #333;
        font-weight: 600;
    }

    .agencias-meta-experiencias li {
        margin-top: 1rem;
        line-height: 1.6;
    }

    .agencias-meta-experiencias p {
        font-size: 1rem;
        color: #333;
        line-height: 1.7;
    }

        .agencias-meta-experiencias p.fw-bold {
            font-family: var(--font-resaltadores);
            font-size: 1.1rem;
            color: #000;
        }

    /* Imagen decorativa */
    .agencias-meta-experiencias img {
        border-radius: 8px;
        max-width: 100%;
        height: auto;
    }

    .list-icon {
        color: var(--amarillo-oro); 
        font-size: 1.5rem; 
        margin-right: 1.5rem; 
    }


/******************* AFILIATE ************************/



.bannerAfiliate-meta-experiencias__imagen {
    background-image: url('https://eurocdn.azureedge.net/bucket/EBE/general/367encabesad_0001_AdobeStock_47956937-1.avif');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    color: #ffffff;
}

.bannerAfiliate-meta-experiencias {
    text-align: center;
}

.bannerAfiliate-meta-experiencias__titulo {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: right;
    margin: 0;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ENCABEZADO */
.afiliate-meta-encabezado {
    background-color: #ffffff;
    font-family: var(--font-texto);
    margin-block: 7rem;
}

.afiliate-meta-encabezado--logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .afiliate-meta-encabezado--logo h2 {
        color: var(--verde-oscuro);
        font-family: var(--font-titulo);
        font-size: 4.5rem;
        font-weight: 900
    }

    .afiliate-meta-encabezado--logo img {
        width: 600px;

    }

    .afiliate-meta-encabezado p {
        color: #1d1d1b;
        line-height: 1.7;
        font-size: 1.2rem;
        line-height: 1.4;
    }




/* COLUMNA DE BENEFICIOS */
.afiliate-meta-beneficios {
    font-family: var(--font-texto);
    background-color: #ffffff;
    position: relative;
}

        .bg-success-subtle {
            background-color: #c3e5d3 !important;
            height: 100%;
            width: 100%;
            transition: all 0.3s ease;
            transform: translateY(0);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
    
            .bg-success-subtle h5 {
                font-family: var(--font-titulo);
                font-size: 2.5rem;
                line-height: 1.2;
                font-weight: 900;
                color: var(--verde-oscuro);
                margin-block: 3rem;
            }
        
            .bg-success-subtle p {
                font-size: 1.2rem;
                color: var(--verde-oscuro);
                line-height: 1.3;
            }

            
            .bg-success-subtle:hover {
                transform: translateY(-10px);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            }
    
        .bg-success-light {
            background-color: #c3e5d3 !important;
            height: 100%;
            width: 100%;
            transition: all 0.3s ease;
            transform: translateY(0);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
    
            .bg-success-light h5 {
                font-family: var(--font-titulo);
                font-size: 2.5rem;
                line-height: 1.2;
                font-weight: 900;
                color: var(--verde-oscuro);
                margin-block: 3rem;
            }
        
            .bg-success-light p {
                font-size: 1.2rem;
                color: var(--verde-oscuro);
                line-height: 1.3;
            }
            
            .bg-success-light:hover {
                transform: translateY(-10px);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            }
    
        .bg-dark {
            background-color: var(--verde-oscuro) !important;
            height: 100%;
            width: 100%;
            transition: all 0.3s ease;
            transform: translateY(0);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

            .bg-dark h5 {
                font-family: var(--font-titulo);
                font-size: 2.5rem;
                line-height: 1.2;
                font-weight: 900;
                color: #c3e5d3;
                margin-block: 3rem;
            }

            .bg-dark p {
                font-size: 1.2rem;
                color: #c3e5d3;
                line-height: 1.3;
            }
            
            .bg-dark:hover {
                transform: translateY(-10px);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            }


.divider-yellow {
    position: absolute;
    top: 0px;
    width: 80px;
    height: 80px;
    background: var(--amarillo-oro);
    border-radius: 0px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.divider-left {
    left: -30px;
}

.divider-right {
    right: -30px;
}

@media (max-width: 991px) {
    .divider-yellow {
        display: none;
    }
}

/* CTA FINAL */
.afiliate-meta-cta {
    margin-block: 4rem;
}

    .afiliate-meta-cta--container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .afiliate-meta-cta .btn {
        font-size: 3rem;
        padding: 1rem 3rem;
        font-family: var(--font-titulo);
        color: var(--verde-oscuro);
        background-color: var(--amarillo-oro);
        border-radius: 0px;
        border: none;
        transition: all 0.3s ease;
        transform: translateY(0);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

        .afiliate-meta-cta .btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
            background-color: var(--amarillo-oro);
            color: var(--verde-oscuro);
        }

/**************************************************************END AFILIATE*****************************************************/

/**************************************************************PROVEEDORES******************************************************/
.bannerProveedores-meta-experiencias__imagen {
    background-image: url('https://eurocdn.azureedge.net/bucket/EBE/general/613encabesados_0001_285701737_182606674109311_2767956070170956777_n.avif');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    color: #ffffff;
}

.bannerProveedores-meta-experiencias__titulo {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: right;
    margin: 0;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


.proveedores-meta-intro {
    font-family: var(--font-texto);
    background-color: #fff;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.proveedores-meta-text{
    padding: 0 7rem;
}

.proveedores-meta-intro h2 {
    font-family: var(--font-titulo);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--verde-oscuro);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    margin-left: 0px;
}

    .proveedores-meta-intro p {
        font-family: var(--font-texto);
        color: #333;
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .proveedores-meta-intro img {
        border-radius: 8px;
        width: 100%;
        height: auto;
    }

.proveedores-meta-tipos__container {
    margin: 0px;
    padding: 0px;
    background-color: #CCE8D6;
    max-width: 100%;
}

.proveedores-meta-tipos__container-title {
    font-family: var(--font-texto);
    padding: 2.5rem 0;

}

.proveedores-meta-tipos__container-row{
    margin-right: 0px;
}

.proveedores-meta-tipos__container-img {
    width: 90px;
    height: 90px;
}
.proveedores-meta-tipos__container-img-start {
    width: 20rem;
    height: auto;
}

.proveedores-meta-tipos__container-parrafo {
    padding: 0 1rem;
}

.proveedores-meta-tipos__container-beneficios {
    padding: 1rem 3rem 1rem 3rem;
}

.proveedores-meta-tipos__container-beneficios-parrafo {
    padding: 0px 20rem;
    text-align: center;
}
.proveedores-meta-excelencia {
    background-color: #fff;
    background-image: url('https://eurocdn.azureedge.net/bucket/EBE/fondoProveedores/766fondo-ezgif.com-webp-to-png-converter.png');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    padding-bottom: 5rem;
}

.proveedores-meta-excelencia-parrafo {
    padding-right: 30px;
    font-family: var(--font-texto);
}

.proveedores-meta-excelencia-title {
    font-family: var(--font-titulo);
}

.proveedores-meta-excelencia-row {
    margin-left: 5rem;
    padding-right: 5rem;

}

/**************************************************************END PROVEEDORES******************************************************/

/************************************************************** OTAS ******************************************************/
.bannerOtas-meta-experiencias__imagen {
    background-image: url('https://eurocdn.azureedge.net/bucket/EBE/general/375encabesado_0001_DSC00137.avif');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    color: #ffffff;
}

.bannerOtas-meta-experiencias__titulo {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: right;
    margin: 0;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.otas-meta-section {
    background-color: #ffffff;
}

.otas-meta-title {
    font-family: var(--font-titulo);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--verde-oscuro);
    line-height: 1.3;
    margin: 0px;
    margin-bottom: 1.5rem;
}

.otas-meta-text {
    font-family: var(--font-texto);
    color: #333;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.otas-meta-section__col-text {
    padding: 0px 65px;
}

.bg-light-green {
    background-color: #CCE8D6;
}

.bg-dark-green {
    background-color: #2E4548;
}

.text-light-green {
    color: #CCE8D6;
}

.otas-meta-list li,
.otas-meta-bullets li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
}

.otas-meta-list img {
    height: 72px;
    width: 72px;
}

.otas-meta-bullets li::before {
    content: "\2022";
    color: #F2C157;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.otas-meta-col{
    width: 49.5%
}

.otas-meta-beneficios__col{
    padding: 0px 74px;
}

.otas-meta-beneficios__col-parraf {
    color: var(--main-color);
    font-size: 1.2rem;
    line-height: 1.5;
}
/**************************************************************END OTAS******************************************************/


/**************************************************************RESPONSIVE******************************************************/
@media (max-width: 426px) {
    .banner-meta-experiencias__contenido {
        padding: 1rem;
    }

    .banner-meta-experiencias__texto {
        font-size: 1rem;
    }

    .valores-meta-experiencias__header {
        padding: 1rem;
        margin-bottom: 20px;
    }

        .valores-meta-experiencias__header h2 {
            font-size: 1rem;
        }

    .colaboracion-meta-experiencias {
        background-size: contain;
        background-position: center bottom;
        background-repeat: no-repeat;
    }

    .valores-meta-experiencias__item {
        padding: 5px;
    }

    .valores-meta-experiencias__icon img {
        width: 80px;
        height: 80px;
    }

    .valores-meta-experiencias__descripcion {
        font-size: 0.7em;
        padding: 10px 10px;
    }

    .colaboracion-meta-experiencias__titulo {
        padding: 10px;
        font-size: 1.3rem;
    }

    .colaboracion-meta-experiencias__columna-texto {
        padding: 0rem 2rem;
    }

    .colaboracion-meta-experiencias__parrafo {
        font-size: 12px;
    }

    .colaboracion-meta-experiencias__textSpan {
        font-size: 1rem;
        margin-top: 2rem;
    }

    .colaboracion-meta-experiencias__columna-imagen {
        padding: 1rem;
    }

    /******EXPERIECIAS*****/
    .proveedores-meta-text {
        padding: 5px;
    }

    .proveedores-meta-intro h2 {
        font-size: 1.25rem;
    }

    .proveedores-meta-tipos__container-title {
        font-size: 20px;
    }

    .proveedores-meta-tipos__container-img {
        width: 60px;
        height: 60px;
    }
    .proveedores-meta-tipos__container-parrafo {
        font-size: 16px;
    }
    /************************************************************** PROVEEDORES ******************************************************/


    /************************************************************** OTAS ******************************************************/
    .otas-meta-title {
        font-size: 1rem;
    }

    .otas-meta-text {
        font-family: var(--font-texto);
        color: #333;
        font-size: .8rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .otas-meta-section__col-text {
        padding: 0px 10px;
    }


    .otas-meta-list li,
    .otas-meta-bullets li {
        font-size: .8rem;
    }

    .otas-meta-list img {
        height: 50px;
        width: 50px;
    }

    .otas-meta-beneficios{
        margin: 10px;
    }

    .otas-meta-bullets li::before {
        content: "\2022";
        color: #F2C157;
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }

    .otas-meta-col {
        width: 100%
    }

    .otas-meta-beneficios__col {
        padding: 0px 10px;
    }

    .otas-meta-beneficios__col-parraf {
        font-size: .8rem;
    }
    /**************************************************************END OTAS******************************************************/

}


@media (max-width: 768px) {
    .banner-meta-experiencias__contenido {
        padding: 1rem;
    }

    .banner-meta-experiencias__texto {
        font-size: 1.5rem;
    }

    .valores-meta-experiencias__header {
        padding: 1rem;
    }

        .valores-meta-experiencias__header h2 {
            font-size: 1.3rem;
        }

    .colaboracion-meta-experiencias {
        background-size: contain;
        background-position: center bottom;
        background-repeat: no-repeat;
    }

    .valores-meta-experiencias__item {
        padding: 5px;
    }

    .valores-meta-experiencias__icon img {
        width: 80px;
        height: 80px;
    }

    .valores-meta-experiencias__descripcion {
        font-size: 0.7em;
        padding: 10px 10px;
    }

    .colaboracion-meta-experiencias__titulo {
        padding: 10px;
        font-size: 1.3rem;
    }

    .colaboracion-meta-experiencias__columna-texto {
        padding: 0rem 2rem;
    }

    .colaboracion-meta-experiencias__parrafo {
        font-size: 12px;
    }

    .colaboracion-meta-experiencias__textSpan {
        font-size: 1rem;
        margin-top: 2rem;
    }

    .colaboracion-meta-experiencias__columna-imagen {
        padding: 1rem;
    }
    .proveedores-meta-tipos__container-beneficios {
        padding: 1rem;
    }
    .proveedores-meta-tipos__container-beneficios-parrafo {
        font-size: 16px;
        text-align: center;
        padding: 0px;
    }

    .proveedores-meta-excelencia-row {
        margin-left: 0rem;
        padding-right: 0rem;
    }
    .proveedores-meta-excelencia-title {
        font-size: 20px;
    }

    .proveedores-meta-excelencia-parrafo {
        padding-right: 0px;
        font-size: 16px;
    }


    /************************************************************** AFILIATE ******************************************************/
    .afiliate-meta-encabezado--logo h2 {
        font-size: 3.5rem;
    }

    .afiliate-meta-encabezado p {
        font-size: .9rem;
        margin-top: .5rem;
    }

    .bg-success-subtle h5 {
        font-size: 2rem;
        margin-block: 1rem;
    }

    .bg-success-subtle p {
        font-size: 1rem;
    }

    .bg-success-light h5 {
        font-size: 2rem;
        margin-block: 1rem;
    }

    /************************************************************** END AFILIATE ******************************************************/

    /************************************************************** OTAS ******************************************************/
    .otas-meta-title {
        font-size: 1rem;
    }

    .otas-meta-text {
        font-family: var(--font-texto);
        color: #333;
        font-size: .8rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .otas-meta-section__col-text {
        padding: 0px 10px;
    }


    .otas-meta-list li,
    .otas-meta-bullets li {
        font-size: .8rem;
    }

    .otas-meta-list img {
        height: 50px;
        width: 50px;
    }

    .otas-meta-beneficios {
        margin: 10px;
    }

    .otas-meta-bullets li::before {
        content: "\2022";
        color: #F2C157;
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }

    .otas-meta-col {
        width: 100%
    }

    .otas-meta-beneficios__col {
        padding: 0px 10px;
    }

    .otas-meta-beneficios__col-parraf {
        font-size: .8rem;
    }
    /**************************************************************END OTAS******************************************************/

}

@media (max-width: 1024px) {
    .banner-meta-experiencias__contenido {
        padding: 1rem;
    }

    .banner-meta-experiencias__texto {
        font-size: 1.5rem;
    }

    .valores-meta-experiencias__header {
        padding: 1rem;
    }

        .valores-meta-experiencias__header h2 {
            font-size: 1.3rem;
        }

    .colaboracion-meta-experiencias {
        background-size: contain;
        background-position: center bottom;
        background-repeat: no-repeat;
    }

    .valores-meta-experiencias__item {
        padding: 5px;
    }

    .valores-meta-experiencias__icon img {
        width: 80px;
        height: 80px;
    }

    .valores-meta-experiencias__descripcion {
        font-size: 0.7em;
        padding: 10px 10px;
    }

    .colaboracion-meta-experiencias__titulo {
        padding: 10px;
        font-size: 1.3rem;
    }

    .colaboracion-meta-experiencias__columna-texto {
        padding: 0rem 2rem 0PX 3.5rem;
    }

    .colaboracion-meta-experiencias__parrafo {
        font-size: 15px;
    }

    .colaboracion-meta-experiencias__textSpan {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .colaboracion-meta-experiencias__columna-imagen {
        padding: 1rem;
    }
    /************************************************************** OTAS ******************************************************/
    .otas-meta-title {
        font-size: 1rem;
    }

    .otas-meta-text {
        font-family: var(--font-texto);
        color: #333;
        font-size: .8rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .otas-meta-section__col-text {
        padding: 0px 10px;
    }


    .otas-meta-list li,
    .otas-meta-bullets li {
        font-size: .8rem;
    }

    .otas-meta-list img {
        height: 50px;
        width: 50px;
    }

    .otas-meta-beneficios {
        margin: 10px;
    }

    .otas-meta-bullets li::before {
        content: "\2022";
        color: #F2C157;
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }

    .otas-meta-col {
        width: 100%
    }

    .otas-meta-beneficios__col {
        padding: 0px 10px;
    }

    .otas-meta-beneficios__col-parraf {
        font-size: .8rem;
    }
    /**************************************************************END OTAS******************************************************/


}



/* Index */
.MetaExperiencias {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.MetaExperiencias .section__image-container {
    flex: 1;
    text-align: center;
}
.MetaExperiencias .section__image-container img {
    max-width: 100%;
    height: auto;
}
.MetaExperiencias .section__image--tirolesa,
.MetaExperiencias .section__image--texto {
    max-width: 100%;
    height: auto;
}
.MetaExperiencias .section__content {
    color: var(--verde-oscuro);
    text-align: center;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.MetaExperiencias__title {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 1rem;
}
.MetaExperiencias__title .section__description {
    font-size: 1.4em;
    color: var(--verde-oscuro);
    margin-bottom: 1em;
    text-align: center;
}
.MetaExperiencias__title .section__description span {
    font-weight: bold;
    font-family: var(--font-titulo);
}
.MetaExperiencias .section__values {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
.MetaExperiencias .section__value {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}
.MetaExperiencias .section__value-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.MetaExperiencias .section__value-description {
    font-size: 1em;
}
.image-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.section__image-container {
    flex: 1;
    text-align: center;
}
.section__image-container img {
    max-width: 100%;
    height: auto;
}
.MetaExperiencias__image-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.MetaExperiencias__image-container {
    flex: 1;
    text-align: center;
}
.MetaExperiencias__image-container--tirolesa {
    overflow: hidden;
    min-height: 500px;
}
.MetaExperiencias__image {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
.MetaExperiencias__image--tirolesa {
    transform: scale(3.2);
    transform-origin: center center;
}
.SecImagenCentrada__imagen {
    width: 90%;
    max-width: 100%;
    height: auto;
}


.MetaExperiencias {
    background-image: url('https://eurocdn.azureedge.net/bucket/EBE/general/504CuatrimotoB.webp');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 40% auto;
    padding-bottom: 25em;
}
.QueHacemos {
    position: relative;
    height: 500px;
    background-image: url('https://eurocdn.azureedge.net/bucket/EBE/general/9Linea02.svg');
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 40% auto;
}
.QueHacemos__video {
    position: absolute;
    width: auto;
    height: 800px;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    z-index: 1;
}
.QueHacemos__image {
    position: absolute;
    top: 35%;
    left: 75%;
    transform: translateX(-50%);
    z-index: 3;
    width: auto;
    height: 13em;
}
.QueHacemos__text-container {
    position: absolute;
    top: 15%;
    left: 10%;
    transform: translateY(-50%);
    width: 20em;
    height: 26em;
    background-color: #a5c9b8;
    padding: 4rem 2rem 1.5rem 2rem;
    z-index: 2;
}
.QueHacemos__text {
    color: var(--verde-oscuro);
    font-size: 1.75rem;
    margin: 0;
}

.QueHacemos__text span {
    font-family: var(--font-titulo);
    font-weight: bold;
}

/* Estilos para sección de imagen centrada */
.SecImagenCentrada {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.SecImagenCentrada__imagen {
    width: 90%;
    max-width: 100%;
    height: auto;
}


.nav-tabs-v2 .nav-item-v2.show .nav-link-v2, .nav-tabs-v2 .nav-link-v2.active
 {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    border-bottom: 1px solid #fff;
}

/* Estilos para sección Únete */
.Unete {
    position: relative;
    background-color: #a5c9b8;
    /* overflow: hidden; */
    padding: 10rem 2rem 4rem 2rem;
    height: 650px;
    width: 70%;
    margin-top: 50px;
}
.Unete__combi {
    /* se moverá libremente dentro de .UneteSection */
}
.Unete__title {
    /* título posicionado manualmente en UneteSection */
}
.Unete__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    color: var(--verde-oscuro);
    
    line-height: 1.6;
    text-align: start;
    font-family: var(--font-texto);
    font-weight: 600;
}
.Unete__content p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.Unete__content ul {
    list-style-type: disc;
    margin-left: 20px;
}
.Unete__content ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.Unete__content ul li i {
    margin-right: 10px;
}
.Unete__piramide {
    /* ahora cubre el fondo, pero se puede reposicionar */
}

/* Nueva sección para posicion libre */
.UneteSection {
    position: relative;
    height: 900px; /* ajusta la altura según necesidad */
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
}
.UneteSection .Unete__combi {
    position: absolute;
    top: 20px;
    left: -120px;
    z-index: 2;
    max-width: 500px;
}
.UneteSection .Unete__title {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    max-width: 400px;
}
.UneteSection .Unete__piramide {
    position: absolute;
    bottom: -50px;
    right: -150px;
    z-index: 2;
    height: 550px;
    object-fit: contain;
}

.Unete__btn-whatsapp {
    position: absolute;
    left: 10%;
    bottom: 60px;
    z-index: 10;
    display: inline-block;
    transition: transform 0.2s;
}
.Unete__btn-whatsapp img {
    width: 70px;
    height: 70px;
}
.Unete__btn-whatsapp:hover {
    transform: scale(1.08) translateY(-5px);
}

/* ================== MEDIA QUERIES HOME ================== */
@media (max-width: 1200px) {
    .QueHacemos__image {
        position: absolute;
        top: 55%;
        left: 70%;
        transform: translateX(-50%);
        z-index: 3;
        width: auto;
        height: 12em;
    }
    .QueHacemos__text-container {
        top: 15%;
        left: 0%;
    }
    .QueHacemos__video {
        height: 700px;
    }
    .MetaExperiencias {padding-bottom: 20em;}
    .MetaExperiencias__title { width: 90%; }
    .UneteSection .Unete__combi { max-width: 430px; left: -80px; }
    .UneteSection .Unete__title { max-width: 380px; }
    .UneteSection .Unete__piramide { height: 550px; right: -100px; }
}

@media (max-width: 991px) {
    .MetaExperiencias__image-section {flex-direction: column;}
    .MetaExperiencias__title { width: 100%; }
    .MetaExperiencias .section__values { flex-direction: column; align-items: center; }
    .MetaExperiencias__title .section__description { font-size: 1.4rem; }
    .Unete { height: 650px; }
    .UneteSection { height: 800px; }
    .UneteSection .Unete__combi { max-width: 351px; top: 10px; left: -90px; }
    .UneteSection .Unete__title { max-width: 300px; top: 0; }
    .UneteSection .Unete__piramide { height: 430px; right: -100px; bottom: -35px; }
    .Unete__content { font-size: 1.1rem; line-height: 1.2; }
    .QueHacemos { height: 350px; }
    .QueHacemos__video { width: 100%; height: 600px; }
    .QueHacemos__image { height: 10em; }
    .QueHacemos__text-container { width: 15em; height: 20em; padding: 1.5rem; left: 2%; }
    .Unete__btn-whatsapp {
        left: 10%;
        bottom: 30px;
    }
    .Unete__btn-whatsapp img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .MetaExperiencias__image-container--tirolesa { min-height: 300px; }
    .MetaExperiencias__title .section__description { font-size: 1.1rem; }
    .MetaExperiencias { padding-bottom: 22em; background-size: 70% auto;}
    .MetaExperiencias__image-section, .MetaExperiencias__image-container { flex-direction: column; }
    .MetaExperiencias__image { max-width: 90vw; }
    .MetaExperiencias__title { font-size: 1.2em; }
    .UneteSection { height: 800px; }
    .Unete { height: 750px; width: 80%; padding: 5rem 3rem 2rem 5rem; margin-inline: 10%; }
    .UneteSection .Unete__combi { max-width: 350px; left: -225px; top: 0px; }
    .UneteSection .Unete__title { max-width: 250px; top: -50px; left: 65%; }
    .UneteSection .Unete__piramide {height: 450px; right: -220px; bottom: -70px; }
    .SecImagenCentrada { padding: 2rem 0 0 0; }
    .SecImagenCentrada__imagen { width: 100%; }
    .QueHacemos { height: 450px; }
    .QueHacemos__video { height: 600px; }
    .QueHacemos__image { height: 9em; top: 50%; left: 40%; }
    .QueHacemos__text-container { width: 20em; height: 20em; font-size: 0.8em; padding: 1.8rem 1rem; left: -46%; }
    .QueHacemos__text { font-size: 1.5rem;  text-align: center; }
    .Unete__btn-whatsapp {
        left: 30%;
        transform: translateX(-50%);
        bottom: 50px;
    }
    .Unete__btn-whatsapp img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .MetaExperiencias__image-container--tirolesa { min-height: 300px; }
    .MetaExperiencias__title .section__description { font-size: 1.1rem; }
    .MetaExperiencias { padding-bottom: 22em; background-size: 70% auto;}
    .MetaExperiencias__image-section, .MetaExperiencias__image-container { flex-direction: column; }
    .MetaExperiencias__image { max-width: 90vw; }
    .MetaExperiencias__title { font-size: 1.2em; }
    .valores-meta-experiencias__titulo { font-size: 0.6rem; padding: 10px 10px; line-height: 1.3;}
    .UneteSection { height: 800px; }
    .Unete { height: 800px; width: 80%; padding: 5rem 2rem 2rem 5rem; margin-inline: 10%; }
    .UneteSection .Unete__combi { max-width: 350px; left: -230px; top: 0px; }
    .UneteSection .Unete__title { max-width: 250px; top: -50px; left: 65%; }
    .UneteSection .Unete__piramide {height: 350px; right: -190px; bottom: -80px; }
    .SecImagenCentrada { padding: 0 0 0rem 0; margin-top: -80px; }
    .SecImagenCentrada__imagen { width: 100%; }
    .QueHacemos { height: 450px; }
    .QueHacemos__video { height: 500px; width: 90%; }
    .QueHacemos__image { height: 8em; top: -60%; left: 45%; }
    .QueHacemos__text-container { width: 25em; height: 13em; font-size: 0.8em; padding: 1rem 1rem; left: 10%; top: 60%; }
    .QueHacemos__text { font-size: 1.5rem;  text-align: center; }
    .Unete__content { font-size: 1rem; line-height: 1.1; }
    .Unete__btn-whatsapp {
        left: 20%;
        transform: translateX(-50%);
        bottom: 80px;
    }
    .Unete__btn-whatsapp img {
        width: 70px;
        height: 70px;
    }
    .Unete__content p {
        margin-bottom: 10px;
        font-size: 1rem;
    }
    .Unete__content ul li {
        margin-bottom: 10px;
        font-size: 1rem;
    }

    .section-footer-column-title img {
        height: 3rem;
    }
}

@media (max-width: 385px) {
    .UneteSection {
        height: 900px;
    }
    .Unete__content { font-size: 0.9rem; line-height: 1.2; }
    .Unete__content p {
        margin-bottom: 10px;
        font-size: 0.9rem;
    }
    .UneteSection .Unete__piramide {height: 450px; right: -160px; bottom: -80px; }
}



/* Estilos para el slider de Meta */
.sliderMeta {
    position: relative;
    width: 100%;
    height: 500px; /* Altura fija en el contenedor principal */
    overflow: hidden;
}

.sliderMeta__carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.sliderMeta__inner {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Aseguramos que carousel-item mantenga la altura */
.sliderMeta .carousel-item {
    height: 500px;
}

/* Aseguramos que las imágenes mantengan altura fija */
.sliderMeta .carousel-item img,
.sliderMeta .carousel-item picture,
.sliderMeta .carousel-item a {
    height: 500px !important;
    width: 100%;
    object-fit: cover;
    display: block;
}

.sliderMeta__item {
    position: relative;
    width: 100%;
    height: 100%; /* Cambiado a 100% para heredar del padre */
    transition: all 0.3s ease;
}

.sliderMeta__item--active {
    opacity: 1;
}

.sliderMeta__link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.sliderMeta__picture {
    width: 100%;
    height: 100%;
    display: block;
    position: relative; /* Añadido */
}

.sliderMeta__source {
    position: absolute; /* Añadido */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sliderMeta__image {
    position: absolute; /* Añadido */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sliderMeta__control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex; /* Añadido */
    align-items: center; /* Añadido */
    justify-content: center; /* Añadido */
}

.sliderMeta__control:hover {
    background: rgba(0, 0, 0, 1);
}

.sliderMeta__control--prev {
    left: 20px;
}

.sliderMeta__control--next {
    right: 20px;
}

.sliderMeta__control-icon {
    color: #ffffff;
    font-size: 24px;
    width: 24px; /* Añadido */
    height: 24px; /* Añadido */
}

.sliderMeta__control-icon:hover, .sliderMeta__control-icon:focus, .sliderMeta__control-icon:active {
    color: #000000;
}

/* Estilos para la sección de formulario de Meta */
.formMeta-section {
    width: 100%;
    margin-top: -40px;
    z-index: 20;
}

/* Media Queries */
@media (max-width: 768px) {
    .sliderMeta {
        height: 600px; /* Altura fija en móvil */
    }

     /* Actualizamos para mantener consistencia en móvil */
     .sliderMeta .carousel-item,
     .sliderMeta .carousel-item img,
     .sliderMeta .carousel-item picture,
     .sliderMeta .carousel-item a {
         height: 600px !important;
     }

     .sliderMeta .carousel-item {
         height: 600px !important;
     }
    
    .sliderMeta__item {
        height: 600px; /* Cambiado de 400px a 600px */
    }

    .sliderMeta__control {
        width: 40px;
        height: 40px;
    }

    .sliderMeta__control--prev {
        left: 10px;
    }

    .sliderMeta__control--next {
        right: 10px;
    }

    .sliderMeta__control-icon {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }

    .formMeta-section {
        margin-top: -30px;
        padding: 30px 0;
    }
}

@media (max-width: 576px) {
    .sliderMeta {
        height: 400px; /* Reducimos la altura para móviles pequeños */
    }

    .sliderMeta .carousel-item,
    .sliderMeta .carousel-item img,
    .sliderMeta .carousel-item picture,
    .sliderMeta .carousel-item a {
        height: 400px !important;
    }

    .sliderMeta .carousel-item {
        height: 400px !important;
    }

    .sliderMeta__item {
        height: 400px;
    }

    .sliderMeta__control {
        width: 30px; /* Reducimos el tamaño de los controles */
        height: 30px;
    }

    .sliderMeta__control--prev {
        left: 5px; /* Ajustamos la posición */
    }

    .sliderMeta__control--next {
        right: 5px; /* Ajustamos la posición */
    }

    .sliderMeta__control-icon {
        font-size: 16px; /* Reducimos el tamaño del icono */
        width: 16px;
        height: 16px;
    }

    .formMeta-section {
        margin-top: -20px; /* Ajustamos el margen del formulario */
        padding: 20px 0;
    }
}

.btn-press {
    transition: transform 0.1s ease; /* Transición suave */
}

.btn-press:active {
    transform: scale(0.95); /* Reduce el tamaño al hacer clic */
}

.clientes-slider {
    margin-top: 20px;
    margin-bottom: 0px;
}

/* Media queries para responsividad en .clientes-slider */
@media (max-width: 768px) {
    .clientes-slider {
        margin-top: 15px;
        margin-bottom: 0px;
    }
}

@media (max-width: 576px) {
    .clientes-slider {
        margin-top: -100px;
        margin-bottom: 100px;
    }
}


.euro-pleca {
    background-color: var(--main-color) !important;
}


.euro-pleca::after {
    background-color: var(--main-color) !important;
}


.vibrate {
    animation: vibrate 0.3s linear 3;
}

@keyframes vibrate {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.ui-widget-content {
    font-weight: 600;
}

/* formulario afiliación */

.card-header {
    color: var(--verde-oscuro);
    background-color: transparent;
    text-align: start;
}
.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}
.form-control {
    border: 1px solid var(--main-color);
    border-radius: 4px;
    transition: all 0.3s ease; 
}
.form-control:focus {
    border-color: var(--black-color);
    box-shadow: 0 0 0 0.25rem rgba(242, 193, 87, 0.25);
    outline: none;
    border-radius: 4px; 
}
.btn-primary {
    background-color: var(--main-color);
    border: 2px solid var(--verde-oscuro);
    padding: 10px 30px;
    font-weight: 600;
}
.btn-primary:hover {
    background-color: var(--black-color);
    border-color: var(--amarillo-oro);
}
.text-primary {
    color: var(--verde-oscuro) !important;
}
.border-primary {
    border-color: var(--verde-oscuro) !important;
}
.progress {
    height: 20px;
    border-radius: 4px;
    border: 1px solid var(--verde-medio);
}
.img-thumbnail {
    border: 2px solid var(--verde-oscuro);
    border-radius: 4px;
    transition: all 0.3s ease;
}

#removeLogoBtn {
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
    border: 2px solid var(--verde-oscuro);
}
#removeLogoBtn:hover {
    transform: scale(1.1);
    background-color: #dc3545;
    border-color: var(--amarillo-oro);
}



/* ================= FORMULARIO AFILIATE =================== */
/* Pagina de form afiliate  */

.banner-afiliate-form__image {
    background-image: url('https://eurocdn.azureedge.net/bucket/EBE/general/464Afiliate-Web-03a.avif');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    color: #ffffff;
}

.banner-afiliate-form {
    text-align: center;
}

.banner-afiliate-form__title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: right;
    margin: 0;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.custom-file-input {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.file-input-label {
    background-color: var(--verde-medio);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    border: none;
}

.file-input-label:hover {
    background-color: var(--verde-oscuro);
}

.file-name-display {
    color: var(--gris-texto);
    font-size: 0.9rem;
    flex-grow: 1;
}

.afiliate-form {
    padding: 2.5rem 2rem;
    font-family: var(--font-texto);
    margin-bottom: 2rem;
}
.afiliate-form__card {
    background: transparent;
    border: none;
    box-shadow: none;
}
.afiliate-form__header {
    background: transparent;
    border: none;
    text-align: center;
    margin-bottom: 1.5rem;
}
.afiliate-form__title {
    font-family: var(--font-texto) !important;
    font-size: 1.5rem !important;
    color: var(--gris-texto);
    font-weight: 600 !important ;
    margin-bottom: 0.5rem;
}
.afiliate-form__subtitle {
    font-family: var(--font-titulo);
    font-size: 1.5rem;
    color: var(--verde-oscuro);
    font-weight: 800;
}
.afiliate-form__group {
    margin-bottom: 0.5rem;
}
.afiliate-form__label {
    font-family: var(--font-titulo);
    font-size: 1rem;
    color: var(--verde-oscuro);
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.afiliate-form__input {
    font-family: var(--font-texto);
    font-size: 1rem;
    border: 2px solid var(--verde-medio);
    border-radius: 16px;
    padding: 10px 14px;
    color: var(--gris-texto);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.afiliate-form__input:focus {
    border-radius: 16px !important;
    border-color: var(--amarillo-oro);
    box-shadow: 0 0 0 0.15rem rgba(242, 193, 87, 0.18);
    outline: none;
}
.afiliate-form__help {
    font-size: 0.95em;
    font-style: italic;
    color: var(--gris-texto);
    font-weight: 400;
}
.afiliate-form__file {
    margin-bottom: 0.5rem;
}
.afiliate-form__file-label {
    background-color: #fff;
    color: var(--verde-oscuro);
    border: 2px solid var(--verde-oscuro) !important;
    padding: 8px 18px;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    border: none;
}
.afiliate-form__file-label:hover {
    background-color: var(--verde-medio);
    color: #fff;
}
.afiliate-form__file-name {
    color: var(--gris-texto);
    font-size: 0.95rem;
    margin-left: 10px;
}
.afiliate-form__file-invalid {
    color: #dc3545;
    font-size: 0.95rem;
    margin-top: 2px;
}
.afiliate-form__progress {
    height: 18px;
    border-radius: 4px;
    border: 1px solid var(--verde-medio);
}
.afiliate-form__preview-img {
    border: 2px solid var(--verde-oscuro);
    border-radius: 4px;
    max-width: 120px;
    margin: 0 auto;
}
.afiliate-form__preview-remove {
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
    border: 2px solid var(--verde-oscuro);
    top: -10px;
    right: -10px;
}
.afiliate-form__preview-remove:hover {
    background-color: #dc3545;
    border-color: var(--amarillo-oro);
    transform: scale(1.1);
}
.afiliate-form__actions {
    margin-top: 2rem;
    text-align: center;
}
.afiliate-form__button {
    background: var(--amarillo-oro);
    color: var(--verde-oscuro);
    font-family: var(--font-titulo);
    font-size: 1.25rem;
    font-weight: 800;
    border: none;
    border-radius: 8px;
    padding: 12px 48px;
    box-shadow: 0 2px 8px rgba(46, 69, 72, 0.08);
    transition: background 0.2s, color 0.2s, transform 0.1s;
    letter-spacing: 1px;
}
.afiliate-form__button:hover, .afiliate-form__button:focus {
    background: var(--verde-oscuro);
    color: #fff;
    transform: scale(1.04);
}

/* ================= FIN FORMULARIO AFILIATE BEM =================== */

.HomeMain-v2-button {
    font-weight: 600 !important;
}

.newsletterButton {
    font-weight: 600 !important;
}



.mainBannerFormContainer {
    /*width: 50%;*/
    width: 88%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 5% -2% 5%;
    /*gap: 8px;*/
    padding: 30px;
    /* From https://css.glass */
    /*background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);*/
}

/* Media Queries */
@media (max-width: 991px) {
    .mainBannerFormContainer {
        width: 90%;
        margin: 0 auto -2% auto;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .mainBannerFormContainer {
        width: 95%;
        margin: 0 auto -2% auto;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .mainBannerFormContainer {
        width: 98%;
        margin: 0 auto -2% auto;
        padding: 10px;
    }
}

@media (max-width: 426px) {
    .mainBannerFormContainer {
        width: 100%;
        margin: 0 auto -2% auto;
        padding: 10px;
    }
}