body{
    font-family: "Nunito", sans-serif;
    color: #111144;
}

/* Seccion flotante de redes sociales */

.Bf {
    position: fixed;
    right: 20px; /* Siempre a la derecha */
    top: 200px; /* Más alto en la pantalla */
    z-index: 1000;
    background-color: #fbb03b;
    border-radius: 10px;
    padding: 10px; /* Aumenta el espacio interno */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Bf a {
    padding: 12px; /* Espaciado mayor entre íconos */
    display: block;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.Bf a:hover {
    background-color: #f1f2e2;
    border-radius: 10px;
    transform: translateX(-5px);
}

/* Ajuste para tablets */
@media (max-width: 768px) {
    .Bf {
        right: 10px;
        top: 60px; /* Baja un poco para que no estorbe */
    }

    .Bf a {
        padding: 10px;
    }

    .Bf img {
        width: 35px; /* Un poco más grande */
    }
}

/* Ajuste para móviles */
@media (max-width: 480px) {
    .Bf {
        right: 5px;
        top: 50px; /* Ajuste en móviles */
        padding: 8px;
    }

    .Bf a {
        padding: 8px;
    }

    .Bf img {
        width: 30px;
    }
}




/* Botón de traer hacia arriba */

.cmn-divfloat {
    position: fixed;
    bottom: 25px;
    right: 15px;
    z-index: 5;
}

.cmn-btncircle {
    width: 55px;
    height: 55px;
    padding: 6px 0px;
    border-radius: 20px;
    font-size: 18px;
    text-align: center;
    background: rgb(249,209,33);
background: radial-gradient(circle, rgba(249,209,33,1) 0%, rgba(49,156,205,1) 100%);
border-color: #111144;
}
.Flecha{
    width: 80%;
}

/* Logo */

.container{
    display: flex;
    justify-content: center;
}
.Logo{
    width: 150px;
    border-radius: 20px;
}

/* Barra de navegación */
.navbar {
    background-color: #111144 !important;
}

.dropdown:hover .dropdown-menu {
    display: block;
}
.navbar-collapse{
    display: flex;
    justify-content: center;
}
.nav-item{
    padding-left:40px;
    color: white;
}
.nav-link{
    border-radius: 10px;
    color: white;
}
.nav-link:hover{
background-color: #f9b121;
}
.navbar-toggler{
   background-color: white;
}

/* Seccion de formulario */

#formulario h2{
    text-align: center;
    font-family: "Gabarito", sans-serif;
}

.cont{
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
#formulario{
    box-shadow: 0 2px 2px rgba(0,0,0,0.2);
    padding-bottom: 30px;
    width: 95%;
    padding: 50px 50px 50px 50px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 15px;
    background-color: #fbb251;
} 
.subir{
    border-radius: 20px;
    background-color: #cc1100;
    color: #f1f2e2;
    font-family: "Gabarito", sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    border-style: none;
    position: relative;
    left: 450px;
    width: 200px;
    height: 50px;
}
button:hover{
    background-color: rgb(213, 47, 80);
    color: whitesmoke;
}
.iconos{
    width:20px;
}