:root {
    --pantone-490: #56242A; 
    --pantone-504: #4e232E;
    --pantone-465: #B38E5D;
    --pantone-468: #D4C19C;
    --pantone-7420: #9D2449;
    --pantone-7421: #621132;
    --pantone-627: #13322B;
    --pantone-626: #285c4d;
}

body{
    margin: 0px 0px;
    padding: 0px 0px;
}
.slider-container {
    position: relative;
    max-width: 100%; /* Asegura que ocupe todo el ancho */
    margin: 0; /* Elimina márgenes */
    overflow: hidden;
    width: 100%;
    height: 100vh; /* Ocupa toda la altura de la pantalla */
    background-color: black;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    background-color: grey; /* Color de fondo para el slider */
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: 100%; /* Ajusta la altura de las imágenes */
    object-fit: cover; /* Asegura que las imágenes se adapten sin deformarse */
    z-index: -1;
}

.slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom, rgba(86, 36, 42, 0.7), rgba(157, 36, 73, 0.5)); */
    z-index: 1;
    pointer-events: none;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.slider-nav button {
    /* display: none; */

    background-color: var(--pantone-465);
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: white;
    font-size: 24px;
    margin: 0px 5%;
    
}

.slider-nav button#nextBtn {
    margin: 0px 10%;
}

.slider-nav button#left {
    margin: 0px 8%;
}

.slider-dots {
    display: none;
    position: absolute; /* Added position property */
    left: 50%;
    top: 90%;
    text-align: center;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.title{
    position: absolute; /* Added position property */
    display: flex;
    justify-content: center;
    align-items: center;
    left: 13%;
    top: 3%;
    width: 70%;
    z-index: 2;
    border-radius: 8px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.6);
}

.title p{
    font-size: 30px;  
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

.nota {
    position: absolute; /* Added position property */
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    width: 60%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    left: 17%;
    top: 65%;
    z-index: 2;
    text-align: justify; /* Justify text */
    padding: 0px 20px;

}

.nota p{
    font-size: 24px;
    color: white;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
}


.back{
    position: absolute; /* Added position property */
    background-color: rgba(179,142,93, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    left: 5%;
    top: 5%;
    z-index: 2;
}
.back a{
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: color 0.3s; /* Added transition for hover effect */
}
.back a:hover {
    color: #ccc; /* Change color on hover */
}




.dot.active {
    background-color:#555; 
    }
    
    
@media (max-width: 480px) {
    body{
    background-color: rgb(86, 36, 42  );
    }
    .slider-container{
    position: absolute;
    top: 15%;
    }

    .slider-dots {
    display: none;
    }
    .title p {
    font-size: 18px;
    }
    .title{
    position: absolute; /* Added position property */
    display: flex;
    text-align: center;
    left: 20%;
    top: 3%;
    z-index: 2;
    width: 80%;
    }
    .nota {
    width: 90%;
    height: 150px;
    left: 5%;
    top: 50%;
    }
    .nota p {
    font-size: 12px;
    }

    .back{
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    left: 5%;
    top: 5%;
    z-index: 2;
    }
}