* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #1e1e2f;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: background 0.3s;
  border-radius: 5px;
}

.nav-links a:hover {
  background-color: #3e3e5e;
}

.seccion {
  max-width: 800px;
  margin: 1rem auto;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.inicio {
  background-image: url('https://images.unsplash.com/photo-1503264116251-35a269479413?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

.inicio h1, .inicio p {
  text-align: center;
}

h1, h2 {
  color: #1e1e2f;
  margin-bottom: 1rem;
}

ul {
  padding-left: 1.5rem;
  margin-top: 1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

button {
  padding: 0.75rem;
  background-color: #1e1e2f;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #3e3e5e;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #1e1e2f;
  color: white;
  margin-top: 2rem;
}
.imagen-equipo {
  width: 95%;
  max-width: none;
  height: 70vh;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
}

.btn-iniciar {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-iniciar:hover {
  background-color: #0056b3;
}

