/* Estilos del banner destacado */
.gf-highlight-banner {
    /* background-color: #F9F871; */
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }
  
  .gf-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

  }
  .gf-banner-content span{
    /* color: #2b2b2b; */
    font-family: "Avenir LT Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }
 
  
  .gf-banner-content  strong{
    font-weight: 700;
    /* color: #2b2b2b; */
    font-family: "Avenir LT Pro";
    font-size: 16px;
    font-style: normal;
    line-height: normal;
  }
  
  .gf-ticket-icon {
    margin-left: 5px;
    transform: rotate(-15deg);
  }


/* Contenedor principal */
.gf-kids-event {
    border-top: 1px solid #2b2b2b;
    padding-block: 40px;
}

/* Título principal */
.gf-kids-titulo {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Etiqueta Target/Evento */
.gf-kids-tag {
    display: inline-block;
    background-color: #8a4fff;
    padding: 8px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.gf-kids-tag-text {
    color: white;
    font-weight: bold;
}

/* Grid de eventos */
.gf-kids-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

/* Tarjeta de evento */
.gf-kids-event-card {
    display: flex;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border-radius: 0px 80px 80px 0px;
    text-decoration: none;
    color: unset;
}

.gf-kids-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Imagen del evento */
.gf-kids-event-imagen {
    flex: 0 0 40%;
    overflow: hidden;
}

.gf-kids-event-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gf-kids-event-card:hover .gf-kids-event-imagen img {
    transform: scale(1.05);
}

/* Información del evento */
.gf-kids-event-info {
    flex: 1;
    padding: 32px 30px 32px 24px;
    background-color: transparent;
    background: radial-gradient(50% 50% at 50% 50%, #FDE617 55%, #FFD104 100%);
    border-radius: 0px 80px 80px 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    bac
}

.gf-kids-event-titulo {
    color:  #FAFAFA;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color:  #2B2B2B;
    font-family: "Frankfurter Std";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; 
}

.gf-kids-event-fecha {
    margin-bottom: 15px;
    margin-top: 15px;
}

.gf-kids-event-fecha p {
    font-family: "Avenir LT Pro";
    font-size: 19px;
    font-style: normal;
 
    line-height: normal;
}
.gf-kids-event-fecha > p:nth-child(1){
    margin-bottom: 10px;
}
.gf-kids-event-fecha p strong{
    font-weight: 700;
}

.gf-kids-event-precio {
    font-family: "Avenir LT Pro";
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}


/* Contenedor principal */

.gf-kids-events-section {
    border-block: 1px solid #2b2b2b;
}

/* Grid de categorías */
.gf-kids-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Tarjeta de categoría */
.gf-kids-categoria-card {
    position: relative;
    /* border-radius: 20px; */
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 350px;
}

.gf-kids-categoria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gf-kids-categoria-card:nth-child(1){
    border-radius: 4px 4px 80px 4px;
}


.gf-kids-categoria-card:nth-child(2){
    border-radius: 4px 4px 80px 80px;
}
.gf-kids-categoria-card:nth-child(3){
    border-radius: 4px 4px 4px 80px;
}
.gf-kids-categoria-card:nth-child(4){
    border-radius: 4px 80px 4px 4px;
}
.gf-kids-categoria-card:nth-child(5){
    border-radius: 80px 80px 4px 4px;
}
.gf-kids-categoria-card:nth-child(6){
    border-radius: 80px 4px 4px 4px;
}

/* Imagen de categoría */
.gf-kids-categoria-imagen {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gf-kids-categoria-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gf-kids-categoria-card:hover .gf-kids-categoria-imagen img {
    transform: scale(1.05);
}

/* Título de categoría */
.gf-kids-categoria-titulo {
    position: relative;
    /* position: absolute;
    bottom: 0;
    left: 0; */
    width: 100%;
    padding: 25px 10px;
    /* border-radius: 0 0 20px 20px; */
    text-align: center;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gf-kids-categoria-card .svg-1{
    left: 0;
    position: absolute;
    top: 0;
    height: 100%;
    visibility: hidden;
    transition: visibility 0.3s ease-in-out;
}
.gf-kids-categoria-card:hover .svg-1{
    visibility: visible;
    transition: visibility 0.3s ease-in-out;
}

.gf-kids-categoria-card .svg-2 {
    position: absolute;
    right: 0;
    top: 0;
    visibility: hidden;
    transition: visibility 0.3s ease-in-out;
}
.gf-kids-categoria-card:hover .svg-2{
    visibility: visible;
    transition: visibility 0.3s ease-in-out;
}

.gf-kids-categoria-card:nth-child(5) .svg-2{
    bottom:0;
    top: unset;
}
.gf-kids-categoria-card, .gf-kids-categoria-card:hover{
    transition: 0.3s ease-in-out;
}
.gf-kids-categoria-titulo h3 {
    position: relative;
    z-index: 99;
    color: #ffffff;
    text-align: center;
    -webkit-text-stroke-width: 4px;
    -webkit-text-stroke-color: #333;
    font-family: "Frankfurter Std";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
}

/* Efecto de hover en el título */
.gf-kids-categoria-card:hover .gf-kids-categoria-titulo {
    padding-bottom: 20px;
}

/* Contenedor principal */
.gf-kids-bienvenida-container {
    margin: 70px auto;
    position: relative;
}

/* Etiqueta superior */
.gf-kids-tag {
    display: inline-flex;
    align-items: center;
    background-color: #8A4FFF;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 16px;
}

.gf-kids-diamond {
    width: 12px;
    height: 12px;
    background-color: white;
    transform: rotate(45deg);
    margin-right: 10px;
}

/* Contenido principal */
.gf-kids-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}


/* Contenido de texto */
.gf-kids-text-content {
    flex: 1;
    position: relative;
}

.gf-kids-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #333;
}

.gf-kids-paragraph {
    margin-bottom: 15px;
    font-size: 16px;
}

/* Miniaturas */
.gf-kids-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.gf-kids-thumbnail {
    width: 100px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

.gf-kids-thumbnail:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

.gf-kids-thumbnail.active {
    opacity: 1;
    box-shadow: 0 0 0 3px #8A4FFF;
}

.gf-kids-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Botón de galería */
.gf-kids-gallery-button {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.gf-kids-gallery-button:hover {
    background-color: #f0f0f0;
}


/* Banner superior */
.gf-kids-top-banner {
    background-color: #ffff80;
    color: #333;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 16px;
    width: 100%;
}

/* Contenedor del carrusel */
.gf-kids-carousel-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

/* Carrusel */
.gf-kids-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Slides del carrusel */
.gf-kids-carousel-slide {
    display: none;
    width: 100%;
    height: 550px;
}

.gf-kids-carousel-slide.active {
    display: block;
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0.7; }
    to { opacity: 1; }
}

/* Imágenes del carrusel */
.gf-kids-carousel-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Controles de navegación */
.gf-kids-carousel-control {
    position: absolute;
    bottom: 0px;
    background-color: transparent;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}


.gf-kids-carousel-prev {
    left: 20px;
}

.gf-kids-carousel-next {
    right: 8px;
}


/* Contenedor principal */
.gf-kids-welcome-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    position: relative;
}

/* Contenido de bienvenida */
.gf-kids-welcome-content {
    padding: 0 30px;
    position: relative;
}

/* Título de bienvenida */
.gf-kids-welcome-title {
    color: #fafafa;
    /* font-family: "Frankfurter Std"; */
    font-family: "Italian Plate No1";
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: var(--Bsicos-Negro, #2B2B2B);
    /* font-family: "Italian Plate No1"; */
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 20px;
    line-height: 48px;
}

/* Texto de bienvenida */
.gf-kids-welcome-text {
    margin-bottom: 30px;
    height: 300px;
    overflow-y: scroll;
}

.gf-kids-welcome-text p {
    font-family: "Avenir LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

/* Galería de imágenes */
.gf-kids-welcome-gallery {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.gf-kids-welcome-gallery {
    display: flex;
    overflow-x: scroll;
    gap: 1rem; /* espacio entre los ítems, opcional */
    padding-bottom: 1rem; /* opcional, para que no corte el scroll si hay sombra */
}

.gf-kids-gallery-item {
    flex: 0 0 auto; /* evita que los ítems se reduzcan y fuerza el scroll */
    height: 130px;
}
.gf-kids-welcome-text::-webkit-scrollbar {
    width: 8px;
}
.gf-kids-welcome-gallery::-webkit-scrollbar {
    height: 8px;
}

.gf-kids-welcome-gallery::-webkit-scrollbar-track,
.gf-kids-welcome-text::-webkit-scrollbar-track {
    background: #EEEEEE; 
}

.gf-kids-welcome-gallery::-webkit-scrollbar-thumb,
.gf-kids-welcome-text::-webkit-scrollbar-thumb{
    background: #2B2B2B; 
    border-radius: 4px;
}

.gf-kids-welcome-gallery::-webkit-scrollbar-thumb:hover,
.gf-kids-welcome-text::-webkit-scrollbar-thumb:hover{
    background: #555; 
}


.gf-kids-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gf-kids-gallery-item:hover .gf-kids-gallery-image {
    transform: scale(1.05);
}

/* Barra de progreso */
.gf-kids-gallery-progress {
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    margin-bottom: 20px;
    overflow: hidden;
}

.gf-kids-progress-bar {
    height: 100%;
    width: 33.33%; /* Primer tercio activo */
    background-color: #333;
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Botón de idioma */

.gf-language-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    padding: 5px;
    background-color: #fafafa;
    border: 1px solid #2b2b2b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    color: #333;
    z-index: 999;
}

.gf-language-button:hover {
    background-color: #2b2b2b;
    transition: background-color 0.3s ease-in-out;
}
.gf-language-button:hover svg path{
    fill: #fafafa;
}
/* Estilos para la lista desplegable */
.gf-language-list {
    display: none;
    position: fixed;
    bottom: 80px; /* Ajustado para que no se superponga con el botón */
    right: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 10;
    width: 150px; /* Ancho fijo para la lista */
}

.gf-language-list li {
    padding: 8px 16px;
    cursor: pointer;
}

.gf-language-list li:hover {
    background-color: #f0f0f0;
}

/* Mostrar la lista cuando esté activa */
.gf-language-list.active {
    display: block;
}


/* Estilo para las opciones con radio */
.gf-language-radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.gf-language-radio-option:hover {
    background-color: #f0f0f0;
}

/* Ocultar el radio nativo */
.gf-language-radio-option input[type="radio"] {
    display: none;
}

/* Estilo del radio personalizado */
.gf-language-radio-option .gf-language-radio-custom {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #2B2B2B;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

/* Efecto cuando está seleccionado */
.gf-language-radio-option input[type="radio"]:checked + .gf-language-radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #2B2B2B;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* .gf-kids-slider-wrapper{
    display: none;
} */
/* Responsive */
@media (min-width:768px) and (max-width: 992px) {
    .gf-kids-content {
        flex-direction: column;
    }
    
    .gf-kids-main-image-container {
        max-width: 100%;
    }
    .gf-kids-categoria-titulo h3{
        font-size: 30px;
    }
    .gf-kids-categoria-card:nth-child(1) {
        border-radius: 4px 4px 40px 4px;
    }
    .gf-kids-categoria-card:nth-child(2) {
        border-radius: 4px 4px 40px 40px;
    }
    .gf-kids-categoria-card:nth-child(3) {
        border-radius: 4px 4px 4px 40px;
    }
    .gf-kids-categoria-card:nth-child(4) {
        border-radius: 4px 40px 4px 4px;
    }
    .gf-kids-categoria-card:nth-child(5) {
        border-radius: 40px 40px 4px 4px;
    }
    .gf-kids-categoria-card:nth-child(6) {
        border-radius: 40px 4px 4px 4px;
    }
    .gf-kids-welcome-text{
        height: 250px;
    }
    .gf-kids-event-card{
        flex-direction: column;
        overflow: unset;
        box-shadow: unset;
    }
    .gf-kids-event-imagen {
        flex: 0 0 50%;
    }
  
    .gf-kids-event-info{
        border-radius: 0px 0px 80px 10px;
        flex: unset;
        min-height: 330px;
    }
  
}
@media (min-width:0px) and (max-width: 767px) {
    .gf-language{
        display: none;
    }
    .gf-content-menu .gf-language{
        display: block;
    }
    .gf-kids-bienvenida-container{
        margin: 0;
    }
    .gf-kids-bienvenida-container .gf-container {
        width: 100%;
    }
    .gf-kids-welcome-title{
        font-size: 48px;
    }
    .gf-kids-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    
    .gf-kids-events-grid {
        grid-template-columns: 1fr;
    }
    
    .gf-kids-event-card {
        flex-direction: column;
    }
    
    .gf-kids-event-imagen {
        flex: 0 0 200px;
    }
    
    .gf-kids-event-info {
      
        border-radius: 0 0 0 0;
    }

    .gf-kids-carousel-control {
        width: 40px;
        height: 40px;
    }
    
    .gf-kids-carousel-prev {
        left: 10px;
    }
    
    .gf-kids-carousel-next {
        right: 10px;
    }
    
    .gf-kids-carousel-indicators {
        bottom: 15px;
    }
    
    .gf-kids-carousel-indicator {
        width: 10px;
        height: 10px;
    }

    
    .gf-kids-gallery-item {
        height: 200px;
    }
    .gf-kids-categoria-titulo h3{
        font-size: 40px;
    }
    .gf-kids-categoria-card:nth-child(1),
    .gf-kids-categoria-card:nth-child(2),
    .gf-kids-categoria-card:nth-child(3),
    .gf-kids-categoria-card:nth-child(4),
    .gf-kids-categoria-card:nth-child(5),
    .gf-kids-categoria-card:nth-child(6) {
        border-radius: 4px 4px 80px 4px;
    }
    .gf-kids-event-card{
        border-radius: 0px 0px 80px 0px;
    }
}

@media (max-width: 576px) {
    .gf-banner-content span p:nth-child(1){
        display: flex;
        flex-direction: column;
    }
    .gf-kids-title {
        font-size: 28px;
    }
    
    .gf-kids-thumbnails {
        justify-content: center;
    }
    
    .gf-kids-thumbnail {
        width: 80px;
        height: 60px;
    }

    .gf-kids-grid {
        grid-template-columns: 1fr;
    }
    
    .gf-kids-categoria-card {
        height: 250px;
    }
    
}




@media (max-width: 480px) {

    .gf-kids-top-banner {
        font-size: 14px;
        padding: 8px;
    }
    
    .gf-kids-carousel-container {
        margin: 10px auto;
        padding: 0 10px;
    }
    .gf-kids-welcome-container {
        margin: 20px auto;
    }
    
    .gf-kids-welcome-content {
        padding: 20px;
    }
    
    .gf-kids-gallery-item {
        height: 150px;
    }
}
