/* ============================================================
   RDN MOBILE — HOJA DE ESTILOS MAESTRA (V5.3 - FINAL STABLE)
   ============================================================
   
   INDICE:
   1.  Reset, Variables y Scroll Global
   2.  Utilidades (Botones, Texto, Visibilidad)
   3.  Modales Globales (Trust Modal + Bottom Sheet)
   4.  SECCIÓN A: Hero (#qnrhoy)
   5.  SECCIÓN B: Trust / Manos (#manos)
   6.  SECCIÓN C: Cómo Funciona (#como-funciona)
   7.  SECCIÓN D: Envíos (#envio) + Widget Chat
   8.  SECCIÓN F: Proceso (#sec-proceso)
   9.  SECCIÓN G: Por qué Reparar (#rdn-why)
   10. SECCIÓN H: Empresas (#empresas)
   11. SECCIÓN I: Garantía & FAQ
   12. SECCIÓN J: CTA Final
   13. Casos de Éxito (Stack)
   14. SISTEMA DE LAYOUT & HEADINGS (Base)
   15. DESKTOP OVERRIDES (Ajuste de márgenes corregido)
   ============================================================ */


/* ============================================================
   1. RESET, VARIABLES Y SCROLL GLOBAL (CORREGIDO FULL WIDTH)
   ============================================================ */

