/* ================================================================
   PERSONAL — Componentes específicos del sitio personal
   Extiende el sistema visual base (paleta Google, Manrope,
   tokens --radius / --shadow / --rainbow)
================================================================ */

/* ════════════════════════════════════════════════
   HERO — Portrait variant
═══════════════════════════════════════════════ */
.hero-portrait{
  position:relative;
  display:grid;justify-items:center;
  padding:32px 0 16px;
  min-height:480px;
}

/* Photo frame: hex-shaped mask matching brand language */
.hp-photo{
  position:relative;z-index:2;
  width:340px;height:340px;
  border-radius:30px;
  overflow:hidden;
  background:linear-gradient(135deg,var(--google-blue-tint),var(--google-green-tint) 50%,var(--google-yellow-tint));
  border:1px solid var(--gray-300);
  box-shadow:
    var(--shadow-xl),
    0 0 0 8px rgba(255,255,255,.6),
    0 0 0 9px var(--gray-300);
  transform:rotate(-2deg);
  transition:var(--transition-slow);
}
.hp-photo:hover{transform:rotate(0) scale(1.02)}
.hp-photo::before{
  content:"";position:absolute;left:0;top:0;right:0;height:6px;
  background:var(--rainbow);
  z-index:3;
}
.hp-photo img{
  width:100%;height:100%;
  object-fit:cover;object-position:center top;
  display:block;
}

.hp-id{
  position:relative;z-index:2;
  display:grid;justify-items:center;gap:3px;
  margin-top:28px;
  padding:14px 22px 12px;
  background:linear-gradient(180deg,#fff 0%,#fafbfd 100%);
  border:1px solid var(--gray-200);
  border-radius:18px;
  box-shadow:0 12px 28px -8px rgba(60,64,67,.18), 0 2px 6px rgba(60,64,67,.06);
  text-align:center;overflow:hidden;
}
.hp-id::before{
  content:"";position:absolute;left:0;top:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--google-blue) 0%,var(--google-green) 33%,var(--google-yellow) 66%,var(--google-red) 100%);
}
.hp-name{font-weight:800;color:var(--gray-900);font-size:1.02rem;letter-spacing:-.01em}
.hp-role{
  font-size:.78rem;font-weight:700;color:var(--gray-700);
  display:block;line-height:1.4;
}
.hp-role::before{
  content:none;
}
@keyframes hp-pulse{
  0%,100%{box-shadow:0 0 0 3px rgba(52,168,83,.18), 0 0 6px rgba(52,168,83,.4)}
  50%{box-shadow:0 0 0 5px rgba(52,168,83,.08), 0 0 12px rgba(52,168,83,.6)}
}

/* Floating ecosystem chips */
.hp-chip{
  position:absolute;z-index:3;
  display:inline-flex;align-items:center;gap:9px;
  padding:9px 14px 9px 9px;
  background:#fff;border:1px solid var(--gray-300);
  border-radius:var(--radius-pill);
  box-shadow:var(--shadow-md);
  font-size:.82rem;font-weight:800;color:var(--gray-800);
  animation:hp-float 5.5s ease-in-out infinite;
}
.hp-chip img,.hp-chip svg{
  width:26px;height:26px;border-radius:50%;
  padding:4px;
  background:var(--gray-100);
  flex-shrink:0;
}
.hp-chip-1{top:14px;left:-8px;animation-delay:0s}
.hp-chip-2{top:96px;right:-18px;animation-delay:.4s}
.hp-chip-3{bottom:140px;left:-22px;animation-delay:.8s}
.hp-chip-4{bottom:90px;right:8px;animation-delay:1.2s}

@keyframes hp-float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

/* Override the hero-grid right column gradient bubbles for portrait variant */
.hero-visual-wrap:has(.hero-portrait)::before{
  width:280px;height:280px;
  background:radial-gradient(circle,rgba(66,133,244,.18),transparent 70%);
  top:-30px;right:0;
}
.hero-visual-wrap:has(.hero-portrait)::after{
  width:220px;height:220px;
  background:radial-gradient(circle,rgba(234,67,53,.14),transparent 70%);
  bottom:-30px;left:-10px;
}

/* ════════════════════════════════════════════════
   ECOSYSTEM DIAGRAM (concept section visual)
═══════════════════════════════════════════════ */
.ecosystem-diagram{
  position:relative;width:min(440px,100%);aspect-ratio:1;
  margin:0 auto;
  display:grid;place-items:center;
}
.ecosystem-diagram::before{
  content:"";position:absolute;inset:0;
  border:2px dashed rgba(60,64,67,.32);
  border-radius:50%;
}
.ecosystem-diagram::after{
  content:"";position:absolute;inset:60px;
  border:1px dashed rgba(60,64,67,.16);
  border-radius:50%;
}

.eco-core{
  position:relative;z-index:2;
  display:grid;place-items:center;gap:0;
  width:170px;height:170px;
  background:linear-gradient(135deg,#fff,var(--google-blue-tint));
  border:1px solid rgba(66,133,244,.3);
  border-radius:50%;
  box-shadow:var(--shadow-lg),0 0 0 10px rgba(66,133,244,.07);
}
.eco-core img{width:96px;height:96px;grid-area:1/1}
.eco-core-emoji{font-size:84px;line-height:1;grid-area:1/1;display:grid;place-items:center}
.eco-core-emoji img{width:96px;height:96px;object-fit:contain;display:block}
.eco-core span{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

.eco-ring{position:absolute;inset:0}
.eco-node{
  position:absolute;z-index:3;
  display:inline-flex;align-items:center;gap:7px;
  padding:7px 12px 7px 7px;
  background:#fff;border:1px solid var(--gray-300);
  border-radius:var(--radius-pill);
  box-shadow:var(--shadow-sm);
  font-size:.78rem;font-weight:800;color:var(--gray-800);
  white-space:nowrap;
  animation:hp-float 6s ease-in-out infinite;
}
.eco-node img,.eco-node .eco-ico{
  width:24px;height:24px;border-radius:50%;
  display:grid;place-items:center;
  background:var(--gray-100);
  font-size:.7rem;font-weight:800;
  flex-shrink:0;
}
.eco-node img{padding:4px}
/* Distribute the 6 chips evenly at 60° intervals around the diagram (anchor by CENTER) */
.eco-node{transform:translate(-50%,-50%);animation:none;right:auto;bottom:auto}
.eco-n-1{top:10%;left:50%;animation-delay:0s}
.eco-n-2{top:30%;left:88%;animation-delay:.3s}
.eco-n-3{top:70%;left:88%;animation-delay:.6s}
.eco-n-4{top:90%;left:50%;animation-delay:.9s}
.eco-n-5{top:70%;left:12%;animation-delay:1.2s}
.eco-n-6{top:30%;left:12%;animation-delay:1.5s}
.eco-n-7{top:50%;left:-12%;transform:translateY(-50%);animation-delay:1.8s}
.eco-n-8{top:50%;right:-12%;transform:translateY(-50%);animation-delay:2.1s}
.eco-n-9{bottom:8%;right:24%;animation-delay:2.4s}

/* 9-node layout override (only Google Ads diagram has 9 nodes) */
body[data-screen-label="Google Ads"] .landing-eco{width:min(460px,100%)}
body[data-screen-label="Google Ads"] .eco-node{animation:none;transform:translate(-50%,-50%);right:auto;bottom:auto}
body[data-screen-label="Google Ads"] .eco-n-1{top:11%;left:50%}
body[data-screen-label="Google Ads"] .eco-n-2{top:20%;left:75%}
body[data-screen-label="Google Ads"] .eco-n-3{top:84%;left:65%}
body[data-screen-label="Google Ads"] .eco-n-4{top:90%;left:35%}
body[data-screen-label="Google Ads"] .eco-n-5{top:70%;left:16%}
body[data-screen-label="Google Ads"] .eco-n-6{top:20%;left:25%}
body[data-screen-label="Google Ads"] .eco-n-7{top:43%;left:12%}
body[data-screen-label="Google Ads"] .eco-n-8{top:43%;left:88%}
body[data-screen-label="Google Ads"] .eco-n-9{top:70%;left:84%}

/* ════════════════════════════════════════════════
   CAPACIDADES — 9 cards (3x3 desktop)
═══════════════════════════════════════════════ */
.caps-grid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;
  align-items:stretch;
}
.cap-card{
  position:relative;overflow:hidden;
  display:flex;flex-direction:column;gap:12px;
  padding:26px;
  border-radius:var(--radius-xl);
  background:#fff;
  border:1px solid var(--gray-300);
  box-shadow:var(--shadow-sm);
  transition:var(--transition-slow);
}
.cap-card::before{
  content:"";position:absolute;left:0;top:0;right:0;height:4px;
  background:var(--rubro-color,var(--google-blue));
  transition:height var(--transition);
}
.cap-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-lg);
  border-color:var(--rubro-color,rgba(66,133,244,.4));
}
.cap-card:hover::before{height:6px}

