/* ============================================================
   RADIO TAXI CELERITAS — Main Stylesheet
   Brand color: #29ABE2 (Celeritas cyan)
   Theme: Dark navy + cyan
   ============================================================ */

/* ===========================
   RESET & CUSTOM PROPERTIES
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Dark backgrounds ── */
  --navy:       #080C18;
  --navy-2:     #0E1525;
  --navy-3:     #151e33;
  --card:       #192031;
  --card-hover: #1e2840;

  /* ── Brand: Celeritas cyan ── */
  --brand:      #29ABE2;
  --brand-dark: #1A90BE;
  --brand-glow: rgba(41,171,226,0.10);
  --brand-line: rgba(41,171,226,0.24);
  --shadow-b:   0 0 44px rgba(41,171,226,0.22);

  /* ── WhatsApp green ── */
  --wa:         #25D366;
  --wa-dark:    #1aaa52;

  /* ── Other ── */
  --ig:         #e1306c;
  --blue:       #3b82f6;
  --white:      #FFFFFF;
  --g100:       #f1f5f9;
  --g300:       #cbd5e1;
  --g500:       #64748b;
  --g600:       #475569;

  /* ── Radii & shadows ── */
  --r:    12px;
  --r-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.45);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.05;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

p { color: var(--g300); }
a { text-decoration: none; color: inherit; }

/* ===========================
   LAYOUT
=========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 104px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn-brand {
  background: var(--brand);
  color: var(--white);
}
.btn-brand:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-b);
}

.btn-wa {
  background: var(--wa);
  color: #fff;
}
.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(37,211,102,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--white);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-2px);
}

/* ===========================
   TAGS / LABELS
=========================== */
.tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}
.tag-b  { background: var(--brand-glow); color: var(--brand); border: 1px solid var(--brand-line); }
.tag-g  { background: rgba(37,211,102,0.08); color: var(--wa); border: 1px solid rgba(37,211,102,0.22); }
.tag-bl { background: rgba(59,130,246,0.08); color: #60a5fa;  border: 1px solid rgba(59,130,246,0.22); }

/* ===========================
   SCROLL PROGRESS BAR
=========================== */
#prog {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--brand);
  z-index: 1002;
  transition: width 0.08s linear;
}

/* ===========================
   NAV
=========================== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: padding 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
#nav.stuck {
  background: rgba(8,12,24,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(41,171,226,0.15);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo: white pill so the brand logo is readable on dark bg */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 64px;
  display: block;
  background: #ffffff;
  padding: 8px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow: 0 14px 34px rgba(0,0,0,0.32);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-logo-img:hover { opacity: 1; transform: translateY(-1px); box-shadow: 0 18px 38px rgba(0,0,0,0.38); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--g300);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brand); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--brand); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 23px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.28s;
}

/* ===========================
   MOBILE MENU OVERLAY
=========================== */
#mob-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-2);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.77,0,0.18,1);
}
#mob-menu.open { transform: translateX(0); }

#mob-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--g300);
  transition: color 0.2s;
}
#mob-menu a:hover { color: var(--brand); }

#mob-close {
  position: absolute;
  top: 22px; right: 22px;
  background: rgba(255,255,255,0.07);
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ===========================
   FLOATING WA BUTTON
=========================== */
#float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 998;
  width: 58px; height: 58px;
  background: var(--wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 6px 28px rgba(37,211,102,0.4);
  transition: transform 0.22s, box-shadow 0.22s;
  animation: pop-in 0.4s ease 1.2s both;
}
#float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37,211,102,0.5);
}
.wa-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.45);
  animation: ring-out 2.2s ease-out infinite;
}
@keyframes ring-out {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0;   }
}
@keyframes pop-in {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ===========================
   HERO
=========================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 65% 45%, rgba(41,171,226,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 15% 25%, rgba(41,171,226,0.03) 0%, transparent 60%),
    var(--navy);
}

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(41,171,226,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,171,226,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* City streaks */
.streaks { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.sk {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(41,171,226,0.3), transparent);
  animation: sk-move linear infinite;
}
@keyframes sk-move {
  0%   { transform: translateX(-100%); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateX(200vw); opacity: 0; }
}

.dot-bg {
  position: absolute;
  border-radius: 50%;
  animation: dot-pulse ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.4); }
}

