/* Importando a mesma família tipográfica do painel */
body {
    font-family: 'Poppins', sans-serif;
}

/* Animações de entrada (Scroll Reveal) */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Efeito nos cards de funcionalidades */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
}

/* Menu Mobile Styles */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

#mobile-menu.open {
    max-height: 400px;
    opacity: 1;
}
.logo-destaque {
  display: block; 
  /* Troquei o 0 inicial por um valor negativo para "puxar" a logo pra cima */
  margin: -40px auto 10px auto; 
  width: 100%;
  max-width: 250px; 
  height: auto; 
}