/* Patch de Scope para móviles */
@media (max-width: 991px){
  :is(#rdn-mobile-home, #rdn-mobile),
  :is(#rdn-mobile-home, #rdn-mobile) *{ box-sizing: border-box; }
  
  /* CAMBIO 1: Liberamos el contenedor para que toque los bordes */
  :is(#rdn-mobile-home, #rdn-mobile){ 
    max-width: 100% !important; 
    width: 100% !important;
    margin: 0 !important; 
    padding: 0 !important; /* Sacamos el padding de acá */
    overflow-x: hidden;
  }

  /* CAMBIO 2: Las secciones internas manejan el aire lateral */
  #rdn-mobile > main > section {
    width: 100%;
    padding-left: 20px;  /* Aire a la izquierda */
    padding-right: 20px; /* Aire a la derecha */
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* CAMBIO 3: El contenido se centra y limita a 480px */
  #rdn-mobile > main > section > * {
    max-width: 480px; 
    margin-left: auto;
    margin-right: auto;
  }
}

/* Variables Globales */
:root {
  /* Colores de Marca */
  --brand: #03A9F4;
  --violet: #9C27B0;
  --ink: #1e293b;
  --muted: #64748b;
  --bg: #f2f7fc;
  --orange: #FF9800;
  --green: #4CAF50;
  --red: #ED5B55;
  --opiniones: #F2C94C;
  --why-green: #2E7D32;

  /* WhatsApp & CTA */
  --wa: #25D366;
  --wa-bg: #e5ddd5;
  --wa-green: #dcf8c6;
  --wa-send-btn: #00a884;
  --rdn-red: #ED5B55; 
  --rdn-red-dark: #d32f2f; 
  --rdn-wa: #25D366;
  --rdn-wa-dark: #1da851; 

  /* UI System */
  --radius: 18px;
  --b4: 4px;
  --shadow: 0 12px 30px rgba(0,0,0,.12);
  --shadow-sm: 0 10px 26px rgba(0,0,0,.10);
  
  /* Headings System Colors */
  --rdn-h-blue: #0277BD; 
  --rdn-h-text: #0A0A0A; 
  --rdn-h-muted: #555555;
  --rdn-bg-a: #FFFFFF; 
  --rdn-bg-b: #F6F8FC; 
  --rdn-bg-c: #FFF9F1;
}

/* Configuración de Scroll */
html {
  scroll-behavior: smooth !important;
  scroll-padding-top: 10px; 
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
}

#rdn-mobile, #rdn-mobile *{ box-sizing:border-box; }
body{ margin:0; background:var(--bg); font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial; color:var(--ink); }

/* CAMBIO 4: Regla base liberada (antes tenía max-width:480px fijo) */
#rdn-mobile{ width: 100%; margin: 0 auto; padding: 0; }


/* ============================================================
   2. UTILIDADES (Botones, Texto, Visibilidad)
   ============================================================ */
.section-title{ font-size:22px; margin:28px 0 8px; letter-spacing:-.01em }

.hint, .helper, .cf-hint, .why-help, .preamble.hint, .frame-sub{
  text-align:center; font-size:13.5px; line-height:1.5; margin:6px 0; color:#000; opacity:.92;
}
.sub, .cf-sub{
  text-align:center; font-size:15px; font-weight:700; letter-spacing:-.01em; margin:8px 0 6px; color:#0f172a;
}

/* Botón Píldora Genérico */
.btn-pill{ 
  display:inline-flex; align-items:center; gap:10px; padding:9px 14px; 
  border:2px solid var(--brand); border-radius:999px; 
  background:#fff; color:var(--brand); 
  font-weight:800; font-size:14px; text-decoration:none; 
  transition:background .15s ease, color .15s ease;
  cursor: pointer;
}
.btn-pill svg{ width:16px; height:16px }

/* Clases Shadow reutilizables */
.cta-shadow {
  box-shadow: 0 6px 16px rgba(0,0,0,.12), 0 0 0 2px rgba(229,57,53,.10), 0 0 18px 5px rgba(229,57,53,.32) !important;
  background-color: var(--rdn-red) !important; border-color: var(--rdn-red) !important; color: #fff !important; font-weight: 600 !important;
}
.cta-shadow:hover { background-color: var(--rdn-red-dark) !important; border-color: var(--rdn-red-dark) !important; }

.cta-shadow-wa {
  box-shadow: 0 6px 16px rgba(0,0,0,.10), 0 0 0 2px rgba(37,211,102,.10), 0 0 18px 5px rgba(37,211,102,.30) !important;
  background-color: var(--rdn-wa) !important; border-color: var(--rdn-wa) !important; color: #fff !important; font-weight: 600 !important;
}
.cta-shadow-wa:hover { background-color: var(--rdn-wa-dark) !important; border-color: var(--rdn-wa-dark) !important; }

/* Visibilidad Mobile First */
.only-mobile { display: block; }
.only-desktop { display: none !important; }
.card-content-dt { display: none; }
.bubbles-desktop, .card-face-back { display: none; }

@media (min-width: 992px) {
  .only-mobile { display: none !important; }
  .only-desktop { display: block !important; }
}


/* ============================================================
   3. MODALES GLOBALES (Trust Modal + Bottom Sheet)
   ============================================================ */

/* --- A. Trust Modal (Desktop / Centro) --- */
.trust-modal-overlay {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
    display: grid; place-items: center; padding: 14px;
    opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 100;
}
.trust-modal-panel {
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
    padding: 24px 20px 20px; width: 100%; max-width: 420px;
    position: relative; transform: scale(0.95) translateY(10px); transition: transform 0.25s ease;
}
.trust-modal-overlay.show { opacity: 1; visibility: visible; }
.trust-modal-overlay.show .trust-modal-panel { transform: scale(1) translateY(0); }
.trust-modal-close {
    position: absolute; top: 8px; right: 8px; width: 36px; height: 36px;
    display: grid; place-items: center; background: #f1f5f9; border: 0;
    border-radius: 999px; cursor: pointer; color: var(--muted);
}
.trust-modal-close svg { width: 20px; height: 20px; stroke-width: 2.5; }
.trust-modal-content h3 { font-size: 20px; margin: 0 0 10px; padding-right: 30px; color: var(--ink); }
.trust-modal-content p { font-size: 15px; color: var(--muted); line-height: 1.5; margin: 0; }
.trust-modal-link-wrap { text-align: right; margin-top: 16px; }
.trust-modal-link {
    font-size: 13.5px; font-weight: 700; color: var(--brand); text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px; opacity: 0.8; transition: opacity 0.15s ease;
}
.trust-modal-link:hover { opacity: 1; }
.trust-modal-link svg { width: 14px; height: 14px; stroke-width: 2.5; transition: transform 0.15s ease; }
.trust-modal-link:hover svg { transform: translateX(3px); }

/* Contenidos Ricos (Maps/Guía) */
.modal-rich-body { text-align: left; color: var(--ink); }
.maps-split { display: flex; flex-direction: column; gap: 20px; }
.maps-info ul { margin: 0; padding: 0; list-style: none; }
.maps-info li { margin-bottom: 12px; font-size: 14px; line-height: 1.5; display: flex; gap: 10px; }
.maps-info strong { color: var(--ink); font-weight: 700; display: block; }
.maps-info span { color: var(--muted); }
.maps-frame { width: 100%; height: 200px; border-radius: 12px; overflow: hidden; background: #eee; border: 1px solid rgba(0,0,0,.1); }
.maps-frame iframe { width: 100%; height: 100%; border: 0; }
.guide-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.guide-step { display: flex; gap: 12px; align-items: flex-start; background: #f8fafc; padding: 12px; border-radius: 12px; border: 1px solid rgba(0,0,0,.05); }
.g-icon { font-size: 20px; line-height: 1; }
.g-text h4 { margin: 0 0 4px; font-size: 14px; font-weight: 700; }
.g-text p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.4; }
.guide-address { background: #f0fdfa; border: 1px dashed var(--brand); padding: 12px; border-radius: 8px; font-size: 13px; color: var(--ink); margin-bottom: 20px; }

/* --- B. Bottom Sheet (Móvil) --- */
.action-sheet-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 99997;   
}
.action-sheet-panel {
  position: fixed; left: 0; right: 0; bottom: 64px; background: #fff;
  border-top-left-radius: var(--radius); border-top-right-radius: var(--radius);
  box-shadow: 0 -4px 30px rgba(0,0,0,.2); padding: 20px 20px 24px; 
  transform: translateY(100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: var(--b4, 4px) solid var(--card-color, var(--brand)); z-index: 99998;
}
.action-sheet-overlay.show { opacity: 1; visibility: visible; }
.action-sheet-overlay.show .action-sheet-panel { transform: translateY(0); }
.action-sheet-close {
    position: absolute; top: 8px; right: 8px; width: 36px; height: 36px;
    display: grid; place-items: center; background: #f1f5f9; border: 0;
    border-radius: 999px; cursor: pointer; color: var(--muted);
}
.action-sheet-close svg { width: 20px; height: 20px; stroke-width: 2.5; }
.action-sheet-content h3 { font-size: 22px; margin: 0 0 10px; padding-right: 30px; color: var(--ink); }
.action-sheet-content p { font-size: 15px; color: var(--muted); line-height: 1.55; margin: 0 0 24px; }
.action-sheet-cta-wrap { text-align: center; }
.action-sheet-cta-wrap .btn-pill { width: 100%; max-width: 320px; padding-top: 12px; padding-bottom: 12px; font-size: 16px; display: inline-flex; justify-content: center; }
.action-sheet-info-link-wrap { text-align: center; margin-top: 16px; padding-bottom: 4px; }
.action-sheet-info-link {
  color: var(--muted, #64748b); font-size: 14px; font-weight: 600;
  text-decoration: underline; text-decoration-color: rgba(100, 116, 139, 0.4);
  text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color 0.2s ease;
}
.action-sheet-info-link:active { color: var(--brand, #03A9F4); text-decoration-color: var(--brand, #03A9F4); }
#action-sheet-content .cta-shadow { box-shadow: none !important; }


/* ============================================================
   4. SECCIÓN A: HERO (#qnrhoy)
   ============================================================ */
.grid{
  display:grid; grid-template-columns:repeat(2, minmax(0,1fr));
  grid-auto-rows:auto; gap:14px;
}
.card-placeholder {
  display: block; background: transparent; border: none; box-shadow: none;
  padding: 0; min-height: auto;
}
.card-placeholder:active { transform: none; }
.card{
  display: grid; place-items: center;
  background: #fff; border: var(--b4) solid rgba(0,0,0,.08);
  border-radius: var(--radius); box-shadow: 0 10px 28px rgba(0,0,0,.12);
  min-height: 128px; padding: 8px;
  user-select: none; touch-action: manipulation; cursor: pointer; width: 100%;
  transition: border-color .18s ease, box-shadow .18s ease, transform .06s ease;
}
.card:active{ transform:scale(.98) }
.card.active{ 
  border-color: var(--card-color, var(--brand)); 
  box-shadow: 0 12px 34px var(--card-shadow, rgba(3,169,244,.18));
}
.card-img{
  width:140px; height:140px; object-fit:contain; display:block;
  filter: drop-shadow(0 7px 12px rgba(0,0,0,.12));
}
.card-placeholder:has(.card.active) {
  border-color: var(--card-color, var(--brand));
  box-shadow: 0 12px 34px var(--card-shadow, rgba(3,169,244,.18));
  border-radius: var(--radius);
}

/* Panel Inferior (Cortina Móvil) */
.panel-wrapper {
  max-height: 0; margin-top: 0; transition: max-height 0.4s ease-out, margin-top 0.4s ease-out; overflow: hidden; 
}
.panel-wrapper.show { max-height: 300px; margin-top: 16px; }
#panel {
  background: #fff; border: var(--b4) solid var(--card-color, rgba(0,0,0,.08));
  border-radius: var(--radius); box-shadow: 0 10px 28px var(--card-shadow, rgba(0,0,0,.12));
  padding: 16px 14px 16px; transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  transform: translateX(0);
}
#panel.slide-out { transform: translateX(-105%); transition-duration: 0.4s; }
#panel.slide-in { transform: translateX(105%); transition: none; }
.panel-head{ display:grid; grid-template-columns:64px 1fr; gap:12px; align-items:center; margin-top:10px; }
.panel-img-wrap{
  width:64px; height:64px; border-radius:14px; background:#f6f8fb;
  display:grid; place-items:center; border:1px solid rgba(0,0,0,.06);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.04);
}
.panel-img{ width:52px; height:52px; object-fit:contain; display:block }
.panel .ttl{ font-weight:800; text-transform:uppercase; letter-spacing:.02em; font-size:14px; margin:0 0 6px }
.panel .desc{ color:#64748b; font-size:13.5px; line-height:1.45 }
.panel .cta{ margin-top:18px }
.panel .cta a{
  display:inline-flex; align-items:center; gap:.55em;
  font-weight:800; font-size:14px; color:inherit; text-decoration:none;
  border:2px solid currentColor; border-radius:999px;
  padding:.45em .85em; background:#fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.10);
  transition: transform .06s ease, box-shadow .18s ease; cursor: pointer; 
}
.panel .cta a svg{ width:16px; height:16px; transition: transform .18s ease }
.panel .cta a:active{ transform: translateY(1px); box-shadow: 0 2px 8px rgba(0,0,0,.12) }
.panel .cta a:active svg{ transform: translateX(3px) }
/* Card helper "¿No ves tu falla acá?" solo mobile */
.card-placeholder--helper {
  grid-column: 1 / -1;        /* ocupa las 2 columnas */
}

.card--helper {
  display: block;
  min-height: auto;
  padding: 4px 4px 4px;
}

/* Texto centrado y un poco más cómodo */
.card--helper .card-title-mb {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.45;
}

/* Desktop Overrides (#qnrhoy) */
@media (min-width: 992px) {
  #qnrhoy #panel-wrapper { display: none !important; }
  #qnrhoy .grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: auto; gap: 24px; }
  
  #qnrhoy .card-placeholder {
    display: block; background: transparent; border: none;
    box-shadow: none; padding: 0; height: 380px;
    position: relative; transition: none;
  }
  #qnrhoy .card-placeholder:active { transform: none; }

  #qnrhoy .card {
    position: absolute; inset: 0; height: 100%;
    display: flex; flex-direction: column; align-items: center;
    justify-content: flex-start; padding: 20px 14px;
    text-align: center; cursor: pointer; z-index: 1;
    overflow: hidden; 
    background: #fff; border: var(--b4) solid rgba(0,0,0,.08);
    border-radius: var(--radius); box-shadow: 0 10px 28px rgba(0,0,0,.12);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
                border-color 0.3s ease,
                height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  #qnrhoy .card:active { transform: scale(.98); }
  #qnrhoy .card-img { width: 160px; height: 160px; margin-bottom: 10px; transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; }
  
  #qnrhoy .card .card-content-dt { display: flex; flex-direction: column; align-items: center; flex-grow: 1; width: 100%; overflow: hidden;  }
  #qnrhoy .card .card-title-dt { font-size: 17px; font-weight: 800; text-transform: uppercase; color: var(--ink); margin: 0 0 12px 0; }
  #qnrhoy .card .card-desc-dt { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0 0 12px 0; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
  #qnrhoy .card .cta-reveal { display: inline-flex; align-items: center; font-weight: 700; font-size: 13px; padding: 6px 14px; border-radius: 999px; margin-top: 8px; color: var(--card-color, var(--brand)); border: 2px solid var(--card-color, var(--brand)); background: #fff; opacity: 0.8; transition: all 0.3s ease; }
  
  #qnrhoy .card:hover .card-img { transform: scale(1.2) !important; }
  #qnrhoy .card:hover { border-color: var(--card-color); transform: scale(1.1); box-shadow: var(--shadow); z-index: 10; height: auto; overflow: visible; }
  #qnrhoy .card:hover .card-desc-dt { -webkit-line-clamp: 10; }
  #qnrhoy .card:hover .cta-reveal { opacity: 1; background: var(--card-color, var(--brand)); color: #fff; }
}

/* Brand Ticker */
.brand-ticker {
  position: relative; width: 100%; max-width: 100%; margin: 10px 10px 10px 10px; padding: 0; overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  pointer-events: none; user-select: none;
}
.brand-track { display: flex; width: max-content; animation: ticker-scroll 80s linear infinite; }
.brand-content { display: flex; align-items: center; white-space: nowrap; font-family: system-ui, -apple-system, sans-serif; font-size: 15px; line-height: 1.7; color: #64748b; opacity: 0.85; }
.sep { display: inline-block; margin: 0 1.25rem; opacity: 0.5; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (max-width: 480px) { .brand-content { font-size: 13.5px; } .sep { margin: 0 0.75rem; } }
#qnrhoy .rdn-section-heading { margin-bottom: 10px !important; }
#qnrhoy .hint { margin-top: 0 !important; margin-bottom: 12px !important; }


/* ============================================================
   5. SECCIÓN B: TRUST / MANOS (#manos)
   ============================================================ */
.carousel{ position:relative; height:80px; margin:2px 0 6px; touch-action:pan-x; user-select:none; overflow:hidden; }
.pill{
  position:absolute; top:0; left:50%; width:74%; max-width:380px; height:80px; transform:translateX(-50%);
  background:#fff; border:var(--b4) solid rgba(0,0,0,.08); border-radius:var(--radius);
  display:grid; grid-template-columns:26px 1fr; gap:10px; align-items:center; padding:8px 12px;
  will-change:transform, opacity, border-color; transition: transform .20s cubic-bezier(.2,.7,.2,1), opacity .20s ease, border-color .18s ease;
}
.pill .sub { text-align: center !important; }
.ico{ width:26px; height:26px; border-radius:8px; background:#eef6ff; display:grid; place-items:center }
.ttl{ font-weight:900; font-size:15.5px; text-transform:uppercase; letter-spacing:.01em }
.sub{ color:#6b7280; font-size:12.75px; margin-top:1px; line-height:1.34 }
.pill.current{ z-index:3; transform:translateX(-50%) scale(1) translateY(0); border-color:var(--brand) }
.pill.left { z-index:2; transform:translateX(calc(-50% - 50%)) scale(.8) translateY(3px) }
.pill.right{ z-index:2; transform:translateX(calc(-50% + 50%)) scale(.8) translateY(3px) }
.pill.hidden-left{  z-index:1; opacity:0; transform:translateX(calc(-50% - 120%)) scale(.78) translateY(8px) }
.pill.hidden-right{ z-index:1; opacity:0; transform:translateX(calc(-50% + 120%)) scale(.78) translateY(8px) }
.dots.only-mobile{ display:flex; gap:8px; justify-content:center; margin-top:2px }
.dot{ width:6px; height:6px; border-radius:999px; background:#c9d2dc; transition:transform .2s ease, background .2s ease }
.dot.active{ background:#111; transform:scale(1.25) }

/* Trust Grid Móvil */
.trust{ margin-top:10px }
.trust-grid{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.trust .card.flip-card {
  position: relative; display: grid; place-items: center; padding: 0;
  background: transparent; border: none !important; box-shadow: none !important;
  min-height: auto; width: 100%; height: 100%; transition: none; 
  display: block; 
}
.flip-card-placeholder {
  display: grid; place-items: center; background: #fff;
  border: var(--b4) solid rgba(0,0,0,.08); border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0,0,0,.12); min-height: 128px;
  padding: 8px; cursor: pointer; text-align: center;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.flip-card-placeholder:has(.card.active) {
  border-color: var(--card-color, var(--brand));
  box-shadow: 0 10px 26px var(--card-shadow, rgba(3,169,244,.18));
}
.card-face-front {
  position: relative; height: 100%; display: grid; place-items: center; text-align: center;
}
.icon-lg{ 
  width:56px; height:56px; border-radius:14px; display:grid; place-items:center; margin-bottom:6px; color:var(--brand);
}
.icon-lg svg{ width:36px; height:36px; display:block; fill:none; stroke:currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.trust .card h3, .card-face-front h3 { font-size: 16px; margin: 0 0 6px; }
.trust .card p, .card-face-front p { font-size: 13.5px; color: var(--muted); line-height: 1.45; margin: 0 0 10px; padding: 0 4px; }
.card-face-front .btn-pill.only-mobile { display: inline-flex; }
.trust .card.active {
  --card-color: var(--brand); --card-shadow: rgba(3, 169, 244, .18); 
  border-color: var(--card-color); box-shadow: 0 10px 26px var(--card-shadow);
}

/* Desktop Overrides (#manos) */
@media (min-width: 992px) {
  #manos .only-mobile { display: none !important; }
  #manos #pills-desktop {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
    width: 100%; max-width: 1200px; box-sizing: border-box;
    margin: 20px auto 32px auto; justify-content: space-between;
  }
  #manos #pills-desktop .bubble { width: 100%; }
  .bubble {
    background: #fff; border: 2px solid var(--wa); border-radius: 16px; padding: 16px;
    position: relative; box-shadow: var(--shadow-sm); opacity: 0;
    animation: pop-in 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .bubble::after {
    content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%) rotate(45deg);
    width: 20px; height: 20px; background: #fff; border-bottom: 2px solid var(--wa);
    border-right: 2px solid var(--wa); border-radius: 4px; transition: border-color 0.2s ease;
  }
  .bubble-content { display: flex; align-items: center; gap: 12px; }
  .bubble-content p { margin: 0; color: var(--ink); font-size: 14px; font-weight: 500; line-height: 1.5; flex-grow: 1; text-align: center; }
  .bubble-check { margin-left: auto; font-size: 16px; color: #cbd5e1; font-weight: bold; transition: color 0.2s ease; }
  .bubble:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--brand); }
  .bubble:hover::after { border-color: var(--brand); }
  .bubble:hover .bubble-check { color: var(--brand); }
  /* Animación Dominó */
  .bubble:nth-child(1) { animation-delay: 0.1s; } .bubble:nth-child(2) { animation-delay: 0.15s; }
  .bubble:nth-child(3) { animation-delay: 0.2s; } .bubble:nth-child(4) { animation-delay: 0.25s; }
  .bubble:nth-child(5) { animation-delay: 0.3s; }

  /* Flip Cards Desktop */
  #manos .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; perspective: 1000px; }
  .flip-card-placeholder {
    display: block; background: transparent; border: none; box-shadow: none;
    padding: 0; min-height: 260px; position: relative;
    opacity: 0; animation: pop-in 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }
  #manos .trust-grid .flip-card-placeholder:nth-child(1) { animation-delay: 0.3s; }
  #manos .trust-grid .flip-card-placeholder:nth-child(2) { animation-delay: 0.35s; }
  #manos .trust-grid .flip-card-placeholder:nth-child(3) { animation-delay: 0.4s; }
  #manos .trust-grid .flip-card-placeholder:nth-child(4) { animation-delay: 0.45s; }

  #manos .card.flip-card {
    position: absolute; inset: 0; width: 100%; height: 100%; cursor: pointer; transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent !important; border: none !important; box-shadow: none !important; padding: 0;
  }
  .flip-card-placeholder:hover .flip-card { transform: rotateY(180deg); }

  .card-face {
    position: absolute; width: 100%; height: 100%; display: flex; flex-direction: column;
    justify-content: center; align-items: center; padding: 20px; text-align: center;
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
    -webkit-backface-visibility: hidden; backface-visibility: hidden;
  }
  .card-face-front { background: #fff; border: var(--b4) solid rgba(0,0,0,.08); color: var(--ink); z-index: 2; }
  .card-face-front h3 { font-size: 17px; margin: 0 0 6px; }
  .card-face-front p { font-size: 14px; color: var(--muted); line-height: 1.45; margin: 0 0 10px; }
  .card-face-front .btn-pill { display: none; }
  .card-face-back {
    display: flex !important; background: var(--brand); border: var(--b4) solid var(--brand);
    color: #FFFFFF; transform: rotateY(180deg) translateZ(1px); z-index: 1;
  }
  .card-face-back h3 { font-size: 17px; margin: 0 0 10px; color: #fff !important; font-weight: 700; }
  .card-face-back p {
    font-size: 14px; line-height: 1.5; margin: 0 0 16px 0; color: #fff !important; font-weight: 600;
    overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  }
  .card-face-back .btn-pill {
    background: transparent; border: none; padding: 4px 8px; margin-top: 0;
    color: #fff; font-weight: 700; font-size: 14px; text-decoration: underline;
    text-decoration-thickness: 2px; text-underline-offset: 4px; transition: opacity 0.2s ease;
  }
  .card-face-back .btn-pill:hover { background: transparent; opacity: 0.8; }
  
  @keyframes pop-in { from { opacity: 0; } to { opacity: 1; } }
}


/* ============================================================
   6. SECCIÓN C: CÓMO FUNCIONA (#como-funciona)
   ============================================================ */
.cf-wrap{ margin-top:28px }
.cf-title{ font-size:22px; margin:4px 0 6px; letter-spacing:-.01em }
.cf-sub{ margin:0 0 12px; color:#4b5f72; font-size:13.8px; font-weight:600 }
.cf-hint{ margin:6px 0 14px; text-align:center; color:#000; font-size:12.25px }
.cf-rail{
  display:flex; gap:14px; overflow-x:auto; scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch; padding:16px 2px 10px; padding-left:18px; scroll-padding-left:18px;
}
.cf-rail::-webkit-scrollbar{ display:none }
.cf-rail > .cf-stepcard:first-child{ margin-left:4px }
.cf-stepcard{
  position:relative; flex:0 0 86%; max-width:86%;
  background:#fff; border:var(--b4) solid rgba(0,0,0,.08); border-radius:var(--radius);
  scroll-snap-align:center; box-shadow:none;
  transition:transform .22s ease, border-color .18s ease;
}
.cf-stepcard.cf-active{ border-color:var(--orange); transform:scale(1.02); box-shadow: 0 12px 30px rgba(255,152,0,.20); }
.cf-badge{
  position:absolute; top:-12px; right:-12px; width:40px; height:40px;
  display:grid; place-items:center; background:#f57c00; color:#fff; font-weight:900;
  border-radius:999px; box-shadow:0 6px 16px rgba(0,0,0,.18); letter-spacing:.01em;
  border:3px solid #fff; z-index:5;
}
.cf-step-media{ position:relative; height:56vw; max-height:280px; border-radius:12px; margin:10px; overflow:hidden; background:linear-gradient(180deg,#fff5e6,#ffefd6); display:grid; place-items:center; }
.cf-img{ width:auto; height:auto; max-width:354px; max-height:100%; object-fit:contain; display:block; border-radius:12px; }
.cf-step-body{ padding:4px 14px 14px }
.cf-step-body h3{ margin:0 0 4px; font-size:16px; letter-spacing:.005em }
.cf-step-body p{ margin:0; color:#6b7280; font-size:13.25px; line-height:1.45 }
.cf-hint-arrow{
  position:absolute; right:8px; top:50%; transform:translateY(-50%);
  display:flex; align-items:center; gap:6px; padding:6px 10px;
  background:#ffffffd0; border:2px solid var(--orange); color:var(--orange); border-radius:999px;
  font-size:12px; font-weight:800; box-shadow:0 0 0 0 rgba(255,152,0,.45); animation:cf-pulse 1.4s ease-in-out infinite;
}
.cf-hint-arrow svg{ width:14px; height:14px }
@keyframes cf-pulse{ 0%{ box-shadow:0 0 0 0 rgba(255,152,0,.45) } 70%{ box-shadow:0 0 0 10px rgba(255,152,0,0) } 100%{ box-shadow:0 0 0 0 rgba(255,152,0,0) } }
.cf-stepcard:not(.cf-active) .cf-hint-arrow{ display:none }
.cf-dots{ display:flex; gap:8px; justify-content:center; margin-top:8px }
.dot.cf-on{ background:#111; transform:scale(1.25) }
.steps-desktop { display: none; }

/* Desktop Overrides (#como-funciona) */
@media (min-width: 992px) {
  :root {
    --orange: #FF9800; --shadow-orange: 0 0 24px rgba(255,152,0,.55);
    --blue: #03A9F4; --shadow-blue: 0 0 24px rgba(3, 169, 244, .55);
  }
  #como-funciona .cf-wrap.only-mobile { display: none !important; }
  
  .steps-desktop.only-desktop { display: block; margin-top: 28px; }
  .steps{
    display: flex; align-items: flex-start; justify-content: center; 
    gap: 40px; flex-wrap: wrap; padding: 20px 0; margin-top: 20px; width: 100%;
  }
  .step-item{ display:flex; flex-direction:column; align-items:center; gap: 24px; animation:fadeInUp .6s ease both; }
  .circle-wrap{ position:relative; display:grid; place-items:center; border-radius:50%; }
  .m { width:190px; height:190px; margin-top: 10px;}
  .xl { width:210px; height:210px; margin-bottom: 20px }
  .circle{
    position:relative; width:100%; height:100%; border-radius:50%; overflow:hidden;
    box-shadow:0 6px 16px rgba(0,0,0,.15); transition:transform .25s ease, box-shadow .25s ease;
  }
  .circle img{ width:100%; height:100%; object-fit:cover; display:block; }
  .ring{
    position:absolute; inset: -3px; border-radius:50%; border:3px solid var(--blue); box-shadow:var(--shadow-blue);
    transition:border-color .25s ease, box-shadow .25s ease, inset .25s ease; z-index: 1; 
  }
  .badge{
    position: absolute; top: -14px; right: -14px; width: 34px; height: 34px; border-radius: 50%;
    background: var(--orange); color: #fff; font-weight: 700; font-size: 18px;
    display: grid; place-items: center; padding: 0; border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(255,152,0,.4); opacity: 0; transform: scale(.7);
    transition: opacity .25s ease, transform .25s cubic-bezier(.17,.67,.44,1.36); z-index: 2;
  }
  .step-item:hover .ring{ inset: -14px; border-color:var(--orange); box-shadow:var(--shadow-orange); }
  .step-item:hover .circle{ transform:scale(1.04); box-shadow:0 12px 28px rgba(255,152,0,.25); }
  .step-item:hover .badge{ opacity:1; transform:scale(1); }
  
  .text-box{
    width: 255px; background: #fff; border: 1px solid #e9e9e9; box-shadow: 0 5px 20px rgba(0,0,0,.07);
    border-radius: 16px; padding: 16px; text-align: center;
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease, transform .25s ease;
  }
  .text-box h3{ font-size: 18px; font-weight: 700; color: #333; margin: 0 0 8px 0; transition: color .25s ease; }
  .text-box p{ font-size: 15px; color: #666; line-height: 1.5; margin: 0; transition: color .25s ease; }

  .step-item:hover .text-box{
    background: #2d3436; border-color: #444; box-shadow: 0 4px 15px rgba(0,0,0,.2); transform: translateY(8px);
  }
  .step-item:hover .text-box h3, .step-item:hover .text-box p{ color: #fff; }
  .step-item:nth-child(4) .text-box { position: relative; top: -10px; }

  @keyframes fadeInUp{from{opacity:0; transform:translateY(115px);}to{opacity:1; transform:translateY(0);}}
  .step-item:nth-child(2){animation-delay:.1s;} .step-item:nth-child(3){animation-delay:.2s;} .step-item:nth-child(4){animation-delay:.3s;}
  
  .step-item:nth-child(1):hover + .step-item:nth-child(2) .ring,
  .step-item:nth-child(2):hover + .step-item:nth-child(3) .ring,
  .step-item:nth-child(3):hover + .step-item:nth-child(4) .ring { box-shadow: var(--shadow-orange); }
}


/* ============================================================
   7. SECCIÓN D: ENVÍO (#envio) + Widget Chat
   ============================================================ */
.envio-wrap{ max-width:480px; margin:20px auto 0; padding:0 0 6px }
.preamble{ margin:0 0 12px; color:#000; font-size:13.5px; }
.envio-options{
  display:grid; grid-template-columns:1fr 1fr;
  grid-template-areas: "main main" "left right"; gap:14px;
}
.envio-slot-main{ grid-area: main; } .envio-slot-left{ grid-area: left; } .envio-slot-right{ grid-area: right; }
.envio-option{
  position:relative; background:#fff; border:var(--b4) solid rgba(0,0,0,.08);
  border-radius:var(--radius); box-shadow:var(--shadow);
  padding:14px; min-height:120px; cursor:pointer;
  transition: transform .08s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.envio-option:active{ transform: scale(.99) }
.envio-option[data-type="maps"]{ border-color: var(--red); box-shadow: 0 8px 22px rgba(237,91,85,.10), var(--shadow-sm); }
.envio-option[data-type="interior"]{ border-color: var(--brand); box-shadow: 0 8px 22px rgba(3,169,244,.10), var(--shadow-sm); }
.envio-option[data-type="caba"]{ border-color: var(--wa); box-shadow: 0 8px 22px rgba(37,211,102,.12), var(--shadow-sm); }

.envio-option .icon{
  width:44px; height:44px; border-radius:12px; margin-bottom:8px;
  display:grid; place-items:center; background:#f6f8fb;
  border:1px solid rgba(0,0,0,.06); box-shadow: inset 0 1px 2px rgba(0,0,0,.04);
}
.envio-option h3{ margin:0 0 6px; font-size:16px; font-weight:900 }
.envio-option p{ margin:0; color:var(--muted); font-size:13.5px; line-height:1.45 }
.envio-option .frame{ display:none; margin-top:10px; border:2px dashed rgba(0,0,0,.08); border-radius:14px; padding:12px; background:#ffffffd9; backdrop-filter: blur(6px); }
.envio-option.expanded .frame{ display:block }
.envio-option[data-type="maps"] .frame{ border-color: rgba(237,91,85,.35) }
.envio-option[data-type="interior"] .frame{ border-color: rgba(3,169,244,.35) }
.envio-option[data-type="caba"] .frame{ border-color: rgba(37,211,102,.35) }
.envio-option .frame-sub { margin-bottom: 10px; }
.envio-btn{ display:inline-flex; align-items:center; gap:.55em; font-weight:900; font-size:14px; text-decoration:none; border-radius:999px; padding:.58em 1.05em; background:#fff; box-shadow: var(--shadow-sm); }
.envio-btn .arrow{ transition: transform .15s ease }
.envio-btn:hover .arrow{ transform: translateX(3px) }
.envio-btn--red{ border:2px solid var(--red); color:var(--red) }
.envio-btn--blue{ border:2px solid var(--brand); color:var(--brand) }
.envio-btn--wa{ border:2px solid var(--wa); color:var(--wa) }
@keyframes envio-promote { from { transform: scale(.995); opacity:.98; } to { transform: scale(1); opacity:1; } }
.envio-option.promoted{ animation: envio-promote .18s ease-out }
.envio-option.glow[data-type="maps"], .envio-option.expanded[data-type="maps"]{ box-shadow: 0 12px 30px rgba(237,91,85,.18), var(--shadow-sm); }
.envio-option.glow[data-type="interior"], .envio-option.expanded[data-type="interior"]{ box-shadow: 0 12px 30px rgba(3,169,244,.18), var(--shadow-sm); }
.envio-option.glow[data-type="caba"], .envio-option.expanded[data-type="caba"]{ box-shadow: 0 12px 30px rgba(37,211,102,.14), var(--shadow-sm); }
.wa-preview{ background:#eafaf0;border:1px solid rgba(37,211,102,.35);border-radius:16px;padding:10px 12px;margin:6px 0 10px;font-size:14px;color:#114b2d }

/* Clases CTA Shadow reutilizables */
.cta-shadow {
  box-shadow: 0 6px 16px rgba(0,0,0,.12), 0 0 0 2px rgba(229,57,53,.10), 0 0 18px 5px rgba(229,57,53,.32) !important;
  background-color: var(--rdn-red) !important; border-color: var(--rdn-red) !important; color: #fff !important; font-weight: 600 !important;
}
.cta-shadow:hover { background-color: var(--rdn-red-dark) !important; border-color: var(--rdn-red-dark) !important; }
.cta-shadow-wa {
  box-shadow: 0 6px 16px rgba(0,0,0,.10), 0 0 0 2px rgba(37,211,102,.10), 0 0 18px 5px rgba(37,211,102,.30) !important;
  background-color: var(--rdn-wa) !important; border-color: var(--rdn-wa) !important; color: #fff !important; font-weight: 600 !important;
}
.cta-shadow-wa:hover { background-color: var(--rdn-wa-dark) !important; border-color: var(--rdn-wa-dark) !important; }

/* ESTILOS CHAT */
  .chat-window {
    box-sizing: border-box; width: 100%;
    background-color: var(--wa-bg);
    background-image: url('https://w0.peakpx.com/wallpaper/744/548/HD-wallpaper-whatsapp-ma-doodle-pattern.jpg');
    background-repeat: no-repeat; background-size: cover; background-position: center;
    border-radius: var(--radius); box-shadow: var(--shadow-sm); 
    padding: 20px; display: flex; flex-direction: column; overflow: hidden; 
  }
  .chat-message { opacity: 0; display: flex; box-sizing: border-box; margin-top: 12px; }
  .chat-message:first-child { margin-top: 0; }
  .chat-message.sent { justify-content: flex-end; }
  .bubble {
    box-sizing: border-box; padding: 12px 18px; border-radius: 20px;
    max-width: 80%; line-height: 1.5; font-size: 15px; box-shadow: 0 1px 2px rgba(0,0,0,0.08); 
  }
  .bubble p { margin: 0; }
  .received .bubble { background: #fff; color: #333; border: none; border-bottom-left-radius: 4px; margin-right: auto; }
  .sent .bubble { background: var(--wa-green); color: #111; border: none; border-bottom-right-radius: 4px; }
  .typing .bubble { padding: 14px 18px; display: flex; }
  .typing span {
    display: inline-block; width: 8px; height: 8px; background: #ccc; border-radius: 50%; margin: 0 2px;
    animation: typing-dots 1.2s infinite ease-in-out;
  }
  @keyframes typing-dots {
    0%, 60%, 100% { transform: scale(0.6); opacity: 0.4; } 30% { transform: scale(1); opacity: 1; }
  }
  .chat-input-bar { display: flex; align-items: center; gap: 12px; margin-top: 12px; padding-top: 12px; border-top: none; }
  .fake-input {
    flex: 1; background: #fff; border: none; border-radius: 999px; padding: 12px 18px;
    font-size: 15px; color: #333; box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  }
  .send-button {
    width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%;
    background: var(--wa-send-btn); color: #fff; display: grid; place-items: center; cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  }
  .send-button svg { width: 22px; height: 22px; transform: rotate(0deg) translate(1px, 1px); }
  @keyframes send-press {
    0% { transform: scale(1); } 50% { transform: scale(0.9); } 100% { transform: scale(1); }
  }
  .send-button.pressing { animation: send-press 0.2s ease-out; }
  .chat-follow-up { margin-top: 20px; opacity: 0; transition: opacity 0.5s ease-out; }
  .chat-follow-up.is-visible { opacity: 1; }
  .cta-text { text-align: center; font-size: 14px; color: var(--ink); margin-bottom: 15px; }
  .cta-buttons { display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .cta-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 12px 25px; border-radius: 999px; text-decoration: none; color: #fff; font-weight: 700;
    font-size: 15px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); max-width: 280px; width: 100%; box-sizing: border-box; 
    background-size: 200% auto; transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .cta-btn svg { width: 22px; height: 22px; fill: currentColor; }
  .cta-btn.wa { background: var(--wa-send-btn); }
  .cta-btn.wa:hover { transform: translateY(-4px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
  
  .chat-message.is-visible { animation: slideIn 0.5s ease-out forwards; }
  @keyframes slideIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
  .chat-message.typing.is-visible {
    animation-name: slideInTyping; animation-duration: 0.5s; animation-timing-function: ease-out; animation-fill-mode: forwards; overflow: hidden; max-height: 0; 
  }
  @keyframes slideInTyping { from { opacity: 0; transform: translateY(15px); max-height: 0;} to { opacity: 1; transform: translateY(0); max-height: 60px;} }
  .chat-message.typing.is-hiding {
    animation-name: slideOutTyping; animation-duration: 0.4s; animation-timing-function: ease-in; animation-fill-mode: forwards; overflow: hidden; max-height: 60px; 
  }
  @keyframes slideOutTyping { from { opacity: 1; transform: translateY(0); max-height: 60px; margin-top: 12px;} to { opacity: 0; transform: translateY(10px); max-height: 0; margin-top: 0;} }
  
  /* Guía de Pasos */
  .paso-item {
    background: #fff; border-radius: var(--radius); padding: 16px; display: flex; align-items: center; gap: 15px;
    border: var(--b4) solid rgba(0,0,0,.08); box-shadow: var(--shadow-sm); transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .paso-item.is-active { border-color: var(--brand); box-shadow: 0 12px 30px rgba(3,169,244,.18), var(--shadow-sm); }
  .paso-icono { font-size: 24px; flex-shrink: 0; }
  .paso-texto h3 { margin: 0 0 4px 0; font-size: 16px; color: var(--ink); }
  .paso-texto p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }
  
  /* Dirección */
  .direccion-box {
    background: #fff; border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-sm);
    border: 4px dashed var(--wa-send-btn); text-align: center; margin-top: 15px; transition: box-shadow 0.3s ease;
  }
  .direccion-box.is-active { box-shadow: 0 12px 30px rgba(0, 168, 132, .18), var(--shadow-sm); }
  .direccion-label { display: block; text-align: left; font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 8px; padding-left: 5px; }
  .direccion-box p { margin: 0; font-size: 15px; line-height: 1.5; }
  .direccion-box strong { font-size: 16px; color: var(--ink); }

  /* Confianza y FAQ (Estilos Adicionales) */
  .confianza-lista {
    list-style-type: none; padding-left: 0; margin-top: 10px; background: #fff; border-radius: var(--radius);
    padding: 16px; border: var(--b4) solid var(--orange); box-shadow: 0 12px 30px rgba(255,152,0,.20);
  }
  .confianza-lista li { padding-left: 0; margin-bottom: 12px; font-size: 15px; color: var(--muted); line-height: 1.5; }
  .confianza-lista li:last-child { margin-bottom: 0; }
  .confianza-lista li strong { color: var(--ink); font-weight: 700; display: block; margin-bottom: 4px; }
  
  #faq-envio .faq-accordion { background: #fff; border: var(--b4) solid var(--brand); border-radius: var(--radius); box-shadow: 0 12px 30px rgba(3,169,244,.18); overflow: hidden; }
  #faq-envio .faq-accordion details { margin-bottom: 0; border: none; box-shadow: none; }
  #faq-envio .faq-accordion details + details { border-top: 1px solid rgba(3,169,244,.2); }
  #faq-envio .faq-accordion details[open] { border-color: transparent; }
  #faq-envio .faq-accordion summary { padding: 16px; font-weight: 700; color: var(--ink); cursor: pointer; list-style: none; }
  #faq-envio .faq-accordion summary::-webkit-details-marker { display: none; }
  #faq-envio .faq-accordion details[open] summary { color: var(--brand); border-bottom: 1px solid rgba(3,169,244,.2); }
  #faq-envio .faq-accordion .faq-content { padding: 16px; font-size: 14px; color: var(--muted); line-height: 1.6; }
  #faq-envio .faq-accordion .faq-content p { margin: 0; }

/* CTA WhatsApp en Chat (Mobile) */
@media (max-width: 991px){
  #rdn-mobile #cta-buttons-wrap{ opacity:0; transform:translateY(8px); transition:opacity .28s ease, transform .28s ease; margin-top:16px; margin-bottom:8px; }
  #rdn-mobile #cta-buttons-wrap.is-visible{ opacity:1; transform:translateY(0); }
  #rdn-mobile #cta-buttons-wrap .cta-text{ margin:0 0 10px; font-size:14.5px; color:#1e293b; }
  #rdn-mobile #cta-buttons-wrap .cta-buttons{ display:flex; align-items:center; gap:12px; }
  #rdn-mobile .rdn-cta.rdn-cta--whatsapp{
    position:relative; display:inline-flex; align-items:center; justify-content:center;
    gap:6px; padding:10px 16px 10px 46px; background-color:#25D366; border:1px solid #25D366;
    color:#fff; text-decoration:none; border-radius:999px; font-weight:600; line-height:1; white-space:nowrap;
    transition:background-color .2s ease, border-color .2s ease, transform .06s ease;
  }
  #rdn-mobile .rdn-cta.rdn-cta--whatsapp:hover{ background-color:#1DA851; border-color:#1DA851; }
  #rdn-mobile .rdn-cta.rdn-cta--whatsapp:active{ transform:translateY(1px); }
  #rdn-mobile .rdn-cta.rdn-cta--whatsapp::before{
    content:""; position:absolute; left:16px; top:50%; transform:translateY(-50%); width:22px; height:22px;
    background:url("https://cdnjs.cloudflare.com/ajax/libs/simple-icons/13.16.0/whatsapp.svg") no-repeat center / contain;
    filter:brightness(0) invert(1);
  }
}
@media (min-width: 992px){ #rdn-mobile #cta-buttons-wrap{ display:none; } }

/* Desktop Overrides (#envio) */
@media (min-width: 992px) {
  .envio-wrap { max-width: 1200px !important; width: 100%; margin: 40px auto !important; padding: 0; }
  .envio-options {
    display: grid; grid-template-columns: repeat(3, 1fr); grid-template-areas: none; 
    gap: 24px; margin-top: 32px;
  }
  .envio-option {
    grid-area: auto !important; order: initial !important; transform: none !important; animation: none !important;
    height: 100%; display: flex; flex-direction: column; padding: 24px 20px !important; 
    border-width: 4px !important; border-style: solid; border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05); transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .envio-option .icon {
    width: 50px; height: 50px; font-size: 24px; margin-bottom: 12px;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  }
  .envio-option h3 { font-size: 19px; margin-bottom: 10px; min-height: 48px; display: flex; align-items: center; }
  .envio-option p { font-size: 14px; margin-bottom: 16px; color: var(--muted); line-height: 1.45; flex-grow: 1; }
  
  .envio-option .frame {
    display: block !important; margin-top: auto; 
    background: rgba(255,255,255,0.6); border-width: 2px; border-style: dashed;
    border-radius: 16px; padding: 16px; backdrop-filter: none;
  }
  .envio-option .frame-title, .envio-option .frame-sub { display: none; }
  .envio-option .frame-list { margin-bottom: 16px; padding-left: 16px; font-size: 13.5px; }
  .envio-option .frame-list li { margin-bottom: 4px; }
  .wa-preview { font-size: 13px; padding: 10px; margin-bottom: 16px; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; color: #14532d; }

  /* Botones & QR Fix */
  .envio-btn {
    width: 100%; justify-content: center; padding: 10px 16px; font-size: 14px; white-space: nowrap;
    background: #fff; border-width: 2px; border-style: solid; box-shadow: none;
    transition: background-color 0.2s ease, color 0.2s ease; position: relative; overflow: visible !important; 
  }
  .qr-tooltip {
    position: absolute; bottom: 130%; left: 50%; transform: translateX(-50%) translateY(10px) scale(0.9);
    width: 180px; background: #fff; padding: 16px; border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25), 0 0 0 1px rgba(37, 211, 102, 0.3);
    display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; z-index: 999;
    opacity: 0; visibility: hidden; pointer-events: none; transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .qr-tooltip::after {
    content: ''; position: absolute; top: 100%; left: 50%; margin-left: -8px;
    border-width: 8px; border-style: solid; border-color: #fff transparent transparent transparent;
  }
  .qr-text { font-size: 13px; font-weight: 800; color: #1e293b !important; line-height: 1.3; display: block; }
  .qr-tooltip img { display: block; border-radius: 8px; background: #f0fdf4; margin: 0 auto; }
  .qr-sub { font-size: 11px; color: #64748b !important; font-weight: 600; display: block; }
  .envio-btn--wa:hover .qr-tooltip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) scale(1); pointer-events: auto; }

  /* Hover Colors */
  .envio-option:hover { transform: translateY(-5px) !important; box-shadow: 0 15px 40px rgba(0,0,0,.10); }
  .envio-option[data-type="maps"]:hover .icon { background-color: #fee2e2; border-color: var(--red); color: var(--red); }
  .envio-option[data-type="maps"]:hover .envio-btn--red { background: var(--red); color: #fff; }
  .envio-option[data-type="interior"]:hover .icon { background-color: #e0f2fe; border-color: var(--brand); color: var(--brand); }
  .envio-option[data-type="interior"]:hover .envio-btn--blue { background: var(--brand); color: #fff; }
  .envio-option[data-type="caba"]:hover .icon { background-color: #dcfce7; border-color: var(--wa); color: var(--wa); }
  .envio-option[data-type="caba"]:hover .envio-btn--wa { background: var(--wa); color: #fff; }

  /* Modales Internos Split */
  .maps-split { flex-direction: row !important; align-items: stretch; }
  .maps-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
  .maps-frame { flex: 1; height: auto; min-height: 300px; width: 100%; }
  .guide-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .guide-step:last-child { grid-column: span 2; }
  .guide-address { text-align: center; font-size: 15px; padding: 20px; margin-top: 10px; }
}
@media (max-width: 991px) { .qr-tooltip { display: none !important; } }


/* ============================================================
   8. SECCIÓN F: PROCESO (#sec-proceso)
   ============================================================ */
.sec-x{ --sec-x-accent: var(--brand); margin-top: 28px; }
.sec-x .sec-x-body{
  background:#fff; border: var(--b4) solid rgba(0,0,0,.08);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 14px;
}
.sec-x .item{
  border: var(--b4) solid rgba(0,0,0,.06); border-radius: calc(var(--radius) - 4px);
  padding: 10px 12px; transition: transform .15s ease, border-color .18s ease;
}
.sec-x .item.active{
  border-color: var(--sec-x-accent) !important; transform: scale(1.01);
  box-shadow: 0 12px 30px rgba(3,169,244,.18) !important;
}

#sec-proceso { box-sizing: border-box; padding: 28px 0 22px; background: transparent; }
#sec-proceso .proc-wrap { max-width: 452px; width: 100%; margin: 0 auto; padding: 0; }
#sec-proceso .proc-grid { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; }
#sec-proceso .proc-card {
  width: 100%; background: rgba(255, 255, 255, .62); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 2px solid rgba(0, 0, 0, .06); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, border-width .18s ease;
  cursor: pointer; overflow: hidden;
}
#sec-proceso .proc-card:hover { transform: translateY(-1px); border-color: rgba(3, 169, 244, .4); }
#sec-proceso .proc-card.proc-active {
  order: -1; border-color: var(--brand) !important; border-width: 4px !important;
  box-shadow: 0 20px 40px rgba(3, 169, 244, .28) !important; cursor: default;
}
#sec-proceso .proc-figure, #sec-proceso .proc-body { display: none; }
#sec-proceso .proc-card.proc-active .proc-figure, #sec-proceso .proc-card.proc-active .proc-body { display: block; }
#sec-proceso .proc-figure {
  margin: 0 0 12px; padding: 13px; border-radius: calc(var(--radius) - 2px);
  overflow: hidden; background: transparent;
}
#sec-proceso .proc-figure img { display: block; width: 100%; height: auto; border-radius: calc(var(--radius) - 11px); }
#sec-proceso .proc-body { padding: 0 16px 16px 16px; }
#sec-proceso .proc-body p { color: var(--ink); margin: 0 0 12px; line-height: 1.38; }
#sec-proceso .proc-body strong { font-weight: 800; }
#sec-proceso .proc-small-content { display: flex; align-items: flex-start; gap: 12px; padding: 16px; }
#sec-proceso .proc-ico { font-size: 1.2rem; line-height: 1; filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .08)); }
#sec-proceso .proc-h3 { margin: 0 0 4px; color: var(--ink); font-size: 1rem; }
#sec-proceso .proc-p { margin: 0; color: var(--muted); font-size: .96rem; line-height: 1.28; }
#sec-proceso .proc-card.proc-active .proc-small-content { display: none; }

/* Desktop Overrides (#sec-proceso) */
@media (min-width: 992px) {
  #sec-proceso .proc-wrap { max-width: 1200px; margin: 60px auto; padding: 0; display: flex; flex-direction: column; }
  #sec-proceso .proc-head { text-align: left; margin-bottom: 40px; padding-left: 20px; }
  #sec-proceso .proc-title { font-size: 32px; }
  #sec-proceso .proc-sub { font-size: 16px; margin-bottom: 0; }
  
  /* Grid Split */
  #sec-proceso .proc-grid { position: relative; display: block; min-height: 520px; }
  
  /* Foto Espejo */
  #sec-proceso .proc-figure {
    display: block !important; position: absolute; left: 0; top: 0; width: 48%; height: 100%; 
    margin: 0; padding: 0; z-index: 1; border: 4px solid transparent; border-radius: 24px; overflow: hidden;
    background: #fff; opacity: 0; pointer-events: none; transition: opacity 0.4s ease, border-color 0.3s ease;
  }
  #sec-proceso .proc-figure img { width: 100%; height: 100%; object-fit: cover; }
  #sec-proceso .proc-card.proc-active .proc-figure { opacity: 1; z-index: 2; border-color: var(--brand); box-shadow: 0 20px 40px rgba(3, 169, 244, 0.15); }
  
  /* Lista Derecha */
  #sec-proceso .proc-card {
    width: 48%; margin-left: auto; margin-bottom: 16px; background: #fff; border: 2px solid rgba(0,0,0,.06) !important; 
    border-radius: 16px; box-shadow: none; cursor: pointer; overflow: hidden; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); display: block;
  }
  #sec-proceso .proc-card:hover { border-color: rgba(0,0,0,.2) !important; transform: translateX(-5px); }
  #sec-proceso .proc-card.proc-active {
    border-width: 4px !important; border-color: var(--brand) !important; box-shadow: 0 10px 30px rgba(3,169,244,.10) !important;
    transform: scale(1.02) translateX(-10px); margin-bottom: 24px; 
  }
  /* Contenido Interno Desktop */
  #sec-proceso .proc-small-content { display: flex !important; align-items: center; padding: 20px 24px; }
  #sec-proceso .proc-ico { font-size: 24px; margin-right: 16px; }
  #sec-proceso .proc-h3 { font-size: 18px; font-weight: 700; margin: 0; color: var(--ink); }
  #sec-proceso .proc-p { display: none; } 
  #sec-proceso .proc-body {
    display: none; padding: 0 24px 24px 64px; color: var(--muted); font-size: 15px; line-height: 1.6;
  }
  #sec-proceso .proc-card.proc-active .proc-body { display: block; animation: fadeInBody 0.4s ease; }
  @keyframes fadeInBody { from{opacity:0;transform:translateY(-5px)} to{opacity:1;transform:translateY(0)} }

  /* Ajuste Alturas Balanceadas (DT-Wrap) */
  #sec-proceso .dt-content {
    display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 50px !important; align-items: start !important; margin-top: 20px !important;
  }
  #sec-proceso .dt-list { display: flex !important; flex-direction: column !important; gap: 10px !important; order: 1 !important; }
  .dt-item {
    display: flex; align-items: center; padding: 18px 22px; background: #fff;
    border: 2px solid rgba(0,0,0,.06); border-radius: 16px; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); min-height: auto; 
  }
  .dt-item:hover { border-color: rgba(0,0,0,.2); transform: translateX(5px); }
  .dt-item.active {
    align-items: flex-start; background: #fbfdff; border: 4px solid var(--brand); border-right-width: 8px; 
    box-shadow: 0 10px 30px rgba(3,169,244,.15); transform: scale(1.02) translateX(20px); z-index: 10; padding: 22px 24px; 
  }
  .dt-icon { font-size: 26px; margin-right: 16px; flex-shrink: 0; margin-top: 0; }
  .dt-info { flex-grow: 1; }
  .dt-info h3 { margin: 0; font-size: 17px; font-weight: 800; color: var(--ink); line-height: 1.2; }
  .dt-item p { display: none; margin-top: 6px; font-size: 14px; color: var(--muted); line-height: 1.5; animation: slideDown 0.3s ease; }
  .dt-item.active p { display: block; }
  @keyframes slideDown { from{opacity:0;transform:translateY(-5px)} to{opacity:1;transform:translateY(0)} }
  
  /* Stage Sticky */
  #sec-proceso .dt-stage {
    position: sticky !important; top: 100px !important; order: 2 !important; height: 490px; 
    border-radius: 24px; overflow: hidden; border: 4px solid var(--brand); 
    background: #fff; box-shadow: 0 20px 50px rgba(0,0,0,.10); transition: border-color 0.3s ease;
  }
  .dt-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.4s ease-in-out; z-index: 1;
  }
  .dt-img.active { opacity: 1; z-index: 2; }
}


/* ============================================================
   9. SECCIÓN G: POR QUÉ REPARAR (#rdn-why)
   ============================================================ */
#rdn-why{
  --panel:#fff; --border: rgba(0,0,0,.08); --shadow: 0 12px 30px rgba(0,0,0,.12);
  --shadow-sm: 0 10px 26px rgba(0,0,0,.10); --radius: 18px; --radius-sm: 14px;
}
#rdn-why .why-card{
  background:var(--panel); border:var(--b4) solid var(--border);
  border-radius:var(--radius); box-shadow:var(--shadow); padding:12px; overflow:hidden;
  border-color: var(--why-green) !important; box-shadow: 0 12px 30px rgba(46,125,50,.18); transition: box-shadow .2s ease, border-color .2s ease;
}
#rdn-why .why-hero{
  border-radius: calc(var(--radius) - 6px); overflow:hidden; border:1px solid var(--border);
  background:#eef2f7; aspect-ratio: 16/9;
}
#rdn-why .why-hero img{ width:100%; height:100%; object-fit:cover; display:block; transition: opacity 0.2s ease-in-out; }
#rdn-why .why-acc{ margin-top:10px; border:var(--b4) solid var(--border); border-radius:16px; overflow:hidden; border-color: rgba(46,125,50,.35) !important; }
#rdn-why .acc-item + .acc-item{ border-top:1px solid rgba(0,0,0,.06) }
#rdn-why .acc-btn{
  width:100%; text-align:left; background:#fff; border:0; padding:14px;
  display:flex; align-items:center; gap:12px; font-weight:900; font-size:15px; color:var(--ink);
}
#rdn-why .acc-ico{
  width:38px; height:38px; border-radius:12px; display:grid; place-items:center;
  background:#f6f8fb; border:1px solid rgba(0,0,0,.06); background: rgba(46,125,50,.06) !important; border-color: rgba(46,125,50,.25) !important;
}
#rdn-why .acc-btn .chev{ margin-left:auto; width:18px; height:18px; transform:rotate(0deg); transition:transform .15s ease }
#rdn-why .acc-item.open .acc-btn .chev{ transform:rotate(90deg) }
#rdn-why .acc-item.open{ border-left: var(--b4) solid var(--brand); border-left-color: var(--why-green) !important; }
#rdn-why .acc-panel{ display:none; background:#fff; padding:10px 14px 14px; }
#rdn-why .acc-item.open .acc-panel{ display:block }
#rdn-why .acc-panel h3{ margin:2px 0 6px; font-size:15.5px }
#rdn-why .acc-panel p{ margin:0 0 8px; color:#475569; font-size:13.5px; line-height:1.55 }
#rdn-why .acc-panel ul{ margin:6px 0 0 18px; color:#475569; font-size:13.25px }
#rdn-why .acc-panel li{ margin:4px 0 }
#rdn-why .why-hero img[src*="rdn-reparar-planeta"] { object-position: bottom; }

/* Desktop Overrides (#rdn-why-dt) */
@media (min-width: 992px) {
  #rdn-why-dt .why-dt-content {
    display: grid; grid-template-columns: 1fr 360px; gap: 50px; align-items: start; margin-top: 40px; 
  }
  /* Visor Izquierda */
  #rdn-why-dt .why-dt-stage {
    position: sticky; top: 100px; height: 420px; background: #fff; 
    border-radius: var(--radius); border: var(--b4) solid rgba(0,0,0,.08); 
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12); overflow: hidden;
    display: flex; flex-direction: column; transition: border-color 0.3s ease;
  }
  #rdn-why-dt .why-dt-stage.active { border-color: var(--brand); }
  .why-dt-inner { height: 100%; display: flex; flex-direction: column; transition: transform 0.3s ease, opacity 0.3s ease; }
  .why-dt-inner.animating { transform: scale(0.98); opacity: 0.6; filter: blur(2px); }
  .why-dt-screen { position: relative; height: 78%; width: 100%; overflow: hidden; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .why-dt-img { width: 100%; height: 100%; object-fit: cover; }
  .why-dt-badge {
    position: absolute; bottom: 0; left: 30px; width: 56px; height: 56px;
    background: #fff; border-radius: 50%; box-shadow: 0 10px 20px rgba(0,0,0,.12);
    display: grid; place-items: center; font-size: 28px; z-index: 2; border: 4px solid #fff; 
  }
  .why-dt-info-panel {
    height: 22%; background: #fff; padding: 0px 24px; display: flex; align-items: center; position: relative; z-index: 1;
  }
  .why-dt-info-panel p { font-size: 16px; line-height: 1.5; color: #334155; margin: 0; font-weight: 500; }

  /* Menú Derecha */
  #rdn-why-dt .why-dt-controls { display: flex; flex-direction: column; gap: 10px; }
  .why-dt-btn {
    display: flex; align-items: center; gap: 16px; width: 100%; background: transparent; border: none; 
    border-right: 4px solid transparent; padding: 18px 24px; cursor: pointer; transition: all 0.2s ease;
    opacity: 0.7; text-align: right; flex-direction: row-reverse; 
  }
  .why-dt-btn:hover { opacity: 1; background: #f8fafc; }
  .why-dt-btn.active {
    opacity: 1; border-right-color: var(--brand); background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.05);
    transform: translateX(-10px); border-radius: 16px 0 0 16px; font-weight: bold;
  }
  .why-dt-title { font-size: 16px; color: var(--ink); flex-grow: 1; }
  .why-dt-ico { font-size: 24px; }
  .arrow-indicator { opacity: 0; transform: translateX(10px); transition: all 0.3s ease; color: var(--brand); font-weight: bold; }
  .why-dt-btn.active .arrow-indicator { opacity: 1; transform: translateX(0); }
}


/* ============================================================
   10. SECCIÓN H: EMPRESAS (#empresas)
   ============================================================ */
.sec-empresas{ --emp-accent: var(--violet, #9C27B0); margin-top: 28px; }
.sec-empresas .sec-empresas-body{
  background:#fff; border: var(--b4) solid rgba(0,0,0,.08);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 14px;
  border-color: var(--emp-accent) !important; box-shadow: 0 12px 30px rgba(156,39,176,.20) !important;
}
.emp-grid{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.emp-item{
  background:#ffffff; border: var(--b4) solid rgba(0,0,0,.06);
  border-radius: calc(var(--radius) - 6px); padding:10px 12px; cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease;
  border-color: rgba(0,0,0,.08) !important; box-shadow: var(--shadow-sm, 0 8px 22px rgba(0,0,0,.08)) !important;
  --card-color: var(--emp-accent); --card-shadow: rgba(156,39,176,.20);
}
.emp-item.active {
  border-color: var(--card-color) !important; box-shadow: 0 10px 26px var(--card-shadow) !important;
}
.emp-ico{
  width:48px; height:48px; border-radius:14px; display:grid; place-items:center; margin-bottom:6px;
  color: var(--emp-accent); background:#faf5ff; border:1px solid rgba(0,0,0,.06);
}
.emp-ico svg{ width:30px; height:30px }
.emp-title{ margin:0 0 4px; font-size:15px; font-weight:900; letter-spacing:.005em }
.emp-desc{ margin:0; color:#6b7280; font-size:13.25px; line-height:1.45 }
.emp-cta{ display:flex; justify-content:center; margin-top:12px }
.emp-btn{ border-color: var(--emp-accent) !important; color: var(--emp-accent) !important; }
.sec-empresas .emp-claim{ margin: 4px 0 10px; color: #111; font-weight: 700; font-size: 13.75px; text-align: center; }
@media (max-width: 991px){ .emp-grid{ grid-template-columns: 1fr 1fr; } }

/* Fix Hover Empresas */
.emp-btn:hover {
  background-color: var(--emp-accent) !important; color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(156, 39, 176, 0.35); transform: translateY(-2px);
}
.emp-btn:hover svg { stroke: #ffffff !important; }

/* Desktop Overrides (#empresas) */
@media (min-width: 992px) {
  #empresas .sec-empresas, #empresas .sec-empresas-body {
    background: transparent !important; border: none !important;
    box-shadow: none !important; padding: 0 !important; margin: 0 !important;
  }
  #empresas .emp-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px !important;
  }
  #empresas .emp-item {
     height: 100%; background: #fff; border: 4px solid rgba(0,0,0,0.05) !important; border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important; padding: 30px 24px;
     display: flex; flex-direction: column; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  }
  #empresas .emp-item:hover {
     transform: translateY(-5px); border-color: var(--emp-accent) !important;
     box-shadow: 0 15px 30px rgba(156, 39, 176, 0.12) !important; z-index: 2;
  }
  #empresas .emp-item .emp-ico {
     width: 60px; height: 60px; margin-bottom: 20px; background-color: #fbf7fc; 
     color: var(--violet); border: 1px solid rgba(156, 39, 176, 0.1); 
     transition: transform .2s cubic-bezier(0.25, 0.8, 0.25, 1), background-color .2s ease;
  }
  #empresas .emp-item:hover .emp-ico { transform: scale(1.1); background-color: #f3e5f5; border-color: var(--emp-accent); }
  .emp-title { font-size: 18px; margin-bottom: 12px; font-weight: 800; }
  .emp-desc { font-size: 14px; line-height: 1.6; color: var(--muted); }
  .emp-cta { text-align: center; margin-top: 0; }
}


/* ============================================================
   11. SECCIÓN I: GARANTÍA & FAQ
   ============================================================ */
#garantia { --garantia-green: var(--why-green); padding: 28px 0 22px; }
#garantia .garantia-wrap { max-width: 452px; width: 100%; margin: 0 auto; padding: 0; }
#garantia .garantia-card {
  background: #fff; border: 4px solid var(--garantia-green); border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(46,125,50,.18); padding: 16px; margin-top: 12px;
}
#garantia .garantia-content { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 14px; }
#garantia .garantia-icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(46,125,50,.06); border: 1px solid rgba(46,125,50,.25);
}
#garantia .garantia-icon svg { width: 30px; height: 30px; }
#garantia .garantia-text h3 { margin: 0 0 4px; color: var(--ink); font-size: 1rem; font-weight: 800; }
#garantia .garantia-text p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.45; }
#garantia .garantia-cta{ display:flex; justify-content:center; margin-top: 16px; }
#garantia .garantia-btn{ border-color: var(--garantia-green) !important; color: var(--garantia-green) !important; }

/* Fix Hover Garantía */
#garantia .garantia-btn:hover {
  background-color: var(--garantia-green) !important; color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.35); transform: translateY(-2px);
}
#garantia .garantia-btn:hover svg { stroke: #ffffff !important; }

/* FAQ */
#faq { padding: 28px 0 22px; }
#faq .faq-wrap { max-width: 452px; width: 100%; margin: 0 auto; padding: 0; }
#faq .faq-acc {
  background: #fff; border: var(--b4, 4px) solid var(--brand, #03A9F4);
  border-radius: var(--radius, 18px); box-shadow: 0 12px 30px rgba(3,169,244,.18); overflow: hidden;
}
#faq .acc-item + .acc-item { border-top: 1px solid rgba(3,169,244,.2); }
#faq .acc-btn {
  width: 100%; text-align: left; background: #fff; border: 0; padding: 16px 14px;
  display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 15px;
  color: var(--brand, #03A9F4); transition: background .2s ease, color .2s ease;
}
#faq .acc-btn .chev {
  margin-left: auto; width: 18px; height: 18px; transform: rotate(0deg);
  transition: transform .2s ease, stroke .2s ease; stroke: var(--brand);
}
#faq .acc-ico { display: none; }
#faq .acc-item.open .acc-btn { background: var(--brand); color: #fff; }
#faq .acc-item.open .acc-btn .chev { transform: rotate(90deg); stroke: #fff; }
#faq .acc-panel {
  display: none; background: #fff; padding: 6px 14px 14px; font-size: 14px; line-height: 1.5;
  color: var(--muted); border-top: 1px solid rgba(3,169,244,.2);
}
#faq .acc-item.open .acc-panel { display: block; }
#faq .faq-cta { display: flex; justify-content: center; margin-top: 16px; }

/* Fix Hover FAQ */
#faq .faq-cta .btn-pill:hover {
  background-color: var(--brand) !important; border-color: var(--brand) !important;
  color: #ffffff !important; box-shadow: 0 8px 20px rgba(3, 169, 244, 0.35); transform: translateY(-2px);
}
#faq .faq-cta .btn-pill:hover svg { stroke: #ffffff !important; }

/* Desktop Overrides (Garantía & FAQ) */
@media (min-width: 992px) {
  #garantia .garantia-wrap { max-width: 100%; margin: 50px 0; }
  #garantia .garantia-card {
    display: grid; grid-template-columns: 90px 1fr auto; gap: 40px; align-items: center; padding: 32px 48px; 
    border: var(--b4) solid var(--garantia-green); background: #fff;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.08); transition: transform .2s ease, box-shadow .2s ease;
  }
  #garantia .garantia-content { display: contents; }
  #garantia .garantia-icon { width: 90px; height: 90px; background: #e8f5e9; color: var(--garantia-green); border-radius: 50%; }
  #garantia .garantia-icon svg { width: 42px; height: 42px; }
  #garantia .garantia-text h3 { font-size: 22px; margin-bottom: 10px; }
  #garantia .garantia-text p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }
  #garantia .garantia-cta { margin-top: 0; justify-self: end; flex-shrink: 0; }
  #garantia .garantia-card:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15); }

  #faq .faq-wrap { max-width: 100%; margin: 60px 0; }
  .faq-acc-dt {
    display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important;
    width: 100%; gap: 20px; align-items: stretch;
  }
  .acc-item-dt {
    flex: 1; min-width: 0; width: auto !important; background: #fff;
    border: 4px solid var(--brand); border-radius: 20px; overflow: hidden;
    display: flex; flex-direction: column; opacity: 0;
    animation: faqPopUp 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .acc-item-dt:nth-child(1) { animation-delay: 0.1s; } .acc-item-dt:nth-child(2) { animation-delay: 0.2s; }
  .acc-item-dt:nth-child(3) { animation-delay: 0.3s; } .acc-item-dt:nth-child(4) { animation-delay: 0.4s; }
  .acc-item-dt:nth-child(5) { animation-delay: 0.5s; }
  .acc-head-dt {
    background-color: var(--brand); color: #fff; width: 100%; padding: 20px 10px;
    font-weight: 800; font-size: 15px; line-height: 1.35; text-align: center;
    display: flex; align-items: center; justify-content: center; min-height: 80px; 
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .acc-body-dt {
    background: #fff; padding: 20px 14px 24px 14px; flex-grow: 1; display: flex; align-items: center;
  }
  .acc-body-dt p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--muted); text-align: center; width: 100%; }
  .acc-item-dt:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(3,169,244,.20); z-index: 2; }
  @keyframes faqPopUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
}


/* ============================================================
   12. SECCIÓN J: CTA FINAL
   ============================================================ */
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 32px; }
.cta-actions .btn-pill {
  min-width: 200px; justify-content: center; font-size: 16px; padding: 14px 24px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.btn-outline { background-color: transparent; color: var(--ink); border: 2px solid rgba(0,0,0,.15); box-shadow: none; }
.btn-outline:hover { border-color: var(--ink); background-color: #fff; transform: translateY(-2px); }
.btn-red {
  background-color: var(--rdn-red); border: 2px solid var(--rdn-red); color: #fff; box-shadow: 0 6px 20px rgba(237, 91, 85, 0.3); 
}
.btn-red:hover {
  background-color: var(--rdn-red-dark); border-color: var(--rdn-red-dark); box-shadow: 0 10px 30px rgba(237, 91, 85, 0.45); transform: translateY(-2px); color: #fff;
}
.btn-wa {
  background-color: var(--rdn-wa); border: 2px solid var(--rdn-wa); color: #fff; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover, .btn-wa:active {
  background-color: var(--rdn-wa-dark); border-color: var(--rdn-wa-dark); transform: translateY(-2px); color: #fff;
}

/* Lógica de Visibilidad CTA */
.cta-dt { display: none !important; }
.cta-mb { display: inline-flex !important; width: 100%; } 
@media (min-width: 992px) {
  .cta-dt { display: inline-flex !important; }
  .cta-mb { display: none !important; }
}


/* ============================================================
   13. CASOS DE ÉXITO STACK
   ============================================================ */
#rdn-mobile #casos-exito-stack { padding: 28px 16px 40px; background: var(--rdn-bg-c); }
#rdn-mobile #casos-exito-stack .rdn-section-heading { margin-bottom: 18px; }
#rdn-mobile .cases-stack { display: flex; flex-direction: column; align-items: stretch; gap: 10px; }
#rdn-mobile .cases-stack-inner { position: relative; height: 540px; }
#rdn-mobile .case-stack-card {
  position: absolute; inset: 0; width: 100%; max-width: 430px; margin-inline: auto;
  border-radius: 18px; overflow: hidden; background: #ffffff; border: 2px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18); padding: 0 12px 20px; 
  display: flex; flex-direction: column; opacity: 0; transform: translateY(24px) scale(0.9); pointer-events: none;
  transition: opacity 200ms ease-out, transform 200ms ease-out, box-shadow 200ms ease-out, border-color 200ms ease-out, background 200ms ease-out;
}
#rdn-mobile .case-stack-card.is-active {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28); z-index: 2;
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(135deg, #f58529, #feda77, #dd2a7b, #8134af, #515bd4) border-box;
  border-color: transparent;
}
#rdn-mobile .case-stack-card:not(.is-active) { opacity: 0.6; transform: translateY(26px) scale(0.97); clip-path: inset(calc(100% - 70px) 0 0 0 round 18px); z-index: 1; }
#rdn-mobile .case-stack-photo-wrap { position: relative; margin-inline: -12px; border-radius: 18px 18px 0 0; overflow: hidden; background: #000; flex: 0 0 auto; }
#rdn-mobile .case-stack-photo { display: block; width: 100%; height: 340px; object-fit: cover; }
#rdn-mobile .case-stack-overlay {
  position: absolute; inset-inline: 0; bottom: 0; padding: 8px 12px 10px; 
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.0)); color: #ffffff; font-size: 11px; line-height: 1.5;
}
#rdn-mobile .case-stack-overlay-title { margin: 0 0 4px; font-size: 12px; font-weight: 700; color: #ffffff; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7); }
#rdn-mobile .case-stack-overlay-text { margin: 0; color: #f9fafb; }
#rdn-mobile .case-stack-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
#rdn-mobile .case-stack-actions-left { display: flex; align-items: center; gap: 14px; }
#rdn-mobile .case-stack-like { display: inline-flex; align-items: center; gap: 5px; border: none; background: none; padding: 0; cursor: pointer; }
#rdn-mobile .case-stack-heart { font-size: 22px; color: transparent; -webkit-text-stroke: 1.6px var(--rdn-h-muted); transform-origin: center; transition: all 120ms ease-out; }
#rdn-mobile .case-stack-like.is-liked .case-stack-heart { color: #ff3366; -webkit-text-stroke: 0; }
#rdn-mobile .case-stack-like.is-bumped .case-stack-heart { transform: scale(1.25); }
#rdn-mobile .case-stack-like-count { font-size: 13px; font-weight: 700; color: var(--rdn-h-muted); }
#rdn-mobile .case-stack-like.is-liked .case-stack-like-count { color: #ff3366; }
#rdn-mobile .case-stack-icon { border: none; background: none; padding: 0; cursor: pointer; font-size: 20px; color: var(--rdn-h-text); opacity: 0.85; }
#rdn-mobile .case-stack-icon .case-stack-count { margin-left: 4px; font-size: 11px; font-weight: 500; color: var(--rdn-h-muted); }
#rdn-mobile .case-stack-footer { display: flex; flex-direction: column; gap: 4px; padding-top: 6px; flex: 2 0 auto; }
#rdn-mobile .case-stack-meta-row { display: flex; align-items: center; justify-content: space-between; }
#rdn-mobile .case-stack-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--rdn-h-muted); }
#rdn-mobile .case-stack-age { font-size: 11px; color: var(--rdn-h-muted); }
#rdn-mobile .case-stack-caption { margin: 0; font-size: 13px; line-height: 1.5; color: var(--rdn-h-text); }
#rdn-mobile .case-stack-hash { color: var(--rdn-h-blue); text-decoration: none; font-weight: 500; margin-left: 4px; }
#rdn-mobile .case-stack-cta-row { display: flex; justify-content: flex-end; margin-top: auto; padding-top: 8px; }
#rdn-mobile .case-stack-cta-row::before { content: "👉"; font-size: 18px; margin-right: 8px; align-self: center; }
#rdn-mobile .case-stack-cta { display: inline-flex; align-items: center; justify-content: center; padding: 8px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; text-decoration: none; color: #ffffff; background: var(--rdn-h-blue); }
#rdn-mobile .cases-stack-dots { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 34px; }
#rdn-mobile .cases-stack-dot { width: 7px; height: 7px; border-radius: 999px; border: none; padding: 0; background: rgba(0, 0, 0, 0.18); cursor: pointer; }
#rdn-mobile .cases-stack-dot.is-active { width: 16px; border-radius: 999px; background: #ff3366; }

/* Desktop Overrides (Casos) */
@media (min-width: 992px) {
  #casos-exito-stack { padding-block: clamp(40px, 6vh, 72px); padding-inline: 24px; background: var(--rdn-bg-b, #F6F8FC); }
  #casos-exito-stack .rdn-section-heading { max-width: 1200px; margin-inline: auto; margin-bottom: 24px; }
  #casos-exito-stack .cases-stack { max-width: 1200px; margin-inline: auto; }
  #casos-exito-stack .cases-stack-inner { position: relative; height: auto; min-height: 360px; }
  #casos-exito-stack .case-stack-card {position: relative; inset: auto; margin-inline: auto; max-width: 100%; display: grid; grid-template-columns: 60% 40%; grid-template-rows: auto 1fr auto; gap: 0; padding: 0 !important; border-radius: 18px; background: #ffffff; border: 2px solid rgba(15, 23, 42, 0.08); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18); opacity: 0; transform: none; clip-path: none; pointer-events: none; z-index: 1; overflow: hidden;}
  #casos-exito-stack .case-stack-card.is-active {
    opacity: 1; pointer-events: auto; z-index: 2;
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(135deg, #f58529, #feda77, #dd2a7b, #8134af, #515bd4) border-box; border-color: transparent;
  }
  #casos-exito-stack .case-stack-card:not(.is-active) { display: none; }
  #casos-exito-stack .case-stack-photo-wrap {grid-column: 1 / 2; grid-row: 1 / 4; margin: 0 !important; width: 100% !important; height: 100% !important; border-radius: 0; background: #000;}
  #casos-exito-stack .case-stack-photo { width: 100%; height: 100%; min-height: 260px; max-height: 560px; object-fit: cover; display: block; }
  #casos-exito-stack .case-stack-overlay { display: none; }
  #casos-exito-stack .case-stack-actions { grid-column: 2 / 3; grid-row: 1 / 2; margin-top: 0; padding: 24px 24px 0 24px !important;}
  #casos-exito-stack .case-stack-footer { grid-column: 2 / 3; grid-row: 2 / 4; padding: 10px 24px 24px 24px !important; display: flex; flex-direction: column; justify-content: center; gap: 6px;}
  #casos-exito-stack .case-stack-meta-row { margin-bottom: 2px; }
  #casos-exito-stack .case-stack-caption { font-size: 14px; line-height: 1.6; color: var(--rdn-h-text, #0A0A0A); }
  #casos-exito-stack .case-stack-caption .only-desktop { display: inline; }
  #casos-exito-stack .case-stack-cta-row { justify-content: flex-end; padding-top: 14px; }
  #casos-exito-stack .case-stack-cta-row::before { content: none; margin: 0; }
  #casos-exito-stack .case-stack-cta { font-size: 15px; padding: 11px 28px; }
  #casos-exito-stack .cases-stack-dots { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 18px; padding-bottom: 6px; }
  #casos-exito-stack .cases-stack-dot { width: 8px; height: 8px; border-radius: 999px; border: none; background: rgba(0, 0, 0, 0.18); cursor: pointer; }
  #casos-exito-stack .cases-stack-dot.is-active { width: 20px; border-radius: 999px; background: #ff3366; }
  .only-desktop { display: inline; }
}


/* ============================================================
   14. SISTEMA DE LAYOUT & HEADINGS (Base + Modificadores)
   ============================================================ */
/* Colores y Fondos (Zebra) */
:root {
  --rdn-h-blue: #0277BD; --rdn-h-text: #0A0A0A; --rdn-h-muted: #555555;
  --rdn-bg-a: #FFFFFF; --rdn-bg-b: #F6F8FC; --rdn-bg-c: #FFF9F1;
}

/* Estilos de Headings */
.rdn-section-heading {
  width: 100%;
  max-width: 780px; 
  margin-inline: auto; 
  margin-bottom: 2.75rem; 
  text-align: center;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
.rdn-section-heading--left { 
  text-align: left !important; 
  margin-right: auto !important; 
  max-width: 100%; 
  align-items: flex-start !important; 
  /* En mobile y general dejamos que el margin-left sea el natural del contenedor */
}
.rdn-section-heading--center { text-align: center; margin-inline: auto; }

.rdn-heading-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 4px 12px; margin: 0 0 12px;
  border-radius: 999px; background: rgba(2, 119, 189, 0.06); color: var(--rdn-h-blue);
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.rdn-heading-eyebrow-pill::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--rdn-h-blue); }
.rdn-heading-title {
  margin: 0; font-size: clamp(26px, 3.5vw, 40px); line-height: 1.12; font-weight: 800; letter-spacing: -0.035em; color: var(--rdn-h-text);
}
.rdn-heading-title em { font-style: normal; color: var(--rdn-h-blue); }
.rdn-heading-meta-row {
  display: flex; align-items: center; gap: 10px; margin-top: 14px; margin-bottom: 14px;
  color: var(--rdn-h-muted); font-size: 12px; justify-content: center; 
}
.rdn-section-heading--left .rdn-heading-meta-row { justify-content: flex-start; }

.rdn-heading-line {
  flex: 0 0 64px; height: 2px; border-radius: 999px; background: linear-gradient(90deg, var(--rdn-h-blue), rgba(2, 119, 189, 0.05));
}
.rdn-heading-meta-text { opacity: 0.9; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; white-space: nowrap; }
.rdn-heading-sub {
  margin: 0; font-size: 15px; line-height: 1.7; color: var(--rdn-h-muted); max-width: 960px; margin-inline: auto;
}
.rdn-section-heading--left .rdn-heading-sub { margin-inline: 0; }

@media (max-width: 900px) {
  .rdn-heading-title { font-size: clamp(23px, 5.2vw, 28px); }
  .rdn-heading-meta-row { flex-wrap: wrap; }
  .rdn-heading-meta-text { white-space: normal; }
}
@media (max-width: 480px) {
  .rdn-heading-eyebrow-pill { font-size: 10px; padding: 3px 10px; }
}

/* Fondos Cebra (Móvil) */
#rdn-mobile > main > section { width: 100%; padding-top: 60px; padding-bottom: 60px; }
#rdn-mobile > main > section:nth-of-type(odd) { background-color: var(--rdn-bg-a); }
#rdn-mobile > main > section:nth-of-type(even) { background-color: var(--rdn-bg-b); }
opiniones-widget { display: block; width: 100%; background-color: var(--rdn-bg-a); }


/* ============================================================
   15. DESKTOP OVERRIDES (Ajustes finales de pantalla grande)
   ============================================================ */
@media (min-width: 992px) {
  /* Wrappers implícitos para centrar contenido */
  #rdn-mobile { max-width: 100% !important; padding: 0 !important; margin: 0 !important; overflow-x: hidden; }
  #rdn-mobile > main > section, opiniones-widget { width: 100%; padding: 80px 0; max-width: 100% !important; }
  
  /* Centrado de Wrappers internos */
  .rdn-wrap, .envio-wrap, .proc-wrap, .garantia-wrap, .faq-wrap, .dt-wrap {
    max-width: 1200px !important; margin: 0 auto !important; padding-left: 24px !important; padding-right: 24px !important; width: 100%;
  }
  /* Centrado de secciones sin wrap explicito */
  #qnrhoy > *, #manos > *, #como-funciona > *, #por-que-reparar > header, #por-que-reparar > #rdn-why-dt {
    max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 24px; padding-right: 24px;
  }
  
  /* Paleta A-B-C en Desktop */
  #qnrhoy, #envio, #por-que-reparar, #faq { background-color: var(--rdn-bg-a); }
  #como-funciona, #sec-proceso, #empresas { background-color: var(--rdn-bg-b); }
  #manos, #garantia { background-color: var(--rdn-bg-c); }
  opiniones-widget { display: block; background-color: var(--rdn-bg-c); }
  
  /* Fix Alineación (Solo en Desktop) */
  /* En V5.3: margin-left: auto para que NO se pegue al borde en la Home, pero respete el container */
  .rdn-section-heading--left {
     margin-left: auto !important; 
     text-align: left !important; 
     align-items: flex-start !important;
  }
  .rdn-section-heading--center {
     margin-left: auto !important;
     margin-right: auto !important;
     text-align: center !important;
  }
}


 /* ============================================================
   NUEVOS ESTILOS: PÁGINA ENVÍOS (FINAL CONSOLIDADO)
   ============================================================ */

/* --- UTILIDADES DE ESPACIADO --- */
.section-spacing { padding-top: 40px; padding-bottom: 40px; }
.text-center { text-align: center; }
.mb-small { margin-bottom: 16px; }
.section-guide-spacing { margin-top: 40px; margin-bottom: 40px; }

@media (min-width: 992px) {
  .section-guide-spacing { margin-top: 60px; margin-bottom: 80px; }
}

/* --- HERO DESKTOP (Split View) --- */
@media (min-width: 992px) {
  .hero-dt-wrap {
    display: flex; align-items: center; justify-content: space-between; gap: 60px;
    max-width: 1200px; margin: 0 auto; padding: 60px 20px;
  }
  .hero-dt-content { flex: 1; text-align: left; }
  .hero-dt-content h1 {
    /* 1. La misma "receta" de fuente que usás en el resto de los títulos */
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    
    font-size: 46px; 
    line-height: 1.12;
    font-weight: 800;
    color: var(--ink, #0f172a);
    margin: 16px 0;
    
    /* 2. El mismo espaciado técnico */
    letter-spacing: -0.035em;
  }
  .hero-dt-content p { font-size: 18px; color: var(--muted); line-height: 1.6; margin-bottom: 0; }
  
  .hero-dt-image { 
    flex: 1; border-radius: var(--radius); overflow: hidden; 
    box-shadow: var(--shadow); border: 4px solid #fff;
  }
  .hero-dt-image img { display: block; width: 100%; height: auto; }
}

/* --- MANUAL DE ENVÍO: MÓVIL (Fixes Carrusel) --- */
/* Forzar imagen llena y clic en botón */
#cf-rail .cf-step-media {
  background: #f0f0f0; padding: 0; height: 220px; /* Altura fija uniforme */
  overflow: hidden; position: relative;
}
#cf-rail .cf-img {
  width: 100% !important; height: 100% !important; max-width: none !important;
  object-fit: cover !important; display: block; border-radius: 12px;
}
#cf-rail .cf-hint-arrow {
  z-index: 100; pointer-events: auto; cursor: pointer;
  /* Animación latido asegurada */
  animation: cf-pulse 1.5s infinite ease-in-out;
}
@keyframes cf-pulse { 
  0% { box-shadow: 0 0 0 0 rgba(255,152,0, 0.7); transform: translateY(-50%) scale(1); }
  70% { box-shadow: 0 0 0 10px rgba(255,152,0, 0); transform: translateY(-50%) scale(1.05); }
  100% { box-shadow: 0 0 0 0 rgba(255,152,0, 0); transform: translateY(-50%) scale(1); }
}

/* --- MANUAL DE ENVÍO: DESKTOP (Grid 4x2) --- */
.guide-header { max-width: 600px; margin: 0 auto 40px; text-align: center; }

@media (min-width: 992px) {
  .manual-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
  
  .manual-grid {
    display: grid; 
    grid-template-columns: repeat(4, 1fr);
    gap: 24px; 
    margin-bottom: 60px;
    /* Importante: permite que las tarjetas se salgan del molde */
    position: relative; 
  }
  
  .manual-step {
    background: #fff; 
    border-radius: var(--radius); 
    overflow: hidden;
    
    /* PREPARACIÓN DEL EFECTO */
    /* Borde invisible de 2px para que no "salte" el contenido al hacer hover */
    border: 3px solid transparent; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    
    /* Transición elástica para que se sienta orgánico */
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center center;
    position: relative;
    z-index: 1;
  }
  
  /* --- EL ESTALLIDO (HOVER) --- */
  .manual-step:hover {
    /* 1. Crece hacia los 4 lados un 8% */
    transform: scale(1.08); 
    
    /* 2. Se pone por encima de sus vecinas */
    z-index: 10; 
    
    /* 3. Borde del color de la marca */
    border-color: var(--brand, #03A9F4);
    
    /* 4. Sombra difusa del MISMO color de la marca (Glow) */
    box-shadow: 0 20px 50px -10px rgba(3, 169, 244, 0.35);
  }

  /* La Imagen */
  .manual-img { 
    position: relative; 
    height: 200px; 
    overflow: hidden; 
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .manual-img img { 
    width: 100%; height: 100%; object-fit: cover; 
    transition: transform 0.5s ease;
  }
  
  /* Zoom lento en la foto */
  .manual-step:hover .manual-img img {
    transform: scale(1.15); 
  }
  
  /* El Badge (Numerito) */
  .manual-badge {
    position: absolute; top: 12px; left: 12px; width: 34px; height: 34px;
    background: var(--brand); color: #fff; border-radius: 50%;
    display: grid; place-items: center; font-weight: 800; font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); border: 2px solid #fff;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s;
    z-index: 2;
  }
  
  /* El badge salta y cambia de color al hover */
  .manual-step:hover .manual-badge {
    transform: scale(1.2);
    background: #fff;
    color: var(--brand);
    border-color: var(--brand);
  }
  
  /* Textos */
  .manual-text { padding: 22px 18px; text-align: left; } /* Alineado izq se lee mejor */
  
  .manual-text h4 { 
    margin: 0 0 8px; 
    font-size: 17px; 
    color: var(--ink); 
    font-weight: 800;
    transition: color 0.2s;
  }
  
  /* Título se pinta de azul al hover */
  .manual-step:hover .manual-text h4 {
    color: var(--brand);
  }
  
  .manual-text p { 
    margin: 0; 
    font-size: 13.5px; 
    color: var(--muted); 
    line-height: 1.5; 
  }
}

/* ==========================================
   SECCIÓN MUTANTE: ENVÍO + QR + CONFIANZA (V FINAL)
   ========================================== */
.shipping-mutant-section { background-color: var(--bg); }
.mutant-grid {
  display: flex; flex-direction: column; gap: 30px;
  max-width: 500px; margin: 0 auto; padding: 0 20px;
}

/* --- COL 1: ETIQUETA TICKET --- */
.shipping-label-card {
  background: #fff; width: 100%;
  background-image: radial-gradient(#f1f1f1 15%, transparent 16%); background-size: 10px 10px;
  border-radius: 16px 16px 0 0; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 24px; position: relative; text-align: left;
  border: 1px solid rgba(0,0,0,0.05);
}

.stamp-overlay {
  position: absolute; top: 20px; right: 20px;
  border: 3px solid #d32f2f; color: #d32f2f; font-weight: 900; padding: 4px 10px;
  font-size: 14px; transform: rotate(-10deg); opacity: 0.2; pointer-events: none; border-radius: 6px;
}

.label-header { 
  display: flex; justify-content: space-between; 
  border-bottom: 2px dashed #000; padding-bottom: 12px; margin-bottom: 16px; 
}
.label-title { font-weight: 800; font-family: 'Courier New', monospace; letter-spacing: 1px; font-size: 14px; color: #000; }

.fake-barcode { 
  width: 80px; height: 20px; 
  background: repeating-linear-gradient(90deg, #000, #000 2px, transparent 2px, transparent 5px); 
  opacity: 0.7; 
}
.label-body p { margin: 0; line-height: 1.4; font-family: 'Courier New', monospace; color: #000; font-size: 15px; }
.label-footer { 
  display: flex; justify-content: space-between; font-size: 11px; font-weight: 700; margin-top: 20px; padding-top: 10px; 
  border-top: 2px solid #000; font-family: 'Courier New', monospace;
}

/* --- COL 2: ACCIONES (QR + BOTÓN) --- */
.col-mutant-center { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; }

/* QR HUD (Bonito & Blanco) */
.qr-hud-box { 
  display: none; /* Oculto en móvil */
  flex-direction: column; 
  align-items: center;     /* Centro Horizontal */
  justify-content: center; /* Centro Vertical */
  text-align: center;      /* Texto al centro */
  
  background: #fff; 
  padding: 24px; 
  border-radius: 18px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  /* Quitamos el transform del hover para que la caja quede quieta si preferís */
  transition: transform 0.2s ease;
  width: 100%; 
  box-sizing: border-box;
}

/* Opcional: Si querés que la caja suba un poquito, dejá esto. Si no, borralo. */
.qr-hud-box:hover { transform: translateY(-5px); } 

.qr-hud-frame { 
  position: relative; 
  padding: 10px; 
  display: flex; 
  justify-content: center; align-items: center;
  margin-bottom: 12px; 
  margin-left: auto; margin-right: auto;
}
.qr-hud-frame img { width: 160px; height: 160px; display: block; mix-blend-mode: multiply; }

/* --- CORRECCIÓN DE ESQUINAS (ANIMACIÓN CONSTANTE) --- */
.corner { 
  position: absolute; width: 25px; height: 25px; 
  border: 3px solid var(--brand); border-radius: 4px; 
  
  /* La magia: Animación infinita, suave y sin romper layout */
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  pointer-events: none; /* Para que no molesten al mouse */
}

/* Posiciones FIJAS con !important para que el hover no las rompa */
.tl { top: 0 !important; left: 0 !important; border-right: 0; border-bottom: 0; animation-name: breathe-tl; }
.tr { top: 0 !important; right: 0 !important; border-left: 0; border-bottom: 0; animation-name: breathe-tr; }
.bl { bottom: 0 !important; left: 0 !important; border-right: 0; border-top: 0; animation-name: breathe-bl; }
.br { bottom: 0 !important; right: 0 !important; border-left: 0; border-top: 0; animation-name: breathe-br; }

/* Keyframes: Mueven hacia AFUERA (negativo es izquierda/arriba) */
/* 0,0 es la esquina. -5px es alejarse del centro. */
@keyframes breathe-tl { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-5px, -5px); } }
@keyframes breathe-tr { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(5px, -5px); } }
@keyframes breathe-bl { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-5px, 5px); } }
@keyframes breathe-br { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(5px, 5px); } }

.qr-hint { 
  font-size: 11px; font-weight: 900; color: var(--brand); 
  letter-spacing: 1.5px; margin-top: 8px; display: block; width: 100%; text-align: center; text-transform: uppercase;
}

/* BOTÓN PILL AZUL (ANIMADO) */
.btn-pill-blue {
  width: 100%; max-width: 280px; padding: 16px;
  background: var(--brand); color: #fff; border: none; border-radius: 50px;
  font-weight: 800; font-size: 14px; letter-spacing: 0.5px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer; position: relative; overflow: hidden;
  box-shadow: 0 8px 20px rgba(3,169,244,0.3);
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-pill-blue:hover { 
  transform: translateY(-3px); box-shadow: 0 15px 30px rgba(3,169,244,0.45); background-color: #039BE5; 
}
.btn-pill-blue svg { width: 20px; height: 20px; transition: transform 0.2s; }
.btn-pill-blue:hover svg { animation: icon-wiggle 0.4s ease-in-out; }

@keyframes icon-wiggle { 
  0%, 100% { transform: rotate(0); } 
  25% { transform: rotate(-15deg) scale(1.1); } 
  75% { transform: rotate(15deg) scale(1.1); } 
}

.btn-pill-blue:active { transform: translateY(1px); box-shadow: 0 4px 10px rgba(3,169,244,0.3); transition: 0.05s; }


/* --- COL 3: CONFIANZA (VERTICAL) --- */
.trust-card-vertical {
  background: #fff; border-radius: 16px; padding: 24px;
  border: 1px solid rgba(0,0,0,0.04); box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.trust-header { 
  font-size: 16px; color: var(--ink); margin: 0 0 20px; 
  font-weight: 800; text-align: center; border-bottom: 1px solid #eee; 
  padding-bottom: 10px; 
}
.trust-list-v { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.trust-list-v li { display: flex; gap: 12px; align-items: flex-start; }
.trust-icon { 
  width: 36px; height: 36px; border-radius: 50%; background: #f0fdf4; 
  display: grid; place-items: center; font-size: 18px; flex-shrink: 0; 
  border: 1px solid #dcfce7;
}
.trust-list-v li:nth-child(2) .trust-icon { background: #eff6ff; border-color: #dbeafe; }
.trust-list-v li:nth-child(3) .trust-icon { background: #fefce8; border-color: #fef9c3; }
.trust-txt strong { display: block; font-size: 14px; color: var(--ink); margin-bottom: 2px; }
.trust-txt p { margin: 0; font-size: 12px; color: var(--muted); line-height: 1.35; }


/* --- DESKTOP MUTANTE (3 COLUMNAS) --- */
@media (min-width: 992px) {
  .mutant-grid {
    max-width: 1200px; 
    display: grid;
    grid-template-columns: 35fr 30fr 35fr; 
    gap: 40px;
    align-items: center;
  }
  /* ACÁ ESTÁ LA CORRECCIÓN CLAVE: */
  .qr-hud-box.only-desktop { display: flex !important; } /* Forzamos visibilidad */
  
  /* Ajustes específicos DT */
  .col-mutant-center { 
    border-left: 3px dashed #cbd5e1; 
    border-right: 3px dashed #cbd5e1; 
    padding: 0 40px; 
    min-height: 320px; 
  }
  .trust-card-vertical { background: transparent; border: none; box-shadow: none; padding: 0; }
  .trust-header { text-align: left; font-size: 18px; border: none; padding: 0; margin-bottom: 24px; }
  .trust-icon { width: 44px; height: 44px; font-size: 22px; }
  .trust-txt p { font-size: 14px; }
  .trust-txt strong { font-size: 16px; }
}

/* --- MEJORAS SECCIÓN ENVÍO (V2.7) --- */

/* 1. Botón Imprimir (Fantasma dentro de la etiqueta) */
.btn-print-ghost {
  position: absolute; top: 20px; right: 20px;
  background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.1);
  border-radius: 6px; padding: 6px 10px; font-size: 10px; font-weight: 700;
  color: #555; cursor: pointer; display: flex; align-items: center; gap: 6px;
  transition: all 0.2s ease;
}
.btn-print-ghost:hover { background: #000; color: #fff; border-color: #000; }
.btn-print-ghost svg { width: 14px; height: 14px; }

/* 2. Botón Copiar: Estado de Éxito (Verde) */
.btn-pill-blue.success {
  background-color: #4CAF50 !important; /* Verde */
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4) !important;
  transform: translateY(0);
}

/* 3. ARREGLO VISUAL DESKTOP (El "Tríptico") */
@media (min-width: 992px) {
  
  .col-mutant-center {
    border-left: 4px dashed #cbd5e1; 
    border-right: 4px dashed #cbd5e1; 
    border-top: none;
    border-bottom: none;
    padding: 0 40px;
  }

  .trust-card-vertical {
    background: #fff !important; /* Forzamos blanco */
    border-radius: 20px !important;
    padding: 30px !important;
    border: 1px solid rgba(0,0,0,0.04) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important; /* Sombra igual a las otras */
    height: 100%;
    display: flex; flex-direction: column; justify-content: center;
  }
  
  /* Ajuste interno para que se vea equilibrado */
  .trust-header {
    text-align: center !important; 
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 16px; margin-bottom: 24px;
  }
}

/* --- NUEVA ETIQUETA MINIMALISTA (Igualdad de Altura) --- */

.col-mutant-label {
  height: 100%; /* Fundamental para igualar altura en Grid */
}

.shipping-label-card {
  background: #fff;
  border-radius: 20px; /* Mismo radio que Confianza */
  padding: 24px 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  
  /* Flexbox para ocupar toda la altura y distribuir espacio */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distribuye cabecera, cuerpo y botón */
  
  /* Reseteamos estilos viejos por si acaso */
  background-image: none;
  position: relative;
}

/* Elementos Internos */
.clean-label-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 12px;
}
.icon-box { font-size: 24px; line-height: 1; }
.title-box { margin: 0; font-size: 14px; font-weight: 800; color: #1e293b; letter-spacing: 0.5px; text-transform: uppercase; }

.clean-label-body {
  flex-grow: 1; /* Esto hace que ocupe el espacio disponible */
  display: flex; flex-direction: column; gap: 10px;
}

.data-group { display: flex; flex-direction: column; gap: 2px; }
.data-label { font-size: 10px; font-weight: 700; color: #94a3b8; letter-spacing: 1px; text-transform: uppercase; }
.data-value-lg { font-size: 16px; color: #0f172a; font-weight: 800; }
.data-value { font-size: 15px; color: #334155; line-height: 1.4; font-family: monospace; /* Monospace moderno para datos */ }

/* Caja gris para destacar la dirección */
.highlight-bg {
  background: #f8fafc;
  border-left: 4px solid var(--brand); /* Línea azul de acento */
  padding: 10px 12px;
  border-radius: 0 8px 8px 0;
}

/* Botón Imprimir Limpio */
.btn-print-clean {
  width: 100%; margin-top: 16px;
  background: #fff; border: 1px solid #e2e8f0;
  color: #64748b; font-weight: 700; font-size: 12px;
  padding: 10px; border-radius: 12px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s ease;
}
.btn-print-clean:hover {
  border-color: #000000; background: #000000; color: #fff;
}

/* --- ANIMACIÓN QR "RESPIRANDO" (Atención Constante) --- */

/* 1. Configuración base para las 4 esquinas */
.qr-hud-box .corner {
  /* Duración: 2 segundos, Bucle: Infinito, Ritmo: Suave */
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  /* Quitamos la transición vieja para que no pelee con la animación */
  transition: none; 
}

/* 2. Asignamos una coreografía distinta a cada esquina */
.qr-hud-box .tl { animation-name: breathe-tl; }
.qr-hud-box .tr { animation-name: breathe-tr; }
.qr-hud-box .bl { animation-name: breathe-bl; }
.qr-hud-box .br { animation-name: breathe-br; }

/* 3. Definimos el movimiento (4px hacia afuera y vuelven) */
@keyframes breathe-tl {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-4px, -4px); }
}

@keyframes breathe-tr {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(4px, -4px); }
}

@keyframes breathe-bl {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-4px, 4px); }
}

@keyframes breathe-br {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(4px, 4px); }
}

/* Opcional: Si querés desactivar el hover viejo para que no salte */
.qr-hud-box:hover .corner {
  top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
}

/* --- FIX MÓVIL: TAMAÑOS FULL WIDTH --- */
@media (max-width: 991px) {
  .mutant-grid {
    max-width: 100% !important; /* Liberamos el ancho */
    padding: 0 !important;      /* El padding lo maneja la sección padre */
    gap: 20px;
  }
  
  /* Hacemos que la etiqueta y la confianza llenen el ancho */
  .col-mutant-label, 
  .col-mutant-trust {
    width: 100%;
    margin: 0;
  }

  /* Ajuste visual para que no queden pegadas a los bordes de la pantalla */
  .shipping-label-card,
  .trust-card-vertical {
    border-radius: 18px !important;
    /* Sombra suave para darle volumen en móvil */
    box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important; 
  }
}

/* --- HERO DESKTOP MEJORADO --- */
@media (min-width: 992px) {
  /* 1. Fondo sutil para toda la sección Hero */
  #hero-desktop {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    padding-bottom: 80px;
  }

  .hero-dt-content {
    padding-right: 40px; /* Aire entre texto e imagen */
  }

  /* 2. Tipografía gigante y apretada (Estilo Apple/Moderno) */
  .hero-dt-content h1 {
    font-size: 56px; /* Más grande */
    line-height: 1.05;
    margin-bottom: 24px;
    color: #0f172a;
  }
  
  .hero-dt-content h1 em {
    color: var(--brand);
    position: relative;
    font-style: normal;
  }
  
  /* Subrayado sutil bajo la palabra clave */
  .hero-dt-content h1 em::after {
    content: "";
    position: absolute;
    bottom: 2px; left: 0; width: 100%; height: 8px;
    background: rgba(3, 169, 244, 0.2); /* Azul transparente */
    z-index: -1;
    border-radius: 4px;
  }

  .hero-dt-content p {
    font-size: 19px;
    color: #475569;
    max-width: 500px; /* Evita líneas de texto eternas */
  }

  /* 3. Imagen "Flotante" con sombra difusa */
  .hero-dt-image {
    position: relative;
    border: none; /* Quitamos borde duro si tenía */
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); /* Sombra suave y profunda */
    transform: perspective(1000px) rotateY(-2deg); /* Un toquecito 3D sutil */
    transition: transform 0.4s ease;
  }
  
  .hero-dt-image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-5px);
  }
}

/* =========================================
   FAQ EXCLUSIVO PÁGINA ENVÍOS (#faq-envios-page)
   ========================================= */

/* Estilos Base (Móvil) */
#faq-envios-page .acc-item {
    background: #fff;
    border: 4px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    /* Sombra suavecita para dar volumen */
    box-shadow: 0 4px 10px rgba(0,0,0,0.03); 
}

