* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#inicio.revolution-slider {
    margin-top: 105px;
}
.revolution-slider > .container {
    width: 100%;
    max-width: 100%;
   /* box-shadow: 0 10px 30px rgba(0,0,0,0.1);*/
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

/* Estilos del slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 750px;
    overflow: hidden;
    /*width: calc(100vw - 15px) !important;*/
   /*margin-left: calc(-50vw + 50% + (15px / 2)) !important;*/
   /* margin-right: calc(-50vw + 50% + (15px / 2)) !important;*/
   /* left: 0 !important;*/
    background-color: var( --bg-light-gray);
   
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}

.slider-slide.active {
    opacity: 1;
    z-index: 5;
}

.slide-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slide-bg picture {
    width: 100%;
    height: 100%;
    display: block;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.slider-container {
    min-height: 600px;
}
.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.content-row {
    display: flex;
    width: 100%;
    height: auto;
    align-items: center; 
    justify-content: center; 
    width: 100%;
    /*height: 100%; */
    min-height: calc(100vh - 86px);
}
.content-row:before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    background: var(--bs-info-text-emphasis);
    border-radius: 50%;
    top: -275px;
    left: -275px;
}
.content-col {
    padding-left: 255px;
    width: 50%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.content-col-right {
    width: 33.3333%;
    flex: 1;
}

.slide-title {
    font-family: 'Georgia', serif; /* Simulación de Villax Heading */
    font-size: 60px;
    font-weight: 500;
    color: var(--bs-info-text-emphasis);
    text-shadow: 1px 1px 1px #444;
    line-height: 97px;
    margin-bottom: 10px;
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.slide-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.line-break {
    width: 100%;
    height: 40px;
    clear: both;
}

.btn-slider {
    font-family: 'Heebo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    width: 200px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0px;
    line-height: 50px;
    padding: 0 30px;
    background: #000;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.4s;
    border: none;
    cursor: pointer;
}

.btn-slider.animate {
    opacity: 1;
    transform: translateY(0);
}

.btn-slider i {
    margin-left: 5px;
}

/* Navegación del slider */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 120px;
    transform: translateY(-50%);
    z-index: 10;
    padding: 5px;
    background: transparent;
    width: 75px;
    height: 160px;
}

.slider-tabs {
    width: 75px;
    height: 160px;
    position: relative;
}

.slider-tab {
    position: absolute;
    width: 75px;
    height: 50px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    background: rgba(255, 255, 255, 0.7);
}

.slider-tab:nth-child(1) {
    top: 0;
}

.slider-tab:nth-child(2) {
    top: 55px;
    z-index: 95;
}

.slider-tab:nth-child(3) {
    top: 110px;
    z-index: 90;
}

.slider-tab.selected {
    font-weight: bold;
    background: rgba(255, 255, 255, 0.9);
}

.tab-title {
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    color: #000;
}

/* Controles de reproducción */
.slider-controls {
    position: absolute;
    bottom: 30px;
    right: 5%;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.control-btn i {
    font-size: 16px;
}

.status-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    z-index: 10;
}

/* Responsive */
@media (max-width: 1200px) {
    .content-col {
        padding-left: 150px;
    }
    
    .slide-title {
        font-size: 70px;
        line-height: 80px;
    }
}

@media (max-width: 992px) {
    .content-col {
        padding-left: 100px;
    }
    
    .slide-title {
        font-size: 60px;
        line-height: 70px;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 480px;
    }
    
    .content-col {
        padding-left: 50px;
        width: 100%;
    }
    
    .content-col-right {
        display: none;
    }
    
    .slide-bg {
        width: 100%;
        /*opacity: 0.3;*/
    }
    
    .slide-title {
        font-size: 40px;
        line-height: 50px;
    }
    
    .slider-nav {
        left: 2px;
        bottom: 10%;
        top: unset;
        width: 235px;
        height: 50px;
        flex-direction: row;
        display: flex;
    }
    .slider-tabs {
        width: 100%;
        height: 50px;
        position: relative;
        flex-direction: row;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .slider-tab {
        position: unset;
        width: 75px;
        height: 50px;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex-direction: row;
        margin: 0 .4rem;
    }
    .slider-tabs .slider-tab:first-child {
        margin: 0 0rem;
    }
    .slider-controls {
        bottom: 20px;
        right: 20px;
    }

    .slider-container {
        min-height: 400px;
    }
    #inicio.revolution-slider {
        margin-top: 10px;
    }
}

/* ========================================
   RESPONSIVE SLIDER
======================================== */

/* TABLET (hasta 1199px) - Imagen ocupa 60% */
@media (max-width: 1199px) {
    .slider-container {
        height: 600px;
    }
    
    .slide-bg {
        width: 60%;
    }
    
    .content-col {
        padding-right: 20px;
    }
}

/* MÓVIL (hasta 768px) - Imagen de fondo completo */
@media (max-width: 768px) {
    .slider-container {
        height: 500px;
    }
    
    .slide-bg {
        width: 100%;
        right: 0;
        left: 0;
    }
    
    /*.slide-bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.1) 100%
        );
        z-index: 1;
    }*/
    
    .slide-content {
        position: relative;
        z-index: 2;
        padding: 0px;
        margin-top: 1rem;
    }
    
    .content-col {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .slide-title {
        font-size: 2rem;
        color: #ffffff;
        /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);*/
    }
    
    .btn-slider {
       /* background: rgba(255, 255, 255, 0.95);
        color: #333;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);*/
    }
    
    .slider-nav {
        bottom: 2px;
    }
    
    .slider-controls {
        bottom: 20px;
    }
}

/* MÓVIL PEQUEÑO (hasta 480px) */
@media (max-width: 480px) {
    .slider-container {
        height: 400px;
    }
    
    .slide-title {
        font-size: 2.8rem;
    }
    
    .btn-slider {
        padding: 0px 20px;
        font-size: 0.9rem;
    }
    
    .slider-tab {
        width: 50px;
        height: 50px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}