/* Banner */
.banner{
    position: relative; /* Necesario para posicionar elementos hijos absolutamente */
    width: 100%;
}

.banner-img{
    height: 200px; /* Altura fija para el banner */
    overflow: hidden; /* Recorta cualquier exceso de la imagen */
}

.banner-img img{
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra todo el espacio sin distorsión */
    display: block;
    filter: brightness(0.4); /* Ajusta entre 0 (negro) y 1 (original) */
}

.banner-text-contact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: rgba(0, 0, 0, 0.3); /* Fondo semitransparente para mejor legibilidad */
}

/*.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;

    background-color: rgba(0, 0, 0, 0.5);
}*/

.banner h1 {
    color: white; /* Cambiado a blanco para mejor contraste */
    font-size: 36px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Sombra para mejorar legibilidad */
    z-index: 1;
}


/* Breadcrumbs */
.breadcrumbs {
    background-color: #f0f0f0;
    /*padding: 10px 20px;*/
    position: relative;
}


.breadcrumb-item {
    display: inline-block;
    background-color: #8DF3A4;
    color: #1a8a70;
    padding: 8px 30px;
    position: absolute;
    right: 50px;
    top: -40px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.breadcrumb-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #8DF3A4;
}

.breadcrumb-item a{
    text-decoration: none;
}

.breadcrumb-item a:hover{
    color: blue;
    /*text-decoration: underline;*/
}