#faq-envios-page .acc-btn {
    width: 100%; text-align: left; background: #fff; border: 0; padding: 18px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    font-weight: 800; font-size: 15px; color: var(--ink);
    cursor: pointer;
}

#faq-envios-page .acc-btn .chev {
    width: 20px; height: 20px; transition: transform .2s ease; color: var(--brand);
}

#faq-envios-page .acc-panel {
    display: none; padding: 0 18px 20px;
    font-size: 14px; line-height: 1.6; color: var(--muted);
}
#faq-envios-page .acc-panel p { margin: 0; }

/* Estado Abierto */
#faq-envios-page .acc-item.open .acc-btn .chev { transform: rotate(90deg); }
#faq-envios-page .acc-item.open .acc-panel { display: block; border-top: 1px solid #f1f5f9; padding-top: 16px; }
#faq-envios-page .acc-item.open { border-color: var(--brand); box-shadow: 0 8px 20px rgba(3,169,244,0.1); }


/* DESKTOP: GRID DE 2 COLUMNAS (Igual que antes, pero aislado) */
@media (min-width: 992px) {
    #faq-envios-page .faq-acc {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    #faq-envios-page .acc-item {
        margin-bottom: 0; /* El gap de la grilla maneja el espacio */
        height: fit-content; /* Para que no se estiren si uno es muy largo */
        transition: transform 0.2s ease;
    }

    #faq-envios-page .acc-item:hover {
        transform: translateY(-3px);
        border-color: var(--brand);
    }
}

