* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}


body {
  background: #0f172a;
  color: #f1f5f9;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #1e293b;
  position: sticky;
  top: 0;
  z-index: 10;
}

header h1 {
  text-align: center;
  font-size: 2rem;
  color: #38bdf8;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav a {
  color: #f1f5f9;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #38bdf8;
}

.hero {
  text-align: center;
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
}

.hero h2 {
  font-size: 2rem;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #38bdf8;
  color: #0f172a;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s;
}

.btn:hover {
  transform: scale(1.05);
}

section {
  padding: 3rem 1rem;
  text-align: center;
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 1.5rem;
}

.cardrestaurante {
  text-decoration: none;
  color: white;
  background: #1e293b;
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s;
}


.cardrestaurante:hover {
  transform: translateY(-5px);
}


.card {
  text-decoration: none;
  color: white;
  background: #1e293b;
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

input, textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  background: #334155;
  color: #f1f5f9;
}

button {
  background: #38bdf8;
  color: #0f172a;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #7dd3fc;
}

footer {
  background: #1e293b;
  text-align: center;
  padding: 1rem;
}

/*Celulares*/
@media screen and (max-width: 768px) {
  header h1 {
  text-align: center;
  font-size: 1.1rem;
  color: #38bdf8;
}

nav ul {
  display: flex;
  gap: 0.5rem;
  font-size: 15px;
  list-style: none;
}

nav a:hover {
  color: #ffffff;
}

}
