.container{
    margin-bottom: 10px;
}
.delayed-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.breadcrumb {
    background: transparent !important; 
   margin left:10px;
    margin-bottom: 1rem; 
}

.breadcrumb-item {
    color: white; 
}
.delayed-image:hover {
    transform: scale(1.05);
}


.rounded-box {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
}

.rounded-box h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}


.rounded-box p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}


.boton-flotante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1000;
    transition: background 0.3s ease;
}
.boton-flotante:hover {
    background: #0056b3;
}
@media (max-width: 992px) {
    .rounded-box h3 {
        font-size: 1.5rem;
    }
    .rounded-box p {
        font-size: 1rem;
    }
    .container{
    margin-bottom: 20px;
}
}


@media (max-width: 576px) {
    .rounded-box h3 {
        font-size: 1.3rem;
        text-align: center;
    }
    .rounded-box p {
        font-size: 0.95rem;
        text-align: center;
    }
    .container{
    margin-bottom: 20px;
}
}