/* --- HERO DESKTOP: SPLIT (CORREGIDO) --- */
@media (min-width: 992px) { /* <--- ¡ESTA LÍNEA ES LA CLAVE! */

  #hero-desktop {
    padding: 0; 
    background: #fff; 
    border-bottom: 1px solid rgba(0,0,0,0.05);
    height: 480px; 
    display: flex; /* Esto solo debe aplicar en Desktop */
    align-items: center;
  }

  .hero-dt-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px !important;
    margin: 0 auto;
    height: 100%;
  }

  .hero-dt-content {
    text-align: left;
    padding-right: 20px;
  }
  .hero-dt-content h1 {
    font-size: 46px; 
    line-height: 1.1;
    font-weight: 800;
    color: var(--ink, #0f172a);
    margin: 16px 0;
    letter-spacing: -1px;
  }
  .hero-dt-content h1 em {
    color: var(--brand, #03A9F4);
    font-style: normal;
  }
  .hero-dt-content p {
    font-size: 17px;
    color: var(--muted, #64748b);
    line-height: 1.5;
    margin: 0;
    max-width: 480px;
  }
  .rdn-heading-eyebrow-pill { margin: 0 0 10px 0; }

  .hero-dt-image {
    position: relative;
    height: 380px; 
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15); 
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.4s ease;
  }
  .hero-dt-image:hover { transform: perspective(1000px) rotateY(0deg); }

  .hero-dt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

} /* <--- ACORDATE DE CERRAR LA LLAVE AL FINAL */
/* --- HERO DESKTOP: SPLIT (IMAGEN + TEXTO COMPACTO) --- */
  #hero-desktop {
    padding: 0; /* Quitamos padding vertical para controlar altura con la caja */
    background: #fff; /* Fondo limpio para integrar la imagen */
    border-bottom: 1px solid rgba(0,0,0,0.05);
    height: 480px; /* Altura total de la sección fija */
    display: flex;
    align-items: center;
  }

  .hero-dt-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% Texto - 50% Imagen */
    gap: 60px;
    align-items: center;
    max-width: 1100px !important;
    margin: 0 auto;
    height: 100%;
  }

  /* Texto */
  .hero-dt-content {
    text-align: left;
    padding-right: 20px;
  }
  .hero-dt-content h1 {
    font-size: 46px; /* Tamaño SEO amigable */
    line-height: 1.1;
    font-weight: 800;
    color: var(--ink, #0f172a);
    margin: 16px 0;
    letter-spacing: -1px;
  }
  .hero-dt-content h1 em {
    color: var(--brand, #03A9F4);
    font-style: normal;
  }
  .hero-dt-content p {
    font-size: 17px;
    color: var(--muted, #64748b);
    line-height: 1.5;
    margin: 0;
    max-width: 480px;
  }
  .rdn-heading-eyebrow-pill { margin: 0 0 10px 0; }

  /* Imagen (Controlada a 400px de alto aprox visualmente) */
  .hero-dt-image {
    position: relative;
    height: 380px; /* Altura contenida */
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15); /* Sombra elegante */
    /* Transformación sutil para dar perspectiva */
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.4s ease;
  }
  .hero-dt-image:hover { transform: perspective(1000px) rotateY(0deg); }

  .hero-dt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta lo que sobra para llenar la caja */
    object-position: center;
    display: block;
  }


  /* ============================================================
   RDN MOBILE — HOJA DE ESTILOS MAESTRA (V5.6 - GARANTIA PRO)
   ============================================================ */

/* 1. VARIABLES & RESET
   ============================================================ */
:root {
  /* Brand Colors */
  --brand: #03A9F4;
  --violet: #9C27B0;
  --ink: #0f172a; 
  --muted: #475569; /* Un poco más oscuro para mejor lectura */
  --bg: #f8fafc; 
  
  /* Accent Colors */
  --orange: #f59e0b;
  --green: #10b981;
  --red: #ef4444;

  /* WhatsApp & Actions */
  --wa: #25D366;
  --wa-bg: #e5ddd5;
  --wa-green: #dcf8c6;
  --wa-send-btn: #00a884;
  --rdn-red: #ED5B55; 
  --rdn-red-dark: #d32f2f; 
  --rdn-wa: #25D366;
  --rdn-wa-dark: #1da851; 

  /* UI System */
  --radius: 18px;
  --b4: 4px;
  
  /* Headings System */
  --rdn-h-blue: #0277BD; 
  --rdn-h-text: #0A0A0A; 
  --rdn-h-muted: #555555;
  
  /* Backgrounds */
  --rdn-bg-a: #FFFFFF; 
  --rdn-bg-b: #F1F5F9; 
}

html { scroll-behavior: smooth !important; scroll-padding-top: 10px; }
body { margin:0; background:var(--bg); font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif; color:var(--ink); -webkit-font-smoothing: antialiased; line-height: 1.5; }
*, *::before, *::after { box-sizing: border-box; }

#rdn-mobile { width: 100%; margin: 0 auto; padding: 0; overflow-x: hidden; }

/* 2. LAYOUT & HEADINGS
   ============================================================ */
.rdn-section-heading {
  width: 100%; max-width: 780px; margin-inline: auto; margin-bottom: 3.5rem; 
  text-align: center;
}
.rdn-section-heading--left { text-align: left; margin-left: 0; align-items: flex-start; }
.rdn-section-heading--center { text-align: center; margin-inline: auto; }

.rdn-heading-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; margin: 0 0 16px;
  border-radius: 6px; background: #e0f2fe; color: var(--rdn-h-blue);
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
}
.rdn-heading-eyebrow-pill::before { content: ""; width: 6px; height: 6px; background: var(--rdn-h-blue); border-radius: 50%; }

