/* ----- PALETA DE COLORES ----- */
:root {
    --color-verde-claro: #86af05;
    --color-verde-oscuro: #648d00;
    --color-naranja: #f18500;
    --color-amarillo: #ffca01;
    --color-blanco: #ffffff;
    --color-gris-fondo: #f9f9f9;
    --color-texto: #333;
}


/* ----- ESTILOS GENERALES ----- */
body {
    background-color: var(--color-gris-fondo);
    font-family: 'Arial', sans-serif;
    color: var(--color-texto);
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Tallica';
    src: url('https://dev.mmem.com.co/fonts/Tallica_prueba-VF.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir LT Std';
    src: url('https://dev.mmem.com.co/fonts/AvenirLTStd-Book.woff2') format('woff2'),
        url('https://dev.mmem.com.co/fonts/AvenirLTStd-Book.woff') format('woff'),
        url('https://dev.mmem.com.co/fonts/AvenirLTStd-Book.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* ----- ENCABEZADO / NAVBAR ----- */
header {
    background-color: var(--color-verde-oscuro);
    color: var(--color-blanco);
    padding: 15px 0;
    text-align: center;
}

header a {
    color: var(--color-blanco);
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

header a:hover {
    color: var(--color-amarillo);
}

/*estilo header y contador*/
.shared-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    /* O el mismo que uses en navbar-container */
    box-sizing: border-box;
}


/* ----- BOTONES ----- */
.btn-primary {
    background-color: rgb(0, 0, 0);
    color: var(--color-blanco);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-verde-oscuro);
}

.btn-secondary {
    background-color: var(--color-naranja);
    color: var(--color-blanco);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--color-verde-oscuro);
}

/* ----- LINKS ----- */
a {
    color: var(--color-verde-oscuro);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-naranja);
}

/* ----- CARRUSEL ----- */
.carousel-item img {
    /* margin-top: %; */
    /* max-height: 800px; */
    object-fit: cover;
    width: 100%;
    margin-top: 54px;
    /* Que ocupe toda la pantalla */
    background-size: cover;
    object-fit: contain;
    background-position: center;
    background-repeat: no-repeat;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    background: radial-gradient(circle, rgba(34, 193, 195, 1) 0%, rgba(0, 77, 0, 1) 100%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 4px 4px 8px rgba(0, 0, 0, 0.3),
        inset -4px -4px 8px rgba(255, 255, 255, 0.1),
        0px 4px 15px rgba(0, 255, 100, 0.4);
    transition: all 0.3s ease-in-out;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

/* Efecto Glow al pasar el mouse */
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    transform: scale(1.2);
    box-shadow:
        inset 6px 6px 12px rgba(0, 0, 0, 0.3),
        inset -6px -6px 12px rgba(255, 255, 255, 0.1),
        0px 6px 20px rgba(0, 255, 100, 0.6);
    background: linear-gradient(145deg, rgba(34, 193, 195, 1) 20%, rgba(0, 77, 0, 1) 80%);
}

/* Flechas con efecto elegante */
.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
    content: '';
    border: solid rgba(255, 255, 255, 0.9);
    border-width: 0 6px 6px 0;
    display: inline-block;
    padding: 9px;
    transition: all 0.3s ease-in-out;
}

/* Dirección de las flechas */
.carousel-control-prev-icon::after {
    transform: rotate(135deg);
}

.carousel-control-next-icon::after {
    transform: rotate(-45deg);
}

/* Efecto de movimiento al pasar el mouse */
.carousel-control-prev-icon:hover::after {
    transform: rotate(135deg) translateX(-4px);
}

.carousel-control-next-icon:hover::after {
    transform: rotate(-45deg) translateX(4px);
}

