/* Estilos globales compartidos entre todas las páginas */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.hero-gradient {
  background: linear-gradient(135deg, #0F1419 0%, #1A365D 40%, #2B6CB0 100%);
}

.btn-primary {
  background: linear-gradient(135deg, #2B6CB0 0%, #3182CE 100%);
  color: white;
  padding: 0.9rem 1.9rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.25s;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15, 20, 25, 0.25);
}

.btn-secondary {
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  padding: 0.9rem 1.9rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.25s;
}

.btn-secondary:hover {
  background-color: #FFFFFF;
  color: #1A365D;
}

.card {
  background-color: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(15, 20, 25, 0.08);
  transition: all 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 20, 25, 0.12);
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #FFFFFF;
  min-width: 220px;
  border-radius: 0.75rem;
  box-shadow: 0 18px 40px rgba(15, 20, 25, 0.18);
  z-index: 40;
  padding: 0.25rem 0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  color: #1A365D;
}

.dropdown-content a:hover {
  background-color: #F7FAFC;
}

/* Navegación activa */
.nav-link.active {
  color: #2B6CB0;
  font-weight: 700;
}

/* Títulos de sección consistentes */
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0F1419;
  margin-bottom: 1rem;
  text-align: center;
}

/* Formularios y tarjetas */
.input-base,
.textarea-base,
.select-base {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #CBD5E0;
  border-radius: 0.75rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-base:focus,
.textarea-base:focus,
.select-base:focus {
  border-color: #2B6CB0;
  box-shadow: 0 0 0 4px rgba(49, 130, 206, 0.15);
}

/* Layout helpers */
.container {
  max-width: 72rem; /* equivalente a Tailwind's max-w-6xl */
}

/* Smooth icons */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
