/* ======================================================
   ESTILOS PERSONALIZADOS (FONDO BLANCO / TEMA CLARO)
   Prensa El Agustino
   - Fondo Base: Blanco / Gris Claro (#FFFFFF / #F8FAFC)
   - Azul Navy: #1B365D
   - Gris Pizarra: #5A6578
   - Naranja Vibrante: #FF6B00
   - Verde Lima: #7CB342
   - Celeste / Cian: #00A3E0
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --prensa-navy: #1B365D;
  --prensa-slate: #5A6578;
  --prensa-orange: #FF6B00;
  --prensa-orange-dark: #E65100;
  --prensa-lime: #7CB342;
  --prensa-cyan: #00A3E0;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #FFFFFF;
  color: #1E293B;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', sans-serif;
}

/* Glows suaves para fondo claro */
.hero-glow-orange-light {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-cyan-light {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 163, 224, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-lime-light {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 179, 66, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Animaciones y Efectos Visuales en Tema Claro */
.card-hover-effect {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover-effect:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px -10px rgba(27, 54, 93, 0.15);
}

.step-number-badge-orange {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #FF6B00 0%, #E65100 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.35);
}

.step-number-badge-lime {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #7CB342 0%, #558B2F 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(124, 179, 66, 0.35);
}

.btn-cta-orange {
  background: linear-gradient(135deg, #FF6B00 0%, #FF8800 100%);
  color: #ffffff;
  font-weight: 900;
  border-radius: 9999px;
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.35);
  transition: all 0.3s ease;
}

.btn-cta-orange:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.5);
  background: linear-gradient(135deg, #FF7A00 0%, #FFA000 100%);
}

.btn-submit-form {
  background: linear-gradient(135deg, #FF6B00 0%, #E65100 100%);
  color: #ffffff;
  font-weight: 900;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.35);
  transition: all 0.3s ease;
}

.btn-submit-form:hover {
  background: linear-gradient(135deg, #FF7A00 0%, #F57C00 100%);
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.5);
  transform: translateY(-2px);
}

/* Spinner Loader */
.spinner {
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 3px solid #ffffff;
  width: 22px;
  height: 22px;
  animation: spin 0.8s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Custom Scrollbar en tema claro */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #FF6B00;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #1B365D;
}
