/* ===========================================
   CASHFLOW VIP - CUSTOM STYLES
   =========================================== */

/* ===== IMPORTAR FUENTES ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/remixicon@4.0.0/fonts/remixicon.css');

/* ===== VARIABLES CSS ===== */
:root {
  --color-gold: #facc15;
  --color-gold-dark: #eab308;
  --color-black: #000000;
  --color-gray-900: #111827;
  --color-gray-800: #1f2937;
  --color-gray-700: #374151;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-white: #ffffff;
  --color-red: #ef4444;
  --gradient-gold: linear-gradient(135deg, #facc15 0%, #eab308 100%);
  --gradient-dark: linear-gradient(180deg, #000000 0%, #111827 50%, #000000 100%);
  --shadow-gold: 0 20px 40px -10px rgba(250, 204, 21, 0.3);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* ===== ESTILOS BASE ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===== UTILIDADES RESPONSIVE (sin depender de Tailwind) ===== */
.only-mobile { display: block; }
.only-desktop { display: none; }

@media (min-width: 768px) {
  .only-mobile { display: none; }
  /* En desktop mostramos el bloque, y si además es grid/flex respetamos eso. */
  .only-desktop { display: block; }
  .only-desktop.grid { display: grid; }
  .only-desktop.flex { display: flex; }
  .only-desktop.inline-flex { display: inline-flex; }
}

/* ===== ANIMACIONES ===== */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(250, 204, 21, 0.8);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== LOGO PLACEHOLDER ===== */
.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeIn 0.8s ease-out;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: var(--color-black);
  box-shadow: 0 8px 20px rgba(250, 204, 21, 0.3);
}

.logo-text {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--color-gold);
}

/* ===== BOTÓN CTA PRINCIPAL ===== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-300) 140%);
  color: var(--color-black);
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: 12px;
  border: 2px solid var(--color-gold);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: none;
  text-decoration: none;
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
  border-color: var(--color-gold-dark);
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

.btn-cta:hover::before {
  left: 100%;
}

/* ===== HERO (Mobile: dolor + solución) ===== */
.hero-mobile-block {
  margin: 10px auto 12px;
  max-width: 520px;
}

.mobile-ps-card {
  border-color: rgba(250, 204, 21, 0.45);
}

.mobile-ps-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.mobile-ps-side {
  text-align: left;
}

.mobile-ps-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(0, 0, 0, 0.18);
  color: var(--color-gray-300);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.3px;
}

.mobile-ps-tag-gold {
  border-color: rgba(250, 204, 21, 0.28);
  background: rgba(250, 204, 21, 0.10);
  color: var(--color-white);
}

.mobile-ps-text {
  margin: 8px 0 0;
  color: var(--color-white);
  opacity: 0.86;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.25;
}

.mobile-ps-divider {
  height: 1px;
  background: rgba(55, 65, 81, 0.9);
  border-radius: 999px;
}

.mobile-ps-foot {
  margin: 10px 0 0;
  color: var(--color-gray-300);
  font-size: 0.82rem;
  line-height: 1.25;
}

/* ===== VIDEO WRAPPER ===== */
.video-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.video-wrapper video {
  width: 100%;
  display: block;
  background: var(--color-black);
}

/* ===== VIDEO PLACEHOLDER ===== */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-black) 100%);
  border-radius: 16px;
  border: 2px solid var(--color-gold);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(250, 204, 21, 0.1) 0%, transparent 70%);
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse-glow 2s infinite;
  margin-bottom: 16px;
}

.play-button:hover {
  transform: scale(1.1);
}

.play-button i {
  font-size: 36px;
  color: var(--color-black);
  margin-left: 4px;
}

/* ===== TARJETAS ===== */
.card {
  background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-black) 100%);
  border: 2px solid var(--color-gold);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 0.6s ease-out;
}

/* ===== CARD "PLAN" (ruta + recursos) ===== */
.journey-card {
  border-color: rgba(250, 204, 21, 0.65);
}

.journey-lead {
  margin: 6px 0 8px;
  color: var(--color-gray-300);
  font-size: 0.92rem;
  line-height: 1.32;
}

.journey-steps {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 6px 2px 6px;
  -webkit-overflow-scrolling: touch;
}

.journey-step {
  flex: 0 0 86%;
  max-width: 360px;
  min-width: 260px;
  border-radius: 12px;
  border: 1px solid rgba(55, 65, 81, 0.75);
  background: rgba(0, 0, 0, 0.18);
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.journey-step-num {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 900;
  color: var(--color-black);
  background: var(--color-gold);
}

.journey-step-title {
  margin: 0;
  font-weight: 900;
  color: var(--color-white);
  font-size: 0.95rem;
  line-height: 1.1;
}

.journey-step-desc {
  margin: 4px 0 0;
  color: var(--color-white);
  opacity: 0.82;
  font-weight: 600;
  font-size: 0.86rem;
  line-height: 1.28;
}

.journey-includes {
  margin-top: 8px;
}

.journey-includes-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--color-gray-400);
  font-weight: 700;
  font-size: 0.85rem;
}

