.dtf-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
}

.dtf-swiper-container {
    width: 100%;
    height: 550px; /* Altura estándar premium para Hero */
    position: relative;
    overflow: hidden !important;
}

@media (max-width: 768px) {
    .dtf-swiper-container {
        height: 400px;
    }
}

.dtf-swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dtf-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.dtf-slide-video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

.dtf-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
}

.dtf-slide-content {
    position: relative;
    z-index: 2;
    max-w: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* Animations for slide content */
.swiper-slide-active .dtf-slide-title {
    animation: fadeInUp 0.8s ease forwards 0.2s;
    opacity: 0;
}

.swiper-slide-active .dtf-slide-subtitle {
    animation: fadeInUp 0.8s ease forwards 0.4s;
    opacity: 0;
}

.swiper-slide-active .dtf-slide-btn {
    animation: fadeInUp 0.8s ease forwards 0.6s;
    opacity: 0;
}

.dtf-slide-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .dtf-slide-title {
        font-size: 2rem;
    }
}

.dtf-slide-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #e2e8f0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .dtf-slide-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

.dtf-slide-btn {
    display: inline-block;
    background-color: var(--brand-primary, #2563eb);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3), 0 4px 6px -4px rgba(37, 99, 235, 0.3);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.dtf-slide-btn:hover {
    background-color: var(--brand-primary-hover, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.4), 0 8px 10px -6px rgba(37, 99, 235, 0.4);
}

/* Swiper custom overrides */
.dtf-swiper-container .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.4;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.dtf-swiper-container .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--brand-primary, #2563eb);
    width: 28px;
    border-radius: 5px;
}

.dtf-swiper-container .swiper-button-next,
.dtf-swiper-container .swiper-button-prev {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.dtf-swiper-container .swiper-button-next:after,
.dtf-swiper-container .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.dtf-swiper-container .swiper-button-next:hover,
.dtf-swiper-container .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