.rdn-heading-title {
  margin: 0; font-size: clamp(28px, 4vw, 46px); line-height: 1.1; 
  font-weight: 900; letter-spacing: -0.02em; color: var(--rdn-h-text);
}
.rdn-heading-title em { font-style: normal; color: var(--rdn-h-blue); }

.rdn-heading-meta-row {
  display: flex; align-items: center; gap: 10px; margin-top: 16px; margin-bottom: 16px;
  color: var(--rdn-h-muted); font-size: 13px; justify-content: center; 
}
.rdn-section-heading--left .rdn-heading-meta-row { justify-content: flex-start; }
.rdn-heading-line { flex: 0 0 40px; height: 2px; background: var(--rdn-h-blue); opacity: 0.3; }
.rdn-heading-meta-text { font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 11px; }

.rdn-heading-sub {
  margin: 0; font-size: 17px; line-height: 1.6; color: var(--rdn-h-muted); max-width: 640px; margin-inline: auto;
}
.rdn-section-heading--left .rdn-heading-sub { margin-inline: 0; }

#rdn-mobile > main > section { padding: 60px 20px; width: 100%; }
#rdn-mobile > main > section:nth-of-type(odd) { background-color: var(--rdn-bg-a); }
#rdn-mobile > main > section:nth-of-type(even) { background-color: var(--rdn-bg-b); }

/* Visibilidad */
.only-mobile { display: block; } .only-desktop { display: none !important; }
@media (min-width: 992px) {
  .only-mobile { display: none !important; } .only-desktop { display: block !important; }
  #rdn-mobile > main > section > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
}

/* 3. COMPONENTES GENERALES
   ============================================================ */