/* Right logo orbit */
.hero-visual {
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  width: 42%; max-width: 480px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.hero-orbit-wrap {
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(41,171,226,0.20);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-orbit-wrap::before {
  content: '';
  position: absolute; inset: 24px;
  border-radius: 50%;
  border: 1px solid rgba(41,171,226,0.12);
}
.hero-orbit-wrap::after {
  content: '';
  position: absolute; inset: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41,171,226,0.08), transparent 70%);
}
.hero-logo-visual {
  width: 250px;
  background: #ffffff;
  padding: 24px 34px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.95);
  z-index: 1;
  box-shadow: 0 24px 56px rgba(0,0,0,0.34);
  filter: drop-shadow(0 0 36px rgba(41,171,226,0.34));
  animation: float 3.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.orb-dot {
  position: absolute;
  width: 9px; height: 9px;
  background: var(--brand);
  border-radius: 50%;
  animation: orb linear infinite;
}
.orb-dot:nth-child(3) {
  width: 5px; height: 5px;
  background: rgba(41,171,226,0.45);
  animation-duration: 14s;
  animation-delay: -7s;
}
@keyframes orb {
  from { transform: rotate(0deg)   translateX(145px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(145px) rotate(-360deg); }
}

/* Hero text */
.hero-content { position: relative; z-index: 2; max-width: 760px; }

.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--brand-glow);
  border: 1px solid var(--brand-line);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 26px;
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--brand);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.hero-title {
  font-size: clamp(3.8rem, 9.5vw, 7.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 0.93;
  margin-bottom: 28px;
}
.hero-title .hl { color: var(--brand); display: block; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--g300);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 52px;
}
.hero-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--g300);
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  display: block;
}
.stat-lbl {
  font-size: 0.77rem;
  color: var(--g500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

/* ===========================
   HOW TO REQUEST
=========================== */
#como-pedir { background: var(--navy-2); }

.channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ch-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 36px 26px;
  text-align: center;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease, background 0.26s ease;
  position: relative;
  overflow: hidden;
  display: block;
}
.ch-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ch-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.ch-card:hover::after { transform: scaleX(1); }
.ch-card:hover {
  background: var(--card-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(255,255,255,0.12);
}

.ch-card.ch-web { --ch-accent: #93c5fd; }
.ch-card.ch-app { --ch-accent: var(--brand); }
.ch-card.ch-wa  { --ch-accent: var(--wa); }
.ch-card.ch-ig  { --ch-accent: var(--ig); }
.ch-card.ch-tel { --ch-accent: var(--blue); }

.ch-ico {
  width: 68px; height: 68px;
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  margin: 0 auto 20px;
}
.ch-web .ch-ico { background: rgba(147,197,253,0.10); }
.ch-app .ch-ico { background: var(--brand-glow); }
.ch-wa  .ch-ico { background: rgba(37,211,102,0.10); }
.ch-ig  .ch-ico { background: rgba(225,48,108,0.10); }
.ch-tel .ch-ico { background: rgba(59,130,246,0.10); }

.ch-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}
.ch-desc {
  font-size: 0.88rem;
  color: var(--g500);
  line-height: 1.55;
  margin-bottom: 22px;
}

.ch-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  transition: opacity 0.2s;
}
.ch-web .ch-pill { color: #93c5fd; background: rgba(147,197,253,0.09); }
.ch-app .ch-pill { color: var(--brand); background: var(--brand-glow); }
.ch-wa  .ch-pill { color: var(--wa);    background: rgba(37,211,102,0.09); }
.ch-ig  .ch-pill { color: var(--ig);    background: rgba(225,48,108,0.09); }
.ch-tel .ch-pill { color: #60a5fa;      background: rgba(59,130,246,0.09); }
.ch-card:hover .ch-pill { opacity: 0.76; }

/* ===========================
   APP SECTION
=========================== */
#app { background: var(--navy); overflow: hidden; }

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.app-content h2 { margin-bottom: 14px; }
.app-content > p { font-size: 1.02rem; margin-bottom: 0; }

.app-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0 36px;
}
.app-features li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 0.93rem;
  color: var(--g300);
}
.af-check {
  width: 22px; height: 22px;
  background: var(--brand-glow);
  border: 1px solid var(--brand-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Store badges — actual images */
.store-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.store-badge-link {
  display: inline-block;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.store-badge-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}
.store-badge-img {
  height: 90px;
  width: auto;
  display: block;
  border-radius: 12px;
}

/* Phone mockup */
.app-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-glow {
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(41,171,226,0.14) 0%, transparent 72%);
  border-radius: 50%;
  animation: glow-pulse 3.2s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.1); }
}
.phone {
  width: 270px; height: 560px;
  background: #0b1020;
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.10);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.65);
  position: relative;
  z-index: 1;
}
.phone::before {
  content: '';
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 24px;
  background: rgba(8,12,24,0.96);
  border-radius: 0 0 16px 16px;
  z-index: 5;
}
.phone-screen {
  height: 100%;
  position: relative;
  background: linear-gradient(160deg, var(--navy-3), var(--card));
}
.phone-screen-app {
  padding: 0;
  background: #eef2f7;
}
.phone-app-shot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.phone-screen-app::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

