.banner {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url('../img/banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.banner h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.banner p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-primary {
    background: #ffcc00;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    color: black;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #e6b800;
}
html {
    scroll-behavior: smooth;
}

.carousel-inner img {
    width: 100%;
    height: 400px; /* Ajusta la altura según necesites */
    object-fit: cover; /* Recorta y ajusta la imagen para que llene el espacio */
}