
.gs-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
}

/* En curso */
.gs-badge--hoy {
    background: #1f9d55;
    color: #ffffff;
}

.gs-badge--en-curso{
    background: #1f9d55;
    color: #ffffff;
}

/* Próximo */
.gs-badge--futuro {
    background: #facc15;
    color: #4a3f35;
}

/* Finalizado */
.gs-badge--pasado {
    background: #FD7171;
    color: #ffffff;
}

.gs-evento-meta {
    font-size: 16px;
    color: #695a55;
    margin: 0;
}

.gs-evento-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/****************************/

.gs-meta-bar {
    width: 100%;
    padding: 20px 0;
}

.gs-meta-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.gs-meta-item {
    flex: 0 0 auto;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px 15px 15px;
    border-radius: 100px;
    background: #f2f2ff;
}

.gs-meta-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gs-meta-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.gs-meta-text {
    display: flex;
    flex-direction: column;
}
/* TEXTO */
.gs-meta-label {
    font-size: 12px;
    color: #695a55;
}

.gs-meta-value {
    font-size: 16px;
    font-weight: 600;
    margin-top: -4px;
    color: #695a55;
}

@media (max-width: 1024px) {

    .gs-meta-bar {
        overflow: hidden;
    }

    .gs-meta-wrapper {
        display: flex;
        gap: 20px;
        width: 100%;
        max-width: none;
        margin: 0;
        padding-left: 16px;
        padding-right: 16px;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x mandatory;
        box-sizing: border-box;
    }
    .gs-meta-wrapper::-webkit-scrollbar {
        display: none;
    }
    .gs-meta-item {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

}

/********************/

.gs-como-llegar {
    background: #fff;
    padding: 24px;
    border-radius: 15px;
}

.gs-como-llegar__titulo {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.gs-como-llegar__descripcion {
    margin-bottom: 20px;
    color: #666;
}

.gs-como-llegar__botones {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.gs-como-llegar__botones .gs-btn {
    flex: 1;
}

.gs-btn {
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    cursor: pointer;
    border: none;
    transition: 0.2s ease;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.gs-btn img{
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.gs-btn--outline {
    background: #fff;
    border: 1px solid #ddd;
}

.gs-btn--outline:hover {
    background: #f0f0f0;
}

.gs-btn--primary {
    background: #33ccff;
    color: #fff;
}

.gs-btn--primary:hover {
    background: #4289e2;
}

/* Compartir */

.gs-share {
    text-align: left;
}

.gs-share__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #695a55;
}

.gs-share__buttons {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
}

.gs-share__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.25s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.gs-share__btn i {
    font-size: 16px;
}

.gs-share__btn--whatsapp {
    background: #25D366;
}

.gs-share__btn--facebook {
    background: #1877F2;
}

.gs-share__btn--copy {
    background: #e5e5e5;
    color: #333;
}

.gs-share__btn:hover {
    transform: translateY(-2px);
}

.gs-share__btn.is-copied {
    background: #4CAF50;
    color: #fff;
}

/*************************************************************************/

