:root {
  --brand: #005bbb;
  --brand-dark: #004b99;
  --bg: #f4f7fb;
  --text: #333;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

#vanta-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}




header {
  background: white;
  padding: 1rem 2rem;
  border-bottom: 1px solid #ddd;
}

header img {
  height: 50px;
}

main {
  padding: 2rem;
}

.hero {
  background: var(--brand);
  color: white;
  padding: 3rem 2rem;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.hero h1 {
  margin-top: 0;
}

form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

form .form-group {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  position: relative;
}

form label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

input[type="text"],
input[type="date"],
select {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  transition: all 0.25s ease;
  font-family: inherit;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

input[type="text"]:focus,
input[type="date"]:focus,
select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 91, 187, 0.2);
  outline: none;
}


button {
  background: white;
  color: var(--brand);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  align-self: flex-end;
  margin-top: auto;
  transition: background 0.2s;
}

button:hover {
  background: #e4ecf7;
}

.destinos {
  max-width: 1200px;
  margin: 0 auto;
}

.destinos h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.02);
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.card .info {
  padding: 0.75rem;
  text-align: center;
}

.destino-info {
  text-align: center;
  margin-top: 3rem;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  background: white;
  margin-top: 3rem;
  border-top: 1px solid #ccc;
}

footer a {
  margin: 0 1rem;
  text-decoration: none;
  color: var(--brand-dark);
}

.error {
  color: #ffc107;
  margin-top: 1rem;
}
