.masthead {
    height: 100vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("../assets/img/fondo-pagos.jpg") no-repeat center center;
    background-size: cover;
    color: white;
}

.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.btn-whatsapp:hover {
    transform: scale(1.1);
}

.logos-section img {
    max-width: 160px;
    height: auto;
    margin: 15px;
    transition: transform 0.3s ease;
}

.logos-section img:hover {
    transform: scale(1.05);
}

.accordion-button {
    background-color: #f8f9fa;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: #004b64;
    color: white;
}

.accordion-body {
    background: #fff;
    border-left: 4px solid #004b64;
    padding: 1.2rem;
}

/* //////////// */
.law-card {
    border-radius: 12px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    background: #ffffff;
    padding: 18px;
    min-height: 140px;
    text-align: center;
}

.law-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.15);
}

.law-card p {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.law-btn {
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.9rem;
}

/* ////////////// */

.nav-tabs .nav-link {
    color: #000 !important;
}

.nav-tabs .nav-link.active {
    color: #000 !important;
    font-weight: bold;
}

/* Footer */
footer .btn-floating {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

footer .btn-floating:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Estilo base para todos los botones sociales */
.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* Botón redondo */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Efecto hover */
.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: rgb(0, 0, 0);
}


.social-phone {
    color: #004b64;
}

.social-facebook {
    color: #004b64;
}

.social-google {
    color: #004b64;
}

.social-instagram {
    color: #004b64;
}

.social-whatsapp {
    color: #004b64;
}


/* Estilos para el menú desplegable */
.navbar .dropdown-menu {
    background: rgba(255, 255, 255, 0.334);
    border: none;
    border-radius: 7px;
    backdrop-filter: blur(5px);
}

/* Estilos para los items dentro del dropdown */
.navbar .dropdown-item {
    color: #000000;
    transition: background 0.3s ease;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
}

.navbar .dropdown-item:hover {
    background: rgba(0, 0, 0, 0);
         color: #004b64;

}