body {
  font-family: "Segoe UI", Roboto, system-ui, sans-serif;
  background: #f4f6f9;
  margin: 0;
  padding: 2rem;
  color: #222;
}

h1 {
  text-align: center;
  color: #204080;
  margin-bottom: 2rem;
}

section {
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* 🎬 Tarjeta horizontal */
.card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.card h3 {
  margin: 0 0 0.5rem;
  color: #2b5fc0;
}

.card p {
  margin: 0.3rem 0;
}

.card-content {
  flex: 1;
}

/* 🎞️ Formulario */
form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

input, textarea, button {
  padding: 0.6rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

button {
  background: #2b5fc0;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #1a4696;
}