/* Central specialty — subtle persistent emphasis on the Google Ads card */
#cap-google-ads{
  border-color:rgba(66,133,244,.45);
  box-shadow:0 6px 24px rgba(66,133,244,.14);
}
#cap-google-ads::before{height:6px}
#cap-google-ads::after{
  content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;
  box-shadow:inset 0 0 0 1px rgba(66,133,244,.28);
}
#cap-google-ads .cap-tag{
  background:var(--google-blue);color:#fff;border-color:transparent;
}
#cap-google-ads:hover{box-shadow:0 14px 36px rgba(66,133,244,.22)}

.cap-card-head{
  display:flex;align-items:center;gap:12px;
  margin-bottom:2px;
}
.cap-num{
  display:grid;place-items:center;
  width:46px;height:46px;
  border-radius:14px;
  background:var(--rubro-tint,var(--google-blue-tint));
  color:var(--rubro-dark,var(--google-blue-dark));
  border:1px solid var(--rubro-border,rgba(66,133,244,.22));
  font-family:ui-monospace,'SF Mono',monospace;
  font-size:.92rem;font-weight:800;
  flex-shrink:0;
}
.cap-tag{
  display:inline-flex;padding:6px 12px;
  border-radius:var(--radius-pill);
  background:var(--rubro-tint,var(--google-blue-tint));
  color:var(--rubro-dark,var(--google-blue-dark));
  border:1px solid var(--rubro-border,rgba(66,133,244,.22));
  font-size:.7rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%;
}
.cap-card h3{
  font-size:1.18rem;line-height:1.25;
  color:var(--gray-900);
}
.cap-h3-row{display:flex;align-items:center;gap:12px}
.cap-h3-row h3{flex:1;min-width:0}
@media (max-width:480px){
  .cap-h3-row{gap:10px}
  .cap-avatar-mini{width:40px;height:40px}
}
.cap-avatar-mini{
  position:relative;display:inline-block;flex-shrink:0;
  width:46px;height:46px;border-radius:50%;
  padding:2px;box-sizing:border-box;background:#fff;
  box-shadow:
    0 0 0 1px rgba(60,64,67,.08),
    0 4px 10px -2px rgba(60,64,67,.14);
}
.cap-avatar-mini img{
  width:100%;height:100%;border-radius:50%;display:block;object-fit:cover;
  background:#f1f3f4;
}
.cap-card p{font-size:.94rem;color:var(--gray-700);line-height:1.55}

