* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

body {
  background-color: #f5f5f5;
  color: #333;
}

header {
  background-color: #2c3e50;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

header h1 {
  font-size: 2.5rem;
}

nav {
  background-color: #34495e;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #1abc9c;
}

.hero {
  background: url('multimierda/logo.png') no-repeat center center/cover;
  height: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
  font-size: 2rem;
  filter: brightness(70%);
}

.container {
  padding: 2rem;
  flex: 1;
}

.section {
  margin-bottom: 2rem;
}

.section h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
  border-bottom: 2px solid #1abc9c;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: auto;
}

form input, form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.25rem;
}

form button {
  background-color: #1abc9c;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-size: 1rem;
}

form button:hover {
  background-color: #16a085;
}

a {
  color: #3498db; /* Azul claro */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #5dade2; /* Un poco más claro al pasar el cursor */
}