body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background-color: #f4f9f4;
  color: #333;
  line-height: 1.6;
}

header {
  background: linear-gradient(90deg, #388e3c, #66bb6a);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

section {
  padding: 2.5rem;
  border-bottom: 1px solid #e0e0e0;
  background-color: white;
  margin: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

h2 {
  color: #2e7d32;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  border-bottom: 2px solid #a5d6a7;
  display: inline-block;
  padding-bottom: 0.3rem;
}

ul {
  padding-left: 1.5rem;
}

ul li {
  margin-bottom: 0.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  border: 1px solid #ddd;
  padding: 1.2rem;
  text-align: left;
  background-color: #fafafa;
}

th {
  background-color: #e8f5e9;
  color: #2e7d32;
}

textarea {
  width: 100%;
  height: 120px;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
  background-color: #fefefe;
}

button {
  background-color: #43a047;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  margin-top: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #2e7d32;
}

a {
  color: #2e7d32;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.galeria img {
  width: 220px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.galeria img:hover {
  transform: scale(1.05);
}

footer {
  background-color: #2e7d32;
  color: white;
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}