 /*destop*/
 /* Hidden items */
 .toggler{
    background-color: transparent; 
    border: none;
    display: none;
}

/* tablets to mobile */
@media only screen and (max-device-width: 900px) {
   .toggler{ display: contents;}
}

@media only screen and (max-device-width: 780px) {
   .toggler{display: contents;}
}

@media (max-width: 768px) {
    .logo-item img {
        max-width: 80px; /* Reduz o tamanho dos logos em dispositivos menores */
    }
    .title {
        font-size: 2rem;
    }

    .hero {
        text-align: center;
    }
}

@media only screen and (max-device-width: 540px) {
    .rxy{
        display: none;
    }
   .navbar .navbar-brand {
       font-size: medium;
       font-weight: bolder;
   }
   .toggler{display: contents;}
}

@media only screen and (max-device-width: 320px) {
   .navbar .navbar-brand {
       font-size: x-small;
       font-weight: bolder;
   }
   .toggler{display: contents;}
} 