/* ── Celebration Events — Public CSS v1.0.0 ── */

.cevt-section {
    width: 100%;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}

/* ────────────────────────────────────────────
   DESKTOP GRID
──────────────────────────────────────────── */
.cevt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.cevt-item {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    cursor: pointer;
}

.cevt-item--hidden {
    display: none;
}

.cevt-item__img-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 70%;
    overflow: hidden;
    background: #111;
}

.cevt-item__img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94), filter .4s ease;
    filter: brightness(.9);
}

.cevt-item:hover .cevt-item__img-wrap img {
    transform: scale(1.04);
    filter: brightness(1);
}

.cevt-item__no-img {
    position: absolute;
    inset: 0;
    background: #1a1a1a;
}

/* Info row below image */
.cevt-item__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 4px 22px;
    border-bottom: 1px solid rgba(0,0,0,.12);
}

.cevt-item__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cevt-item__name {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    color: #fffbdf;
    letter-spacing: -.01em;
    line-height: 1.2;
    text-transform: uppercase;
}

.cevt-item__salon {
    font-size: clamp(12px, 1.2vw, 14px);
    color: #fffbdf;
    font-weight: 400;
    letter-spacing: .01em;
    opacity: .7;
}

/* Arrow */
.cevt-item__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fffbdf;
    flex-shrink: 0;
    transition: transform .25s ease;
}

.cevt-item:hover .cevt-item__arrow {
    transform: translate(3px, -3px);
}

/* Grid gap between columns — add left padding on right column */
.cevt-grid .cevt-item:nth-child(odd) {
    padding-right: 20px;
}
.cevt-grid .cevt-item:nth-child(even) {
    padding-left: 20px;
}

/* ────────────────────────────────────────────
   VER MÁS BUTTON
──────────────────────────────────────────── */
.cevt-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.cevt-btn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1.5px solid #111;
    border-radius: 100px;
    padding: 12px 36px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    cursor: pointer;
    letter-spacing: .02em;
    transition: background .2s, color .2s;
}

.cevt-btn-more:hover {
    background: #111;
    color: #fff;
}

/* ────────────────────────────────────────────
   MOBILE CAROUSEL (hidden on desktop)
──────────────────────────────────────────── */
.cevt-carousel {
    display: none;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.cevt-carousel__track {
    display: flex;
    transition: transform .45s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
}

.cevt-slide {
    flex: 0 0 85%;
    max-width: 85%;
    padding: 0 8px;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
    transition: opacity .3s ease;
}

.cevt-slide:not(.is-active) {
    opacity: .45;
}

.cevt-slide.is-active {
    opacity: 1;
}

/* Dots */
.cevt-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-bottom: 4px;
}

.cevt-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.cevt-dot.is-active {
    background: #111;
    transform: scale(1.3);
}

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media ( max-width: 767px ) {
    .cevt-grid {
        display: none;
    }

    .cevt-carousel {
        display: block;
    }

    .cevt-more-wrap {
        display: none;
    }

    .cevt-slide {
        flex: 0 0 80%;
        max-width: 80%;
    }

    .cevt-item__name {
        font-size: 15px;
    }

    .cevt-item__salon {
        font-size: 12px;
    }

    .cevt-item__info {
        padding: 14px 4px 18px;
    }
}

@media ( max-width: 480px ) {
    .cevt-slide {
        flex: 0 0 88%;
        max-width: 88%;
    }
}