/* ----- SECCIÓN INSCRIPCIONES ----- */
.section-inscribete {
    /* background: linear-gradient(135deg, #f5b14c, #f18500); */
    /* Fondo cálido naranja/amarillo */
    /* padding: 40px; */
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.div_card_inscribete {
    background-color: rgba(134, 175, 5, 0.9);
    /* Verde claro pero con opacidad */
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.div_card_inscribete:hover {
    transform: translateY(-3px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    /* Para que contraste mejor con el verde */
    margin-bottom: 10px;
}

.btn-register {
    background: linear-gradient(135deg, #f18500, #ffca01);
    /* Botón naranja → amarillo */
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.div_card_inscribete h5 {
    color: #ffffff;
}

/* ----- SECCIÓN HERO ----- */
.hero-section {
    background-color: var(--color-verde-claro);
    color: var(--color-blanco);
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-blanco);
    max-width: 700px;
    margin: 0 auto;
    text-align: justify;
}

/* SECTION ICONOS DE DISTANCIA CALENDARIO */
/* Estilos para la sección de información */
#section_4 .info-item {
    background: linear-gradient(135deg, var(--color-verde-oscuro), #ffca01);
    /* Naranja quemado */
    color: white;
    /* Texto blanco */
    padding: 20px;
    border-radius: 10px;
    /* Bordes redondeados */
    text-align: center;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    /* margin-left: 10px; */
    gap: 20px;
    /* Sombra ligera */
    transition: transform 0.3s ease-in-out;
}

#section_4 .row {
    display: flex;
    justify-content: center;
    gap: 30px;
    /* Espaciado horizontal */
}

/* Efecto al pasar el mouse */
#section_4 .info-item:hover {
    /* Texto naranja */
    transform: scale(1.05);
}

/* Íconos con fondo circular amarillo */
#section_4 .info-icon {
    background-color: #ffca01;
    /* Amarillo */
    border-radius: 50%;
    padding: 10px;
    display: inline-block;
    margin-bottom: 10px;
}

/* Ajusta el tamaño de los íconos */
#section_4 .info-icon img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    /* Convierte el ícono a blanco */
}

#section_4 i {
    color: var(--color-verde-oscuro);
    font-size: 32px;
    transition: color 0.3s ease;
    text-decoration: none;
}

/* Espaciado entre los ítems */
#section_4 .info-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    /* Para que se ajuste en pantallas pequeñas */
}

/* Ajustes para los títulos y descripciones */
#section_4 .info-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

#section_4 .info-description {
    font-size: 14px;
}



/* ----- ICONOS SOCIALES FIJOS ----- */
.social-icons-fixed {
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.social-icons-fixed a {
    color: #3498db;
    /* Azul */
    font-size: 32px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons-fixed a:hover {
    color: #000;
    /* Negro al pasar el mouse */
    /* Rojo */
}

.social-icons-fixed a.instagram {
    color: #E4405F;
    /* Color Instagram */
}

.social-icons-fixed a.whatsapp {
    color: #25D366;
    /* Color Instagram */
}

.social-icons-fixed a.instagram:hover {
    color: #833AB4;
    /* Morado al pasar el mouse */
}

.route-21k {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 16px;
}

.route-21k > h3 {
    margin: 0px;
}

.route-21k > span {
    color: #ffca01;
    font-size: 14px;
}



.social-icons-fixed a:hover {
    color: var(--color-naranja);
}

/* ----- SECCIÓN INFORMACIÓN ----- */
.info-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid #d1d1d1;
}

.info-item:last-child {
    border-right: none;
}

.info-icon {
    font-size: 50px;
    color: var(--color-verde-oscuro);
    margin-bottom: 10px;
}

.info-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 5px;
}

.info-description {
    font-size: 16px;
    color: var(--color-texto);
}

#section_6 p {
    text-align: justify;
}

#section_6 .recorrido-texto {
    background-color: rgba(255, 202, 1, 0.1);
    /* Amarillo suave */

    border-radius: 10px;
}



#section_6 .row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#section_6 .row .col {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

#section_6 .row .col .img {
    width: 50%;
}

#section_6 .row .col .texto {
    width: 50%;
    background: linear-gradient(135deg, #85A31D, #F7941D);
}





/* Botones o textos importantes */
#section_6 .boton-destacado {
    background-color: #f18500;
    /* Fondo naranja */
    color: #ffca01;
    /* Texto amarillo fuerte */
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
}

#section_6 .texto {
    /* Texto naranja */
    background-color: var(--color-verde-claro);
    border-radius: 5px;
    padding: 40px;
    height: 810px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#section_6 .section_6_link a {
    background-color: var(--color-verde-claro);
    color: white;
    /* Texto en blanco */
    /* border: 2px solid #333; */
    /* Borde oscuro */
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    /* Sombra negra */
}

#section_6 .section_6_21k img {
    width: auto;
    /* Define un ancho fijo */
    height: 300px;
    /* Mantiene la proporción de la imagen */
}

#section_6 .section_6_10k img {
    width: auto;
    /* Define un ancho fijo */
    height: 400px;
    /* Mantiene la proporción de la imagen */
}

#section_6 p,
h3 {
    color: #ffffff;
    /* O usa blanco si prefieres más contraste */
}