/* ===========================
   CORPORATE
=========================== */
#corporativo { background: var(--navy-2); }

.corp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.corp-left h2 { margin-bottom: 14px; }
.corp-left > p { font-size: 1.02rem; margin-bottom: 36px; }

.corp-bens {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}
.cb {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.cb-ico {
  width: 46px; height: 46px;
  background: var(--brand-glow);
  border: 1px solid var(--brand-line);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.cb-txt h4 {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 3px;
  color: var(--white);
}
.cb-txt p { font-size: 0.87rem; color: var(--g500); margin: 0; }

.corp-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Corporate right card */
.corp-card {
  background: var(--card);
  border: 1px solid var(--brand-line);
  border-radius: var(--r-lg);
  padding: 40px;
  position: sticky;
  top: 96px;
}
.corp-card-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}
.corp-card h3 {
  font-size: 1.9rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.corp-card > p { font-size: 0.9rem; color: var(--g500); margin-bottom: 28px; }

.feat-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.feat-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--g300);
}
.feat-list li::before {
  content: '✓';
  width: 19px; height: 19px;
  background: var(--brand-glow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem;
  color: var(--brand);
  flex-shrink: 0;
}

/* ===========================
   AFILIACION
=========================== */
#afiliacion {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-3) 100%);
  position: relative;
  overflow: hidden;
}
.af-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 100% 50%, rgba(41,171,226,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.af-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.af-left h2 { margin-bottom: 14px; }
.af-left > p { font-size: 1.02rem; margin-bottom: 36px; }

.perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.perk {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r);
  transition: border-color 0.24s, transform 0.24s;
}
.perk:hover { border-color: var(--brand-line); transform: translateX(4px); }
.perk-em { font-size: 1.45rem; flex-shrink: 0; margin-top: 1px; }
.perk-txt h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 3px;
  color: var(--white);
}
.perk-txt p { font-size: 0.86rem; color: var(--g500); margin: 0; line-height: 1.5; }

/* Afiliacion right card */
.af-card {
  background: var(--card);
  border: 1px solid var(--brand-line);
  border-radius: var(--r-lg);
  padding: 40px;
  position: sticky;
  top: 96px;
}
.af-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  display: block;
}
.af-big-lbl {
  font-size: 0.78rem;
  color: var(--g500);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: block;
  margin-bottom: 24px;
}
.af-card h3 {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.af-card > p { font-size: 0.9rem; color: var(--g500); margin-bottom: 26px; }

.af-acts { display: flex; flex-direction: column; gap: 11px; }
.af-acts .btn { justify-content: center; width: 100%; }

.portal-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  background: rgba(59,130,246,0.07);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: var(--r);
  font-size: 0.83rem;
  color: #93c5fd;
  margin-top: 14px;
}

.af-hours {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.af-h-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--g500);
  margin-bottom: 6px;
}

/* ===========================
   CONTACT
=========================== */
#contacto { background: var(--navy-2); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cc {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.cc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--brand-line);
}

.cc-ico {
  width: 54px; height: 54px;
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
}
.ico-b  { background: var(--brand-glow); }
.ico-bl { background: rgba(59,130,246,0.09); }
.ico-g  { background: rgba(37,211,102,0.09); }

.cc h3 {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}
.cc > p { font-size: 0.88rem; color: var(--g500); margin-bottom: 18px; }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--brand-glow);
  border: 1px solid var(--brand-line);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}
.live-dot-b {
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
}

.big-tel {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
  transition: color 0.2s;
}
a.big-tel:hover { color: var(--brand-dark); }

.hrs { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.hr-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
}
.hr-row .dy { color: var(--g500); }
.hr-row .tm { color: var(--white); font-weight: 500; }

