/* Estilos personalizados adicionales a Tailwind */
.btn-primary {
  display: inline-block;
  background-color: #E31837;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(227, 24, 55, 0.2);
}

.page-title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .page-title {
    font-size: 3rem;
    line-height: 1;
  }
}

.section-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

/* Fondo de bolitas (Polka dots) */
.pattern-dots {
  background-color: #f0f0f0; 
  background-image: radial-gradient(#cbd5e1 2px, transparent 2px); 
  background-size: 24px 24px;
}
