/* Reset y base */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #fff;
  scroll-behavior: smooth;
  background-color: #000;
}

/* Header */
header {
  background-color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #a32121;
}

/* Secciones tipo slide */
section {
  scroll-margin-top: 80px; /* Ajusta según el alto real del header */
  height: 600px; /* Ajustá este valor según cuánto querés achicar */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 30px;
}

/* Overlay para contacto */
.overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 50px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
}

/* Formularios */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form textarea {
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
}

form button {
  background-color: #a32121;
  color: white;
  padding: 14px;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #7a1919;
}

/* Footer */
footer {
  background-color: #111;
  text-align: center;
  padding: 30px;
}

footer .logo-footer {
  height: 40px;
  margin-bottom: 10px;
}

footer p {
  color: #ccc;
  font-size: 14px;
  margin: 5px 0;
}
@media screen and (max-width: 768px) {
  header {
    flex-direction: row;
    align-items: center;
    padding: 10px 20px;
  }

  nav ul {
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  nav ul li a {
    font-size: 12px;
    padding: 5px 8px;
  }

  .logo {
    height: 35px;
    margin-right: auto;
  }
  section {
    height: auto;
    min-height: 200px;
    aspect-ratio: 4/3;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
  }

  form {
    width: 100%;
  }
}