.sep { width: 100%; height: 1px; background: rgba(255,255,255,0.07); margin: 14px 0; }

.cc-links { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; }
.cc-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: var(--r);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.2s;
}
.cc-link.wa { background: rgba(37,211,102,0.09); color: var(--wa);   border: 1px solid rgba(37,211,102,0.18); }
.cc-link.wa:hover { background: rgba(37,211,102,0.16); }
.cc-link.ph { background: rgba(59,130,246,0.07); color: #60a5fa;    border: 1px solid rgba(59,130,246,0.17); }
.cc-link.ph:hover { background: rgba(59,130,246,0.14); }

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 68px 0 36px;
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

/* Footer logo — white pill same as nav */
.ft-logo-img {
  height: 78px;
  display: block;
  background: #ffffff;
  padding: 10px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow: 0 14px 34px rgba(0,0,0,0.28);
  margin-bottom: 20px;
}

.ft-desc {
  font-size: 0.88rem;
  color: var(--g600);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 270px;
}
.ft-contacts { display: flex; flex-direction: column; gap: 7px; }
.ft-contacts a {
  font-size: 0.88rem;
  color: var(--g500);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.ft-contacts a:hover { color: var(--brand); }

.ft-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--g500);
  margin-bottom: 18px;
}
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.ft-links a { font-size: 0.88rem; color: var(--g600); transition: color 0.2s; }
.ft-links a:hover { color: var(--white); }

.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ft-bottom p { font-size: 0.8rem; color: var(--g600); }
.ft-socials { display: flex; gap: 10px; }
.soc-btn {
  width: 35px; height: 35px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  transition: all 0.2s;
}
.soc-btn:hover {
  background: var(--brand-glow);
  border-color: var(--brand-line);
}

/* ===========================
   ACCESOS RÁPIDOS
=========================== */
#portales {
  background: linear-gradient(135deg, #0b1220 0%, #0d1829 100%);
  border-top: 1px solid rgba(41,171,226,0.14);
  border-bottom: 1px solid rgba(41,171,226,0.14);
  padding: 42px 0;
}

.access-strip {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) 1.6fr;
  gap: 28px;
  align-items: center;
}

.access-copy .tag { margin-bottom: 10px; }
.access-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 8px;
}
.access-copy p {
  font-size: 0.95rem;
  color: var(--g500);
  max-width: 360px;
}

.access-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.access-btn {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  row-gap: 3px;
  align-items: center;
  padding: 18px 20px;
  border-radius: var(--r);
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.access-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--brand-line);
}
.access-btn span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  font-size: 1.3rem;
}
.access-btn strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.access-btn small {
  color: var(--g500);
  font-size: 0.8rem;
  line-height: 1.3;
}
.access-emp span { background: var(--brand-glow); }
.access-prop span { background: rgba(37,211,102,0.09); }

/* ===========================
   REDES SOCIALES
=========================== */
#redes { background: var(--navy-2); }

.redes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.red-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-decoration: none;
}
.red-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.ig-card:hover { border-color: rgba(225,48,108,0.3); }
.fb-card:hover { border-color: rgba(59,103,201,0.3); }

.red-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
}
.ig-card .red-icon-wrap {
  background: linear-gradient(135deg, rgba(225,48,108,0.15), rgba(255,120,0,0.12));
  border: 1px solid rgba(225,48,108,0.2);
}
.fb-card .red-icon-wrap {
  background: rgba(59,103,201,0.12);
  border: 1px solid rgba(59,103,201,0.22);
}

