body {
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

.bg-primary {
  background-color: #78c2a4 !important;
}

.bg-accent {
  background-color: #f5a962;
}

.text-accent {
  color: #f5a962;
}

.hero-bg {
  background: linear-gradient(to right, #78c2a4, #f5a962);
  color: white;
  padding: 100px 0;
}

.gradient-section {
  background: linear-gradient(to right, #78c2a4, #f5a962);
  color: white;
  padding: 100px 0;
}

.btn-accent,
.btn-rounded {
  background-color: #f88e5d;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 20px; /* <--- Más corto */
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-accent:hover,
.btn-rounded:hover {
  background-color: #e26e3f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-rounded-small {
  background-color: #f88e5d;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 6px 20px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-rounded-small:hover {
  background-color: #e26e3f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-weight: bold;
  color: #444;
  margin-bottom: 1.5rem;
}

.card-title {
  color: #222;
}

.card {
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card .btn {
  display: inline-block;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.card .btn:hover {
  background-color: #e26e3f;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial {
  font-style: italic;
  background: #f8f9fa;
  padding: 1rem;
  border-left: 4px solid #78c2a4;
  border-radius: 8px;
}

footer {
  background-color: #222;
  color: #fff;
  padding: 2rem 0;
}

footer a {
  color: #f5a962;
  text-decoration: none;
}

.nav-link {
  color: white !important;
  font-weight: 600;
  margin: 0 12px;
  border-radius: 25px;
  padding: 6px 14px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.navbar-brand img {
  height: 80px;
  object-fit: contain;
}
