
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #f4f4f4;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  border-bottom: 2px solid #ccc;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 60px;
  height: auto;
}

.logo-text {
  font-size: 22px;
  font-weight: bold;
  color: #1e2b18;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

nav a:hover {
  color: #4e6b3f;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  background: linear-gradient(180deg, #dfe8d0 0%, #f9f9f9 100%);
}

.titulo-principal {
  font-size: 2rem;
  font-weight: bold;
  color: #2f4f2f;
  margin-bottom: 30px;
  text-align: center;
}

.form-reserva {
  background-color: #88a466;
  padding: 40px;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.campo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.campo label {
  font-weight: bold;
  color: #fff;
  margin-bottom: 8px;
}

.campo i {
  margin-right: 5px;
}

.campo input,
.campo select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.campo input:focus,
.campo select:focus {
  outline: none;
  border-color: #2f4f2f;
}

.boton {
  text-align: center;
}

.boton input[type="submit"] {
  background-color: #4e6b3f;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.boton input[type="submit"]:hover {
  background-color: #2f4f2f;
  transform: translateY(-2px);
}

footer {
  background: #e5e5e5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
}

footer p {
  font-size: 14px;
  color: #333;
}

footer .redes {
  display: flex;
  gap: 25px;
  margin-left: 200px;
}

footer i {
  font-size: 1.5rem;
}

footer i:hover {
  color: #4e6b3f;
}


