/* ===================================================================
   RUMBO DIFERENTE OFICIAL — Estilos principales
   =================================================================== */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-400);
  color: var(--navy-950);
  padding: 10px 16px;
  z-index: 100;
  font-weight: 600;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
}

/* ===================== NAV ===================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 24, 48, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(237, 239, 244, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--mist-100);
}
.nav-logo img { height: 34px; }
.nav-logo span {
  font-family: var(--font-utility);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--mist-300);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-400); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--mist-100);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  scroll-margin-top: 90px;
}

.hero-beam {
  position: absolute;
  top: -25%;
  left: -15%;
  width: 90%;
  height: 160%;
  background: conic-gradient(from 200deg at 25% 15%,
    transparent 0deg,
    rgba(232, 181, 61, 0.16) 12deg,
    transparent 35deg,
    transparent 360deg);
  pointer-events: none;
  animation: beamSweep 14s ease-in-out infinite;
}
@keyframes beamSweep {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(4deg); }
}

.hero-glow {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(circle, rgba(232, 181, 61, 0.10), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-text { max-width: 560px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-900);
  border: 1px solid rgba(232, 181, 61, 0.3);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-utility);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--gold-300);
  margin-bottom: 26px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: pulse 2.2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin-bottom: 26px;
  color: var(--mist-100);
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-400);
}

.hero-sub {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--mist-300);
  margin-bottom: 36px;
  max-width: 480px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  flex-shrink: 0;
}
.hero-image img {
  height: 480px;
  width: auto;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55));
}

/* ===================== SECCIONES GENERALES ===================== */
.section {
  padding: var(--space-24) 0;
  scroll-margin-top: 90px;
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-12);
}

.eyebrow-gold { color: var(--gold-400); }
.eyebrow-signal { color: var(--signal-400); }

.section-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
  color: var(--mist-100);
}

.section-sub {
  color: var(--mist-300);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ===================== CANAL: GRID DE VIDEOS ===================== */
.section-canal {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}

.video-card {
  background: var(--navy-800);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--mist-100);
  border: 1px solid rgba(237,239,244,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(232,181,61,0.25);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy-700);
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 24, 48, 0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.video-card:hover .play-overlay { opacity: 1; }
.play-overlay svg { width: 52px; height: 52px; }

.video-info { padding: var(--space-4) var(--space-5); }
.video-info h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.4;
  margin: 0;
}

/* ===================== SHORTS ===================== */
.shorts-row-wrapper { margin-bottom: var(--space-8); }
.shorts-label {
  font-family: var(--font-utility);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--mist-500);
  margin-bottom: var(--space-4);
}

.shorts-row {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  padding-bottom: var(--space-2);
  scroll-snap-type: x mandatory;
}
.shorts-row::-webkit-scrollbar { height: 6px; }
.shorts-row::-webkit-scrollbar-thumb { background: var(--navy-700); border-radius: 3px; }

.short-card {
  flex: 0 0 180px;
  scroll-snap-align: start;
  text-decoration: none;
  color: var(--mist-100);
}
.short-thumb {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy-700);
  border: 1px solid rgba(237,239,244,0.06);
  transition: transform 0.2s, border-color 0.2s;
}
.short-card:hover .short-thumb {
  transform: translateY(-4px);
  border-color: rgba(232,181,61,0.3);
}
.short-thumb img { width: 100%; height: 100%; object-fit: cover; }
.short-card p {
  margin-top: var(--space-2);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
}

.section-cta { text-align: center; }

/* ===================== PODCAST ===================== */
.section-podcast {
  background: var(--signal-900);
  position: relative;
}

.podcast-coming-soon {
  max-width: 520px;
  text-align: center;
  margin: 0 auto;
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(91, 140, 138, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-12) var(--space-8);
}
.podcast-icon { font-size: 2.6rem; margin-bottom: var(--space-4); }
.podcast-coming-soon h3 {
  font-size: 1.6rem;
  color: var(--mist-100);
  margin-bottom: var(--space-3);
}
.podcast-coming-soon p {
  color: var(--mist-300);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

/* ===================== VERSÍCULO ===================== */
.section-reflexion {
  background: var(--navy-950);
}

.reflexion-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-16) var(--space-8);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232,181,61,0.15);
  position: relative;
}
.reflexion-tema {
  display: inline-block;
  font-family: var(--font-utility);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--space-6);
}
.reflexion-texto {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.5;
  margin-bottom: var(--space-4);
  color: var(--mist-100);
}
.reflexion-ref {
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: var(--space-6);
}
.reflexion-comentario {
  color: var(--mist-300);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto var(--space-8);
}
.reflexion-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
}
.reflexion-nav button {
  background: var(--navy-700);
  border: none;
  color: var(--mist-100);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.reflexion-nav button:hover { background: var(--gold-400); color: var(--navy-950); }

/* ===================== SOBRE NOSOTROS ===================== */
.section-about {
  background: var(--navy-900);
}
.about-inner { max-width: 760px; }
.about-text h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin: var(--space-3) 0 var(--space-6);
}
.about-text p {
  color: var(--mist-300);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(237,239,244,0.06);
  padding-top: var(--space-12);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
}
.footer-logo { height: 70px; margin-bottom: var(--space-3); }
.footer-brand p { color: var(--mist-500); font-size: 0.92rem; }
.footer-links {
  display: flex;
  gap: var(--space-8);
}
.footer-links a {
  text-decoration: none;
  color: var(--mist-300);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-400); }
.footer-copy {
  text-align: center;
  color: var(--mist-500);
  font-size: 0.82rem;
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(237,239,244,0.05);
}

/* ===================== CONTACTO / LEADS ===================== */
.section-contacto {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
}

.contacto-card {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  flex-wrap: wrap;
}

.contacto-text {
  flex: 1 1 380px;
}
.contacto-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: var(--space-3) 0 var(--space-4);
}
.contacto-text p {
  color: var(--mist-300);
  line-height: 1.65;
}

.contacto-form {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  background: var(--navy-800);
  border: 1px solid rgba(232,181,61,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.contacto-form input[type="email"] {
  background: var(--navy-900);
  border: 1px solid var(--navy-700);
  color: var(--mist-100);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
}
.contacto-form input[type="email"]::placeholder { color: var(--mist-500); }
.contacto-form input[type="email"]:focus {
  border-color: var(--gold-400);
  outline: none;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--mist-300);
  cursor: pointer;
}
.checkbox-row input[type="checkbox"] {
  margin-top: 3px;
  width: 17px;
  height: 17px;
  accent-color: var(--gold-400);
  cursor: pointer;
}

.contacto-form .btn { width: 100%; }

.form-status {
  font-size: 0.88rem;
  min-height: 1.2em;
}
.form-status.status-success { color: var(--gold-300); }
.form-status.status-error { color: #E27D6E; }

@media (max-width: 720px) {
  .contacto-card { flex-direction: column; }
  .contacto-form { width: 100%; }
}


@media (max-width: 980px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-950);
    flex-direction: column;
    padding: var(--space-4) 6%;
    gap: var(--space-3);
    border-bottom: 1px solid rgba(237,239,244,0.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero { min-height: auto; padding-top: var(--space-8); }
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 10px;
  }
  .hero-text { text-align: center; max-width: 100%; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .badge { margin-left: auto; margin-right: auto; }
  .hero-image img { height: 280px; }

  .video-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; }
}
