/* ===== NOSOTROS PAGE SPECIFIC STYLES ===== */

/* Floating WhatsApp Button */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 50px;
    width: 50px;
    background-color: #25d366;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.floating-btn:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Main Slider for Nosotros */
.mainSdr-photos#usmainbnr {
    width: 300%;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    height: fit-content;
    transition: transform 0.5s ease;
}

/* Us Info Sections */
.usinfo {
    margin: 0;
    padding: 0;
    display: flex;
    height: fit-content;
}

.usinfo img {
    width: 800px;
    min-width: 300px;
    margin: 0;
}

img#aprmexx {
    width: 100%;
    margin: 0;
    padding: 0;
}

.usinfotxt1 {
    text-align: center;
    align-content: center;
    padding: 2% auto;
    justify-content: center;
    width: 100%;
    background-color: #2A2A2A;
    color: #F8F8F8;
}

.usinfotxt2 {
    text-align: center;
    align-content: center;
    padding: 2% auto;
    justify-content: center;
    width: 100%;
    background-color: var(--azul);
    color: #F8F8F8;
}

.usinfotxt3 {
    text-align: center;
    align-content: center;
    padding: 2% auto;
    justify-content: center;
    width: 100%;
    background-color: var(--snow);
    color: var(--azul);
}

.usnfobr2 {
    width: fit-content;
    color: #ffffff;
    background-image: url(bnr/Nosotros/int.jpg);
    background-size: cover;
    width: 100%;
    height: 400px;
    align-content: center;
    text-align: center;
    text-shadow: rgba(4px, 4px, 4px, 0.2);
}

.usinfobr2 div {
    width: 80%;
}

/* Responsive Styles for Nosotros */
@media (max-width: 825px) {
    .usinfo {
        flex-direction: column-reverse;
        align-items: center;
    }
    
    .usinfotxt1, .usinfotxt2, .usinfotxt3 {
        width: 100%;
        padding: 5%;
    }
    
    .usinfo img {
        width: 100%;
        min-width: auto;
    }
}