#btnTop {
    display: none; /* Oculto por defecto */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #f58220; /* Naranja del logo */
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

#btnTop:hover {
    background-color: #d96d12;
    transform: scale(1.1);
}

.intro {
    position: relative;
    background:
        linear-gradient(rgba(245, 130, 32, 0.8), rgba(245, 130, 32, 0.5)),
        url('/img/fondo.png') center/cover no-repeat;
}


body {
    font-family: Arial, sans-serif;
}

#nosotros {
    background-color: #f8f9fa;
}

#contacto {
    background-color: #e9ecef;
}

.navbar {
    margin-bottom: 20px;
}

h2 {
    color: #fdc82f;
}

.content-wrapper {
    position: relative;
}
.content-wrapper img {
    max-width: 100%;
    height: auto;
    /*float: right;*/
    margin-left: 20px;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .content-wrapper img {
        float: none;
        margin-left: 0;
        margin-right: 0;
        display: block;
        margin: 0 auto 20px;
    }
}
.container-xxl
{
    background-color: #000;
}
footer{
    background: #000000;
    color: #cccccc;
}
footer h4{
    margin-top: 1rem;
    font-size: 1.15rem;
}
footer img.logo-pie{
    width: 80%;
}
footer ul{
    margin-top: 0.5rem;
    list-style: none;
}
footer li{
    padding: 0.15rem 0px;
}