/* ----- SECCIÓN CARRUSEL GALERÍA ----- */
#section_8 {
    background: linear-gradient(135deg, var(--color-verde-oscuro), #ffca01);
    padding: 10px;
}

/* El carrusel debe mostrar solo una imagen a la vez */
#section_8 .carousel-inner {
    display: flex;
}

/* Cada slide ocupa el 100% del ancho del carrusel */
#section_8 .carousel-item {
    width: 100%;
    /* Ocupa toda la pantalla */
    text-align: center;
}

/* Todas las imágenes deben tener el mismo tamaño */
#section_8 .carousel-item img {
    width: 100%;
    /* La imagen ocupa todo el ancho */
    max-width: 400px;
    /* Tamaño máximo de la imagen */
    height: 300px;
    /* Mantener altura uniforme */
    object-fit: cover;
    /* Opcional */
    margin: auto;
    /* Centrar imágenes */
}



/* ----- FOOTER ----- */
.footer_marathon {
    background-color: var(--color-verde-claro);
    color: var(--color-blanco);
    padding: 15px 0;
    text-align: justify;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_marathon i {
    margin-right: 8px;
    color: var(--color-amarillo);
}

.footer_marathon p {
    margin: 5px 0;
}

/*--------*/

.cupos-section {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    background-image: url('https://dev.mmem.com.co/Images/2025/background_barra_urgencia.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.cupos-container {
    width: 65%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-bar-container {
    position: relative;
    width: 100%;
    height: 45px;
    padding: 8px;
    background-color: transparent;
    border-radius: 40px;
    border: 1px solid white;
    /* más grueso para parecer al Figma */
    box-sizing: border-box;
    overflow: hidden;
    /* fuerza al fill a estar contenido sin padding */
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.progress-fill {
    background-color: #f5b000;
    height: 98%;
    width: 70%;
    /* ajusta dinámicamente este valor */
    border-radius: 40px;
    /* solo esquinas izquierdas redondeadas */
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 45px;
    font-weight: bold;
    color: #91b706;
    font-family: 'Arial', sans-serif;
    z-index: 2;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.35),
        0 6px 12px rgba(0, 0, 0, 0.25);
}

.progress-label {
    font-size: 22px;
    font-weight: 300;
    color: white;
    font-family: 'Arial', sans-serif;
}

.progress-label .vendidos {
    font-size: 22px;
    color: #ffb700;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
}

/* SECCION PATROCINADORES */
.sponsor-carousel {
    width: 100%;
    background-image: url('https://dev.mmem.com.co/Images/2025/horizontalSponsorsBackground%20.webp');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 50px;
    box-sizing: border-box;
    overflow: hidden;
}

/* .sponsor-title {
    font-family: 'Arial', sans-serif;
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
} */

.slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    /* efecto de transparencia en bordes */
    -webkit-mask-image: linear-gradient(to right, transparent 10%, black 10%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 90%, transparent 100%);
}

.slider-track {
    display: flex;
    align-items: center;
    gap: 100px;
    width: max-content;
    animation: scroll 90s linear infinite;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    height: 64px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.vertical img {
    height: 74px !important;
}

.logo-item img:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-40%);
    }
}

.slider-track:hover {
    animation-play-state: paused;
    cursor: default;
}

/* ----------------*/

/* SECCIÓN TESTIMONIOS */


