/* ===== BOTONES GENERALES ===== */

/* Estilo base de todos los botones */
button, .btn {
  color: #ffffff !important;
  background-color: #abcc44 !important; /* Verde lima principal */
  border: none;
  border-radius: 6px;
  font-weight: 600;
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease-in-out;
}

/* Hover general en naranja del logo */
button:hover, .btn:hover {
  background-color: #f36b34 !important; /* Naranja */
  color: #ffffff !important;
  transform: scale(1.03);
}

/* ===== BOTÓN CLARO (hero u overlay oscuros) ===== */
.btn-light, .btn-light:active, .btn-light:visited {
  background-color: #ffffff !important;
  color: #abcc44 !important;
  border: 2px solid #abcc44;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Hover botón claro */
.btn-light:hover {
  background-color: #abcc44 !important;
  color: #ffffff !important;
}

/* ===== TITULOS ===== */
h1, h2 {
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  color: #1c1c1c;
}

/* ===== PIE DE PÁGINA ===== */
footer {
  background-color: #fafafa;
  color: #1c1c1c;
  font-size: 14px;
}

/* ===== SECCIONES ===== */
section {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 30px;
  margin-bottom: 30px;
}