.aportaciones {
  padding: 2rem 1rem;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.aportaciones h2 {
  font-size: 3rem;
  color: #003b6f;
  text-align: center;
  margin: 20px 0 50px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.5px;
  position: relative;
}

.aportaciones h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: #0077b6;
  margin: 10px auto 0;
  border-radius: 2px;
}

.aportaciones p {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.aportaciones label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
  color: #0a5275;
}

.aportaciones input[type="text"],
.aportaciones input[type="email"],
.aportaciones input[type="tel"],
.aportaciones input[type="url"],
.aportaciones textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.aportaciones textarea {
  resize: vertical;
}

.aportaciones button {
  display: block;
  width: 100%;
  background-color: #0a5275;
  color: white;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
   font-family: 'Segoe UI', sans-serif;
}

.aportaciones button:hover {
  background-color: #07405e;
}


.video-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2rem;
    aspect-ratio: 16 / 9;
    background: black; /* para el espacio vacío */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* evita recorte */
}