/*
Theme Name: absolut-theme
Theme URI: https://chaelieparrilla.com/
Author: luis eric mora duque
Author URI: https://chaelieparrilla.com/
Description: Tema personalizado para chaelieparrilla.com
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: absolut-theme
*/

.slider-container {
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Puntos (dots) */
.dots-container {
    text-align: center;
    margin-top: 10px;
}

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

.dots-container .dot.active {
    background-color: #333;
}

/* Caption */
.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
}