@import url(base.css);
@import url(secciones.css);
body{
    background-color: var(--negro);
    height: 100%;
}
.titulo-seccion{
    font-family: var(--kadwa);
    font-size: 48px;
}
.filtro{
    height: 120px;
    width: 100%;
    background-color: var(--arena);
}
.filtroCont{
    margin: auto;
    height: 100%;
    max-width: 1200px;
    display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	align-content: stretch;
    position: relative;
}
.filtroCont span{
    color: var(--morado);
}
.filtroCont option{
    color: var(--arena);
}
.filtroCont button{
    padding: 5px 10px;
    background-color: var(--negro);
    border-radius: 5px;
    cursor: pointer;
}
.filtroCont .ubiDrop{
    width: 100%;
    display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
.filtroCont label select{
    background-color: transparent;
    max-width: 155px;
    width: 100%;
    color: var(--morado);
}
.filtroCont label select option{
    background-color: var(--negro);
}
.filtroCont label select option:hover{
    background-color: var(--dorado_claro) !important;
}
.ubiTipo{
    padding: 10px 0px;
    height: 100%;
    width: 240px;
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: stretch;
    gap: 10px;
    position: absolute;
    left: 0;
}
.ubiTipo span{
    width: 70px;
    display: inline-block
}
.ubiTipo select:focus{
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}
.desarrollosBox{
    width: 100%;
    padding-top: 40px;
}
.desarrollos{
    margin: auto;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.desarrollo{
    display: inline-block;
    text-decoration: none;
    width: 500px;
    height: 500px;
    border-radius: 5px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    gap: 40px;
    padding: 40px;
    position: relative;
}
.desarrollo::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -9999;
    background-color: black;
}
.desarrollo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -999;
    opacity: 0.35;
}
.desarrolloNombre{
    font-weight: bold;
    font-size: 32px;
    text-align: center;
    font-family: var(--kadwa);
}
.desarrolloResumen{
    font-size: 16px;
    text-align: center;
    height: 100px;
}
.desarrolloPrecio{
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    font-family: var(--kadwa);
}
.seccionIndividual{
    padding-top: 100px;
}
.filtro-precio {
    padding: 10px 0px;
    width: 100%;
    max-width: 650px;
    height: 100%;
    display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	align-content: stretch;
    position: absolute;
    margin: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
}
.negritas{
    font-weight: bold;
}
.range-container {
    position: relative;
    width: 100%;
    height: 20px;
}
.filtro-precio span:focus{
    outline: none !important;
    border: 1px var(--morado) solid !important;
    border-radius: 5px !important;
    box-shadow: none !important;
}
.filtro-precio label{
    color: var(--morado);
}
.filtro-precio input{
    background-color: transparent;
    color: var(--blanco);
    font-weight: bold;
}
.filtro-precio input:focus{
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}
.entregaBoton{
    padding: 10px 0px;
    height: 100%;
    display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	align-content: stretch;
    gap: 10px;
    position: absolute;
    right: 0;
}
.entregaBoton p{
    color: var(--morado);
}
.entregaInmediata{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.switchCont{
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    cursor: pointer;
}
#entrega{
    opacity: 0;
    width: 0;
    height: 0;
}
.switch{
    position: absolute;
    background-color: var(--morado);
    border: 3px var(--morado) solid;
    border-radius: 20px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.3s;
}
.switch:before{
    position: absolute;
    content: "";
    height: 14px;
    width: 16px;
    left: 0;
    top: 0;
    background-color: var(--arena);
    border-radius: 50%;
    transition: all 0.3s;
}
#entrega:checked + .switch:before{
    transform: translateX(18px);
}

.entregaBoton button{
    border: 3px var(--morado) solid;
    background-color: transparent;
    color: var(--morado);
    width: 200px;
    transition: all 0.3s;
}
.entregaBoton button:hover{
    background-color: var(--morado);
    color: var(--arena);
}
input[type="range"] {
    position: absolute;
    width: 100%;
    height: 8px;
    background: none;
    pointer-events: none; /* Evita que se pueda interactuar con ambos sliders a la vez */
    -webkit-appearance: none;
    appearance: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    height: 8px;
    background: transparent;
    border-radius: 5px;
    margin-bottom: -10px;
    z-index: 99;
}

input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    position: relative;
    width: 10px;
    height: 20px;
    background: var(--morado);
    border-radius: 5px;
    cursor: pointer;
    pointer-events: all; /* Permite mover los sliders */
    -webkit-appearance: none;
    margin-top: -6px;
}

.slider {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 8px;
    background: transparent;
    border: 1px var(--morado) solid;
    border-radius: 5px;
    transform: translateY(-50%);
}

.progress {
    position: absolute;
    height: 8px;
    background: var(--morado);
    border-radius: 5px;
}
.noventaynueve{
    width: 99px;
}
@media only screen and (min-width: 0px) and (max-width: 1200px) {
    .seccionBox{
        padding: 20px;
    }
    .seccionBox h2{
        font-weight: 300;
        font-size: 9
        0px !important;
        text-align: center;
        text-transform: capitalize;
    }
    .seccionBox:first-of-type{
        padding-top: 50px;
    }
    .carrusel{
        gap: 30px;
    }
    .carrusel img {
        width: 100%;
        max-width: 234px;
        height: auto;
    }
    .carrusel-container {
        width: 100%;
        max-width: 234px;
    }
    .desarrollosBox{
        width: 100%;
        padding-top: 20px;
    }
    .desarrollos{
        padding: 0px 20px;
        justify-content: center;
    }
    .desarrollo{
        margin-bottom: 20px;
        padding: 20px;
        gap: 20px;
        height: 400px;
    }
    .desarrolloNombre{
        font-size: 30px;
    }
    .desarrolloResumen{
        font-size: 14px;
    }
    .desarrolloPrecio{
        font-size: 20px;
    }
    .filtro{
        padding: 10px;
        height: auto;
    }
    .filtroCont{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        align-content: center;
        gap: 0px;
    }
    .filtro-precio{
        gap: 10px;
    }
    .seccionIndividual{
        padding-top: 70px;
    }
    .entregaBoton{
        flex-direction: row;
        gap: 10px;
    }
    .ubiTipo{
        gap: 10px;
        position: static;
    }
    .filtro-precio{
        position: static;
        translate: -0% -0%;
    }
    .entregaBoton{
        position: static;
        justify-content: center;
        align-items: center;
        align-content: center;
    }
    .entregaInmediata{
        justify-content: center;
        gap: 10px;
    }
}