.journey-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.journey-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 999px;
  border: 1px solid rgba(250, 204, 21, 0.28);
  background: rgba(250, 204, 21, 0.08);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1;
}

.journey-badge i {
  color: var(--color-gold);
}

@media (min-width: 768px) {
  .journey-steps {
    overflow-x: visible;
  }

  .journey-step {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }

  .journey-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
}

.card-gold {
  background: var(--gradient-gold);
  border: 2px solid var(--color-black);
}

.card-icon {
  width: 32px;
  height: 32px;
  background: var(--color-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon i {
  font-size: 18px;
  color: var(--color-black);
}

.card-gold .card-icon {
  background: var(--color-black);
}

.card-gold .card-icon i {
  color: var(--color-gold);
}

/* ===== LISTA DE PROBLEMAS ===== */
.problem-list {
  position: relative;
  margin-top: 6px;
  padding-left: 12px;
}

.problem-list::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(250, 204, 21, 0.55) 0%,
    rgba(250, 204, 21, 0.15) 60%,
    rgba(250, 204, 21, 0.05) 100%
  );
}

.problem-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  animation: slideInLeft 0.5s ease-out;
}

.problem-list li:nth-child(1) { animation-delay: 0.1s; }
.problem-list li:nth-child(2) { animation-delay: 0.2s; }
.problem-list li:nth-child(3) { animation-delay: 0.3s; }
.problem-list li:nth-child(4) { animation-delay: 0.4s; }

.problem-marker {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 999px;
  flex-shrink: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9) 0%, rgba(250, 204, 21, 0.9) 35%, rgba(250, 204, 21, 0.35) 100%);
  box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.15), 0 6px 16px rgba(250, 204, 21, 0.12);
}

/* ===== GRID DE BENEFICIOS ===== */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 10px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  animation: scaleIn 0.5s ease-out;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

.benefit-item:hover {
  background: rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 18px;
  color: var(--color-black);
}

/* ===== SECCIÓN HERO ===== */
.hero-section {
  animation: fadeIn 0.8s ease-out;
}

.hero-title {
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* ===== FOOTER ===== */
.footer {
  animation: fadeIn 0.8s ease-out;
}

.site-footer {
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  height: 66px;
  width: auto;
}

@media (min-width: 768px) {
  .site-footer {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .footer-logo {
    height: 72px;
  }
}

/* ===== MODAL REGISTRO (compacto en desktop) ===== */
@media (min-width: 768px) {
  .register-modal-card {
    padding: 22px 24px;
    max-height: 95vh;
    overflow: auto;
  }

  .register-modal-header {
    margin-bottom: 16px;
  }

  .register-modal-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 10px;
  }

  /* Reduce un poco el “aire” entre campos sin depender de utilidades */
  .register-form > * + * {
    margin-top: 12px;
  }
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--color-gray-700);
  color: var(--color-gray-400);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-4px);
}

.social-link i {
  font-size: 20px;
}

/* ===== UTILIDADES ADICIONALES ===== */
.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ESPACIADO ENTRE SECCIONES =====
   Nota: El CSS de Tailwind en este proyecto está precompilado y no incluye
   todas las utilidades (por ejemplo mt-16, py-12, etc.). Para que el margen
   vertical entre secciones funcione SIEMPRE, lo controlamos aquí.
*/
.main-stack {
  display: flex;
  flex-direction: column;
}

.main-stack > section {
  padding-top: 44px;
  padding-bottom: 44px;
}

.main-stack > section:first-child {
  padding-top: 18px;
  padding-bottom: 28px;
}

.main-stack > section + section {
  margin-top: 56px;
}

@media (min-width: 768px) {
  .main-stack > section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .main-stack > section:first-child {
    padding-top: 26px;
    padding-bottom: 34px;
  }

  .main-stack > section + section {
    margin-top: 72px;
  }
}

.glow-gold {
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.4);
}

.border-glow {
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.2);
}

/* ===== TESTIMONIOS (layout + comillas) ===== */
.testimonials-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  overflow: visible;
}

.testimonial-item {
  width: 100%;
  max-width: none;
}

.testimonial-quote {
  position: relative;
  padding-left: 34px;
}

.testimonial-quote-icon {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 32px;
  line-height: 1;
  opacity: 0.18;
  color: var(--color-gold);
  pointer-events: none;
}

.testimonial-quote-text {
  position: relative;
}

@media (min-width: 768px) {
  .testimonials-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-item { min-width: 0; }
}

/* ===== SECCIÓN TESTIMONIOS (si se añade) ===== */
.testimonial-card {
  background: var(--color-gray-900);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--color-gray-700);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

/* ===== FAQ STYLES ===== */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--color-gold);
}

.faq-question {
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(250, 204, 21, 0.05);
}

.faq-answer {
  animation: fadeIn 0.3s ease-out;
}

/* ===== MODAL STYLES ===== */
#registerModal {
  animation: fadeIn 0.3s ease-out;
}

#registerModal > div {
  animation: scaleIn 0.3s ease-out;
}