.red-info {}
.red-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
  color: var(--white);
}
.red-info p {
  font-size: 0.88rem;
  color: var(--g500);
  margin-bottom: 10px;
}
.red-handle {
  font-size: 0.88rem;
  font-weight: 600;
}
.ig-card .red-handle { color: #e1306c; }
.fb-card .red-handle { color: #5b8cde; }

/* ===========================
   ENTRANCE ANIMATIONS
=========================== */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.52s ease, transform 0.52s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .channels     { grid-template-columns: repeat(2, 1fr); }
  .access-strip { grid-template-columns: 1fr; }
  .portales-grid { grid-template-columns: 1fr; gap: 20px; }
  .redes-grid   { grid-template-columns: 1fr; max-width: 480px; }
  .app-grid   { grid-template-columns: 1fr; gap: 56px; }
  .app-visual { display: none; }
  .corp-grid  { grid-template-columns: 1fr; gap: 50px; }
  .corp-card  { position: static; }
  .af-grid    { grid-template-columns: 1fr; gap: 50px; }
  .af-card    { position: static; }
  .hero-visual { display: none; }
  .ft-grid    { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links  { display: none; }
  .nav-phone  { display: none; }
  .nav-burger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
}

@media (max-width: 520px) {
  .channels   { grid-template-columns: 1fr; }
  .access-actions { grid-template-columns: 1fr; }
  .store-badge-img { height: 82px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; width: 100%; }
  .store-btns { flex-direction: column; align-items: flex-start; }
  .corp-actions { flex-direction: column; }
  .ft-grid    { grid-template-columns: 1fr; gap: 28px; }
  .ft-bottom  { flex-direction: column; gap: 14px; text-align: center; }
}

/* ===========================
   AJUSTES V3 — LOGOS Y REDES
=========================== */
.nav-inner { gap: 18px; }
.nav-logo-img {
  height: 64px;
  padding: 8px 18px;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.12);
}
.nav-links { gap: 22px; }
.nav-links a { font-size: 0.86rem; }
.hero-orbit-wrap { width: 360px; height: 360px; }
.hero-logo-visual {
  width: 270px;
  padding: 26px 34px;
  border-radius: 28px;
}
.orb-dot { animation-name: orb-v3; }
@keyframes orb-v3 {
  from { transform: rotate(0deg) translateX(172px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(172px) rotate(-360deg); }
}
.ft-logo-img {
  height: 76px;
  padding: 9px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.red-icon-wrap {
  width: 92px;
  min-width: 92px;
  height: 92px;
  border-radius: 20px;
  background: rgba(255,255,255,0.96);
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.32);
}
.red-badge-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.soc-btn {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 7px;
}
.soc-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 1100px) {
  .nav-logo-img { height: 62px; padding: 8px 18px; }
}
@media (max-width: 768px) {
  .nav-logo-img { height: 58px; padding: 7px 16px; }
}
@media (max-width: 520px) {
  .nav-logo-img { height: 54px; padding: 7px 14px; }
  .ft-logo-img { height: 72px; padding: 9px 18px; }
  .red-card { align-items: flex-start; }
  .red-icon-wrap { width: 76px; min-width: 76px; height: 76px; }
}

/* ============================================================
   AJUSTES FINALES — Logos y badges de tiendas con mayor destaque
   ============================================================ */

/* NAV: menos blanco alrededor y logo más protagonista */
.nav-logo-img {
  width: 158px;
  height: 64px;
  padding: 3px 8px;
  object-fit: cover;
  object-position: center;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.90);
  box-shadow: 0 12px 30px rgba(0,0,0,0.32);
}

/* HERO: logo con presencia, sin tanto marco blanco */
.hero-logo-visual {
  width: 270px;
  height: 150px;
  padding: 6px 12px;
  object-fit: cover;
  object-position: center;
  background: #ffffff;
  border-radius: 28px;
}

/* FOOTER: logo más grande y con menos aire blanco */
.ft-logo-img {
  width: 210px;
  height: 92px;
  padding: 5px 12px;
  object-fit: cover;
  object-position: center;
  background: #ffffff;
  border-radius: 16px;
}

/* APP STORE / GOOGLE PLAY: mayor destaque */
.store-btns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.store-badge-link:hover {
  transform: translateY(-4px) scale(1.03);
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.48));
  box-shadow: none;
}

.store-badge-img {
  height: 156px;
  width: auto;
  display: block;
  border-radius: 16px;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,0.42));
}

/* Responsive fino */
@media (max-width: 1100px) {
  .nav-logo-img {
    width: 148px;
    height: 60px;
    padding: 3px 8px;
  }

  .store-badge-img {
    height: 116px;
  }
}

@media (max-width: 768px) {
  .nav-logo-img {
    width: 138px;
    height: 56px;
    padding: 3px 7px;
  }

  .store-btns {
    gap: 20px;
  }

  .store-badge-img {
    height: 98px;
  }
}

@media (max-width: 520px) {
  .nav-logo-img {
    width: 126px;
    height: 52px;
    padding: 3px 7px;
  }

  .store-btns {
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }

  .store-badge-img {
    height: 78px;
  }

  .ft-logo-img {
    width: 190px;
    height: 84px;
  }
}

