/* ----------------------------- */
/* 🌴 NAVBAR ESTILO GLASSMORPHISM */
/* ----------------------------- */
.glass-navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* ----------------------------- */
/* ✨ ESTILO ENLACES DE NAVBAR */
/* ----------------------------- */
.navbar .nav-link {
    color: #fff;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Efecto subrayado animado */
.navbar .nav-link.nav-anim::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: #fcd34d;
    /* Amarillo coco */
    transition: width 0.3s ease;
}

.navbar .nav-link.nav-anim:hover::after {
    width: 100%;
}

/* Hover color texto */
.navbar .nav-link:hover {
    color: #fcd34d;
}

/* ----------------------------- */
/* 🥥 ESTILO PARA LOGO EN NAVBAR */
/* ----------------------------- */
.logo-navbar {
    height: 48px;
    width: auto;
    max-height: 100%;
    transition: transform 0.3s ease;
}

.logo-navbar:hover {
    transform: scale(1.05);
}

/* ----------------------------- */
/* 🎥 VIDEO HEADER STYLES */
/* ----------------------------- */
.hero-header {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* ----------------------------- */
/* ✨ HERO CONTENT TROPICAL STYLE */
/* ----------------------------- */
.tropical-title {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

.text-coco {
    color: #ffe600;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.7);
}

/* Botón con estilo coco */
.btn-coco {
    background: linear-gradient(45deg, #ffe600, #fcd34d);
    border: none;
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-coco:hover {
    background: linear-gradient(45deg, #facc15, #fbbf24);
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* Animaciones (puedes usar animate.css si lo deseas) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

/* ----------------------------- */
/* 🌴 HERO ORGANIZADO Y SOCIAL (con SVG) */
/* ----------------------------- */
.welcome-text {
    font-size: 2rem;
    font-weight: 400;
}

/* Estilo para los iconos SVG */
.social-icons img.social-icon {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.social-icons img.social-icon:hover {
    transform: scale(1.2);
    /* solo agregamos sombra extra, sin tocar el filtro de color */
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(255, 255, 0, 0.4));
}

/* Dropdown toggle estilo limpio sin texto extra */
.dropdown-toggle {
    text-decoration: none !important;
    border: none;
    background: transparent;
    padding: 0;
}

.dropdown-toggle::after {
    color: white;
    font-size: 0.75rem;
    vertical-align: middle;
}

/* Hover en los ítems del menú desplegable de Instagram */
.dropdown-menu a:hover {
    background-color: #fcd34d;
    color: #000;
}

/* ----------------------------- */
/* 🌍 SECCIÓN PAISES - ESTILOS FINAL CLAROS */
/* ----------------------------- */
.paises-section {
    background-color: #1a1a1a;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
}

.pais {
    all: unset;
    /* 🔥 Resetea completamente cualquier estilo heredado */
    display: inline-block;
    font-size: 3.5rem;
    font-weight: normal;
    padding: 0.5rem 0rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    user-select: none;
    cursor: pointer;
    color: #b0b0b0;
    /* Color base para activos no seleccionados */

    /* 🔒 Fuerza la eliminación de estilos no deseados */
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}


.pais::before,
.pais::after {
    content: none !important;
    display: none !important;
}


/* Activo seleccionado */
.pais.activo.seleccionado {
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Activo no seleccionado */
.pais.activo:not(.seleccionado) {
    color: #b0b0b0 !important;
}

/* Inactivo */
.pais.inactivo {
    color: #555 !important;
    opacity: 0.6;
    cursor: default;
}

/* Hover sobre activos */
.pais.activo:hover {
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .pais {
        font-size: 1.3rem;
        padding: 0.3rem 0rem;
    }
}


/* ----------------------------- */
/* 🏨 LOCATION CARDS - SOCIALTEL STYLE */
/* ----------------------------- */
.locations-section {
    background-color: #1a1a1a;
}

.location-card {
    position: relative;
    overflow: hidden;
}

.location-card .card-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Overlay para contenido (barra inferior, texto, etc.) */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    z-index: 3;
}

/* 🎬 Animación individual para tarjetas */
.card-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInCard 0.5s ease forwards;
}

@keyframes fadeInCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🎨 Fondo degradado rosa horizontal */
.bg-gradient-pink {
    background: linear-gradient(to right, #ff007f, #ff4d94);
}

/* Botón VIEW */
.view-btn:hover {
    text-decoration: underline;
}

/* 🌈 Overlay hover: gradient de rosa hacia arriba */
.overlay-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #ff007f 30%, transparent 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

/* Al hacer hover en la tarjeta */
.location-card:hover .overlay-hover {
    opacity: 1;
}

/* Asegura que el link cubra toda la tarjeta */
.stretched-link-wrapper {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
}

/* Elimina decoración si quieres más limpio */
.stretched-link-wrapper:hover .view-btn {
    text-decoration: underline;
}

.pais.activo.seleccionado {
    color: #fcd34d;
    border-bottom: 2px solid #fcd34d;
}

/* 🎧🎥 Media Section */
.media-section {
    background: linear-gradient(to bottom, #eef7fb, #ffffff);
}

.media-card {
    border-radius: 8px;
    overflow: visible;
    /* ✅ Permite que el cartel sobresalga */
    position: relative;
    /* ✅ Necesario para posicionar correctamente .media-tag */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.media-tag {
    position: absolute;
    top: -1.5rem;
    /* ✅ Sube más para que no se corte visualmente */
    left: 1rem;
    padding: 0.4rem 1.2rem;
    background-color: #ffc107;
    border-radius: 4px;
    transform: rotate(-2deg);
    z-index: 10;
    font-size: 0.95rem;
    white-space: nowrap;
    /* ✅ Evita que se corte en varias líneas */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}


.media-thumb img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.media-content {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Iconos del podcast */
.media-content i {
    color: #fff;
    transition: transform 0.3s ease;
}

.media-content i:hover {
    transform: scale(1.2);
}

/* Responsive ajustes */
@media (max-width: 768px) {
    .media-tag {
        font-size: 0.8rem;
        top: -0.8rem;
        left: 0.8rem;
    }
}

/* CARROUSEL HOME PAGE */
.galeria-section {
    background: linear-gradient(to bottom, #111827, #1f2937);
}

.galeria-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: #fcd34d;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.carousel-inner img {
    object-fit: cover;
    height: 60vh;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .carousel-inner img {
        height: 40vh;
    }
}


/* __________ L O G O   S L I D E R __________ */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7))
    }
}

.partners-section {
    background-color: #1f2937;
}

.partners-logo-slider {
    height: 170px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
/*     background-color: #F1F1F1; */
    padding: 16px 0px;

    .slide-track {
        animation: scroll 40s linear infinite;
        display: flex;
        width: calc(250px * 14);
    }

    .sliderTitle {
        font-size: 14px;
        font-weight: 400;
        line-height: normal;
        text-align: center;
    }

    .slide {
        height: 100px;
        width: 250px;
        filter: grayscale(100%);
    }

    .slide:hover {
        filter: grayscale(0%);
    }
}