.btn-pill { 
  display:inline-flex; align-items:center; gap:10px; padding:12px 24px; 
  border:2px solid var(--brand); border-radius:99px; 
  background:#fff; color:var(--brand); 
  font-weight:700; font-size:15px; text-decoration:none; 
  transition: all .2s ease; cursor: pointer;
}
.btn-pill:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.cta-shadow { box-shadow: 0 6px 16px rgba(237,91,85,.25); background: var(--rdn-red); border-color: var(--rdn-red); color: #fff; }
.cta-shadow:hover { background: var(--rdn-red-dark); border-color: var(--rdn-red-dark); color:#fff; }
.cta-shadow-wa { box-shadow: 0 6px 16px rgba(37,211,102,.25); background: var(--rdn-wa); border-color: var(--rdn-wa); color: #fff; }
.cta-shadow-wa:hover { background: var(--rdn-wa-dark); border-color: var(--rdn-wa-dark); color:#fff; }

/* MODALES */
.trust-modal-overlay, .action-sheet-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  z-index: 9999; opacity: 0; visibility: hidden; transition: 0.3s ease;
}
.trust-modal-overlay.show, .action-sheet-overlay.show { opacity: 1; visibility: visible; }
.trust-modal-overlay { display: grid; place-items: center; padding: 20px; }
.trust-modal-panel {
  background: #fff; border-radius: 12px; padding: 30px; width: 100%; max-width: 480px;
  transform: translateY(20px); transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2); position: relative;
}
.trust-modal-overlay.show .trust-modal-panel { transform: translateY(0); }
.trust-modal-close { position: absolute; top: 15px; right: 15px; border: none; background: #f1f5f9; border-radius: 50%; width: 32px; height: 32px; cursor: pointer; display:grid; place-items:center; color: #64748b; }
.action-sheet-panel {
  position: fixed; bottom: 0; left: 0; right: 0; background: #fff;
  border-radius: 20px 20px 0 0; padding: 24px; transform: translateY(100%);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.action-sheet-overlay.show .action-sheet-panel { transform: translateY(0); }
.action-sheet-close { top: 12px; right: 12px; }


/* ============================================================
   RDN MOBILE — HOJA DE ESTILOS MAESTRA (V5.6 - GARANTIA PRO)
   ============================================================ */

/* 1. VARIABLES & RESET
   ============================================================ */
:root {
  /* Brand Colors */
  --brand: #03A9F4;
  --violet: #9C27B0;
  --ink: #0f172a; 
  --muted: #475569; /* Un poco más oscuro para mejor lectura */
  --bg: #f8fafc; 
  
  /* Accent Colors */
  --orange: #f59e0b;
  --green: #10b981;
  --red: #ef4444;

  /* WhatsApp & Actions */
  --wa: #25D366;
  --wa-bg: #e5ddd5;
  --wa-green: #dcf8c6;
  --wa-send-btn: #00a884;
  --rdn-red: #ED5B55; 
  --rdn-red-dark: #d32f2f; 
  --rdn-wa: #25D366;
  --rdn-wa-dark: #1da851; 

  /* UI System */
  --radius: 18px;
  --b4: 4px;
  
  /* Headings System */
  --rdn-h-blue: #0277BD; 
  --rdn-h-text: #0A0A0A; 
  --rdn-h-muted: #555555;
  
  /* Backgrounds */
  --rdn-bg-a: #FFFFFF; 
  --rdn-bg-b: #F1F5F9; 
}

html { scroll-behavior: smooth !important; scroll-padding-top: 10px; }
body { margin:0; background:var(--bg); font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif; color:var(--ink); -webkit-font-smoothing: antialiased; line-height: 1.5; }
*, *::before, *::after { box-sizing: border-box; }

#rdn-mobile { width: 100%; margin: 0 auto; padding: 0; overflow-x: hidden; }

/* 2. LAYOUT & HEADINGS
   ============================================================ */
.rdn-section-heading {
  width: 100%; max-width: 780px; margin-inline: auto; margin-bottom: 3.5rem; 
  text-align: center;
}
.rdn-section-heading--left { text-align: left; margin-left: 0; align-items: flex-start; }
.rdn-section-heading--center { text-align: center; margin-inline: auto; }

.rdn-heading-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; margin: 0 0 16px;
  border-radius: 6px; background: #e0f2fe; color: var(--rdn-h-blue);
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
}
.rdn-heading-eyebrow-pill::before { content: ""; width: 6px; height: 6px; background: var(--rdn-h-blue); border-radius: 50%; }

.rdn-heading-title {
  margin: 0; font-size: clamp(28px, 4vw, 46px); line-height: 1.1; 
  font-weight: 900; letter-spacing: -0.02em; color: var(--rdn-h-text);
}
.rdn-heading-title em { font-style: normal; color: var(--rdn-h-blue); }

.rdn-heading-meta-row {
  display: flex; align-items: center; gap: 10px; margin-top: 16px; margin-bottom: 16px;
  color: var(--rdn-h-muted); font-size: 13px; justify-content: center; 
}
.rdn-section-heading--left .rdn-heading-meta-row { justify-content: flex-start; }
.rdn-heading-line { flex: 0 0 40px; height: 2px; background: var(--rdn-h-blue); opacity: 0.3; }
.rdn-heading-meta-text { font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 11px; }

.rdn-heading-sub {
  margin: 0; font-size: 17px; line-height: 1.6; color: var(--rdn-h-muted); max-width: 640px; margin-inline: auto;
}
.rdn-section-heading--left .rdn-heading-sub { margin-inline: 0; }

#rdn-mobile > main > section { padding: 60px 20px; width: 100%; }
#rdn-mobile > main > section:nth-of-type(odd) { background-color: var(--rdn-bg-a); }
#rdn-mobile > main > section:nth-of-type(even) { background-color: var(--rdn-bg-b); }

/* Visibilidad */
.only-mobile { display: block; } .only-desktop { display: none !important; }
@media (min-width: 992px) {
  .only-mobile { display: none !important; } .only-desktop { display: block !important; }
  #rdn-mobile > main > section > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
}

/* 3. COMPONENTES GENERALES
   ============================================================ */
.btn-pill { 
  display:inline-flex; align-items:center; gap:10px; padding:12px 24px; 
  border:2px solid var(--brand); border-radius:99px; 
  background:#fff; color:var(--brand); 
  font-weight:700; font-size:15px; text-decoration:none; 
  transition: all .2s ease; cursor: pointer;
}
.btn-pill:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.cta-shadow { box-shadow: 0 6px 16px rgba(237,91,85,.25); background: var(--rdn-red); border-color: var(--rdn-red); color: #fff; }
.cta-shadow:hover { background: var(--rdn-red-dark); border-color: var(--rdn-red-dark); color:#fff; }
.cta-shadow-wa { box-shadow: 0 6px 16px rgba(37,211,102,.25); background: var(--rdn-wa); border-color: var(--rdn-wa); color: #fff; }
.cta-shadow-wa:hover { background: var(--rdn-wa-dark); border-color: var(--rdn-wa-dark); color:#fff; }

/* MODALES */
.trust-modal-overlay, .action-sheet-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  z-index: 9999; opacity: 0; visibility: hidden; transition: 0.3s ease;
}
.trust-modal-overlay.show, .action-sheet-overlay.show { opacity: 1; visibility: visible; }
.trust-modal-overlay { display: grid; place-items: center; padding: 20px; }
.trust-modal-panel {
  background: #fff; border-radius: 12px; padding: 30px; width: 100%; max-width: 480px;
  transform: translateY(20px); transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2); position: relative;
}
.trust-modal-overlay.show .trust-modal-panel { transform: translateY(0); }
.trust-modal-close { position: absolute; top: 15px; right: 15px; border: none; background: #f1f5f9; border-radius: 50%; width: 32px; height: 32px; cursor: pointer; display:grid; place-items:center; color: #64748b; }
.action-sheet-panel {
  position: fixed; bottom: 0; left: 0; right: 0; background: #fff;
  border-radius: 20px 20px 0 0; padding: 24px; transform: translateY(100%);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.action-sheet-overlay.show .action-sheet-panel { transform: translateY(0); }
.action-sheet-close { top: 12px; right: 12px; }


/* ============================================================
   RDN MOBILE — HOJA DE ESTILOS MAESTRA (V5.7 - FINAL)
   ============================================================ */

/* 1. VARIABLES & RESET
   ============================================================ */
:root {
  /* Brand Colors */
  --brand: #03A9F4;
  --violet: #9C27B0;
  --ink: #0f172a; 
  --muted: #475569; 
  --bg: #f8fafc; 
  
  /* Accent Colors */
  --orange: #f59e0b;
  --green: #10b981;
  --red: #ef4444;

  /* WhatsApp & Actions */
  --wa: #25D366;
  --wa-bg: #e5ddd5;
  --wa-green: #dcf8c6;
  --wa-send-btn: #00a884;
  --rdn-red: #ED5B55; 
  --rdn-red-dark: #d32f2f; 
  --rdn-wa: #25D366;
  --rdn-wa-dark: #1da851; 

  /* UI System */
  --radius: 18px;
  --b4: 4px;
  
  /* Headings System */
  --rdn-h-blue: #0277BD; 
  --rdn-h-text: #0A0A0A; 
  --rdn-h-muted: #555555;
  
  /* Backgrounds */
  --rdn-bg-a: #FFFFFF; 
  --rdn-bg-b: #F1F5F9; 
}

html { scroll-behavior: smooth !important; scroll-padding-top: 10px; }
body { margin:0; background:var(--bg); font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif; color:var(--ink); -webkit-font-smoothing: antialiased; line-height: 1.5; }
*, *::before, *::after { box-sizing: border-box; }

#rdn-mobile { width: 100%; margin: 0 auto; padding: 0; overflow-x: hidden; }

/* 2. LAYOUT & HEADINGS
   ============================================================ */
.rdn-section-heading {
  width: 100%; max-width: 780px; margin-inline: auto; margin-bottom: 3.5rem; 
  text-align: center;
}
.rdn-section-heading--left { text-align: left; margin-left: 0; align-items: flex-start; }
.rdn-section-heading--center { text-align: center; margin-inline: auto; }

.rdn-heading-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; margin: 0 0 16px;
  border-radius: 6px; background: #e0f2fe; color: var(--rdn-h-blue);
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
}
.rdn-heading-eyebrow-pill::before { content: ""; width: 6px; height: 6px; background: var(--rdn-h-blue); border-radius: 50%; }

.rdn-heading-title {
  margin: 0; font-size: clamp(28px, 4vw, 46px); line-height: 1.1; 
  font-weight: 900; letter-spacing: -0.02em; color: var(--rdn-h-text);
}
.rdn-heading-title em { font-style: normal; color: var(--rdn-h-blue); }

.rdn-heading-meta-row {
  display: flex; align-items: center; gap: 10px; margin-top: 16px; margin-bottom: 16px;
  color: var(--rdn-h-muted); font-size: 13px; justify-content: center; 
}
.rdn-section-heading--left .rdn-heading-meta-row { justify-content: flex-start; }
.rdn-heading-line { flex: 0 0 40px; height: 2px; background: var(--rdn-h-blue); opacity: 0.3; }
.rdn-heading-meta-text { font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 11px; }

.rdn-heading-sub {
  margin: 0; font-size: 17px; line-height: 1.6; color: var(--rdn-h-muted); max-width: 640px; margin-inline: auto;
}
.rdn-section-heading--left .rdn-heading-sub { margin-inline: 0; }

#rdn-mobile > main > section { padding: 60px 20px; width: 100%; }
#rdn-mobile > main > section:nth-of-type(odd) { background-color: var(--rdn-bg-a); }
#rdn-mobile > main > section:nth-of-type(even) { background-color: var(--rdn-bg-b); }

/* Visibilidad */
.only-mobile { display: block; } .only-desktop { display: none !important; }
@media (min-width: 992px) {
  .only-mobile { display: none !important; } .only-desktop { display: block !important; }
  #rdn-mobile > main > section > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
}

/* 3. COMPONENTES GENERALES
   ============================================================ */
.btn-pill { 
  display:inline-flex; align-items:center; gap:10px; padding:12px 24px; 
  border:2px solid var(--brand); border-radius:999px; 
  background:#fff; color:var(--brand); 
  font-weight:700; font-size:15px; text-decoration:none; 
  transition: all .2s ease; cursor: pointer;
}
.btn-pill:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.cta-shadow { box-shadow: 0 6px 16px rgba(237,91,85,.25); background: var(--rdn-red); border-color: var(--rdn-red); color: #fff; }
.cta-shadow:hover { background: var(--rdn-red-dark); border-color: var(--rdn-red-dark); color:#fff; }
.cta-shadow-wa { box-shadow: 0 6px 16px rgba(37,211,102,.25); background: var(--rdn-wa); border-color: var(--rdn-wa); color: #fff; }
.cta-shadow-wa:hover { background: var(--rdn-wa-dark); border-color: var(--rdn-wa-dark); color:#fff; }

/* MODALES */
.trust-modal-overlay, .action-sheet-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  z-index: 9999; opacity: 0; visibility: hidden; transition: 0.3s ease;
}
.trust-modal-overlay.show, .action-sheet-overlay.show { opacity: 1; visibility: visible; }
.trust-modal-overlay { display: grid; place-items: center; padding: 20px; }
.trust-modal-panel {
  background: #fff; border-radius: 12px; padding: 30px; width: 100%; max-width: 480px;
  transform: translateY(20px); transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2); position: relative;
}
.trust-modal-overlay.show .trust-modal-panel { transform: translateY(0); }
.trust-modal-close { position: absolute; top: 15px; right: 15px; border: none; background: #f1f5f9; border-radius: 50%; width: 32px; height: 32px; cursor: pointer; display:grid; place-items:center; color: #64748b; }
.action-sheet-panel {
  position: fixed; bottom: 0; left: 0; right: 0; background: #fff;
  border-radius: 20px 20px 0 0; padding: 24px; transform: translateY(100%);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.action-sheet-overlay.show .action-sheet-panel { transform: translateY(0); }
.action-sheet-close { top: 12px; right: 12px; }


/* ============================================================
   4. PÁGINA GARANTÍA - ESTILOS ESPECÍFICOS
   ============================================================ */

/* HERO CLEAN */
.hero-clean-bg {
  background-color: #fff;
  background-image: 
    linear-gradient(#f1f5f9 1px, transparent 1px),
    linear-gradient(90deg, #f1f5f9 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center top;
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}
.hero-badge-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.trust-pill {
  display: inline-flex; align-items: center; background: #fff; border: 1px solid #e2e8f0;
  padding: 6px 14px; border-radius: 99px; font-size: 12px; font-weight: 700; color: var(--muted);
  box-shadow: 0 2px 5px rgba(0,0,0,0.03); text-transform: uppercase; letter-spacing: 0.5px;
}
.hero-title-big { font-size: 36px; line-height: 1.1; font-weight: 900; color: var(--ink); margin: 0 0 20px 0; letter-spacing: -1px; }
.hero-title-big em { color: var(--brand); font-style: normal; position: relative; display: inline-block; }
.hero-title-big em::after { content: ""; position: absolute; bottom: 4px; left: 0; right: 0; height: 8px; background: rgba(3, 169, 244, 0.15); z-index: -1; border-radius: 4px; }
.hero-sub-text { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 680px; margin: 0 auto; }

@media (min-width: 992px) {
  .hero-clean-bg { padding: 120px 20px 80px; }
  .hero-title-big { font-size: 56px; margin-bottom: 24px; }
  .hero-sub-text { font-size: 19px; }
}

/* SECCIÓN 1: CERTIFICADO */
.section-cert-bg { background-color: #f1f5f9; }
.cert-layout-wrap { display: flex; flex-direction: column; gap: 60px; width: 100%; max-width: 1100px; margin: 0 auto; }

/* El Documento */
.rdn-legal-doc {
  background-color: #fff; width: 100%; max-width: 460px; margin: 0 auto;
  border: 1px solid #cbd5e1; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  padding: 40px; position: relative; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #334155; border-top: 5px solid var(--brand);
}
.doc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.doc-logo { height: 26px; display: block; filter: grayscale(100%); margin-bottom: 4px; }
.doc-subtitle { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #94a3b8; }
.doc-meta { text-align: right; font-size: 10px; font-family: 'Courier New', monospace; color: #475569; line-height: 1.4; }
.doc-divider { border: 0; border-top: 2px solid #0f172a; margin: 0 0 24px 0; opacity: 0.1; }
.doc-body { display: flex; flex-direction: column; gap: 16px; }
.doc-block label { display: block; font-size: 9px; font-weight: 800; text-transform: uppercase; color: #94a3b8; letter-spacing: 0.5px; margin-bottom: 3px; }
.doc-data { font-size: 14px; font-weight: 500; color: #0f172a; padding-bottom: 4px; border-bottom: 1px dotted #cbd5e1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.doc-data.mono { font-family: 'Courier New', monospace; letter-spacing: 0px; font-weight: 600; font-size: 15px; }
.doc-data.bold { font-weight: 700; font-size: 14px; color: #000; }
.doc-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 15px; }
.highlight-box { background: #f8fafc; border: 1px solid #e2e8f0; padding: 12px; border-radius: 2px; }
.highlight-box .doc-data { border-bottom: none; padding-bottom: 6px; }
.doc-list-micro { margin: 0; padding: 0; list-style: none; border-top: 1px solid #e2e8f0; padding-top: 6px; }
.doc-list-micro li { font-size: 11px; color: #475569; margin-bottom: 2px; display: flex; align-items: center; gap: 6px; }
.doc-list-micro li::before { content: "•"; color: var(--brand); font-weight: bold; }
.doc-legal-text { font-size: 9px; line-height: 1.4; color: #94a3b8; text-align: justify; margin: 0; font-style: italic; }
.doc-footer { margin-top: 30px; padding-top: 20px; display: flex; justify-content: space-between; align-items: flex-end; }
.doc-sign { text-align: center; }
.sign-line { width: 100px; height: 1px; background: #0f172a; margin-bottom: 4px; opacity: 0.3; }
.doc-sign span { font-size: 9px; text-transform: uppercase; color: #94a3b8; letter-spacing: 1px; }
.doc-stamp { border: 2px solid #0f172a; color: #0f172a; width: 90px; height: 36px; font-size: 8px; font-weight: 700; text-transform: uppercase; text-align: center; display: flex; flex-direction: column; justify-content: center; border-radius: 4px; opacity: 0.7; transform: rotate(-2deg); }
.doc-stamp strong { font-size: 11px; display: block; letter-spacing: 1px; }

/* Explicación Derecha */
.cert-col-info { display: flex; flex-direction: column; justify-content: flex-start; }
.cert-explanation-list { display: flex; flex-direction: column; gap: 30px; }
.exp-item { position: relative; padding-left: 20px; border-left: 3px solid #e2e8f0; transition: border-color 0.3s; }
.exp-item:hover { border-left-color: var(--brand); }
.exp-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.exp-bullet { background: var(--ink); color: #fff; width: 22px; height: 22px; border-radius: 50%; font-size: 12px; font-weight: 700; display: grid; place-items: center; flex-shrink: 0; }
.exp-item h4 { margin: 0; font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.exp-item p { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.6; }

@media (min-width: 992px) {
  .section-cert-bg { padding: 80px 0; }
  .cert-layout-wrap { display: grid; grid-template-columns: 45% 50%; gap: 5%; align-items: center; }
  .rdn-legal-doc { margin: 0; width: 100%; max-width: 100%; padding: 50px 40px; box-shadow: 0 30px 60px -15px rgba(0,0,0,0.18); }
  .doc-body { gap: 24px; }
  .cert-col-info { padding-top: 0; }
}

/* =========================================
   SECCIÓN 2: COBERTURA (SEMÁFORO)
   ========================================= */

#section-coverage {
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 80px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.cov-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cov-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.cov-icon { font-size: 20px; }
.cov-header h3 { margin: 0; font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }

.cov-body { padding: 24px; flex-grow: 1; }
.cov-lead { margin: 0 0 16px; font-size: 14px; font-weight: 700; color: var(--ink); opacity: 0.8; }

.cov-list { margin: 0; padding: 0; list-style: none; }
.cov-list li {
  font-size: 14px; color: var(--muted); margin-bottom: 12px; line-height: 1.5;
  position: relative; padding-left: 14px;
}
.cov-list li::before { content: "•"; position: absolute; left: 0; color: #cbd5e1; font-weight: bold; }
.cov-list li strong { color: var(--ink); font-weight: 600; }

/* Colores Semáforo (Mobile Base: 6px) */
.type-yes { border-top: 6px solid var(--green); }
.type-yes .cov-header { background-color: #ecfdf5; color: var(--green); }
.type-yes .cov-list li::before { color: var(--green); }

.type-no { border-top: 6px solid var(--red); }
.type-no .cov-header { background-color: #fef2f2; color: var(--red); }
.type-no .cov-list li::before { color: var(--red); }

.type-warn { border-top: 6px solid var(--orange); }
.type-warn .cov-header { background-color: #fffbeb; color: var(--orange); }
.type-warn .cov-list li::before { color: var(--orange); }


/* RESPONSIVE DESKTOP */
@media (min-width: 992px) {
  .coverage-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
    width: 100%; max-width: 100%;
  }

  /* CAMBIO: Forzar borde superior a 4px en Desktop */
  .type-yes, .type-no, .type-warn {
    border-top-width: 4px;
  }

  .cov-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
}

/* =========================================
   SECCIÓN 3: PROCESO (V2 - LISTA/TIMELINE)
   ========================================= */

#section-process {
  background-color: var(--rdn-bg-b);
  padding-top: 60px;
  padding-bottom: 80px;
}

/* --- MOBILE FIRST: LISTA VERTICAL (IZQUIERDA) --- */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.step-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center; /* Alineado verticalmente */
  gap: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.2s ease;
}

/* Icono Circular + Numero */
.step-visual {
  position: relative;
  width: 60px; height: 60px;
  flex-shrink: 0;
}

.step-icon {
  width: 100%; height: 100%;
  background: #f0f9ff;
  color: var(--brand);
  border: 2px solid #e0f2fe;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 24px;
  transition: transform 0.2s ease;
}

.step-number {
  position: absolute;
  top: -5px; right: -5px;
  width: 24px; height: 24px;
  background: var(--ink);
  color: #fff;
  font-size: 12px; font-weight: 700;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 2px solid #fff;
}

/* Texto en Mobile: Izquierda */
.step-info {
  text-align: left; 
}
.step-info h3 { margin: 0 0 6px; font-size: 16px; font-weight: 800; color: var(--ink); }
.step-info p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }


/* --- DESKTOP: TIMELINE HORIZONTAL (CENTRADO) --- */
@media (min-width: 992px) {

  .steps-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 0;
  }

  .step-card {
    flex-direction: column; /* Icono arriba, texto abajo */
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 15px;
    flex: 1;
    position: relative;
    z-index: 2;
  }

  /* CORRECCIÓN: Forzamos alineación central en Desktop */
  .step-info {
    text-align: center; 
    width: 100%;
  }

  .step-visual {
    width: 80px; height: 80px;
    margin-bottom: 20px;
  }

  .step-icon {
    font-size: 32px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--brand);
  }

  .step-card:hover .step-icon {
    transform: scale(1.1);
    background: var(--brand);
    color: #fff;
  }

  .step-info h3 { font-size: 18px; margin-bottom: 10px; }
  
  /* Ajuste de ancho de lectura para que quede prolijo */
  .step-info p { 
    font-size: 15px; 
    max-width: 240px; 
    margin: 0 auto; 
  }

  .step-connector {
    flex-grow: 1;
    height: 4px;
    background: #e2e8f0;
    margin-top: 40px;
    position: relative;
    z-index: 1;
  }
}

/* SECCIÓN 4: CTA FINAL */
#section-cta { background-color: var(--rdn-bg-a); padding-top: 60px; padding-bottom: 80px; }
.cta-support-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08); display: flex; flex-direction: column; }
.cta-col-check { padding: 30px; background-color: #f8fafc; border-bottom: 1px solid #e2e8f0; }
.cta-col-check h3 { margin: 0 0 20px; font-size: 16px; font-weight: 800; color: var(--ink); text-transform: uppercase; letter-spacing: 0.5px; }
.checklist-pre { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 16px; }
.checklist-pre li { display: flex; gap: 14px; align-items: flex-start; }
.checklist-pre span { font-size: 20px; line-height: 1; flex-shrink: 0; }
.checklist-pre p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }
.checklist-pre strong { color: var(--ink); display: block; margin-bottom: 2px; }
.cta-col-action { padding: 40px 30px; text-align: center; background: #fff; display: flex; align-items: center; justify-content: center; }
.action-box { max-width: 400px; margin: 0 auto; }
.ab-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.cta-col-action h2 { margin: 0 0 10px; font-size: 24px; font-weight: 900; color: var(--ink); letter-spacing: -0.5px; }
.cta-col-action p { margin: 0 0 24px; font-size: 15px; color: var(--muted); }
.btn-wide { width: 100%; justify-content: center; padding: 16px 24px; font-size: 16px; }
.ab-legal { display: block; margin-top: 16px; font-size: 12px; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

@media (min-width: 992px) {
  .cta-support-card { flex-direction: row; align-items: stretch; max-width: 1000px; margin: 0 auto; }
  .cta-col-check { flex: 1; padding: 50px; border-bottom: none; border-right: 1px solid #e2e8f0; display: flex; flex-direction: column; justify-content: center; }
  .cta-col-action { flex: 1.2; padding: 50px; }
  .cta-col-action h2 { font-size: 28px; }
}

/* OTROS (Ticker) */
.brand-ticker { width: 100%; overflow: hidden; white-space: nowrap; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.brand-track { display: inline-block; animation: ticker 40s linear infinite; }
.brand-content { display: inline-flex; align-items: center; color: #94a3b8; font-size: 14px; }
.sep { margin: 0 15px; opacity: 0.4; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   RDN MOBILE — HOJA DE ESTILOS MAESTRA (V7.0 - PRIVACIDAD FINAL)
   ============================================================ */

/* 1. VARIABLES & RESET
   ============================================================ */
:root {
  /* Brand Colors */
  --brand: #03A9F4;
  --violet: #9C27B0;
  --ink: #0f172a; 
  --muted: #475569; 
  --bg: #f8fafc; 
  
  /* Accent Colors */
  --orange: #f59e0b;
  --green: #10b981;
  --red: #ef4444;

  /* WhatsApp & Actions */
  --wa: #25D366;
  --wa-bg: #e5ddd5;
  --wa-green: #dcf8c6;
  --wa-send-btn: #00a884;
  --rdn-red: #ED5B55; 
  --rdn-red-dark: #d32f2f; 
  --rdn-wa: #25D366;
  --rdn-wa-dark: #1da851; 

  /* UI System */
  --radius: 18px;
  --b4: 4px;
  
  /* Headings System */
  --rdn-h-blue: #0277BD; 
  --rdn-h-text: #0A0A0A; 
  --rdn-h-muted: #555555;
  
  /* Backgrounds */
  --rdn-bg-a: #FFFFFF; 
  --rdn-bg-b: #F1F5F9; 
}

html { scroll-behavior: smooth !important; scroll-padding-top: 10px; }
body { margin:0; background:var(--bg); font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif; color:var(--ink); -webkit-font-smoothing: antialiased; line-height: 1.5; }
*, *::before, *::after { box-sizing: border-box; }

#rdn-mobile { width: 100%; margin: 0 auto; padding: 0; overflow-x: hidden; }

/* 2. LAYOUT & HEADINGS
   ============================================================ */
.rdn-section-heading {
  width: 100%; max-width: 780px; margin-inline: auto; margin-bottom: 3.5rem; 
  text-align: center;
}
.rdn-section-heading--left { text-align: left; margin-left: 0; align-items: flex-start; }
.rdn-section-heading--center { text-align: center; margin-inline: auto; }

.rdn-heading-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; margin: 0 0 16px;
  border-radius: 6px; background: #e0f2fe; color: var(--rdn-h-blue);
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
}
.rdn-heading-eyebrow-pill::before { content: ""; width: 6px; height: 6px; background: var(--rdn-h-blue); border-radius: 50%; }

.rdn-heading-title {
  margin: 0; font-size: clamp(28px, 4vw, 46px); line-height: 1.1; 
  font-weight: 900; letter-spacing: -0.02em; color: var(--rdn-h-text);
}
.rdn-heading-title em { font-style: normal; color: var(--rdn-h-blue); }

.rdn-heading-meta-row {
  display: flex; align-items: center; gap: 10px; margin-top: 16px; margin-bottom: 16px;
  color: var(--rdn-h-muted); font-size: 13px; justify-content: center; 
}
.rdn-section-heading--left .rdn-heading-meta-row { justify-content: flex-start; }
.rdn-heading-line { flex: 0 0 40px; height: 2px; background: var(--rdn-h-blue); opacity: 0.3; }
.rdn-heading-meta-text { font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 11px; }

.rdn-heading-sub {
  margin: 0; font-size: 17px; line-height: 1.6; color: var(--rdn-h-muted); max-width: 640px; margin-inline: auto;
}
.rdn-section-heading--left .rdn-heading-sub { margin-inline: 0; }

/* Espaciado de Secciones */
#rdn-mobile > main > section { padding: 60px 20px; width: 100%; }
#rdn-mobile > main > section:nth-of-type(odd) { background-color: var(--rdn-bg-a); }
#rdn-mobile > main > section:nth-of-type(even) { background-color: var(--rdn-bg-b); }

/* Visibilidad */
.only-mobile { display: block; } .only-desktop { display: none !important; }
@media (min-width: 992px) {
  .only-mobile { display: none !important; } .only-desktop { display: block !important; }
  #rdn-mobile > main > section > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
}

/* 3. COMPONENTES GENERALES (Botones)
   ============================================================ */
.btn-pill { 
  display:inline-flex; align-items:center; gap:10px; padding:12px 24px; 
  border:2px solid var(--brand); border-radius:999px; 
  background:#fff; color:var(--brand); 
  font-weight:700; font-size:15px; text-decoration:none; 
  transition: all .2s ease; cursor: pointer;
}
.btn-pill:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.cta-shadow { box-shadow: 0 6px 16px rgba(237,91,85,.25); background: var(--rdn-red); border-color: var(--rdn-red); color: #fff; }
.cta-shadow:hover { background: var(--rdn-red-dark); border-color: var(--rdn-red-dark); color:#fff; }
.cta-shadow-wa { box-shadow: 0 6px 16px rgba(37,211,102,.25); background: var(--rdn-wa); border-color: var(--rdn-wa); color: #fff; }
.cta-shadow-wa:hover { background: var(--rdn-wa-dark); border-color: var(--rdn-wa-dark); color:#fff; }


/* ============================================================
   4. PÁGINA PRIVACIDAD: ESTILOS ESPECÍFICOS
   ============================================================ */

/* HERO CLEAN (Reutilizable) */
.hero-clean-bg {
  background-color: #fff;
  background-image: 
    linear-gradient(#f1f5f9 1px, transparent 1px),
    linear-gradient(90deg, #f1f5f9 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center top;
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}
.hero-badge-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.trust-pill {
  display: inline-flex; align-items: center; background: #fff; border: 1px solid #e2e8f0;
  padding: 6px 14px; border-radius: 99px; font-size: 12px; font-weight: 700; color: var(--muted);
  box-shadow: 0 2px 5px rgba(0,0,0,0.03); text-transform: uppercase; letter-spacing: 0.5px;
}
.hero-title-big { font-size: 36px; line-height: 1.1; font-weight: 900; color: var(--ink); margin: 0 0 20px 0; letter-spacing: -1px; }
.hero-title-big em { color: var(--brand); font-style: normal; position: relative; display: inline-block; }
.hero-title-big em::after { content: ""; position: absolute; bottom: 4px; left: 0; right: 0; height: 8px; background: rgba(3, 169, 244, 0.15); z-index: -1; border-radius: 4px; }
.hero-sub-text { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 680px; margin: 0 auto; }

@media (min-width: 992px) {
  .hero-clean-bg { padding: 120px 20px 80px; }
  .hero-title-big { font-size: 56px; margin-bottom: 24px; }
  .hero-sub-text { font-size: 19px; }
}

/* SECCIÓN 2: PROTOCOLO (GRID TÉCNICO) */
#section-protocol { background-color: #fff; padding-top: 60px; padding-bottom: 80px; }
.protocol-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
.proto-card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 24px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.proto-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.06); border-color: var(--brand); }
.proto-icon {
  width: 56px; height: 56px; background: #f1f5f9; color: var(--ink);
  font-family: 'Courier New', monospace; font-weight: 700; font-size: 14px;
  display: grid; place-items: center; border-radius: 8px; border: 1px solid #cbd5e1;
  flex-shrink: 0; letter-spacing: -0.5px;
}
.proto-content h3 { margin: 0 0 8px; font-size: 18px; font-weight: 800; color: var(--ink); }
.proto-content p { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.6; }

@media (min-width: 992px) {
  .protocol-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .proto-card { flex-direction: column; align-items: flex-start; padding: 30px; }
  .proto-icon { margin-bottom: 16px; width: 64px; height: 64px; font-size: 16px; }
}

/* SECCIÓN 3: CADENA DE CUSTODIA */
.section-custody-bg { background-color: var(--rdn-bg-b); padding: 60px 20px; }
.custody-grid { display: flex; flex-direction: column; gap: 40px; }
.badge-security {
  display: inline-block; background: #000; color: #fff; font-size: 10px; font-weight: 800;
  padding: 4px 10px; border-radius: 4px; letter-spacing: 1px; margin-bottom: 16px;
}
.custody-visual { display: flex; flex-direction: column; gap: 16px; }
.custody-card {
  background: #fff; border-radius: 12px; padding: 20px; border: 1px solid #e2e8f0; position: relative;
}
.cc-header {
  font-size: 12px; font-weight: 800; color: var(--muted); text-transform: uppercase;
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.cc-flow { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--ink); flex-wrap: wrap; }
.arrow { color: #cbd5e1; }
.risk-arrow { color: var(--red); font-weight: 800; }
.rdn-badge { background: var(--brand); color: #fff; padding: 4px 8px; border-radius: 6px; font-size: 12px; }
.cc-warning {
  margin: 12px 0 0; font-size: 12px; color: var(--red); background: #fef2f2;
  padding: 8px; border-radius: 6px; border: 1px solid #fee2e2; font-weight: 600;
}
.cc-success {
  margin: 12px 0 0; font-size: 12px; color: var(--green); background: #ecfdf5;
  padding: 8px; border-radius: 6px; border: 1px solid #d1fae5; font-weight: 600;
}
.custody-card.risk { border-left: 4px solid var(--red); opacity: 0.8; }
.custody-card.safe { border-left: 4px solid var(--green); box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: scale(1.02); z-index: 2; }

@media (min-width: 992px) {
  .custody-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto; }
  .custody-card { padding: 30px; }
  .cc-flow { font-size: 16px; }
}

/* SECCIÓN 4: MARCO LEGAL (ICEBERG) */
.section-legal-bg { background-color: #fff; padding-top: 60px; padding-bottom: 80px; }
.legal-clauses-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.legal-clause { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; padding: 20px; }
.clause-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.clause-num { font-family: 'Courier New', monospace; font-weight: 700; color: #cbd5e1; font-size: 24px; line-height: 1; }
.clause-head h3 { margin: 0; font-size: 16px; font-weight: 800; color: var(--ink); text-transform: uppercase; letter-spacing: 0.5px; }
.clause-text-mb { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }

@media (min-width: 992px) {
  .legal-clauses-grid { grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto; }
  .legal-clause { background: transparent; border: none; border-top: 4px solid #e2e8f0; border-radius: 0; padding: 30px 0 0 0; }
  .clause-head { margin-bottom: 20px; }
  .clause-num { font-size: 32px; color: var(--brand); opacity: 0.3; }
  .clause-head h3 { font-size: 20px; }
  .clause-text-dt p { font-family: 'Georgia', serif; font-size: 15px; color: #334155; line-height: 1.8; margin-bottom: 16px; text-align: justify; }
  .clause-text-dt strong { color: #0f172a; font-weight: 700; }
}

/* ============================================================
   PÁGINA: TÉRMINOS Y CONDICIONES (Estilos Específicos)
   ============================================================ */

/* 1. HERO INSTITUCIONAL (Limpio)
   ------------------------------------------------------------ */
.hero-clean-bg {
  background-color: #fff;
  background-image: 
    linear-gradient(#f1f5f9 1px, transparent 1px),
    linear-gradient(90deg, #f1f5f9 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center top;
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.hero-badge-row { 
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; 
}

.trust-pill {
  display: inline-flex; align-items: center; 
  background: #fff; border: 1px solid #e2e8f0;
  padding: 6px 14px; border-radius: 99px; 
  font-size: 11px; font-weight: 800; color: var(--muted);
  box-shadow: 0 2px 5px rgba(0,0,0,0.03); 
  text-transform: uppercase; letter-spacing: 0.5px;
}

.hero-title-big { 
  font-size: 36px; line-height: 1.1; font-weight: 900; color: var(--ink); 
  margin: 0 0 20px 0; letter-spacing: -1px; 
}
.hero-title-big em { color: var(--brand); font-style: normal; }

.hero-sub-text { 
  font-size: 16px; line-height: 1.6; color: var(--muted); 
  max-width: 680px; margin: 0 auto; 
}

@media (min-width: 992px) {
  .hero-clean-bg { padding: 120px 20px 80px; }
  .hero-title-big { font-size: 56px; margin-bottom: 24px; }
  .hero-sub-text { font-size: 19px; }
}


/* 2. OPERATORIA Y DIAGNÓSTICO (Grilla de Tarjetas)
   ------------------------------------------------------------ */
#section-diagnosis {
  background-color: #fff;
  padding-top: 60px; padding-bottom: 80px;
}

.terms-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}

.term-card {
  background: #fff; 
  border: 1px solid #e2e8f0; 
  border-left: 4px solid var(--brand); /* Acento de marca */
  border-radius: 8px; 
  padding: 24px; 
  display: flex; gap: 20px; align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.term-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.term-icon {
  font-size: 24px; flex-shrink: 0;
  background: #f8fafc; 
  width: 48px; height: 48px;
  border-radius: 50%; 
  display: grid; place-items: center; 
  border: 1px solid #e2e8f0;
}

.term-content h3 {
  margin: 0 0 8px; font-size: 16px; font-weight: 800; color: var(--ink); text-transform: uppercase;
}
.term-content p {
  margin: 0; font-size: 14px; color: var(--muted); line-height: 1.6;
}
.term-small {
  margin-top: 10px !important; font-size: 13px !important; color: #94a3b8 !important;
}

@media (min-width: 992px) {
  .terms-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .term-card { padding: 30px; }
}


/* 3. RIESGOS Y RESPONSABILIDAD (Split View con Advertencia)
   ------------------------------------------------------------ */
.section-risks-bg {
  background-color: #f1f5f9; /* Fondo gris técnico */
  padding: 60px 20px;
}

.risk-layout {
  display: flex; flex-direction: column; gap: 30px;
}

.badge-warning {
  display: inline-block; background: #f59e0b; color: #fff;
  font-size: 10px; font-weight: 800; padding: 4px 10px;
  border-radius: 4px; letter-spacing: 1px; margin-bottom: 16px;
}

.risk-text-block {
  margin-top: 24px; padding: 20px; 
  background: #fff; border-radius: 8px; border: 1px dashed #cbd5e1;
}
.risk-text-block p { font-size: 14px; margin-bottom: 12px; color: var(--muted); }
.risk-text-block strong { color: var(--ink); }

.risk-card {
  background: #fff; 
  border-left: 6px solid #f59e0b; /* Borde naranja alerta */
  border-radius: 8px; padding: 24px;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.rc-icon { font-size: 32px; margin-bottom: 12px; }
.risk-card h3 { margin: 0 0 10px; font-size: 18px; font-weight: 800; color: var(--ink); }
.risk-card p { margin: 0 0 16px; font-size: 15px; color: var(--muted); line-height: 1.6; }

.rc-legal { 
  font-size: 13px !important; 
  background: #fffbeb; padding: 12px; border-radius: 4px; 
  border: 1px solid #fde68a; color: #92400e !important; text-align: justify;
}

@media (min-width: 992px) {
  .risk-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; 
    align-items: start; max-width: 1100px; margin: 0 auto;
  }
  .risk-card { padding: 40px; transform: scale(1.02); }
}


/* 4. ABANDONO (Timeline: Vertical MB -> Horizontal DT)
   ------------------------------------------------------------ */
#section-abandonment {
  background-color: #fff;
  padding-top: 60px; padding-bottom: 80px;
}

.abandonment-timeline {
  display: flex; flex-direction: column; gap: 0;
  position: relative; max-width: 600px; margin: 0 auto;
}

/* Línea conectora base (Mobile) */
.abandonment-timeline::before {
  content: ""; position: absolute; 
  top: 20px; bottom: 20px; left: 24px; 
  width: 2px; background: #e2e8f0; z-index: 0;
}

.ab-item {
  display: flex; gap: 24px; position: relative; z-index: 1; padding-bottom: 40px;
}
.ab-item:last-child { padding-bottom: 0; }

.ab-marker {
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 16px; color: #fff;
  flex-shrink: 0; border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ab-marker.success { background-color: var(--green); }
.ab-marker.warning { background-color: var(--orange); }
.ab-marker.danger { background-color: var(--red); }

.ab-content { padding-top: 4px; }
.ab-content h4 { margin: 0 0 6px; font-size: 17px; font-weight: 800; color: var(--ink); }
.ab-content p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }

@media (min-width: 992px) {
  .abandonment-timeline {
    flex-direction: row; /* Horizontal */
    align-items: flex-start; justify-content: space-between;
    max-width: 1000px; width: 100%; margin-top: 40px;
  }

  /* Línea conectora rotada */
  .abandonment-timeline::before {
    top: 25px; bottom: auto; left: 50px; right: 50px;
    width: auto; height: 4px;
  }

  .ab-item {
    flex-direction: column; align-items: center; text-align: center;
    padding: 0 20px; flex: 1;
  }

  .ab-marker {
    width: 60px; height: 60px; font-size: 18px; margin-bottom: 20px;
  }
  
  .ab-content h4 { font-size: 20px; margin-bottom: 10px; }
  .ab-content p { font-size: 15px; }
}


/* 5. CLÁUSULAS GENERALES (Grid de Texto)
   ------------------------------------------------------------ */
.section-legal-bg {
  background-color: #fff;
  padding: 60px 20px;
  border-top: 1px solid #e2e8f0;
}

.general-terms-grid {
  display: grid; grid-template-columns: 1fr; gap: 30px;
}

.gt-item h4 {
  margin: 0 0 8px; font-size: 15px; font-weight: 800; 
  text-transform: uppercase; color: var(--ink);
}
.gt-item p {
  margin: 0; font-size: 14px; color: var(--muted); 
  line-height: 1.6; text-align: justify;
}

@media (min-width: 992px) {
  .general-terms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px; max-width: 1100px; margin: 0 auto;
  }
  
  .gt-item.full-width {
    grid-column: span 2;
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
  }
}


/* 6. CTA FINAL (Simple)
   ------------------------------------------------------------ */
.section-cta-bg {
  background-color: #fff;
  padding: 80px 20px;
  border-top: 1px solid #e2e8f0;
}

/* ============================================================
   PÁGINA CONTACTO (Estilos Específicos)
   ============================================================ */

/* Texto Intro (SEO) */
.hero-intro-text {
  max-width: 700px; margin: 0 auto;
  font-size: 16px; color: var(--muted); line-height: 1.6;
}

/* Layout General */
.section-contact-bg {
  background-color: #fff;
  padding: 40px 20px 60px;
}

.contact-layout {
  display: flex; flex-direction: column; gap: 40px;
  max-width: 1100px; margin: 0 auto;
}

/* --- COLUMNA DATOS (IZQUIERDA) --- */
.contact-data-col {
  display: flex; flex-direction: column; gap: 30px;
}

.data-block {
  padding-left: 20px;
  border-left: 3px solid #e2e8f0;
}

.block-title {
  font-size: 14px; text-transform: uppercase; color: var(--muted);
  letter-spacing: 1px; margin: 0 0 12px; font-weight: 700;
}

/* Dirección */
.address-text {
  font-size: 18px; color: var(--ink); line-height: 1.4; margin: 0 0 16px;
}
.address-text strong {
  font-weight: 900; font-size: 22px; display: block; margin-bottom: 4px;
}
.small-text {
  font-size: 14px; color: var(--muted); font-weight: 400;
}

/* Horarios & Estado */
.schedule-box { margin-bottom: 16px; }
.schedule-note {
  font-size: 13px; color: var(--green); margin: 6px 0 0; font-weight: 600;
}

.status-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 6px; font-size: 14px; font-weight: 700;
}
.status-badge.open {
  background: #ecfdf5; color: #047857; border: 1px solid #d1fae5;
}
.status-badge .dot {
  width: 8px; height: 8px; background: #10b981; border-radius: 50%;
}

/* Lista de Interés (Seguridad, Parking) */
.interest-list {
  list-style: none; padding: 0; margin: 20px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.interest-list li {
  font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px;
}

/* Transporte */
.transport-row {
  display: flex; gap: 12px; margin-bottom: 16px; font-size: 15px; color: var(--ink);
}
.transport-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.transport-content p {
  margin: 4px 0 0; font-size: 14px; color: var(--muted); line-height: 1.4;
}

/* Grilla de Colectivos */
.bus-grid {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px;
}
.bus-grid span {
  background: #f1f5f9; border: 1px solid #cbd5e1; color: var(--ink);
  font-size: 11px; font-weight: 700; padding: 3px 6px; border-radius: 4px;
}

/* Botones Contacto (Fix Mobile) */
.contact-actions {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px;
}
.contact-actions .btn-pill {
  flex: 1 1 auto; justify-content: center; text-align: center;
}


/* --- COLUMNA VISUAL (EDIFICIO) --- */
.building-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
  border: 4px solid #fff;
}

.building-img {
  width: 100%; height: 300px; object-fit: cover; display: block;
}

.building-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 50px 20px 20px;
  color: #fff;
}
.building-caption strong {
  display: block; font-size: 18px; text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.building-caption p {
  margin: 0; font-size: 13px; opacity: 0.9;
}

.map-overlay-btn {
  position: absolute; top: 16px; right: 16px;
  background: #fff; color: var(--ink);
  font-size: 12px; font-weight: 700; padding: 8px 16px;
  border-radius: 99px; text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.map-overlay-btn:hover { transform: scale(1.05); }

.map-note {
  text-align: center; margin-top: 12px; font-size: 12px; color: var(--muted);
}


/* --- RESPONSIVE DESKTOP (CONTACTO) --- */
@media (min-width: 992px) {
  
  .section-contact-bg { padding-top: 60px; }

  .contact-layout {
    display: grid; grid-template-columns: 1fr 1fr; 
    gap: 80px; align-items: start;
  }

  .contact-data-col { gap: 40px; }
  
  .building-img { height: 450px; }
  
  .building-card {
    transform: rotate(1deg);
    transition: transform 0.3s ease;
  }
  .building-card:hover { transform: rotate(0deg) scale(1.01); }
  
  /* Fix Botones Desktop (Alineados, no estirados) */
  .contact-actions {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  .contact-actions .btn-pill {
    flex: 0 0 auto; width: auto;
    padding: 10px 16px; font-size: 13px;
  }
}
/* =========================================
   PÁGINA NOSOTROS: ESTILOS ESPECÍFICOS
   ========================================= */

/* Reutilizamos .hero-clean-bg del CSS global */

/* SECCIÓN 2: VALORES (Grilla Limpia) */
#section-philosophy {
  background-color: #fff;
  padding-top: 60px; padding-bottom: 80px;
}

.values-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}

.value-card {
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 12px; padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.value-card:hover {
  transform: translateY(-3px); border-color: var(--brand);
}

.vc-icon { font-size: 32px; margin-bottom: 12px; }
.value-card h3 { margin: 0 0 10px; font-size: 18px; font-weight: 800; color: var(--ink); }
.value-card p { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.6; }


/* SECCIÓN 3: LABORATORIO (Split View + Stats) */
.section-lab-bg {
  background-color: #fff; /* O podés usar var(--rdn-bg-b) si querés contraste */
  padding: 60px 20px;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.lab-layout {
  display: flex; flex-direction: column; gap: 40px;
}

.badge-tech {
  display: inline-block; background: var(--ink); color: #fff;
  font-size: 10px; font-weight: 800; padding: 6px 12px;
  border-radius: 4px; letter-spacing: 1px; margin-bottom: 20px;
}

.lab-list { margin: 20px 0 0; padding: 0; list-style: none; }
.lab-list li {
  position: relative; padding-left: 20px; margin-bottom: 12px;
  font-size: 15px; color: var(--muted);
}
.lab-list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 800;
}
.lab-list strong { color: var(--ink); }

/* Tarjetas de Estadística (Años / Confianza) */
.lab-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

.lab-stat-card {
  background: var(--brand); color: #fff;
  border-radius: 12px; padding: 24px 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(3,169,244,0.25);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}

.lab-stat-card.secondary {
  background: #fff; color: var(--ink); border: 2px solid #e2e8f0;
  box-shadow: none;
}

.stat-num {
  font-size: 36px; font-weight: 900; line-height: 1; margin-bottom: 8px;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  line-height: 1.4; opacity: 0.9;
}


/* RESPONSIVE DESKTOP */
@media (min-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr); gap: 30px;
  }
  
  .lab-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    max-width: 1100px; margin: 0 auto;
  }
  
  .lab-visual { gap: 30px; }
  .lab-stat-card { padding: 40px 30px; }
  .stat-num { font-size: 48px; }
  .stat-label { font-size: 13px; }
}

/* =========================================
   PÁGINA FAQ: CENTRO DE AYUDA
   ========================================= */

/* BUSCADOR HERO */
.faq-search-box {
  position: relative; max-width: 600px; margin: 30px auto 0;
}
.faq-search-box input {
  width: 100%; padding: 16px 20px 16px 50px; border-radius: 99px;
  border: 2px solid #e2e8f0; font-size: 16px; outline: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05); transition: border-color 0.2s;
}
.faq-search-box input:focus { border-color: var(--brand); }
.search-icon {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  color: #94a3b8; pointer-events: none;
}

/* GRILLA DE PREGUNTAS */
.section-faq-bg { background-color: #f8fafc; padding: 60px 20px; }

.faq-masonry {
  display: grid; grid-template-columns: 1fr; gap: 30px;
  max-width: 1100px; margin: 0 auto;
}

.faq-group {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03); border: 1px solid #e2e8f0;
  margin-bottom: 30px;
}

/* Colores de Cabecera por Categoría */
.cat-apple { border-top: 4px solid #333; }
.cat-apple .faq-group-head { background: #f3f4f6; color: #1f2937; }

.cat-gamer { border-top: 4px solid var(--red); }
.cat-gamer .faq-group-head { background: #fef2f2; color: #991b1b; }

.cat-admin { border-top: 4px solid var(--violet); }
.cat-admin .faq-group-head { background: #faf5ff; color: #6b21a8; }

.cat-envios { border-top: 4px solid var(--green); }
.cat-envios .faq-group-head { background: #ecfdf5; color: #065f46; }

.faq-group-head {
  padding: 16px 20px; display: flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 16px; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.fg-icon { font-size: 20px; }
.faq-group-head h3 { margin: 0; font-size: 16px; }

/* Acordeón Interno */
.acc-item { border-bottom: 1px solid #f1f5f9; }
.acc-item:last-child { border-bottom: none; }

.acc-btn {
  width: 100%; text-align: left; padding: 16px 20px; background: #fff; border: none;
  font-weight: 600; color: var(--ink); font-size: 14px;
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
  transition: background 0.2s;
}
.acc-btn:hover { background: #f9fafb; color: var(--brand); }

.acc-item.open .acc-btn { color: var(--brand); font-weight: 800; }
.acc-item.open .chev { transform: rotate(180deg); }

.acc-panel {
  display: none; padding: 0 20px 20px; color: var(--muted); font-size: 14px; line-height: 1.5;
}
.acc-panel p { margin: 0; }
.acc-item.open .acc-panel { display: block; animation: fadeIn 0.3s ease; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

/* Desktop: Masonry de 2 Columnas */
@media (min-width: 992px) {
  .faq-masonry {
    grid-template-columns: 1fr 1fr; /* Dos columnas */
    align-items: start; /* Para que no se estiren */
    gap: 40px;
  }
  
  .faq-group { margin-bottom: 0; } /* El gap del grid maneja el espacio */
  .faq-col { display: flex; flex-direction: column; gap: 40px; }
}
/* =========================================
   PÁGINA MAPA DEL SITIO
   ========================================= */

/* Reutilizamos .hero-clean-bg */

#section-sitemap-grid {
  background-color: #fff;
  padding-top: 60px; padding-bottom: 80px;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* Tarjeta de Grupo */
.sitemap-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sitemap-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border-color: var(--brand);
  background: #fff;
}

/* Encabezado de Tarjeta */
.sm-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
}

.sm-icon { font-size: 24px; }
.sm-header h3 { margin: 0; font-size: 18px; font-weight: 800; color: var(--ink); text-transform: uppercase; letter-spacing: 0.5px; }

/* Lista de Links */
.sm-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}

.sm-list li a {
  text-decoration: none;
  font-size: 15px; color: var(--muted);
  font-weight: 500;
  display: flex; align-items: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

/* Efecto Hover en Links */
.sm-list li a:hover {
  color: var(--brand);
  transform: translateX(5px);
  font-weight: 700;
}

/* Flechita automática en CSS */
.sm-list li a::before {
  content: "›";
  margin-right: 8px;
  font-size: 18px;
  line-height: 1;
  color: #cbd5e1;
  transition: color 0.2s;
}
.sm-list li a:hover::before { color: var(--brand); }

/* Links Legales (Destacados sutilmente) */
.legal-link { font-size: 13px !important; color: #94a3b8 !important; }
.legal-link:hover { color: var(--ink) !important; }

/* Separador */
.separator {
  height: 1px; background: #e2e8f0; margin: 8px 0;
}

/* RESPONSIVE DESKTOP */
@media (min-width: 992px) {
  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 Columnas grandes */
    gap: 40px;
    max-width: 1000px; margin: 0 auto;
  }
  
  /* Si querés 4 columnas en monitores muy anchos, descomentá esto: */
  /* grid-template-columns: repeat(4, 1fr); */
}



/* ============================================================
   RDN MOBILE — HOJA DE ESTILOS MAESTRA (V13.0 - FINAL TOTAL)
   ============================================================ */

/* ============================================================
   1. VARIABLES & RESET
   ============================================================ */
:root {
  /* Brand Colors */
  --brand: #03A9F4;   /* Azul */
  --violet: #9C27B0;  /* Violeta */
  --green: #4CAF50;   /* Verde */
  --orange: #f59e0b;  /* Naranja */
  
  --ink: #0f172a;     /* Negro Azulado */
  --muted: #475569;   /* Gris Texto */
  --bg: #f8fafc;      /* Fondo General */
  
  --rdn-red: #ED5B55; 
  --rdn-red-dark: #d32f2f; 
  --rdn-wa: #25D366;
  --rdn-wa-dark: #1da851; 
  --rdn-bg-a: #FFFFFF; 
  --rdn-bg-b: #F1F5F9; 

  /* UI System */
  --radius: 18px;
  --b4: 4px;
}

html { scroll-behavior: smooth !important; scroll-padding-top: 10px; }
body { margin:0; background:var(--bg); font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif; color:var(--ink); -webkit-font-smoothing: antialiased; line-height: 1.5; }
*, *::before, *::after { box-sizing: border-box; }

#rdn-mobile { width: 100%; margin: 0 auto; padding: 0; overflow-x: hidden; }

/* Helpers Visibilidad */
.only-mobile { display: block; } .only-desktop { display: none !important; }
@media (min-width: 992px) {
  .only-mobile { display: none !important; } .only-desktop { display: block !important; }
  #rdn-mobile > main > section > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
}


/* ============================================================
   2. LAYOUT & HEADINGS
   ============================================================ */
#rdn-mobile > main > section { padding: 60px 20px; width: 100%; }
#rdn-mobile > main > section:nth-of-type(odd) { background-color: var(--rdn-bg-a); }
#rdn-mobile > main > section:nth-of-type(even) { background-color: var(--rdn-bg-b); }

.rdn-section-heading { width: 100%; max-width: 780px; margin-inline: auto; margin-bottom: 3.5rem; text-align: center; }
.rdn-section-heading--left { text-align: left; margin-left: 0; align-items: flex-start; }
.rdn-section-heading--center { text-align: center; margin-inline: auto; }

.rdn-heading-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; margin: 0 0 16px;
  border-radius: 6px; background: #e0f2fe; color: #0277BD;
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
}
.rdn-heading-eyebrow-pill::before { content: ""; width: 6px; height: 6px; background: #0277BD; border-radius: 50%; }

.rdn-heading-title {
  margin: 0; font-size: clamp(28px, 4vw, 46px); line-height: 1.1; 
  font-weight: 900; letter-spacing: -0.02em; color: var(--ink);
}
.rdn-heading-title em { font-style: normal; color: var(--brand); }

.rdn-heading-meta-row {
  display: flex; align-items: center; gap: 10px; margin-top: 16px; margin-bottom: 16px;
  color: var(--muted); font-size: 13px; justify-content: center; 
}
.rdn-section-heading--left .rdn-heading-meta-row { justify-content: flex-start; }
.rdn-heading-line { flex: 0 0 40px; height: 2px; background: var(--brand); opacity: 0.3; }
.rdn-heading-meta-text { font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 11px; }

.rdn-heading-sub {
  margin: 0; font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 640px; margin-inline: auto;
}
.rdn-section-heading--left .rdn-heading-sub { margin-inline: 0; }


/* ============================================================
   3. BOTONES & MODALES
   ============================================================ */
.btn-pill { 
  display:inline-flex; align-items:center; gap:10px; padding:12px 24px; 
  border-radius:999px; font-weight:700; font-size:15px; text-decoration:none; 
  transition: all .2s ease; cursor: pointer; white-space: nowrap; border: 2px solid transparent;
}
.btn-pill:hover { transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: #cbd5e1; color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); background: #fff; }

.cta-shadow { background: var(--brand); color: #fff; box-shadow: 0 6px 20px rgba(3,169,244,0.3); }
.cta-shadow:hover { background: #0288d1; }

.cta-shadow-wa { background: var(--rdn-wa); color: #fff; box-shadow: 0 6px 20px rgba(37,211,102,.25); }
.cta-shadow-wa:hover { background: var(--rdn-wa-dark); }

/* Modales (Legacy support) */
.trust-modal-overlay, .action-sheet-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  z-index: 9999; opacity: 0; visibility: hidden; transition: 0.3s ease;
}
.trust-modal-overlay.show, .action-sheet-overlay.show { opacity: 1; visibility: visible; }
.trust-modal-overlay { display: grid; place-items: center; padding: 20px; }
.trust-modal-panel {
  background: #fff; border-radius: 12px; padding: 30px; width: 100%; max-width: 480px;
  transform: translateY(20px); transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2); position: relative;
}
.trust-modal-overlay.show .trust-modal-panel { transform: translateY(0); }
.trust-modal-close { position: absolute; top: 15px; right: 15px; border: none; background: #f1f5f9; border-radius: 50%; width: 32px; height: 32px; cursor: pointer; display:grid; place-items:center; color: #64748b; }
.action-sheet-panel {
  position: fixed; bottom: 0; left: 0; right: 0; background: #fff;
  border-radius: 20px 20px 0 0; padding: 24px; transform: translateY(100%);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.action-sheet-overlay.show .action-sheet-panel { transform: translateY(0); }
.action-sheet-close { top: 12px; right: 12px; }


/* ============================================================
   4. HERO EMPRESAS: SELECTOR 3D (V4 - COLOR GLOW)
   ============================================================ */
.hero-clean-bg {
  background-color: #ffffff;
  background-image: none;
  padding: 80px 20px 40px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.hero-badge-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.trust-pill { display: inline-flex; align-items: center; background: #fff; border: 1px solid #e2e8f0; padding: 6px 14px; border-radius: 99px; font-size: 12px; font-weight: 700; color: var(--muted); box-shadow: 0 2px 5px rgba(0,0,0,0.03); text-transform: uppercase; letter-spacing: 0.5px; }
.hero-title-big { font-size: 36px; line-height: 1.1; font-weight: 900; color: var(--ink); margin: 0 0 20px 0; letter-spacing: -1px; }
.hero-title-big em { color: var(--brand); font-style: normal; }
.hero-sub-text { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 680px; margin: 0 auto; }

/* Wrapper del Carrusel (Maneja desborde en móvil) */
.hero-grid-wrapper {
  margin: 0 -20px;
  padding: 20px 0 50px; /* Más espacio abajo para la sombra Glow */
  overflow: hidden;
}

.b2b-hero-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 15%; /* Centrado de la primera card */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.b2b-hero-grid::-webkit-scrollbar { display: none; }

/* LA TARJETA (Estado Base) */
.card-selector {
  flex: 0 0 250px; /* IMPORTANTE: ESTO DEFINE EL ANCHO EN MÓVIL */
  scroll-snap-align: center;
  
  background: #f8fafc; /* Gris suave */
  border-radius: 20px;
  padding: 24px 20px;
  text-align: left;
  cursor: pointer;
  position: relative;
  
  /* Borde base */
  border: 1px solid #e2e8f0;
  
  /* Estado Inactivo */
  transform: scale(0.95);
  opacity: 1; 
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.01);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- ESTADO ACTIVO (FULL COLOR + GLOW) --- */
.card-selector.is-active {
  transform: scale(1.05);
  opacity: 1;
  z-index: 10;
  background-color: #fff;
  
  /* Borde Completo del Color */
  border: 4px solid var(--card-color);
  
  /* Sombra del Color (Glow) */
  box-shadow: 
    0 0 0 1px var(--card-color), 
    0 20px 50px -10px color-mix(in srgb, var(--card-color), transparent 60%);
}

/* Icono */
.cs-icon-box {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 26px;
  background: #ffffff;
  color: var(--card-color);
  border: 1px solid rgba(0,0,0,0.05);
  transition: background 0.3s, color 0.3s;
  margin-bottom: 16px;
}

/* Icono Activo */
.card-selector.is-active .cs-icon-box {
  background-color: var(--card-color);
  color: #fff;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--card-color), transparent 40%);
}

/* Textos */
.cs-content h3 { margin: 0 0 6px; font-size: 18px; font-weight: 800; color: var(--ink); }
.cs-content p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.4; }

/* Indicador (Radio Button) */
.cs-indicator {
  position: absolute; top: 20px; right: 20px;
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid #cbd5e1;
  background: transparent;
  transition: all 0.3s;
}
.card-selector.is-active .cs-indicator {
  background: var(--card-color);
  border-color: var(--card-color);
  box-shadow: inset 0 0 0 4px #fff;
}


/* ============================================================
   5. EL ESCENARIO DINÁMICO (ANIMACIONES & LAYOUT)
   ============================================================ */
.b2b-stage-container {
  min-height: 400px;
  background: #fff;
  position: relative;
  z-index: 1;
  
  /* Padding lateral para que no se pegue en móvil */
  padding: 40px 20px 60px 20px; 
  box-sizing: border-box;
  width: 100%;
}

.b2b-panel {
  display: none; 
  width: 100%;
  max-width: 100%; 
  opacity: 0; 
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.b2b-panel.is-visible { display: block; }


/* ============================================================
   6. COMPONENTES INTERNOS (LOS 3 DISEÑOS) - FIXED
   ============================================================ */

/* --- A. CORPORATIVO: FICHA TÉCNICA --- */
.tech-sheet-container {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-top: 4px solid var(--brand);
  border-radius: 4px;
  padding: 0;
  font-family: 'Segoe UI', system-ui, sans-serif;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  
  width: 100%; 
  margin: 0 auto 60px; 
}

.tech-header { padding: 20px; border-bottom: 1px solid #e2e8f0; background: #fff; }
.tech-status { font-size: 10px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.status-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; display: block; animation: blink 2s infinite; }
@keyframes blink { 50% { opacity: 0.4; } }

.tech-title { font-size: 20px; font-weight: 800; color: var(--ink); margin: 0; text-transform: uppercase; letter-spacing: -0.5px; line-height: 1.2; }
.tech-meta { font-family: monospace; font-size: 11px; color: var(--muted); margin-top: 4px; }

.tech-grid { display: grid; grid-template-columns: 1fr; }

.tech-col-specs { padding: 24px 20px; background: #fff; }
.spec-row { display: flex; justify-content: space-between; border-bottom: 1px dashed #e2e8f0; padding-bottom: 8px; margin-bottom: 12px; font-size: 13px; }
.spec-label { font-weight: 700; color: var(--muted); font-size: 10px; }
.spec-value { font-weight: 600; color: var(--ink); text-align: right; font-size: 12px; }
.spec-value.highlight { color: var(--brand); font-weight: 800; }
.tech-desc-box { background: #f0f9ff; border-left: 3px solid var(--brand); padding: 15px; margin-top: 20px; font-size: 13px; color: var(--ink); line-height: 1.5; }

/* Columna Derecha: Acciones Técnicas */
.tech-col-actions { 
  background: #f8fafc; 
  color: var(--ink);
  padding: 24px 20px; 
  border-top: 1px solid #e2e8f0;
}

.tech-action-list { 
  list-style: none; padding: 0; margin: 0; 
  display: flex; flex-direction: column; gap: 20px; 
}

.tech-action-list li { display: flex; gap: 15px; }
.tech-action-list strong { display: block; font-size: 14px; margin-bottom: 2px; color: var(--ink); }
.tech-action-list p { margin: 0; font-size: 12px; color: var(--muted); }
.cmd-icon { color: var(--brand); font-family: monospace; font-weight: 700; font-size: 16px; margin-top: 2px; }

.tech-footer { background: #fff; padding: 20px; border-top: 1px solid #e2e8f0; text-align: center; }
.tech-cta-row { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.tech-cta-row span { font-size: 10px; font-weight: 800; color: var(--muted); letter-spacing: 1px; }
.btn-tech { background: var(--brand); color: #fff; font-family: monospace; font-weight: 700; text-decoration: none; padding: 12px 20px; border-radius: 4px; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; display: block; width: 100%; text-align: center; transition: background 0.2s; }
.btn-tech:hover { background: #0288d1; }


/* --- B. CREATIVOS: BENTO GRID --- */
.bento-wrapper { 
  width: 100%; 
  margin: 0 auto 60px; 
}

.bento-main-title { 
  font-size: 24px; font-weight: 900; color: var(--ink); 
  text-align: center; margin: 0 0 30px; letter-spacing: -0.5px; 
}

.bento-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

.bento-box {
  background: #fff; 
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex; flex-direction: column; justify-content: center;
}
.bento-box:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(156, 39, 176, 0.15); border-color: #d8b4fe; }

.bento-icon { font-size: 32px; margin-bottom: 12px; }
.bento-box h3 { margin: 0 0 8px; font-size: 18px; font-weight: 800; color: var(--ink); }
.bento-box p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }

.box-hero { background: #fff; border-left: 6px solid var(--violet); }
.box-feature-1 { background: #faf5ff; text-align: center; border: 1px solid #f3e8ff; }
.box-feature-1 p { color: var(--muted); font-weight: 600; }
.bento-big-num { font-size: 48px; font-weight: 900; line-height: 1; margin-bottom: 4px; color: var(--violet); }
.bento-big-num .small { font-size: 18px; color: var(--muted); font-weight: 700; }
.box-feature-2 { text-align: center; align-items: center; }

.box-wide { grid-column: 1 / -1; background: #fff; border: 1px solid #e2e8f0; position: relative; overflow: hidden; }
.box-wide::before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 6px; background: var(--violet); }

.bento-flex { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.bento-link { color: var(--violet); font-weight: 800; text-decoration: none; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: #f3e8ff; border-radius: 99px; transition: background 0.2s; }
.bento-link:hover { background: #e9d5ff; }
.bento-img-placeholder { font-size: 80px; opacity: 0.05; color: #000; position: absolute; right: -10px; bottom: -20px; pointer-events: none; }


/* --- C. SEGUROS: ZIG-ZAG --- */
.zigzag-container { width: 100%; margin: 0 auto 60px; }
.zigzag-main-title { text-align: center; font-size: 24px; font-weight: 900; margin: 0 0 30px; }
.zigzag-row { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }

.zz-content { flex: 1; }
.zz-tag { font-size: 10px; font-weight: 800; background: #fee2e2; color: #b91c1c; padding: 4px 8px; border-radius: 4px; letter-spacing: 1px; display: inline-block; margin-bottom: 10px; }
.zz-tag.tag-orange { background: #fff7ed; color: #c2410c; border: 1px solid #ffedd5; }
.zz-content h3 { font-size: 20px; margin: 0 0 12px; color: var(--ink); font-weight: 800; }
.zz-content p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }

.zz-visual { flex: 1; display: flex; justify-content: center; align-items: center; }
.zz-card-visual { width: 100%; height: 180px; background: #fef2f2; border: 2px dashed #fca5a5; border-radius: 16px; display: grid; place-items: center; font-weight: 800; color: #b91c1c; font-size: 18px; }
.zz-card-visual.visual-orange { width: 100%; height: 180px; background: #fff7ed; border: 2px dashed #fb923c; border-radius: 16px; display: grid; place-items: center; font-weight: 800; color: #c2410c; font-size: 18px; }
.zz-list { list-style: none; padding: 0; margin: 16px 0; }
.zz-list li { font-size: 14px; color: var(--ink); font-weight: 600; margin-bottom: 6px; }


/* --- D. INSTITUCIONES: FOCUS CARDS --- */
.edu-intro-box { text-align: center; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }
.edu-title { font-size: 24px; font-weight: 900; color: var(--green); margin: 0 0 12px; text-transform: uppercase; letter-spacing: -0.5px; }
.edu-desc { font-size: 16px; color: var(--muted); line-height: 1.6; margin: 0; }

.edu-focus-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1000px; margin: 0 auto; }

.edu-card {
  background: #fff; border: 1px solid #e2e8f0; border-left: 6px solid var(--green); border-radius: 12px;
  padding: 24px 20px; position: relative; display: flex; gap: 20px; align-items: flex-start;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.edu-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(76, 175, 80, 0.15); }

.edu-icon { font-size: 32px; flex-shrink: 0; background: #f0fdf4; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; }
.edu-content h3 { margin: 0 0 8px; font-size: 17px; font-weight: 800; color: var(--ink); }
.edu-content p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }
.edu-tag { position: absolute; top: 12px; right: 12px; font-size: 9px; font-weight: 800; padding: 4px 8px; border-radius: 4px; text-transform: uppercase; }
.tag-health { background: #fee2e2; color: #b91c1c; } 
.tag-school { background: #e0f2fe; color: #0369a1; }
.tag-admin { background: #f3e8ff; color: #7e22ce; }
.tag-tech { background: #f1f5f9; color: #475569; }


/* ============================================================
   7. LOGÍSTICA & CTA (ESTÁTICOS)
   ============================================================ */
.b2b-logistics-flow { display: flex; flex-direction: column; gap: 30px; margin-top: 40px; max-width: 800px; margin-left: auto; margin-right: auto; position: relative; }
.b2b-logistics-flow::before { content: ""; position: absolute; top: 20px; bottom: 20px; left: 50%; width: 2px; background: #cbd5e1; transform: translateX(-50%); z-index: 0; }
.flow-step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
.flow-num { width: 48px; height: 48px; border-radius: 50%; background: #fff; color: var(--ink); font-weight: 900; font-size: 18px; display: grid; place-items: center; margin-bottom: 16px; border: 3px solid var(--ink); box-shadow: 0 4px 10px rgba(0,0,0,0.08); }
.flow-step h4 { margin: 0 0 8px; font-size: 18px; font-weight: 800; color: var(--ink); background: var(--rdn-bg-b); padding: 0 10px; border-radius: 4px; }
.flow-step p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; max-width: 280px; background: var(--rdn-bg-b); padding: 4px; }
.flow-line { display: none; }

.section-cta-bg { background-color: #fff; padding: 80px 20px !important; border-top: 1px solid #e2e8f0; }

/* CTA Internos (Botones Centrados) */
.panel-cta-wrapper { margin-top: 40px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-pre-text { font-size: 14px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin: 0; }
.panel-cta-wrapper .btn-pill { min-width: 220px; justify-content: center; }


/* ============================================================
   8. RESPONSIVE DESKTOP (992px+)
   ============================================================ */
@media (min-width: 992px) {
  
  /* Hero */
  .hero-clean-bg { padding: 100px 20px 60px; }
  .hero-title-big { font-size: 56px; margin-bottom: 24px; }
  .hero-sub-text { font-size: 19px; }
  .hero-grid-wrapper { margin: 0; padding: 0 0 40px 0; overflow: visible; }
  
  .b2b-hero-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columnas */
    gap: 20px; padding: 0; max-width: 1200px; margin: 0 auto; overflow: visible;
  }
  .card-selector { transform: none; height: 100%; padding: 24px 20px; }
  .card-selector:hover { transform: translateY(-5px); background-color: #fff; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
  .card-selector.is-active { transform: scale(1.05); background-color: #ffffff; box-shadow: 0 25px 60px -15px color-mix(in srgb, var(--card-color), transparent 70%); }

  /* Corporativo */
  .tech-sheet-container { max-width: 100%; margin-bottom: 80px; }
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .tech-col-specs, .tech-col-actions { padding: 50px; }
  .tech-col-actions { border-top: none; border-left: 1px solid #e2e8f0; }
  .tech-cta-row { flex-direction: row; justify-content: space-between; padding: 0 30px; }
  .btn-tech { width: auto; display: inline-block; font-size: 14px; }
  .tech-title { font-size: 28px; }

  /* Creativos */
  .bento-wrapper { margin-bottom: 80px; }
  .bento-grid { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 280px 200px; gap: 24px; }
  .box-hero { grid-column: 1 / 2; grid-row: 1 / 3; padding: 50px; }
  .box-feature-1 { grid-column: 2 / 3; grid-row: 1 / 2; }
  .box-feature-2 { grid-column: 3 / 4; grid-row: 1 / 2; }
  .box-wide { grid-column: 2 / 4; grid-row: 2 / 3; padding: 0 40px; }
  .bento-flex { width: 100%; }

  /* Seguros */
  .zigzag-container { max-width: 100%; padding: 0 40px; }
  .zigzag-row { flex-direction: row; align-items: center; gap: 80px; margin-bottom: 80px; }
  .zigzag-row.reverse { flex-direction: row-reverse; }
  .zz-card-visual { height: 300px; font-size: 24px; }

  /* Instituciones */
  .edu-focus-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .edu-card { padding: 30px 24px; }
  .edu-title { font-size: 28px; }
  .section-cta-bg { padding-top: 60px !important; }
  .panel-cta-wrapper { margin-top: 60px; }

  /* Logística */
  .b2b-logistics-flow { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 0; max-width: 1100px; }
  .b2b-logistics-flow::before { display: none; }
  .flow-step { flex: 1; padding: 0 10px; }
  .flow-num { width: 60px; height: 60px; font-size: 22px; margin-bottom: 20px; border-color: var(--brand); color: var(--brand); }
  .flow-line { display: block !important; flex: 0.5; height: 2px; background: #cbd5e1; margin-top: 30px; position: relative; }
  .flow-line::after { content: "►"; position: absolute; right: -6px; top: -7px; color: #cbd5e1; font-size: 12px; }
}

/* =========================================
   FIX: FAQ LANDINGS (Notebooks & MacBooks)
   ========================================= */

@media (min-width: 992px) {
  
  /* Contenedor Horizontal */
  .faq-acc-dt {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
    align-items: stretch; /* Misma altura */
  }

  /* Las Tarjetas Azules */
  .acc-item-dt {
    flex: 1; /* Ocupan espacio igual */
    min-width: 0; /* Evita desbordes */
    display: flex;
    flex-direction: column;
    
    background: #fff;
    border: 4px solid var(--brand); /* Borde Azul Grueso */
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }

  .acc-item-dt:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(3,169,244,0.15);
  }

  /* Cabecera Azul */
  .acc-head-dt {
    background-color: var(--brand);
    color: #fff;
    padding: 20px 15px;
    font-weight: 800;
    font-size: 16px;
    text-align: center;
    min-height: 80px; /* Altura fija para alinear títulos */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Cuerpo Blanco */
  .acc-body-dt {
    padding: 20px;
    font-size: 14px;
    color: var(--muted);
    text-align: center;
    line-height: 1.5;
    flex-grow: 1; /* Empuja para llenar altura */
    display: flex;
    align-items: center;
  }
  
  .acc-body-dt p { margin: 0; }

}

/* =========================================
   FIX ALINEACIÓN: SECCIÓN EMPRESAS (HOME & LANDINGS)
   ========================================= */

/* Forzamos al header dentro de #empresas a pegarse a la izquierda */
#empresas .rdn-section-heading {
  width: 100% !important;
  max-width: 100% !important; /* Rompe el límite de 780px */
  margin-left: 0 !important;  /* Elimina margen izquierdo automático */
  text-align: left !important;
  align-items: flex-start !important;
  padding-left: 0 !important;
}

/* Alinear el subtítulo */
#empresas .rdn-heading-sub {
  margin-left: 0 !important;
  text-align: left !important;
  max-width: 700px !important; /* Le dejamos un tope para que no se lea feo en pantallas muy anchas */
}

/* Alinear la fila de meta-datos (la línea y el texto chico) */
#empresas .rdn-heading-meta-row {
  justify-content: flex-start !important;
  margin-left: 0 !important;
}

/* =========================================
   FIX ALINEACIÓN: SECCIÓN FAQ (HOME & LANDINGS)
   ========================================= */

/* Forzamos al header dentro de #faq a pegarse a la izquierda */
#faq .rdn-section-heading {
  width: 100% !important;
  max-width: 100% !important; /* Rompe el límite de 780px */
  margin-left: 0 !important;  /* Elimina margen izquierdo automático */
  text-align: left !important;
  align-items: flex-start !important;
  padding-left: 0 !important;
}

/* Alinear el subtítulo */
#faq .rdn-heading-sub {
  margin-left: 0 !important;
  text-align: left !important;
  max-width: 700px !important;
}

/* Alinear la fila de meta-datos */
#faq .rdn-heading-meta-row {
  justify-content: flex-start !important;
  margin-left: 0 !important;
}

/* =========================================
   FIX: ALINEACIÓN BUBBLES (GARANTÍA/PAGO)
   ========================================= */

@media (min-width: 992px) {
  
  /* El Contenedor Padre */
  #pills-desktop {
    display: grid !important;
    /* 5 columnas de igual fracción (1fr) */
    grid-template-columns: repeat(5, 1fr) !important; 
    gap: 24px !important; /* Espacio entre ellas */
    
    width: 100% !important;
    max-width: 1200px !important;
    
    /* Esto es lo que las centra en la pantalla */
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 40px !important;
    
    justify-content: center !important;
  }

  /* La Burbuja Individual */
  .bubble {
    width: 100% !important; /* Que llene su columna */
    max-width: none !important; /* Sacar límites viejos */
    margin: 0 !important;
    
    /* Centrar el contenido interno */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  /* Ajuste fino del contenido interno */
  .bubble-content {
    width: 100%;
    justify-content: center; /* Texto y checks centrados */
    text-align: center;
  }
  
  .bubble-content p {
    text-align: center;
  }
}

/* ============================================================
   PÁGINA SERVICIOS: HUB TÉCNICO (RICH GRID & DETALLES)
   ============================================================ */

/* --- 1. CONTENEDOR GENERAL --- */
.section-hub-bg {
  background-color: #f8fafc;
  padding: 40px 20px 80px;
  border-top: 1px solid #e2e8f0;
}

/* --- 2. LA GRILLA DE TARJETAS --- */
.rich-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile: 1 col */
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ASIGNACIÓN DE COLORES AUTOMÁTICA */
.rich-card:nth-child(1) { --card-color: var(--brand); }   /* Azul */
.rich-card:nth-child(2) { --card-color: var(--orange); }  /* Naranja */
.rich-card:nth-child(3) { --card-color: var(--green); }   /* Verde */
.rich-card:nth-child(4) { --card-color: var(--rdn-red); } /* Rojo */
.rich-card:nth-child(5) { --card-color: var(--violet); }  /* Violeta */
.rich-card:nth-child(6) { --card-color: #607D8B; }        /* Gris Técnico */


/* --- 3. ESTILO DE TARJETA (RICH CARD) --- */
.rich-card {
  position: relative; /* Necesario para el borde fantasma */
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  will-change: transform; /* Optimización */
  
  /* Sin borde real, usamos el fantasma */
  border: none; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
              box-shadow 0.3s ease;
}

/* BORDE FANTASMA (Cubre la foto también) */
.rich-card::after {
  content: "";
  position: absolute;
  inset: 0; /* Ocupa el 100% */
  border-radius: 16px;
  border: 1px solid #e2e8f0; /* Borde gris en reposo */
  pointer-events: none;
  z-index: 10; /* Arriba de todo */
  transition: border 0.3s ease;
}


/* --- 4. ESTADOS ACTIVOS (HOVER PC / FOCUS MÓVIL) --- */

/* Desktop Hover */
@media (hover: hover) {
  .rich-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 2;
  }
  /* Borde de color al hover */
  .rich-card:hover::after { border: 4px solid var(--card-color); }
  
  /* Zoom imagen */
  .rich-card:hover .rc-media img { transform: scale(1.1); }
  
  /* Pintar botones y bullets */
  .rich-card:hover .btn-outline {
    background-color: var(--card-color);
    border-color: var(--card-color);
    color: #fff;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--card-color), transparent 50%);
  }
  .rich-card:hover .rc-list li::before { color: var(--card-color); }
  
  /* Pintar separador */
  .rich-card:hover .rc-media { border-bottom-color: var(--card-color); }
  
  /* Tarjeta Activa (Clickeada) */
  .rich-card.active-card {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 3;
  }
  .rich-card.active-card::after { border: 4px solid var(--card-color); }
}

/* Mobile Focus (Scroll Spy) */
.rich-card.is-focused {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  z-index: 5;
}
.rich-card.is-focused::after { border: 4px solid var(--card-color); }
.rich-card.is-focused .btn-outline {
  background-color: var(--card-color);
  border-color: var(--card-color);
  color: #fff;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--card-color), transparent 50%);
}
.rich-card.is-focused .rc-list li::before { color: var(--card-color); }
.rich-card.is-focused .rc-media { border-bottom-color: var(--card-color); }


/* --- 5. COMPONENTES INTERNOS --- */

/* Imagen + Tag */
.rc-media {
  position: relative;
  height: 180px;
  overflow: hidden;
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0; 
  transition: border-color 0.3s ease;
}
.rc-media img {
  width: 100%; height: 100%; object-fit: contain; padding: 20px;
  transition: transform 0.5s ease; opacity: 1;
}
.rc-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--card-color); 
  color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.5px;
  padding: 5px 10px; border-radius: 4px; text-transform: uppercase;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  z-index: 11; /* Arriba del borde fantasma */
}

/* Cuerpo */
.rc-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.rc-body h3 { margin: 0 0 12px; font-size: 20px; font-weight: 800; color: var(--ink); }

/* Lista */
.rc-list { margin: 0 0 24px; padding: 0; list-style: none; flex-grow: 1; }
.rc-list li {
  font-size: 14px; color: var(--muted); margin-bottom: 8px;
  padding-left: 18px; position: relative; line-height: 1.4;
}
.rc-list li::before {
  content: "•"; position: absolute; left: 0; top: 0; 
  color: #cbd5e1; font-weight: bold; transition: color 0.3s;
}

/* Botones */
.card-actions { display: flex; gap: 10px; margin-top: auto; position: relative; z-index: 11; }
.btn-small { flex: 1; padding: 10px 12px; font-size: 13px; justify-content: center; white-space: nowrap; }
.btn-link {
  flex: 1; background: transparent; border: 1px solid transparent;
  border: 1px solid #cbd5e1;
  color: var(--muted); font-size: 13px; font-weight: 700;
  cursor: pointer; border-radius: 99px; transition: all 0.2s ease;
}
.btn-link:hover { background: #f1f5f9; color: var(--ink); }

/* El link de texto también toma color al activar */
.rich-card:hover .btn-link, 
.rich-card.is-focused .btn-link, 
.rich-card.active-card .btn-link { 
  color: var(--card-color); 
  border-color: var(--card-color);  
  background-color: #fff;
}


/* --- 6. PANELES DE DETALLE (+ INFO) --- */
.svc-stage-hidden {
  background-color: #fff; padding: 0; max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
}
.svc-stage-hidden.is-open {
  padding: 40px 20px 80px; max-height: 1200px; /* Altura generosa */
  border-top: 1px solid #e2e8f0; background: #fdfdfd;
}

/* BOTÓN CERRAR (CORREGIDO) */
.close-panel-wrap {
  display: flex; justify-content: flex-end; margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}
.btn-close-panel {
  appearance: none; background-color: #fff; border: 1px solid #cbd5e1;
  color: var(--muted); display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 8px 20px; border-radius: 99px; font-size: 12px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  cursor: pointer; transition: all 0.2s ease;
}
.btn-close-panel:hover {
  color: #fff; background-color: var(--rdn-red); border-color: var(--rdn-red);
  box-shadow: 0 4px 12px rgba(237, 91, 85, 0.25); transform: translateY(-1px);
}
.btn-close-panel::after { content: "×"; font-size: 16px; line-height: 1; margin-left: 4px; }

/* Paneles Individuales */
.svc-panel { display: none; opacity: 0; transform: translateY(10px); transition: opacity 0.3s ease, transform 0.3s ease; }
.svc-panel.active { display: block; }
.svc-panel.fade-in { opacity: 1; transform: translateY(0); }


/* --- 7. RESPONSIVE Y ANIMACIONES --- */
@media (min-width: 768px) {
  .rich-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .section-hub-bg { padding-top: 60px; }
  .rich-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .rc-media { height: 220px; aspect-ratio: auto; }
}

/* Animación de entrada */
.reveal-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), 
              transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================
   SECCIÓN FLUJO CLEAN (Circulitos que se pintan)
   ========================================= */

.clean-flow-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile: columna simple */
  gap: 16px;
}

.flow-step-item {
  background: #fff;
  border-radius: 16px; /* Bordes redondeados suaves */
  padding: 20px;
  display: flex;
  align-items: flex-start; /* Alineado arriba */
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04); /* Sombra muy sutil */
  border: 1px solid rgba(0,0,0,0.03); /* Borde casi invisible */
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Animación suave */
  cursor: default;
}

/* EL CÍRCULO (Marker) */
.step-marker {
  flex-shrink: 0; /* Que no se aplaste */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9; /* Gris clarito inicial */
  color: #94a3b8; /* Número gris */
  font-weight: 800;
  font-size: 16px;
  display: grid;
  place-items: center;
  transition: all 0.3s ease; /* Transición para el color */
}

.step-body h3 {
  margin: 0 0 6px 0;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
}

.step-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

/* --- INTERACCIÓN (HOVER) --- */
/* Al pasar el mouse sobre la tarjeta... */
.flow-step-item:hover {
  transform: translateY(-4px); /* Se levanta un poquito */
  box-shadow: 0 12px 24px rgba(3,169,244,0.12); /* Sombra azulada suave */
}

/* ...el círculo se pinta de azul */
.flow-step-item:hover .step-marker {
  background: var(--brand); /* Color de marca */
  color: #fff; /* Número blanco */
  box-shadow: 0 4px 12px rgba(3,169,244,0.3); /* Brillo en el círculo */
}


/* --- DESKTOP --- */
@media (min-width: 992px) {
  .clean-flow-grid {
    grid-template-columns: repeat(3, 1fr); /* Grilla de 3x2 */
    gap: 30px;
  }
  
  .flow-step-item {
    flex-direction: column; /* En PC, el círculo va arriba */
    align-items: center;
    text-align: center;
    padding: 30px 24px;
    height: 100%;
  }

  .step-marker {
    width: 50px; /* Círculo más grande en PC */
    height: 50px;
    font-size: 20px;
    margin-bottom: 16px;
  }

  .step-body h3 { font-size: 18px; }
}


/* =========================================
   SITION EN CONSTRUCCION
   ========================================= */

  .maintenance-wrap {
    text-align: center;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Icono animado */
  .maint-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
  }
  
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
  }

  /* Barra de Progreso */
  .tech-progress-container {
    width: 100%;
    max-width: 300px;
    height: 6px;
    background: #f1f5f9;
    border-radius: 99px;
    margin: 30px auto 40px;
    overflow: hidden;
    position: relative;
  }
  
  .tech-progress-bar {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 60%; /* Progreso fijo */
    background: var(--brand);
    border-radius: 99px;
    animation: load 2s infinite ease-in-out;
  }

  @keyframes load {
    0% { width: 10%; left: 0; }
    50% { width: 60%; left: 20%; }
    100% { width: 100%; left: 0; }
  }

  .rdn-heading-title { margin-bottom: 16px; }
  .rdn-heading-sub { margin-bottom: 0; }
  
  /* Footer fijo abajo */
  .maint-footer {
    position: fixed; bottom: 20px; left: 0; right: 0;
    text-align: center; font-size: 12px; color: var(--muted);
    opacity: 0.6;
  }