.testimonial-section {
    width: 100%;
    background-image: url('https://dev.mmem.com.co/Images/2025/countdown-bg%20(1).webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 70px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.testimonial-frame {
    border: 2px solid white;
    border-radius: 30px;
    padding: 25px 30px;
    max-width: 1294px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    color: white;
}

.testimonial-title {
    font-size: 24px;
    font-family: 'Arial', sans-serif;
    margin-bottom: 40px;
}

.testimonial-body {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    gap: 50px;
    flex-wrap: nowrap;
}

.testimonial-videos {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.testimonial-videos video {
    width: 100%;
    max-width: 248px;
    height: 440px;
    border-radius: 20px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.testimonial-1 {
    background-image: url(https://dev.mmem.com.co/Images/2025/thumbnail-testimonial-1.webp);
}

.testimonial-2 {
    background-image: url(https://dev.mmem.com.co/Images/2025/thumbnail-testimonial-2.webp);
}

.testimonial-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-image-wrapper {
    width: 400px;
    height: 160px;
    overflow: hidden;
}

.testimonial-image-wrapper img {
    width: 400px;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: fit-content;
}

.testimonial-slider img {
    width: 400px;
    height: 160px;
    object-fit: contain;
    flex-shrink: 0;
}

.arrow {
    font-size: 36px;
    color: white;
    cursor: pointer;
    user-select: none;
}

.testimonial-logo {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 120px;
}

/* seccion video 1*/

.video-shirt-container {
    width: 100%;
    max-width: 1000px;
    max-height: 800px;
    margin: 0 auto;
    padding: 20px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* previene scroll si el video excede */
}

.video-shirt-container video {
    width: 100%;
    max-height: 950px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* -----  arma tu plan ----- */

.plan-container {
    background: linear-gradient(to left, #F1961E, #8DA21C);
    width: 100%;
    overflow-x: hidden;
    padding: 80px 0;
    box-sizing: border-box;
}

.plan-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* opcional para separación lateral */
    box-sizing: border-box;
}

.plan-title {
    text-align: center;
    color: #ffffff;
    font-size: 28px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    margin-bottom: 30px;
}

.plan-section>h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
    /* aumenta separación inferior */
    margin-top: 40px;
    /* aumenta separación superior */
    color: #F7CA46;
    /* cambia color a amarillo */
    text-align: left;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 10px;
    align-items: start;
}

.plan-card {
    background: #7C9E2D;
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    margin: 0;
    min-height: 430px;
}

.plan-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.plan-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    text-align: center;
    text-transform: uppercase;
}

.plan-card p {
    font-size: 13px;
    color: white;
    text-align: center;
    line-height: 1.4;
    padding: 0 3px;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    padding: 15px 3px;
}



/* ----- arma tu plan ----- */


/* ------------------------------------- */
/* TUS MEDIA QUERIES EXISTENTES EN MAIN.CSS */
/* ------------------------------------- */

@media (max-width: 1400px) {
    #section_6 .section_6_21k img {
        width: auto;
        height: 200px;
    }

    #section_6 .section_6_10k img {
        width: 350px;
        height: 230px;
    }

    #section_6 .texto {
        background-color: var(--color-verde-claro);
        border-radius: 5px;
        padding: 40px;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

}

/* ----- RESPONSIVIDAD ----- */
@media (max-width: 1200px) {

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 40px;
        height: 40px;
        box-shadow:
            inset 3px 3px 6px rgba(0, 0, 0, 0.3),
            inset -3px -3px 6px rgba(255, 255, 255, 0.1),
            0px 3px 10px rgba(0, 255, 100, 0.3);
    }

    .carousel-control-prev-icon::after,
    .carousel-control-next-icon::after {
        padding: 5px;
        border-width: 0 4px 4px 0;
    }

    .carousel-control-prev-icon:hover,
    .carousel-control-next-icon:hover {
        transform: scale(1.1);
        box-shadow:
            inset 4px 4px 8px rgba(0, 0, 0, 0.3),
            inset -4px -4px 8px rgba(255, 255, 255, 0.1),
            0px 4px 15px rgba(0, 255, 100, 0.4);
    }

    /* Ajustar las flechas para que se vean bien en tamaños pequeños */
    .carousel-control-prev-icon:hover::after {
        transform: rotate(135deg) translateX(-3px);
    }

    .carousel-control-next-icon:hover::after {
        transform: rotate(-45deg) translateX(3px);
    }

    #section_6 .texto {
        background-color: var(--color-verde-claro);
        border-radius: 5px;
        padding: 40px;
        height: auto;
    }

    #section_6 .row {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    #section_6 .row .col {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    #section_6 .row .col .img {
        width: 100%;
    }

    #section_6 .row .col .texto {
        width: 100%;
    }

    #section_6 .row .col .texto img {
        display: none;
    }

    .carousel-item img {
        object-fit: contain;
        width: 100%;
        margin-top: 60px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .cupos-section {
        width: 100%;
        padding: 25px 0;
        display: flex;
        justify-content: center;
        background-image: url('https://dev.mmem.com.co/Images/2025/background_barra_urgencia.webp');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .cupos-container {
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .progress-bar-container {
        position: relative;
        height: 32px;
        padding: 7px;
        background-color: transparent;
        border-radius: 40px;
        border: 1 solid white;
        box-sizing: border-box;
        overflow: hidden;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    }

    .progress-fill {
        background-color: #f5b000;
        height: 98%;
        width: 70%;
        border-radius: 40px;
    }

    .progress-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 30px;
        font-weight: bold;
        color: #91b706;
        font-family: 'Arial', sans-serif;
        z-index: 2;
        text-shadow:
            0 2px 4px rgba(0, 0, 0, 0.4),
            0 4px 8px rgba(0, 0, 0, 0.35),
            0 6px 12px rgba(0, 0, 0, 0.25);
    }

    .progress-label {
        font-size: 20px;
        font-weight: 300;
        color: white;
        font-family: 'Arial', sans-serif;
    }

    .progress-label .vendidos {
        font-size: 20px;
        color: #ffb700;
        font-weight: 900;
        font-family: 'Arial', sans-serif;
    }

    /* SECCION PATROCINADORES */
    .sponsor-carousel {
        width: 100%;
        background-image: url('https://dev.mmem.com.co/Images/2025/horizontalSponsorsBackground%20.webp');
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center;
        padding: 60px 30px;
        box-sizing: border-box;
        overflow: hidden;
    }


    /* .sponsor-title {
        font-family: 'Arial', sans-serif;
        font-size: 25px;
        font-weight: bold;
        color: #fff;
        text-align: center;
        margin-bottom: 35px;
    } */

    .slider-wrapper {
        overflow: hidden;
        position: relative;
        width: 100%;
        /* efecto de transparencia en bordes */
        -webkit-mask-image: linear-gradient(to right, transparent 10%, black 10%, black 90%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 5%, black 80%, transparent 100%);
    }

    .slider-track {
        display: flex;
        align-items: center;
        gap: 100px;
        animation: scroll 90s linear infinite;
    }

    .logo-item {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-item img {
        height: 64px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .vertical img {
        height: 74px !important;
    }

    .logo-item img:hover {
        transform: scale(1.1);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .slider-track:hover {
        animation-play-state: paused;
        cursor: grab;
    }


    /* ----------------*/


}

@media (max-width: 493px) {

    .plan-container {
        padding: 80px 30px;
    }

    .plan-title {
        font-size: 22px;
    }

    .plan-card img {
        height: 250px;
    }


    .carousel-item img {
        object-fit: contain;
        object-position: center;
        width: 100%;
        height: auto;
        margin-top: 60px;
    }


    .social-icons-fixed {
        left: 5px;
        bottom: 200px;
        gap: 5px;
        z-index: 1900;
    }

    .social-icons-fixed .facebook,
    .social-icons-fixed .instagram,
    .social-icons-fixed .whatsapp {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }

    .cupos-section {
        width: 100%;
        padding: 25px 0;
        display: flex;
        justify-content: center;
        background-image: url('https://dev.mmem.com.co/Images/2025/background_barra_urgencia.webp');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .cupos-container {
        width: 96%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .progress-bar-container {
        position: relative;
        height: 28px;
        padding: 6px;
        background-color: transparent;
        border-radius: 40px;
        border: 1 solid white;
        box-sizing: border-box;
        overflow: hidden;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    }

    .progress-fill {
        background-color: #f5b000;
        height: 98%;
        width: 70%;
        border-radius: 40px;
    }

    .progress-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 26px;
        font-weight: bold;
        color: #91b706;
        font-family: 'Arial', sans-serif;
        z-index: 2;
        text-shadow:
            0 2px 4px rgba(0, 0, 0, 0.4),
            0 4px 8px rgba(0, 0, 0, 0.35),
            0 6px 12px rgba(0, 0, 0, 0.25);
    }

    .progress-label {
        font-size: 17px;
        font-weight: 300;
        color: white;
        font-family: 'Arial', sans-serif;
    }

    .progress-label .vendidos {
        font-size: 17px;
        color: #ffb700;
        font-weight: 900;
        font-family: 'Arial', sans-serif;
    }

    /* SECCION PATROCINADORES */
    .sponsor-carousel {
        width: 100%;
        background-image: url('https://dev.mmem.com.co/Images/2025/horizontalSponsorsBackground%20.webp');
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center;
        padding: 30px 20px;
        box-sizing: border-box;
        overflow: hidden;
    }


    /* .sponsor-title {
        font-family: 'Arial', sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        text-align: center;
        margin-bottom: 20px;
    } */

    .slider-wrapper {
        overflow: hidden;
        position: relative;
        width: 100%;
        /* efecto de transparencia en bordes */
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    }

    .slider-track {
        display: flex;
        align-items: center;
        gap: 60px;
        animation: scroll 90s linear infinite;
    }

    .logo-item {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-item img {
        height: 45px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .vertical img {
        height: 64px !important;
    }

    .logo-item img:hover {
        transform: scale(1.1);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .slider-track:hover {
        animation-play-state: paused;
        cursor: grab;
    }

    /* SECCIÓN TESTIMONIOS COMPLETA */

    .testimonial-section {
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding: 20px 20px;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
    }

    .testimonial-frame {
        padding: 5px 15px;
        padding: 30px 30px;
    }

    .testimonial-title {
        font-size: 20px;
        text-align: left;

    }

    .testimonial-body {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .testimonial-videos {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }

    .testimonial-videos video {
        width: 100%;
        height: 350px;
        border-radius: 20px;
    }

    .testimonial-carousel {
        flex-direction: row;
        gap: 5px;
    }

    .testimonial-image-wrapper {
        width: 250px;
        height: 120px;
    }

    .testimonial-slider img {
        width: 250px;
        height: 120px;
    }

    .arrow {
        font-size: 26px;
    }

    .testimonial-logo {
        width: 80px;
        bottom: 10px;
        right: 15px;
    }

    /* ICONS REDES SOCIALES*/

    /* Contenedor fijo de iconos sociales */
    .social-icons-fixed {
        pointer-events: none;
        position: fixed;
        bottom: 250px !important;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-height: 100vh;
        padding: 0;
        margin: 0;
        overflow: visible;
    }

    /* Enlaces individuales de cada red */
    .social-icons-fixed .facebook,
    .social-icons-fixed .instagram,
    .social-icons-fixed .whatsapp {
        pointer-events: auto;
        font-size: 30px;
        transition: color 0.3s ease;
        display: inline-flex;
        width: 30px;
        height: 30px;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        line-height: 1;
        text-decoration: none;
    }

    /* Hover effects personalizados */
    .social-icons-fixed .facebook:hover {
        color: #1877f2;
    }

    .social-icons-fixed .instagram:hover {
        color: #c13584;
    }

    .social-icons-fixed .whatsapp:hover {
        color: #25d366;
    }

    /* ----------------*/
}

/* ------------------------------------- */
/* MEDIA QUERIES DEL HEADER  */
/* ------------------------------------- */

/* Para pantallas de 992px o menos (Tabletas y móviles grandes) */
@media (max-width: 992px) {
    .plan-container {
        padding: 80px 30px;
    }

    .plan-title {
        font-size: 22px;
    }

    .plan-card {
        min-height: unset;
        height: auto;
    }

    .plan-card img {
        height: 220px;
    }

    .plan-card h3 {
        padding-top: 15px;
    }

    .plan-card p {
        font-size: 12px;
        color: white;
        text-align: center;
        line-height: 1.4;
    }

    .card-content {
        justify-content: initial;
    }



    /* Navbar */

    .custom-navbar {
        height: auto;
        /* Se ajusta a su contenido */
        top: auto;
        /* JS lo posicionará dinámicamente */
        position: fixed;
        /* Asegura que el navbar sea fijo */
        width: 100%;

        z-index: 1040;
    }

    .navbar-container {
        padding: 0;
        flex-wrap: wrap;
    }

    .navbar-logo-container {
        max-width: 150px;
        height: 50px;
    }

    .btn-offer-mobile {
        display: inline-block;
        margin-right: 10px;
    }

    .btn-offer {
        display: none;
    }



    /* Iconos Sociales */
    .social-icons-fixed {
        right: 10px;
        bottom: 100px;
        gap: 8px;
        z-index: 1500;
    }

    .social-icons-fixed .facebook,
    .social-icons-fixed .instagram,
    .social-icons-fixed .whatsapp {
        font-size: 24px;
        transition: color 0.3s ease;
        display: inline-flex;
        width: 24px;
        height: 24px;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        line-height: 1;
        text-decoration: none;
    }

    .testimonial-frame {
        padding: 30px 30px;
    }

    .testimonial-body {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

    .testimonial-videos {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .testimonial-videos video {
        width: 100%;
        max-height: 340px;
        aspect-ratio: 9 / 16;
        object-fit: cover;
    }

    .testimonial-carousel {
        flex-direction: row;
        gap: 10px;
    }

    .testimonial-image-wrapper {
        width: 300px;
        height: 140px;
    }

    .testimonial-slider img {
        width: 300px;
        height: 140px;
    }

    .arrow {
        font-size: 30px;
    }

    .testimonial-logo {
        width: 100px;
        bottom: 15px;
        right: 20px;
    }
}