.cap-points{
  display:grid;gap:8px;
  margin-top:6px;padding-top:14px;
  border-top:1px dashed var(--gray-300);
}
.cap-points li{
  position:relative;padding-left:24px;
  font-size:.88rem;color:var(--gray-700);line-height:1.5;
}
.cap-points li::before{
  content:"";position:absolute;left:0;top:.35em;
  width:16px;height:16px;border-radius:50%;
  background:var(--rubro-tint,var(--google-blue-tint));
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231a73e8' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat:no-repeat;background-position:center;background-size:10px;
}
.cap-card.cap-green .cap-points li::before{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23188038' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>")}
.cap-card.cap-yellow .cap-points li::before{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%237c5200' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>")}
.cap-card.cap-red .cap-points li::before{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23c5231a' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>")}
.cap-card.cap-purple .cap-points li::before{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%235b3fb5' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>")}

.cap-cta{
  display:inline-flex;align-items:center;gap:6px;
  margin-top:auto;padding-top:12px;
  color:var(--rubro-dark,var(--google-blue-dark));
  font-weight:800;font-size:.9rem;
  transition:gap var(--transition);
}
.cap-card:hover .cap-cta{gap:10px}

/* Color theme classes */
.cap-blue{--rubro-color:var(--google-blue);--rubro-dark:var(--google-blue-dark);--rubro-tint:var(--google-blue-tint);--rubro-border:rgba(66,133,244,.26)}
.cap-green{--rubro-color:var(--google-green);--rubro-dark:var(--google-green-dark);--rubro-tint:var(--google-green-tint);--rubro-border:rgba(52,168,83,.26)}
.cap-yellow{--rubro-color:var(--google-yellow);--rubro-dark:var(--google-yellow-dark);--rubro-tint:var(--google-yellow-tint);--rubro-border:rgba(251,188,4,.3)}
.cap-red{--rubro-color:var(--google-red);--rubro-dark:var(--google-red-dark);--rubro-tint:var(--google-red-tint);--rubro-border:rgba(234,67,53,.26)}
.cap-purple{--rubro-color:var(--google-purple);--rubro-dark:var(--google-purple-dark);--rubro-tint:var(--google-purple-tint);--rubro-border:rgba(124,92,214,.26)}

/* ════════════════════════════════════════════════
   CV — Intro card + Timeline
═══════════════════════════════════════════════ */
.cv-section{
  background:
    radial-gradient(circle at 92% 8%,rgba(66,133,244,.08),transparent 28%),
    radial-gradient(circle at 8% 92%,rgba(52,168,83,.06),transparent 30%),
    var(--white);
}
.cv-head-actions{
  display:flex;gap:10px;justify-content:center;flex-wrap:wrap;
  margin-top:22px;
}

.cv-intro-card{
  position:relative;overflow:hidden;
  padding:36px 38px;margin-bottom:48px;
  background:#fff;border:1px solid var(--gray-200);border-radius:24px;
  box-shadow:var(--shadow-md);
  display:flex;align-items:center;gap:32px;
}
.cv-intro-photo{
  flex-shrink:0;
  width:140px;height:140px;border-radius:50%;
  padding:3px;box-sizing:border-box;background:#fff;
  box-shadow:
    0 0 0 1px rgba(60,64,67,.08),
    0 8px 22px -4px rgba(60,64,67,.18);
}
.cv-intro-photo img{
  width:100%;height:100%;border-radius:50%;display:block;object-fit:cover;
  background:#f1f3f4;
}
.cv-intro-body{flex:1;min-width:0}
  border-radius:var(--radius-xl);
  background:linear-gradient(180deg,#fff,#F8FAFD);
  border:1px solid var(--gray-300);
  box-shadow:var(--shadow-md);
}
.cv-intro-card::before{
  content:"";position:absolute;left:0;top:0;right:0;height:6px;
  background:var(--rainbow);
}
.cv-intro-kicker{
  display:inline-flex;align-items:center;gap:6px;
  padding:5px 12px;border-radius:var(--radius-pill);
  background:var(--google-blue-tint);color:var(--google-blue-dark);
  border:1px solid rgba(66,133,244,.22);
  font-size:.72rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;
  margin-bottom:12px;
}
.cv-intro-card h3{
  font-size:clamp(1.4rem,2.5vw,1.9rem);
  line-height:1.2;margin-bottom:14px;
}
.cv-intro-card p{
  font-size:1.02rem;line-height:1.6;color:var(--gray-700);
  max-width:780px;
}

.cv-intro-stats{
  display:grid;grid-template-columns:repeat(3,1fr);gap:14px;
  margin-top:26px;padding-top:24px;
  border-top:1px dashed var(--gray-300);
}
.cv-stat{
  display:grid;gap:4px;
  padding-left:16px;
  border-left:3px solid var(--google-blue);
}
.cv-stat:nth-child(2){border-color:var(--google-green)}
.cv-stat:nth-child(3){border-color:var(--google-yellow)}
.cv-stat strong{font-size:1.8rem;font-weight:800;color:var(--gray-900);line-height:1}
.cv-stat span{font-size:.82rem;color:var(--gray-700);font-weight:700;line-height:1.4}

/* ── Timeline vertical ── */
.cv-timeline{
  position:relative;
  list-style:none;padding:0;
  display:grid;gap:24px;
  margin-left:30px;
}
.cv-timeline::before{
  content:"";position:absolute;
  left:23px;top:14px;bottom:14px;width:4px;
  background:var(--rainbow-vertical);
  border-radius:2px;
  opacity:.5;
}

.cv-tl-item{
  position:relative;
  display:grid;grid-template-columns:62px 1fr;gap:24px;
  align-items:start;
}

.cv-tl-marker{
  position:relative;z-index:2;
  display:grid;place-items:center;
  width:50px;height:50px;
  border-radius:50%;
  background:#fff;
  border:3px solid var(--cv-color,var(--google-blue));
  color:var(--cv-dark,var(--google-blue-dark));
  font-weight:800;font-size:.82rem;
  box-shadow:0 4px 14px rgba(60,64,67,.18),0 0 0 6px rgba(255,255,255,.9);
  font-family:ui-monospace,'SF Mono',monospace;
}

.cv-tl-card{
  position:relative;overflow:hidden;
  padding:22px 26px;
  background:#fff;border:1px solid var(--gray-300);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-xs);
  transition:var(--transition);
}
.cv-tl-card::before{
  content:"";position:absolute;left:0;top:0;bottom:0;width:4px;
  background:var(--cv-color,var(--google-blue));
}
.cv-tl-item:hover .cv-tl-card{
  transform:translateX(3px);
  box-shadow:var(--shadow-md);
  border-color:var(--cv-color,rgba(66,133,244,.4));
}

.cv-tl-period{
  display:inline-flex;padding:5px 11px;
  border-radius:var(--radius-pill);
  background:var(--cv-tint,var(--google-blue-tint));
  color:var(--cv-dark,var(--google-blue-dark));
  border:1px solid var(--cv-border,rgba(66,133,244,.22));
  font-size:.7rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
  margin-bottom:10px;
}
.cv-tl-card h4{
  font-size:1.16rem;line-height:1.25;
  color:var(--gray-900);margin-bottom:10px;
}
.cv-tl-card p{font-size:.94rem;line-height:1.6;color:var(--gray-700);margin-bottom:8px}
.cv-tl-card p:last-child{margin-bottom:0}
.cv-tl-trad{
  padding:8px 12px;
  background:var(--gray-100);
  border-radius:var(--radius);
  border-left:3px solid var(--gray-300);
  font-style:italic;font-size:.88rem !important;
}
.cv-tl-tool,.cv-tl-learn,.cv-tl-now,.cv-tl-result{
  position:relative;padding-left:24px;
}
.cv-tl-tool::before,.cv-tl-learn::before,.cv-tl-now::before,.cv-tl-result::before{
  content:"";position:absolute;left:0;top:.5em;
  width:14px;height:14px;border-radius:50%;
  background:var(--cv-tint,var(--google-blue-tint));
}
.cv-tl-tool::after{
  content:"🔧";position:absolute;left:0;top:.4em;font-size:.7rem;
  width:14px;text-align:center;
}
.cv-tl-learn::after{
  content:"📘";position:absolute;left:0;top:.4em;font-size:.7rem;
  width:14px;text-align:center;
}
.cv-tl-now::after{
  content:"💡";position:absolute;left:0;top:.4em;font-size:.7rem;
  width:14px;text-align:center;
}
.cv-tl-result::after{
  content:"🏆";position:absolute;left:0;top:.4em;font-size:.7rem;
  width:14px;text-align:center;
}

.cv-tl-skills{
  display:flex;flex-wrap:wrap;gap:6px;
  margin-top:14px;padding-top:14px;
  border-top:1px dashed var(--gray-300);
}
.cv-tl-skills span{
  display:inline-flex;align-items:center;
  padding:5px 11px;
  background:var(--gray-100);border:1px solid var(--gray-300);
  border-radius:var(--radius-pill);
  font-size:.74rem;font-weight:700;color:var(--gray-700);
}

/* CV theme variants */
.cv-blue{--cv-color:var(--google-blue);--cv-dark:var(--google-blue-dark);--cv-tint:var(--google-blue-tint);--cv-border:rgba(66,133,244,.26)}
.cv-green{--cv-color:var(--google-green);--cv-dark:var(--google-green-dark);--cv-tint:var(--google-green-tint);--cv-border:rgba(52,168,83,.26)}
.cv-yellow{--cv-color:var(--google-yellow);--cv-dark:var(--google-yellow-dark);--cv-tint:var(--google-yellow-tint);--cv-border:rgba(251,188,4,.3)}
.cv-red{--cv-color:var(--google-red);--cv-dark:var(--google-red-dark);--cv-tint:var(--google-red-tint);--cv-border:rgba(234,67,53,.26)}
.cv-purple{--cv-color:var(--google-purple);--cv-dark:var(--google-purple-dark);--cv-tint:var(--google-purple-tint);--cv-border:rgba(124,92,214,.26)}

/* Highlighted "now" item */
.cv-tl-now-item .cv-tl-card{
  background:linear-gradient(180deg,#fff,rgba(234,67,53,.06));
  border-color:rgba(234,67,53,.36);
  box-shadow:0 12px 28px rgba(234,67,53,.10);
}
.cv-tl-period-now{
  background:linear-gradient(90deg,var(--google-red),var(--google-red-dark)) !important;
  color:#fff !important;border-color:transparent !important;
}
.cv-tl-now-item .cv-tl-marker{
  background:linear-gradient(135deg,var(--google-red),var(--google-red-dark));
  color:#fff;
  border-color:#fff;
  box-shadow:0 6px 18px rgba(234,67,53,.4),0 0 0 6px rgba(255,255,255,.9);
}

/* ════════════════════════════════════════════════
   CASE — Quote rich variant + Tags
═══════════════════════════════════════════════ */
.case-quote-rich{
  padding:28px !important;
  display:flex;flex-direction:column;
  position:relative;
}
.case-quote-rich::before,
.case-quote-rich::after{display:none}
.case-quote-rich .case-tag{
  margin:0 0 14px;
}
.case-quote-rich h4{
  font-size:1.28rem;color:var(--gray-900);
  font-weight:800;line-height:1.2;letter-spacing:-.01em;
  margin:0;
}
.case-quote-rich .case-title{
  display:flex;align-items:center;gap:12px;
  margin:0 0 18px;
}
.case-quote-rich .case-logo{
  flex-shrink:0;width:44px;height:44px;border-radius:12px;
  background:#fff;border:1px solid var(--gray-200);
  overflow:hidden;display:grid;place-items:center;
  box-shadow:0 4px 12px -2px rgba(60,64,67,.12);
}
.case-quote-rich .case-logo img{width:100%;height:100%;object-fit:cover;display:block}
.case-quote-rich p{
  font-size:.93rem !important;line-height:1.6;
  color:var(--gray-700) !important;font-weight:500 !important;
  font-style:normal !important;
  margin:0 0 12px;
  padding-left:14px;
  border-left:2px solid var(--gray-200);
}
.case-quote-rich p:last-of-type{margin-bottom:0}
.case-quote-rich p strong{
  display:block;
  color:var(--gray-900);font-weight:800;
  font-size:.7rem;letter-spacing:.06em;text-transform:uppercase;
  margin-bottom:3px;
}
/* Color-code each label per its semantic role */
.case-quote-rich p:nth-of-type(1){border-left-color:var(--google-red)}
.case-quote-rich p:nth-of-type(1) strong{color:var(--google-red-dark)}
.case-quote-rich p:nth-of-type(2){border-left-color:var(--google-blue)}
.case-quote-rich p:nth-of-type(2) strong{color:var(--google-blue-dark)}
.case-quote-rich p:nth-of-type(3){border-left-color:var(--google-green)}
.case-quote-rich p:nth-of-type(3) strong{color:var(--google-green-dark)}

.case-tag{
  display:inline-flex;align-items:center;
  width:max-content;padding:5px 12px;
  border-radius:var(--radius-pill);
  font-size:.7rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
  border:1px solid transparent;
}
.case-tag-blue{background:var(--google-blue-tint);color:var(--google-blue-dark);border-color:rgba(66,133,244,.26)}
.case-tag-green{background:var(--google-green-tint);color:var(--google-green-dark);border-color:rgba(52,168,83,.26)}
.case-tag-yellow{background:var(--google-yellow-tint);color:var(--google-yellow-dark);border-color:rgba(251,188,4,.3)}
.case-tag-red{background:var(--google-red-tint);color:var(--google-red-dark);border-color:rgba(234,67,53,.26)}

/* Wide case (5th item) spans full width on 2-col grid */
.case-card-wide{grid-column:1/-1}

/* When the case-quote is itself an <a> (linkea a la estrategia) */
.case-quote-link{
  display:flex;flex-direction:column;
  transition:var(--transition);
  cursor:pointer;
}
.case-quote-link:hover{
  background:linear-gradient(180deg,#fff,var(--google-blue-tint));
}
.case-read-link{
  display:inline-flex;align-items:center;gap:8px;
  margin-top:18px;padding-top:16px;
  border-top:1px dashed var(--gray-300);
  color:var(--google-blue-dark);font-weight:800;font-size:.92rem;
  transition:gap var(--transition);
}
.case-quote-link:hover .case-read-link{gap:14px}

/* ════════════════════════════════════════════════
   OWN BUSINESS CARD (bonus)
═══════════════════════════════════════════════ */
.own-business-card{
  display:grid;grid-template-columns:auto 1fr;gap:28px;align-items:start;
  padding:32px;margin-top:36px;
  border-radius:var(--radius-xl);
  background:
    radial-gradient(circle at 92% 8%,rgba(251,188,4,.14),transparent 28%),
    radial-gradient(circle at 12% 92%,rgba(234,67,53,.10),transparent 30%),
    linear-gradient(135deg,#fff,#F8FAFD);
  border:1px solid var(--gray-300);
  box-shadow:0 16px 40px rgba(60,64,67,.10);
  position:relative;overflow:hidden;
}
.own-business-card::before{
  content:"";position:absolute;left:0;top:0;right:0;height:6px;
  background:linear-gradient(90deg,var(--google-yellow),var(--google-red));
}
.obc-emoji{
  display:grid;place-items:center;
  width:74px;height:74px;border-radius:var(--radius-xl);
  background:linear-gradient(135deg,var(--google-yellow-tint),#fff);
  border:1px solid rgba(251,188,4,.26);
  box-shadow:var(--shadow-sm);
  font-size:2rem;flex-shrink:0;
}
.obc-body h3{
  font-size:clamp(1.2rem,2vw,1.45rem);
  margin:10px 0 10px;line-height:1.25;
}
.obc-body p{font-size:.98rem;line-height:1.6;color:var(--gray-700)}
.obc-list{display:grid;gap:8px;margin-top:14px;list-style:none}
.obc-list li{
  position:relative;padding-left:22px;
  font-size:.92rem;color:var(--gray-700);line-height:1.55;
}
.obc-list li::before{
  content:"→";position:absolute;left:0;top:0;
  color:var(--google-yellow-dark);font-weight:800;
}
.obc-list li strong{color:var(--gray-900)}

/* ════════════════════════════════════════════════
   LANDING — Componentes específicos de subpágina
═══════════════════════════════════════════════ */
/* Breadcrumb */
.breadcrumb{
  padding:20px 0 0;
  background:transparent;
}
.breadcrumb .container{
  display:flex;align-items:center;gap:6px;flex-wrap:wrap;
  font-size:.82rem;font-weight:700;color:var(--gray-500);
}
.breadcrumb a{
  color:var(--google-blue-dark);
  transition:var(--transition);
}
.breadcrumb a:hover{color:var(--google-blue);text-decoration:underline}
.breadcrumb .bc-sep{color:var(--gray-500);font-weight:800;opacity:.6}
.breadcrumb .bc-current{color:var(--gray-800);font-weight:800}

/* Landing hero — full-width with right visual */
.landing-hero{
  padding:40px 0 64px !important;
}
.landing-hero-grid{
  display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);
  gap:56px;align-items:center;
}
.landing-hero-visual{
  position:relative;
  display:grid;place-items:center;
}
.landing-hero-shot{
  position:relative;z-index:2;
  width:100%;max-width:480px;
  aspect-ratio:4/3;
  border-radius:var(--radius-xl);
  overflow:hidden;
  background:linear-gradient(135deg,var(--rubro-tint,var(--google-blue-tint)),#fff);
  border:1px solid var(--gray-300);
  box-shadow:var(--shadow-xl);
  display:grid;place-items:center;
  padding:38px;
}
.landing-hero-shot::before{
  content:"";position:absolute;left:0;top:0;right:0;height:6px;
  background:var(--rainbow);
  z-index:3;
}
/* Big icon-style hero visual */
.lhs-emoji{
  font-size:6rem;line-height:1;
  filter:drop-shadow(0 12px 24px rgba(60,64,67,.18));
}
.lhs-label{
  position:absolute;left:50%;bottom:20px;transform:translateX(-50%);
  display:inline-flex;align-items:center;gap:6px;
  padding:8px 14px;
  background:#fff;border:1px solid var(--gray-300);
  border-radius:var(--radius-pill);
  box-shadow:var(--shadow-sm);
  font-size:.74rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
  color:var(--rubro-dark,var(--google-blue-dark));
  white-space:nowrap;
}

/* Floating side chips (same as hero portrait but smaller) */
.lhs-chip{
  position:absolute;z-index:3;
  display:inline-flex;align-items:center;gap:7px;
  padding:8px 13px 8px 8px;
  background:#fff;border:1px solid var(--gray-300);
  border-radius:var(--radius-pill);
  box-shadow:var(--shadow-md);
  font-size:.76rem;font-weight:800;color:var(--gray-800);
  animation:hp-float 5s ease-in-out infinite;
}
.lhs-chip-emoji{
  width:24px;height:24px;display:grid;place-items:center;
  background:var(--gray-100);border-radius:50%;
  font-size:.9rem;
}
.lhs-chip-1{top:8px;left:-12px;animation-delay:0s}
.lhs-chip-2{top:100px;right:-20px;animation-delay:.3s}
.lhs-chip-3{bottom:80px;left:-20px;animation-delay:.6s}

/* Trust pills row (replacement for hero-trust list) */
.lhs-trust{
  display:flex;flex-wrap:wrap;gap:10px;
  margin-top:24px;
}
.lhs-trust span{
  display:inline-flex;align-items:center;gap:7px;
  padding:7px 13px;
  background:#fff;border:1px solid var(--gray-300);
  border-radius:var(--radius-pill);
  box-shadow:var(--shadow-xs);
  font-size:.82rem;font-weight:700;color:var(--gray-700);
}
.lhs-trust span::before{
  content:"";width:7px;height:7px;border-radius:50%;
  background:var(--google-green);
  box-shadow:0 0 0 3px rgba(52,168,83,.18);
}

/* Sub-feature grids inside landings */
.feat-section{padding:72px 0}
.feat-section.bg-alt{
  background:linear-gradient(180deg,var(--gray-100),#fff);
}
.feat-section.bg-tint{
  background:
    radial-gradient(circle at 92% 12%,var(--rubro-tint,rgba(66,133,244,.08)),transparent 28%),
    var(--gray-100);
}

.feat-grid-4{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;
}
.feat-grid-3{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;
}
.feat-grid-6{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;
}
.feat-card{
  position:relative;overflow:hidden;
  padding:22px;
  background:#fff;border:1px solid var(--gray-300);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-xs);
  transition:var(--transition);
}
.feat-card::before{
  content:"";position:absolute;left:0;top:0;right:0;height:3px;
  background:var(--rubro-color,var(--google-blue));
  opacity:.5;transition:var(--transition);
}
.feat-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
  border-color:var(--rubro-color,rgba(66,133,244,.3));
}
.feat-card:hover::before{opacity:1;height:4px}
.feat-card .feat-ico{
  display:grid;place-items:center;
  width:42px;height:42px;border-radius:12px;
  background:var(--rubro-tint,var(--google-blue-tint));
  color:var(--rubro-dark,var(--google-blue-dark));
  font-size:1.2rem;font-weight:800;
  margin-bottom:14px;
  flex-shrink:0;
}
.feat-card h3{
  font-size:1rem;line-height:1.3;
  color:var(--gray-900);margin-bottom:6px;
}
.feat-card p{font-size:.88rem;line-height:1.55;color:var(--gray-700)}

/* Who is this for — split panel */
.who-for{
  display:grid;grid-template-columns:1fr 1fr;gap:24px;
  margin-top:32px;
}
.who-for.who-for-single{grid-template-columns:minmax(0,720px);justify-content:center}
.who-for-card{
  position:relative;overflow:hidden;
  padding:30px;
  background:linear-gradient(180deg,#fff,#F8FAFD);
  border:1px solid var(--gray-300);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow-sm);
}
.who-for-card::before{
  content:"";position:absolute;left:0;top:0;right:0;height:5px;
}
.who-for-card.wf-agencies::before{background:linear-gradient(90deg,var(--google-blue),var(--google-green))}
.who-for-card.wf-companies::before{background:linear-gradient(90deg,var(--google-yellow),var(--google-red))}
.who-for-card h3{
  font-size:1.2rem;line-height:1.25;
  margin:14px 0 6px;
}
.who-for-card p{font-size:.94rem;line-height:1.55;color:var(--gray-700);margin-bottom:14px}
.who-for-card ul{display:grid;gap:8px;list-style:none}
.who-for-card li{
  position:relative;padding-left:24px;
  font-size:.92rem;color:var(--gray-700);line-height:1.5;
}
.who-for-card li::before{
  content:"";position:absolute;left:0;top:.4em;
  width:16px;height:16px;border-radius:50%;
  background:var(--google-green-tint);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23188038' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat:no-repeat;background-position:center;background-size:10px;
}
.who-for-card .who-tag{
  display:inline-flex;align-items:center;gap:7px;
  padding:6px 12px;border-radius:var(--radius-pill);
  font-size:.72rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
}
.wf-agencies .who-tag{background:var(--google-blue-tint);color:var(--google-blue-dark);border:1px solid rgba(66,133,244,.22)}
.wf-companies .who-tag{background:var(--google-yellow-tint);color:var(--google-yellow-dark);border:1px solid rgba(251,188,4,.3)}

/* Big CTA banner inside landing */
.landing-cta{
  padding:72px 0;
  background:
    radial-gradient(circle at 18% 18%,rgba(66,133,244,.10),transparent 30%),
    radial-gradient(circle at 82% 82%,rgba(52,168,83,.10),transparent 30%),
    var(--white);
  border-top:1px solid var(--gray-300);
  border-bottom:1px solid var(--gray-300);
}
.landing-cta-card{
  position:relative;overflow:hidden;
  padding:42px 48px;
  background:linear-gradient(135deg,var(--google-blue-dark) 0%,var(--google-blue) 100%);
  color:#fff;
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow-xl);
  text-align:center;
}
.landing-cta-card::before{
  content:"";position:absolute;left:0;top:0;right:0;height:6px;
  background:var(--rainbow);
}
.landing-cta-card .eyebrow{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.22);
  color:#fff;
  margin:0 auto 18px;
}
.landing-cta-card h2{
  color:#fff;
  font-size:clamp(1.7rem,3vw,2.6rem);
  margin-bottom:14px;
}
.landing-cta-card p{
  color:rgba(255,255,255,.78);
  font-size:1.05rem;line-height:1.55;
  max-width:680px;margin:0 auto 28px;
}
.landing-cta-card .btn-light{
  background:rgba(255,255,255,.1);
  color:#fff;border-color:rgba(255,255,255,.22);
}
.landing-cta-card .btn-light:hover{
  background:rgba(255,255,255,.18);
  border-color:rgba(255,255,255,.36);
}

/* Cross-link other capabilities (footer of each landing) */
.other-caps{
  padding:64px 0;
  background:var(--gray-100);
}
.other-caps-grid{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;
}
.other-cap{
  display:grid;gap:6px;
  padding:18px;
  background:#fff;border:1px solid var(--gray-300);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-xs);
  transition:var(--transition);
}
.other-cap:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
  border-color:rgba(66,133,244,.3);
}
.other-cap .oc-emoji{font-size:1.4rem;line-height:1}
.other-cap .oc-name{
  font-size:.92rem;font-weight:800;color:var(--gray-900);
  display:flex;align-items:center;justify-content:space-between;gap:6px;
}
.other-cap .oc-desc{font-size:.78rem;line-height:1.45;color:var(--gray-700)}

/* Responsive */
@media (max-width: 1024px){
  .feat-grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}
  .feat-grid-6{grid-template-columns:repeat(2,minmax(0,1fr))}
  .feat-grid-3{grid-template-columns:repeat(2,minmax(0,1fr))}
  .other-caps-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .who-for{grid-template-columns:1fr}
  .landing-hero-grid{grid-template-columns:1fr;gap:36px}
}
@media (max-width: 720px){
  .feat-grid-4,.feat-grid-6,.feat-grid-3{grid-template-columns:1fr}
  .other-caps-grid{grid-template-columns:1fr}
  .landing-cta-card{padding:28px 22px}
  .landing-hero-shot{max-width:340px;padding:28px}
  .lhs-emoji{font-size:4.6rem}
}

/* ════════════════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════════════ */

/* "Sin esto" cards — visual de costo/riesgo */
.without-card{
  background:linear-gradient(180deg,#fff,rgba(234,67,53,.04)) !important;
  border-color:rgba(234,67,53,.18) !important;
}
.without-card::before{
  background:var(--google-red) !important;
  opacity:.7 !important;
}
.without-card:hover{
  border-color:rgba(234,67,53,.42) !important;
}
.without-card .feat-ico{
  background:var(--google-red-tint) !important;
  color:var(--google-red-dark) !important;
}
.float-wa{
  position:fixed;z-index:90;
  right:22px;bottom:22px;
  display:grid;place-items:center;
  width:58px;height:58px;border-radius:50%;
  background:var(--google-green);color:#fff;
  box-shadow:0 8px 24px rgba(52,168,83,.42),0 0 0 6px rgba(52,168,83,.12);
  transition:var(--transition);
  animation:hp-float 3.5s ease-in-out infinite;
}
.float-wa:hover{
  background:var(--google-green-dark);
  transform:scale(1.08);
  box-shadow:0 12px 32px rgba(24,128,56,.5),0 0 0 8px rgba(52,168,83,.18);
}

/* ════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px){
  .caps-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .cv-intro-stats{grid-template-columns:1fr;gap:18px}
  .cv-stat{padding-left:14px}
}

@media (max-width: 860px){
  .hp-photo{width:280px;height:280px}
  .hp-chip{font-size:.74rem;padding:7px 12px 7px 7px}
  .hp-chip img,.hp-chip svg{width:22px;height:22px}
  .ecosystem-diagram{width:320px}
  .own-business-card{grid-template-columns:1fr;gap:18px;padding:24px}
  .obc-emoji{width:60px;height:60px;font-size:1.7rem}
  .case-card-wide{grid-column:auto}
  .case-card-wide{grid-column:auto}
}

@media (max-width: 720px){
  .caps-grid{grid-template-columns:1fr}
  .cv-timeline{margin-left:6px;gap:18px}
  .cv-timeline::before{left:21px}
  .cv-tl-item{grid-template-columns:50px 1fr;gap:14px}
  .cv-tl-marker{width:44px;height:44px;font-size:.74rem}
  .cv-tl-card{padding:18px 20px}
  .cv-tl-card h4{font-size:1.04rem}
  .cv-intro-card{padding:24px;margin-bottom:32px;flex-direction:column;align-items:flex-start;gap:18px;text-align:left}
  .cv-intro-photo{width:96px;height:96px}
  .hero-portrait{min-height:420px}
  .hp-photo{width:240px;height:240px}
  .hp-chip-1{top:6px;left:-12px}
  .hp-chip-2{top:80px;right:-22px}
  .hp-chip-3{bottom:130px;left:-26px}
  .hp-chip-4{bottom:140px;right:-8px;top:auto;left:auto}
  .float-wa{right:14px;bottom:14px;width:52px;height:52px}
  /* Concept overview: diagram size + chip sizing on mobile */
  .concept-overview{padding:18px 8px 32px;overflow:visible}
  .concept-overview::before{border-radius:var(--radius-xl) var(--radius-xl) 0 0}
  .concept-visual{padding-bottom:24px}
  .ecosystem-diagram{width:240px}
  .ecosystem-diagram .eco-node{font-size:.72rem;padding:5px 10px 5px 5px}
  .ecosystem-diagram .eco-ico{width:24px;height:24px;font-size:.82rem}
  .ecosystem-diagram .eco-node img{width:24px;height:24px}
  /* Re-distribute 6 chips evenly around the diagram on mobile — anchor by chip CENTER */
  .ecosystem-diagram .eco-node{animation:none;transform:translate(-50%,-50%);right:auto;bottom:auto}
  .ecosystem-diagram .eco-n-1{top:10%;left:50%}
  .ecosystem-diagram .eco-n-2{top:30%;left:88%}
  .ecosystem-diagram .eco-n-3{top:70%;left:88%}
  .ecosystem-diagram .eco-n-4{top:90%;left:50%}
  .ecosystem-diagram .eco-n-5{top:70%;left:12%}
  .ecosystem-diagram .eco-n-6{top:30%;left:12%}
}


/* ═══════════════════════════════════════════════
   RESULTADOS REALES — Google Ads dashboard screenshots
═══════════════════════════════════════════════ */
.results-real{
  background:linear-gradient(180deg,var(--google-blue-tint) 0%,#fff 60%);
  padding:96px 0;
}
.results-real .section-head{margin-bottom:44px}
.rr-card{position:relative;margin:0 auto 36px;background:#fff;border:1px solid var(--gray-200);border-radius:18px;box-shadow:var(--shadow-xl);overflow:hidden;transition:transform .35s ease, box-shadow .35s ease}
.rr-card:hover{transform:translateY(-3px);box-shadow:0 24px 56px -12px rgba(60,64,67,.28), 0 6px 12px rgba(60,64,67,.08)}
.rr-card-featured{max-width:1100px}
.rr-chrome{display:flex;align-items:center;gap:12px;padding:11px 16px;background:#f6f8fb;border-bottom:1px solid var(--gray-200);font-size:.78rem;font-weight:600;color:var(--gray-700)}
.rr-dots{display:inline-flex;gap:5px;flex-shrink:0}
.rr-dots i{width:11px;height:11px;border-radius:50%;background:#e2e5ea}
.rr-dots i:nth-child(1){background:#ed6a5e}
.rr-dots i:nth-child(2){background:#f5bf4f}
.rr-dots i:nth-child(3){background:#62c554}
.rr-url{display:inline-flex;align-items:center;gap:8px;flex:1;min-width:0;padding:5px 12px;background:#fff;border:1px solid var(--gray-200);border-radius:99px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--gray-700);font-weight:600}
.rr-url svg{color:var(--google-green-dark);flex-shrink:0}
.rr-logo{flex-shrink:0;width:18px;height:18px;border-radius:50%;background:#fff;border:1px solid var(--gray-200);display:grid;place-items:center;overflow:hidden}
.rr-logo img{width:100%;height:100%;object-fit:cover;display:block}
.rr-pill{flex-shrink:0;padding:4px 10px;border-radius:99px;font-size:.7rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase}
.rr-pill-blue{background:var(--google-blue-tint);color:var(--google-blue-dark);border:1px solid rgba(66,133,244,.2)}
.rr-card > img{display:block;width:100%;height:auto;background:#f6f8fb}
.rr-cap{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:start;padding:24px 28px;border-top:1px solid var(--gray-200)}
.rr-cap-kpi{display:flex;flex-direction:column;gap:2px}
.rr-cap-kpi strong{font-size:1.6rem;font-weight:800;letter-spacing:-.02em;color:var(--gray-900);font-feature-settings:"tnum","ss01"}
.rr-cap-kpi span{font-size:.78rem;font-weight:600;color:var(--gray-700)}
.rr-cap-note{grid-column:1/-1;margin:0;padding-top:14px;border-top:1px dashed var(--gray-200);font-size:.88rem;color:var(--gray-700)}
/* old rr-cap-compact replaced — see end of file */
.rr-cap-compact strong{font-size:1rem;font-weight:800;color:var(--gray-900)}
.rr-cap-compact span{font-size:.82rem;color:var(--gray-700);font-weight:500}
.rr-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;margin-top:8px}
.rr-grid .rr-card{margin-bottom:0}
.rr-disclaimer{display:flex;align-items:center;justify-content:center;gap:8px;margin:36px auto 0;max-width:780px;font-size:.82rem;color:var(--gray-700);text-align:center;line-height:1.5}
.rr-disclaimer svg{color:var(--google-blue);flex-shrink:0}
@media (max-width:900px){
  .results-real{padding:64px 0}
  .rr-cap{grid-template-columns:1fr 1fr;gap:18px;padding:20px}
  .rr-cap-note{grid-column:1/-1}
  .rr-grid{grid-template-columns:1fr;gap:18px}
  .rr-cap-kpi strong{font-size:1.3rem}
}
@media (max-width:560px){
  .results-real{padding:48px 0}
  .rr-card{border-radius:14px;margin-bottom:24px}
  .rr-chrome{padding:9px 12px;gap:8px;font-size:.7rem}
  .rr-dots i{width:9px;height:9px}
  .rr-url{padding:4px 10px;font-size:.7rem}
  .rr-pill{display:none}
  .rr-cap{grid-template-columns:1fr;padding:16px}
  .rr-cap-kpi{padding:10px 0;border-bottom:1px dashed var(--gray-200)}
  .rr-cap-kpi:last-of-type{border-bottom:none}
}

/* Dashboard section embedded inside estrategia pages */
.es-dashboard-section{padding:80px 0;background:linear-gradient(180deg,var(--google-blue-tint) 0%,#fff 60%)}
.es-dashboard-section .section-head{margin-bottom:40px}
.es-dashboard-section .section-head p{font-size:1rem;max-width:680px;margin:14px auto 0}
@media (max-width:560px){
  .es-dashboard-section{padding:48px 0}
}

.rr-shot{position:relative;display:block;line-height:0}
.rr-shot > img{display:block;width:100%;height:auto;background:#f6f8fb}
.rr-blur{
  position:absolute;
  background:rgba(255,255,255,.02);
  backdrop-filter:blur(7px);
  -webkit-backdrop-filter:blur(7px);
  border-radius:6px;
  pointer-events:none;
}
.rr-card > .rr-shot{width:100%}

/* Otras estrategias — link grid in each estrategia page */
.es-others-section{padding:80px 0;background:linear-gradient(180deg,#fff,var(--google-blue-tint))}
.es-others-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;max-width:880px;margin:0 auto}
.es-other-card{
  display:flex;align-items:center;gap:14px;
  padding:16px 18px;background:#fff;border:1px solid var(--gray-200);border-radius:14px;
  text-decoration:none;color:inherit;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow:var(--shadow-sm);
}
.es-other-card:hover{transform:translateY(-2px);border-color:rgba(66,133,244,.4);box-shadow:0 12px 24px -8px rgba(60,64,67,.18)}
.es-other-logo{
  flex-shrink:0;width:44px;height:44px;border-radius:12px;
  background:#fff;border:1px solid var(--gray-200);
  overflow:hidden;display:grid;place-items:center;
}
.es-other-logo img{width:100%;height:100%;object-fit:cover;display:block}
.es-other-body{flex:1;min-width:0;display:flex;flex-direction:column;gap:2px}
.es-other-body strong{font-size:.98rem;font-weight:800;color:var(--gray-900);letter-spacing:-.005em}
.es-other-body span{font-size:.82rem;font-weight:600;color:var(--gray-700)}
.es-other-arrow{
  flex-shrink:0;width:30px;height:30px;border-radius:50%;
  background:var(--google-blue-tint);color:var(--google-blue-dark);
  display:grid;place-items:center;font-weight:800;font-size:1rem;
  transition:transform .2s ease, background .2s ease;
}
.es-other-card:hover .es-other-arrow{background:var(--google-blue);color:#fff;transform:translateX(2px)}
@media (max-width:680px){
  .es-others-section{padding:56px 0}
  .es-others-grid{grid-template-columns:1fr}
}

/* 3-column dashboard grid (for category landings) */
.rr-grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;margin-top:8px}
.rr-grid-3 .rr-card{margin-bottom:0}
@media (max-width:900px){
  .rr-grid-3{grid-template-columns:1fr;gap:18px}
}

/* Logo del cliente en el caption de cada dashboard card */
.rr-cap-compact{display:flex;align-items:center;gap:12px;padding:18px 22px}
.rr-cap-logo{
  flex-shrink:0;width:44px;height:44px;border-radius:12px;
  background:#fff;border:1px solid var(--gray-200);
  overflow:hidden;display:grid;place-items:center;
  box-shadow:0 2px 6px rgba(60,64,67,.06);
}
.rr-cap-logo img{width:100%;height:100%;object-fit:cover;display:block}
.rr-cap-text{flex:1;min-width:0;display:flex;flex-direction:column;gap:2px}

/* Make dashboard cards linkable */
.rr-card-link{
  display:block;text-decoration:none;color:inherit;
  transition:transform .25s ease;
}
.rr-card-link:hover{transform:translateY(-4px)}
.rr-card-link:hover .rr-card{
  border-color:rgba(66,133,244,.4);
  box-shadow:0 24px 56px -12px rgba(60,64,67,.28), 0 6px 12px rgba(60,64,67,.08);
}
.rr-card-link:hover .rr-cap-compact strong{color:var(--google-blue-dark)}
/* Subtle arrow indicator on the right side of the figcaption */
.rr-card-link .rr-cap-compact{position:relative;padding-right:46px}
.rr-card-link .rr-cap-compact::after{
  content:"→";position:absolute;right:18px;top:50%;transform:translateY(-50%);
  width:28px;height:28px;border-radius:50%;
  background:var(--google-blue-tint);color:var(--google-blue-dark);
  display:grid;place-items:center;font-weight:800;
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
.rr-card-link:hover .rr-cap-compact::after{
  background:var(--google-blue);color:#fff;transform:translateY(-50%) translateX(2px);
}


/* ════════════════════════════════════════════════
   REDISEÑO 2026 — bloques nuevos
═══════════════════════════════════════════════ */

/* Nav — dropdown en 2 columnas */
.nav-drop-cols{grid-template-columns:1fr 1fr;width:min(640px,90vw);gap:8px 18px;padding:16px}
.nav-dropdown:hover .nav-drop-cols,.nav-dropdown.open .nav-drop-cols{display:grid}
.nav-drop-col ul{display:grid;gap:2px}
.nav-drop-head{display:block;font-size:.68rem;font-weight:800;letter-spacing:.09em;text-transform:uppercase;color:var(--gray-500);padding:4px 10px 8px}
.nav-ico-svg{width:18px;height:18px;flex:0 0 auto;color:var(--gray-500);fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.nav-drop-menu a:hover .nav-ico-svg{color:var(--google-blue-dark)}

/* Hero — franja de prueba */
.hero-proof{display:flex;flex-wrap:wrap;gap:10px;margin:20px 0 4px}
.hero-proof li{display:flex;align-items:baseline;gap:7px;padding:9px 15px;background:var(--white);border:1px solid var(--gray-300);border-radius:var(--radius-pill);box-shadow:var(--shadow-xs)}
.hero-proof strong{font-size:1.22rem;font-weight:800;letter-spacing:-.02em;font-variant-numeric:tabular-nums;color:var(--gray-900)}
.hero-proof span{font-size:.78rem;font-weight:700;color:var(--gray-600)}

/* Problema */
.prob-section{padding:84px 0;background:var(--white);border-top:1px solid var(--gray-200);border-bottom:1px solid var(--gray-200)}
.prob-list{display:grid;gap:0;max-width:900px;margin:0 auto;counter-reset:prob}
.prob-item{position:relative;display:flex;gap:20px;align-items:flex-start;padding:26px 24px;border-radius:var(--radius-lg);transition:var(--transition)}
.prob-item + .prob-item{border-top:1px dashed var(--gray-300)}
.prob-item:hover{background:var(--gray-100)}
.prob-ico{flex:0 0 auto;width:44px;height:44px;border-radius:13px;display:grid;place-items:center;background:var(--google-red-tint);color:var(--google-red-dark)}
.prob-ico svg{width:22px;height:22px}
.prob-item h3{font-size:1.06rem;margin-bottom:5px}
.prob-item p{font-size:.94rem;line-height:1.6;color:var(--gray-700)}
.prob-leak{position:absolute;left:45px;bottom:0;width:2px;height:26px;background:linear-gradient(180deg,var(--google-red) 0%,transparent 100%);opacity:.45}
.prob-item:last-child .prob-leak{display:none}

/* Oferta */
.offer-section{padding:84px 0;background:var(--gray-100)}
.offer-card{position:relative;overflow:hidden;display:grid;grid-template-columns:1.35fr .85fr;gap:40px;padding:48px 52px;border-radius:28px;background:linear-gradient(150deg,#1b1c1f 0%,#2b2d31 100%);color:#fff;box-shadow:var(--shadow-xl)}
.offer-card::before{content:"";position:absolute;left:0;top:0;right:0;height:6px;background:var(--rainbow)}
.offer-card h2{color:#fff;margin:12px 0 14px}
.offer-name{font-size:1.06rem;font-weight:700;color:#fff;opacity:.92;margin-bottom:22px}
.offer-check{display:grid;gap:12px}
.offer-check li{position:relative;padding-left:32px;font-size:.98rem;line-height:1.55;color:rgba(255,255,255,.86)}
.offer-check li::before{content:"";position:absolute;left:0;top:2px;width:20px;height:20px;border-radius:50%;background:var(--google-green);
  -webkit-mask:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/16px no-repeat, linear-gradient(#000,#000);
  -webkit-mask-composite:xor;mask-composite:exclude}
.offer-side{display:flex;flex-direction:column;justify-content:center;gap:18px;padding:28px;border-radius:var(--radius-xl);background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12)}
.offer-risk{font-size:.95rem;line-height:1.6;color:rgba(255,255,255,.88)}
.offer-alt{align-self:center;font-size:.9rem;font-weight:700;color:rgba(255,255,255,.75);border-bottom:1px solid rgba(255,255,255,.3);padding-bottom:2px}
.offer-alt:hover{color:#fff;border-bottom-color:#fff}

/* Capacidades — jerarquía */
.cap-card.cap-lead{display:grid;grid-template-columns:1fr auto;align-items:center;gap:32px;margin-bottom:22px;padding:38px 42px}
.cap-lead h3{font-size:1.6rem;margin:10px 0 12px}
.cap-lead-art img{width:120px;height:120px;object-fit:contain;opacity:.9}
.caps-mid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.caps-rest-label{margin:38px 0 16px;font-size:.9rem;font-weight:800;color:var(--gray-700)}
.caps-rest{display:flex;flex-wrap:wrap;gap:12px}
.cap-mini{display:inline-flex;align-items:center;gap:11px;padding:13px 18px;background:var(--white);border:1px solid var(--gray-300);border-radius:var(--radius-pill);font-size:.9rem;font-weight:700;color:var(--gray-800);box-shadow:var(--shadow-xs);transition:var(--transition)}
.cap-mini:hover{border-color:rgba(66,133,244,.4);color:var(--google-blue-dark);box-shadow:var(--shadow-sm);transform:translateY(-2px)}
.cap-mini-ico{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;color:var(--gray-500)}
.cap-mini:hover .cap-mini-ico{color:var(--google-blue-dark)}
.cap-mini-arrow{width:14px;height:14px;opacity:.35}

/* Testimonios */
.testi-wrap{display:grid;gap:20px;margin:40px 0 0}
.testi-card{position:relative;background:var(--white);border:1px solid var(--gray-200);border-left:4px solid var(--google-yellow);border-radius:var(--radius-xl);padding:30px 34px;box-shadow:var(--shadow-sm);max-width:760px;margin:0 auto}
.testi-quote{width:28px;height:28px;color:var(--google-yellow);margin-bottom:10px}
.testi-card blockquote p{font-size:1.1rem;line-height:1.6;color:var(--gray-800);font-weight:600}
.testi-card figcaption{margin-top:16px;display:flex;flex-direction:column;gap:2px}
.testi-card figcaption strong{font-size:.9rem}
.testi-card figcaption span{font-size:.82rem;color:var(--gray-600);font-weight:600}

/* Lead magnet */
.lm-section{padding:72px 0}
.lm-card{display:grid;grid-template-columns:1.15fr .85fr;gap:36px;align-items:center;padding:40px 44px;background:var(--white);border:1px solid var(--gray-200);border-radius:26px;box-shadow:var(--shadow-md)}
.lm-copy h2{font-size:1.5rem;margin:12px 0 10px;text-wrap:pretty}
.lm-copy p{font-size:.95rem}
.lm-form{display:grid;gap:12px}
.lm-field{display:grid;gap:5px}
.lm-field span{font-size:.76rem;font-weight:800;letter-spacing:.05em;text-transform:uppercase;color:var(--gray-600)}
.lm-field input{padding:13px 16px;border:1px solid var(--gray-300);border-radius:var(--radius);font:inherit;font-size:.95rem;background:var(--gray-100);transition:var(--transition)}
.lm-field input:focus{outline:none;border-color:var(--google-blue);background:var(--white);box-shadow:0 0 0 3px rgba(66,133,244,.18)}
.lm-note{font-size:.82rem;color:var(--google-green-dark);font-weight:700;min-height:1em}

/* Autoridad */
.auth-section{padding:72px 0 84px;background:var(--white);border-top:1px solid var(--gray-200)}
.auth-card{display:grid;grid-template-columns:auto 1fr;gap:36px;align-items:start;max-width:960px;margin:0 auto}
.auth-photo img{width:150px;height:150px;border-radius:50%;object-fit:cover;border:4px solid var(--white);box-shadow:var(--shadow-lg)}
.auth-body h2{font-size:1.72rem;margin:12px 0 14px}
.auth-body p{font-size:1rem;line-height:1.66;margin-bottom:12px;max-width:64ch}
.auth-stats{display:flex;flex-wrap:wrap;gap:26px;margin:22px 0;padding:18px 0;border-top:1px solid var(--gray-200);border-bottom:1px solid var(--gray-200)}
.auth-stats div{display:flex;flex-direction:column}
.auth-stats strong{font-size:1.55rem;font-weight:800;letter-spacing:-.02em;color:var(--gray-900);font-variant-numeric:tabular-nums}
.auth-stats span{font-size:.8rem;font-weight:700;color:var(--gray-600)}
.auth-links{display:flex;flex-wrap:wrap;align-items:center;gap:16px;margin-top:20px}
.auth-link{display:inline-flex;align-items:center;gap:7px;font-size:.9rem;font-weight:700;color:var(--gray-700)}
.auth-link:hover{color:var(--google-blue-dark)}

/* Concept kicker icon */
.ck-ico{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

/* CTA fija mobile */
.mobile-cta{display:none}

@media (max-width:1020px){
  .offer-card{grid-template-columns:1fr;gap:28px;padding:38px 32px}
  .lm-card{grid-template-columns:1fr;gap:24px;padding:32px 28px}
  .caps-mid{grid-template-columns:1fr 1fr}
  .cap-card.cap-lead{grid-template-columns:1fr;gap:20px;padding:32px}
  .cap-lead-art{display:none}
}
@media (max-width:760px){
  .caps-mid{grid-template-columns:1fr}
  .auth-card{grid-template-columns:1fr;gap:22px;justify-items:start}
  .auth-photo img{width:110px;height:110px}
  .prob-item{padding:22px 4px;gap:14px}
  .prob-leak{left:26px}
  .offer-card{padding:32px 22px}
  .mobile-cta{display:block;position:fixed;left:0;right:0;bottom:0;z-index:900;padding:10px 14px calc(10px + env(safe-area-inset-bottom));background:rgba(255,255,255,.94);backdrop-filter:blur(10px);border-top:1px solid var(--gray-300)}
  .mobile-cta .btn{width:100%;min-height:52px}
  .float-wa{bottom:88px}
  body{padding-bottom:72px}
  .hero-proof li{padding:8px 13px}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;scroll-behavior:auto !important}
  .reveal,.reveal-up,.reveal-stagger > *{opacity:1 !important;transform:none !important}
}
:focus-visible{outline:3px solid var(--google-blue);outline-offset:2px;border-radius:4px}
:where(a:not([class])){color:var(--google-blue-dark)}
:where(a:not([class]):hover){color:var(--google-blue)}
.btn,.btn:hover,.btn:focus{text-decoration:none}
.btn-primary,.btn-primary:hover,.btn-whatsapp,.btn-whatsapp:hover,.btn-green,.btn-green:hover,.home-page .btn-primary,.home-page .btn-primary:hover,.landing-page .btn-primary,.landing-page .btn-primary:hover{color:#fff}
