/* Wrapper Geral */
.spotsites-slider-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 99; 
}

/* Container do Swiper - A trava do scroll horizontal! */
.spotsites-swiper-container {
    width: 100%;
    overflow: hidden !important; 
}

/* O cartão do Slide */
.spotsites-slide-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 380px;
    overflow: hidden;
    background-color: #1a1a1a;
    text-decoration: none;
    color: #ffffff;
    transform: scale(0.98); 
    transition: transform 0.4s ease;
}

.swiper-slide-active .spotsites-slide-inner {
    transform: scale(1);
}

a.spotsites-slide-inner:hover img {
    transform: scale(1.05);
}

.spotsites-slide-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.spotsites-slide-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 65%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

.spotsites-slide-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

.spotsites-slide-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.spotsites-subtitle {
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 5px;
}

.spotsites-title {
    color: #ffffff;
    margin: 0;
    font-size: 26px;
    font-weight: 500;
    display: inline-block;
    border-bottom: 2px solid #ffffff; 
    padding-bottom: 2px;
}

.spotsites-slide-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.spotsites-author {
    font-size: 14px;
    font-weight: 500;
    max-width: 60%;
    line-height: 1.3;
}

.spotsites-cta {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid #ffffff; 
    padding-bottom: 2px;
    white-space: nowrap;
}

.spotsites-arrow-icon {
    font-weight: 300;
    margin-left: 5px;
    font-size: 0.85em;
    opacity: 0.9;
}

/* =========================================================
   ESTILO DA NAVEGAÇÃO BLINDADA
   ========================================================= */
.spotsites-navigation-wrap {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 15px;
    position: relative;
    z-index: 9999;
    pointer-events: auto;
}

.spotsites-nav-center .spotsites-navigation-wrap { justify-content: center; }
.spotsites-nav-left .spotsites-navigation-wrap { justify-content: flex-start; }
.spotsites-nav-right .spotsites-navigation-wrap { justify-content: flex-end; }

.spotsites-custom-prev, 
.spotsites-custom-next {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 0 !important;
    border: none;
    line-height: 0;
    pointer-events: auto;
}

.spotsites-custom-prev svg, 
.spotsites-custom-next svg {
    display: block;
    margin: auto !important;
    padding: 0 !important;
}

.spotsites-custom-prev.swiper-button-disabled,
.spotsites-custom-next.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}