/* ===== CONTADOR DE URGENCIA ===== */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid var(--color-red);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--color-red);
  font-weight: 600;
  font-size: 12px;
  animation: pulse-glow 2s infinite;
}

/* ===== EFECTO GLASS ===== */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== OCULTAR WATERMARK DE READDY ===== */
#watermark {
  display: none !important;
}

/* ===== RESPONSIVE AJUSTES ===== */
@media (max-width: 768px) {
  .logo-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
  
  .logo-text {
    font-size: 22px;
  }
  
  .btn-cta {
    padding: 16px 24px;
    font-size: 1.1rem;
    width: 100%;
  }
  
  .play-button {
    width: 64px;
    height: 64px;
  }
  
  .play-button i {
    font-size: 28px;
  }
}

/* ===== ANIMACIONES DE ENTRADA ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MEJORAS DE ACCESIBILIDAD ===== */
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

/* ===== SELECCIÓN DE TEXTO ===== */
::selection {
  background: var(--color-gold);
  color: var(--color-black);
}

::-moz-selection {
  background: var(--color-gold);
  color: var(--color-black);
}

/* ===== SCROLLBAR PERSONALIZADA ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-black);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gray-700);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* ===== SECCIÓN FUNDADORES ===== */
.stat-card {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.08) 0%, rgba(0, 0, 0, 0.25) 100%);
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--color-gray-300);
  line-height: 1.25;
}

.founders-photo-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--color-gold);
  box-shadow: 0 20px 60px rgba(250, 204, 21, 0.18);
  max-width: 420px;
  margin: 0 auto;
}

.founders-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.founder-card {
  background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-black) 100%);
  border: 1px solid rgba(250, 204, 21, 0.35);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.founder-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(250, 204, 21, 0.15);
}

.founder-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.founder-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--gradient-gold);
  color: var(--color-black);
  font-weight: 900;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.founder-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-white);
  margin: 0;
}

.founder-role {
  font-size: 0.9rem;
  color: var(--color-gold);
  margin: 2px 0 0;
}

.founder-card-body {
  display: grid;
  gap: 12px;
}

.founder-exp {
  color: var(--color-gray-300);
  font-size: 0.92rem;
  line-height: 1.5;
}

.founder-specialties-title {
  font-weight: 700;
  color: var(--color-white);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.founder-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.founder-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.10);
  border: 1px solid rgba(250, 204, 21, 0.25);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.mission-card {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
  border: 2px solid rgba(250, 204, 21, 0.35);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

.mission-quote {
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
}

.mission-quote-icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 36px;
  color: var(--color-gold);
  opacity: 0.25;
}

.mission-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
  margin: 0;
}

.mission-purpose {
  padding-top: 16px;
  border-top: 1px solid rgba(250, 204, 21, 0.2);
}

.mission-purpose-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mission-purpose-text {
  font-size: 0.95rem;
  color: var(--color-gray-300);
  line-height: 1.4;
  margin: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(55, 65, 81, 0.7);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--color-gold);
  background: rgba(250, 204, 21, 0.05);
  transform: translateY(-4px);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.12);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 24px;
}

.value-title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--color-white);
  margin: 0 0 8px;
}

.value-desc {
  font-size: 0.85rem;
  color: var(--color-gray-300);
  line-height: 1.35;
  margin: 0;
}

/* ===== ESPACIADO SECCIÓN FUNDADORES ===== */
.founders-header {
  margin-bottom: 48px;
}

.founders-badge {
  margin-bottom: 16px;
}

.founders-title {
  margin-bottom: 16px;
}

.founders-story {
  margin-bottom: 56px;
}

.founders-story-title {
  margin-bottom: 20px;
}

.founders-story-p {
  margin-bottom: 16px;
}

.founders-profiles {
  margin-bottom: 56px;
}

.mission-card {
  margin-bottom: 48px;
}

/* ===== SECCIÓN REGISTRO INLINE ===== */
.registro-header {
  margin-bottom: 48px;
}

.registro-icon-mb {
  margin-bottom: 24px;
}

.registro-title {
  margin-bottom: 16px;
}

.registro-form-wrapper {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
  border: 2px solid rgba(250, 204, 21, 0.35);
  border-radius: 20px;
  padding: 32px 24px;
}

@media (min-width: 768px) {
  .registro-form-wrapper {
    padding: 48px 40px;
  }
}

.registro-form-inline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.registro-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .registro-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.registro-label {
  margin-bottom: 8px;
}

.registro-submit {
  margin-top: 12px;
}

.registro-secure {
  margin-top: 12px;
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  max-width: 420px;
  background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-black) 100%);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(250, 204, 21, 0.3);
  padding: 20px;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.toast-show {
  opacity: 1;
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.toast-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.toast.toast-success .toast-icon {
  color: #10b981;
}

.toast.toast-error .toast-icon {
  color: #ef4444;
}

.toast-message {
  flex: 1;
}

.toast-title {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 4px;
}

.toast-text {
  font-size: 0.875rem;
  color: var(--color-gray-300);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 640px) {
  .toast {
    top: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
  }
}
