/* Estilos personalizados adicionais */

/* Cores personalizadas */
:root {
  --yellow-lamborghini: #eaa401;
  --yellow-hover: #d99000;
  --green-pastel: #84cc16;
  --graphite: #27272a;
  --dark-graphite: #18181b;
}

/* Estilos para o fundo do hero */
header {
  background-image: url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
}

/* Ajustes para o hover */
.hover\:bg-yellow-600:hover {
  background-color: var(--yellow-hover);
}

.hover\:text-yellow-400:hover {
  color: var(--yellow-lamborghini);
}

/* Ajustes para o mobile */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}

/* Animações */
.transition-colors {
  transition: all 0.3s ease;
}

/* Ajustes para acessibilidade */
button:focus,
a:focus {
  outline: 2px solid var(--yellow-lamborghini);
  outline-offset: 2px;
}

/* Menu mobile */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-graphite);
  z-index: 100;
  padding: 2rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu ul {
  margin-top: 3rem;
}

.mobile-menu li {
  margin-bottom: 1rem;
}

.mobile-menu a {
  color: white;
  font-size: 1.25rem;
  display: block;
  padding: 0.5rem 0;
}

