
* {
    /*box-sizing: border-box;*/  /* Asegura que el tamaño de los elementos se mida de manera proporcional */
}

#bannerComponent {
    width: 100%;
    position: relative;
   height: 100%;
    overflow: hidden;
}

/* Slider Styles */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.content {
    position: absolute;
    top: 20vh;
    left: 7%;
    color: #ffffff;
    width: 35%;
}

.content h1 {
    font-size: 48px;
    font-weight: 700;
    transform: scaleY(1.2);
}

.content button {
    all: unset;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    background-color: #ffffff;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 40px;
}

.content button:hover {
    background-color: #1e928e;
    color: #ffffff;
}

/* Indicators */
.indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 15px;
    height: 15px;
    background-color: #000000;
    border-radius: 50%;
    cursor: pointer;
}

.indicator.active {
    background-color: #7db630;
}

