﻿/* ================================================
   LONDONPLAST – Modern Light 2026
   Inspirado em: Linear, Vercel, Stripe, Apple
   Tecnologias: CSS Custom Properties, Bento Grid,
   Scroll-driven animations, Glass effects,
   CSS @keyframes, clamp(), aspect-ratio, text-wrap
   ================================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Brand */
  --red:        #e3001b;
  --red-dark:   #b80016;
  --red-light:  #fff1f2;
  --red-mid:    #fecdd3;
  --blue:       #1a4eb8;
  --blue-light: #eff6ff;
  --wpp:        #25d366;
  --wpp-dark:   #128c47;

  /* Neutrals */
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --gray-50:    #f1f5f9;
  --gray-100:   #e2e8f0;
  --gray-200:   #cbd5e1;
  --gray-400:   #94a3b8;
  --gray-600:   #475569;
  --gray-800:   #1e293b;
  --gray-900:   #0f172a;

  /* Semantic */
  --bg:         var(--white);
  --surface:    var(--off-white);
  --border:     var(--gray-100);
  --text:       var(--gray-900);
  --text-muted: var(--gray-600);
  --text-soft:  var(--gray-400);

  /* Spacing / Radius */
  --r-sm:       8px;
  --r-md:       12px;
  --r-lg:       16px;
  --r-xl:       24px;
  --r-full:     9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);
  --shadow-red: 0 8px 32px rgba(227,0,27,.2);

  --transition: .2s cubic-bezier(.4,0,.2,1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* --- Utilities --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-red { color: var(--red); }

/* Section header */
.section-hd { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--red); background: var(--red-light);
  padding: 5px 12px; border-radius: var(--r-full);
  border: 1px solid var(--red-mid);
  margin-bottom: .75rem;
}
.section-tag--blue {
  color: var(--blue); background: var(--blue-light);
  border-color: #bfdbfe;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--gray-900);
  text-wrap: balance;
  margin-bottom: .5rem;
}
.section-desc {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  text-wrap: balance;
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: .875rem; font-weight: 600;
  border: none; cursor: pointer; border-radius: var(--r-md);
  transition: var(--transition); white-space: nowrap;
  padding: .6rem 1.25rem;
  text-decoration: none;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(227,0,27,.3);
}
.btn--ghost {
  background: var(--white);
  color: var(--gray-800);
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn--wpp {
  background: var(--wpp);
  color: #fff;
  overflow: hidden;
}
.btn--wpp svg { transition: transform .25s cubic-bezier(.34,1.56,.64,1); }
.btn--wpp:hover {
  background: var(--wpp-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn--wpp:hover svg { transform: scale(1.25) rotate(-8deg); }
.btn--wpp-lg {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--wpp); color: #fff;
  font-size: 1.05rem; font-weight: 700;
  padding: 1rem 2rem; border-radius: var(--r-lg);
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
  transition: var(--transition);
}
.btn--wpp-lg:hover {
  background: var(--wpp-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(37,211,102,.5);
}
.btn--lg { padding: .85rem 1.75rem; font-size: .95rem; border-radius: var(--r-lg); }
.btn--sm { padding: .45rem .9rem; font-size: .8rem; }
.btn--full { width: 100%; }

/* ============================
   HEADER
   ============================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226,232,240,.6);
  box-shadow: inset 0 -3px 0 var(--red);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md), inset 0 -3px 0 var(--red); }

.header__inner {
  display: flex; align-items: center; gap: 2rem;
  height: 120px;
}
.logo__img { height: 110px; width: auto; object-fit: contain; border-radius: 6px; }
.nav { display: flex; gap: .25rem; margin-left: auto; }
.nav__link {
  font-size: .875rem; font-weight: 500;
  color: var(--text-muted);
  padding: .4rem .8rem; border-radius: var(--r-sm);
  transition: var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--gray-900); background: var(--gray-50); }
.header__wpp { margin-left: .5rem; flex-shrink: 0; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--gray-800); border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  background: linear-gradient(160deg, #0b1f52 0%, #1a4eb8 35%, #2d6be4 60%, #e8f0ff 100%);
}

/* Gradient blobs */
.hero__blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  opacity: .15;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob--red {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #e3001b 0%, #ff6b6b 60%, transparent 100%);
  top: -150px; right: -100px;
  animation-delay: 0s;
}
.blob--blue {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #1a4eb8 0%, #60a5fa 60%, transparent 100%);
  bottom: -100px; left: -80px;
  opacity: .18;
  animation-delay: -4s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.05); }
  66%       { transform: translate(-15px, 20px) scale(.97); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Hero pill badge */
.hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: 6px 14px; border-radius: var(--r-full);
  margin-bottom: 1.5rem;
}
.hero__pill-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(34,197,94,.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34,197,94,.2); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,.1); }
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
  color: #fff;
  text-wrap: balance;
  margin-bottom: 1.25rem;
}
.hero__em {
  font-style: normal;
  background: linear-gradient(135deg, var(--red) 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 440px;
  text-wrap: balance;
}
.hero__ctas { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

/* Stats */
.hero__stats {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-num {
  font-size: 1.4rem; font-weight: 800;
  letter-spacing: -.03em; color: #fff;
  line-height: 1;
}
.hero__stat-lbl { font-size: .75rem; color: rgba(255,255,255,.6); margin-top: 2px; }
.hero__stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* Hero right - card stack */
.hero__right { position: relative; display: flex; justify-content: center; }

.hero__card-stack {
  position: relative;
  width: 420px; height: 500px;
}

.hero__main-card {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 380px; height: 440px;
  background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
  border: 1.5px solid var(--red-mid);
  border-radius: var(--r-xl);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(227,0,27,.05);
  z-index: 2;
  animation: cardFloat 5s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translate(-50%, -50%) rotate(-1deg); }
  50%       { transform: translate(-50%, calc(-50% - 10px)) rotate(1deg); }
}
.hero__main-card-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(227,0,27,.04) 100%);
  border-radius: inherit;
}
.hero__main-img { width: 300px; height: 280px; object-fit: contain; object-position: center; transition: opacity .4s ease; border-radius: var(--r-lg); filter: drop-shadow(0 6px 18px rgba(0,0,0,.18)); }
.hfc__icon--img { padding: 0 !important; overflow: hidden; }
.hfc__icon--img img { width: 100%; height: 100%; object-fit: contain; }
.hero__main-card-info {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: .78rem; color: var(--text-muted); font-weight: 500;
}
.hero__main-card-info strong {
  font-size: 1.1rem; font-weight: 800; color: var(--red); letter-spacing: -.02em;
}
.hero__main-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .05em;
  padding: 4px 10px; border-radius: var(--r-full);
  box-shadow: 0 4px 12px rgba(227,0,27,.4);
  white-space: nowrap;
}

/* Floating cards */
.hero__float-card {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: .6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: .6rem .75rem;
  box-shadow: var(--shadow-md);
  min-width: 160px;
}
.hfc--1 { top: 20px; right: -10px; animation: floatCard1 6s ease-in-out infinite; }
.hfc--2 { bottom: 30px; left: -10px; animation: floatCard2 5.5s ease-in-out infinite .8s; }

@keyframes floatCard1 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

.hfc__icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.hfc__info { display: flex; flex-direction: column; }
.hfc__name { font-size: .75rem; color: var(--text-muted); font-weight: 500; }
.hfc__price { font-size: .9rem; font-weight: 800; color: var(--gray-900); letter-spacing: -.02em; }
.hfc__tag {
  font-size: .65rem; font-weight: 700; letter-spacing: .05em;
  padding: 3px 7px; border-radius: var(--r-full);
  white-space: nowrap; margin-left: auto;
}
.hfc__tag--green { background: #dcfce7; color: #16a34a; }

/* ============================
   TRUST BAR
   ============================ */
.trust-bar {
  background: var(--blue);
  padding: .85rem 0;
}
.trust-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.9);
}
.trust-item svg { opacity: .8; }
.trust-sep { width: 1px; height: 18px; background: rgba(255,255,255,.25); }

/* ============================
   BANNER LOGO
   ============================ */
.logo-banner {
  background: var(--white);
  padding: 20px 0 0;
}
.logo-banner__card {
  position: relative;
  min-height: 360px;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.logo-banner__img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
}
.logo-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.05) 52%, rgba(0,0,0,0) 100%);
}
.logo-banner__content {
  position: absolute;
  left: clamp(1rem, 3vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  max-width: 420px;
}
.logo-banner__title {
  margin: 0;
  font-size: clamp(1.35rem, 3.2vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: .04em;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0,0,0,.55);
}
.logo-banner__line {
  width: 170px;
  height: 5px;
  margin: .95rem 0 .95rem;
  background: var(--red);
  border-radius: 999px;
}
.logo-banner__item {
  margin: 0;
  font-size: clamp(1.05rem, 2.1vw, 1.95rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: .02em;
}

/* ============================
   INSTITUCIONAL
   ============================ */
.institucional {
  padding: 88px 0 72px;
  background:
    radial-gradient(1200px 350px at 100% -10%, rgba(26,78,184,.09), transparent 60%),
    radial-gradient(900px 300px at -10% 0%, rgba(227,0,27,.08), transparent 60%),
    var(--white);
}
.institucional__content {
  max-width: 860px;
  margin: 0 auto;
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}
.institucional__content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}
.institucional__content p + p {
  margin-top: .85rem;
}
.institucional__cards {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.institucional-card {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--off-white);
  padding: 1rem;
}
.institucional-card h3 {
  font-size: 1.05rem;
  margin-bottom: .35rem;
  color: var(--gray-900);
}
.institucional-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================
   PRODUTOS – BENTO GRID
   ============================ */
.produtos {
  padding: 96px 0;
  background: var(--gray-50);
}

/* Bento grid: 4 cols, 2 rows */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

/* Card 1: spans 2 cols, 2 rows */
.bento-card--lg {
  grid-column: span 2;
  grid-row: span 2;
}

/* Card 4 (mesa): spans 2 cols */
.bento-card--wide {
  grid-column: span 2;
}

.bento-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
}
.bento-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
  transform: translateY(-2px);
}

/* Accent bar (left side) */
.bento-card__accent {
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; border-radius: 4px 0 0 4px;
}
.bento-card__accent--red    { background: linear-gradient(180deg, #e3001b, #ff6b35); }
.bento-card__accent--blue   { background: linear-gradient(180deg, #1a4eb8, #60a5fa); }
.bento-card__accent--purple { background: linear-gradient(180deg, #7c3aed, #a78bfa); }
.bento-card__accent--amber  { background: linear-gradient(180deg, #d97706, #fbbf24); }

.bento-card__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.25rem .5rem 1.5rem;
}
.bento-card__cat {
  font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-soft);
}
.bento-badge {
  font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  padding: 3px 10px; border-radius: var(--r-full);
}
.bento-badge--red    { background: var(--red-light); color: var(--red); border: 1px solid var(--red-mid); }
.bento-badge--purple { background: #f5f3ff; color: #7c3aed; border: 1px solid #ddd6fe; }

/* Visual area */
.bento-card__visual {
  position: relative; overflow: hidden;
  margin: 0 .75rem;
  border-radius: var(--r-lg);
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
}
.bento-card--lg .bento-card__visual { aspect-ratio: 16/10; }

.bento-visual--red    { background: linear-gradient(135deg, #fff1f2, #fecdd3); }
.bento-visual--blue   { background: linear-gradient(135deg, #eff6ff, #bfdbfe); }
.bento-visual--purple { background: linear-gradient(135deg, #f5f3ff, #ddd6fe); }
.bento-visual--amber  { background: linear-gradient(135deg, #fffbeb, #fde68a); }

.bento-visual__num {
  position: absolute; bottom: -10px; right: 8px;
  font-size: 5rem; font-weight: 900;
  letter-spacing: -.05em; line-height: 1;
  opacity: .07; color: var(--gray-900);
  user-select: none; pointer-events: none;
}
.bento-card--lg .bento-visual__num { font-size: 8rem; }

.bento-visual__emoji {
  font-size: 3.5rem;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.12));
  transition: transform var(--transition);
  position: relative; z-index: 1;
}
.bento-card--lg .bento-visual__emoji { font-size: 5rem; }
.bento-card:hover .bento-visual__emoji { transform: scale(1.08) rotate(-3deg); }

/* Body */
.bento-card__body { padding: 1rem 1.25rem 1.25rem 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.bento-card__name { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); letter-spacing: -.02em; }
.bento-card--lg .bento-card__name { font-size: 1.3rem; }
.bento-card__desc { font-size: .85rem; color: var(--text-muted); line-height: 1.55; }
.bento-card--wide .bento-card__desc { max-width: none; }

/* Color swatches */
.bento-card__colors {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.color-swatch {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
  transition: transform var(--transition);
  cursor: default;
}
.color-swatch:hover { transform: scale(1.2); }
.colors-label { font-size: .72rem; color: var(--text-soft); font-weight: 500; margin-left: 2px; }

/* Resistance line */
.bento-card__resist {
  display: flex; align-items: center; gap: 5px;
  font-size: .78rem; color: var(--text-muted); font-weight: 500;
}
.bento-card__resist svg { color: var(--gray-400); flex-shrink: 0; }

/* Footer with price + CTA */
.bento-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: .5rem;
  border-top: 1px solid var(--border);
}
.bento-price { display: flex; flex-direction: column; }
.bento-price__lbl { font-size: .7rem; color: var(--text-soft); font-weight: 500; line-height: 1; }
.bento-price__val {
  font-size: 1.2rem; font-weight: 800;
  color: var(--red); letter-spacing: -.03em; line-height: 1.2;
}
.bento-card--lg .bento-price__val { font-size: 1.5rem; }

/* ============================
   DIFERENCIAIS
   ============================ */
.diferenciais {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 100%);
  border-top: 3px solid var(--blue);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gray-200);
}
.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--gray-900); }
.feature-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* ============================
   CONJUNTOS
   ============================ */
.conjuntos {
  padding: 96px 0;
  background: linear-gradient(180deg, #eff6ff 0%, #f8faff 100%);
  border-top: 3px solid var(--blue);
}
.conj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.conj-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: .85rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative; overflow: hidden;
}
.conj-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  z-index: 1;
}
.conj-card:hover::after { transform: scaleX(1); }
.conj-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--gray-200); }

/* Popular card */
.conj-card--popular {}

.conj-card__popular-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--red); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  padding: 4px 10px; border-radius: var(--r-full);
}
.conj-card__tag {
  font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-soft);
}
.conj-card__visual {
  display: flex; align-items: center; gap: .4rem;
  font-size: 1.5rem; padding: .75rem 0;
}
.conj-plus { color: var(--text-soft); font-size: 1rem; font-weight: 700; }
.conj-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); }
.conj-card p { font-size: .875rem; color: var(--text-muted); }
.conj-card__resist {
  display: flex; align-items: center; gap: 5px;
  font-size: .78rem; color: var(--text-muted); font-weight: 500;
}
.conj-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.conj-card__price { display: flex; flex-direction: column; }
.conj-label { font-size: .7rem; color: var(--text-soft); font-weight: 500; }
.conj-val { font-size: 1.6rem; font-weight: 800; color: var(--red); letter-spacing: -.03em; line-height: 1.2; white-space: nowrap; }
.conj-card__cta { font-size: .88rem; padding: .55rem 1.1rem; white-space: nowrap; }

/* ============================
   REVIEWS
   ============================ */
.reviews {
  padding: 80px 0;
  background: #f1f5f9;
  border-top: 3px solid var(--red);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.review-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}
.review-card:hover::after { transform: scaleX(1); }
.review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.review-stars { color: #f59e0b; font-size: 1rem; letter-spacing: .1em; }
.review-text {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--red));
  color: #fff;
  font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-author > div strong { display: block; font-size: .85rem; color: var(--gray-900); }
.review-author > div span   { font-size: .75rem; color: var(--text-soft); }
.review-google { width: 16px; height: 16px; margin-left: auto; opacity: .6; }

/* ============================
   CTA
   ============================ */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--red) 0%, #c20016 100%);
  position: relative; overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.cta::after {
  content: '';
  position: absolute; bottom: -30%; left: -5%;
  width: 300px; height: 300px;
  background: rgba(0,0,0,.06);
  border-radius: 50%;
}
.cta__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta__text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800; color: #fff;
  letter-spacing: -.03em; text-wrap: balance;
  margin-bottom: .5rem;
}
.cta__text p { font-size: .95rem; color: rgba(255,255,255,.75); max-width: 480px; }

/* ============================
   MAP SECTION
   ============================ */
.map-section {
  width: 100%;
  line-height: 0;
  border-top: 4px solid var(--blue);
}
.map-section iframe {
  display: block;
  width: 100%;
  height: 380px;
  filter: grayscale(20%) contrast(1.05);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: linear-gradient(160deg, #0b1f52 0%, #0f172a 100%);
  color: rgba(255,255,255,.6);
  padding: 64px 0 0;
  border-top: 4px solid var(--red);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand { display: flex; flex-direction: column; gap: .75rem; align-items: flex-start; }
.footer__brand .logo__img { height: 110px; }
.footer__brand p { font-size: .875rem; line-height: 1.6; color: rgba(255,255,255,.5); }
.footer__nav, .footer__contact {
  display: flex; flex-direction: column; gap: .5rem;
}
.footer__nav strong, .footer__contact strong {
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .25rem;
}
.footer__nav a, .footer__contact a, .footer__contact span {
  font-size: .875rem; color: rgba(255,255,255,.55);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer__nav a:hover, .footer__contact a:hover { color: rgba(255,255,255,.9); }
.footer__bottom {
  padding: 1.25rem 0;
  text-align: center;
}
.footer__bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }

/* ============================
   WHATSAPP FLOAT
   ============================ */
.wpp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  height: 58px;
  width: 58px;
  background: var(--wpp); color: #fff;
  border-radius: 29px;
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: width .35s cubic-bezier(.34,1.26,.64,1), gap .35s ease, box-shadow .3s ease;
  overflow: hidden;
  white-space: nowrap;
  padding: 0 15px;
}
.wpp-float:hover {
  width: 220px;
  gap: 10px;
  box-shadow: 0 10px 36px rgba(37,211,102,.6);
}
.wpp-float:hover .wpp-float__pulse {
  opacity: 0;
  animation: none;
}
.wpp-float__icon { flex-shrink: 0; }
.wpp-float__text {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.01em;
  opacity: 0;
  max-width: 0;
  transition: opacity .2s ease .1s, max-width .35s ease;
  pointer-events: none;
}
.wpp-float:hover .wpp-float__text {
  opacity: 1;
  max-width: 160px;
  pointer-events: auto;
}
.wpp-float__pulse {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--wpp);
  opacity: 0;
  animation: wppPulse 2.5s ease-out infinite;
}
@keyframes wppPulse {
  0%   { opacity: .6; transform: scale(1); }
  100% { opacity: 0;  transform: scale(1.5); }
}

/* ============================
   SCROLL REVEAL
   ============================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card--lg { grid-column: span 2; grid-row: span 1; }
  .bento-card--wide { grid-column: span 2; }
  .bento-card--lg .bento-card__visual { aspect-ratio: 16/8; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .conj-grid { grid-template-columns: repeat(2, 1fr); }
  .conj-grid > .conj-card:last-child { grid-column: span 2; max-width: 440px; margin: 0 auto; width: 100%; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .institucional__cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header__inner { height: 84px; gap: 1rem; }
  .logo__img { height: 72px; }
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__right { display: none; }
  .hero { padding: 56px 0 48px; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .trust-sep { display: none; }
  .trust-bar__inner { gap: .75rem; }
  .header { z-index: 1200; }
  .nav {
    display: none;
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: calc(100dvh - 84px);
    background: #ffffff !important;
    background-image: none !important;
    opacity: 1;
    flex-direction: column;
    gap: .25rem;
    padding: 1.5rem;
    z-index: 1300;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .18);
    overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav__link { font-size: 1.1rem; padding: .75rem 1rem; border-radius: var(--r-lg); }
  .header__wpp {
    display: inline-flex;
    margin-left: auto;
    padding: .45rem .7rem;
    font-size: .78rem;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    background: #ffffff;
    position: relative;
    z-index: 1310;
    margin-left: .5rem;
  }
  .nav-toggle span { background: var(--gray-900); }
  .bento { grid-template-columns: 1fr; }
  .bento-card--lg, .bento-card--wide { grid-column: span 1; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .conj-grid { grid-template-columns: 1fr; }
  .conj-grid > .conj-card:last-child { grid-column: span 1; max-width: none; }
  .cta__inner { flex-direction: column; text-align: center; align-items: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: span 1; }
  .logo-banner__card {
    min-height: 260px;
  }
  .logo-banner__img { min-height: 260px; }
  .logo-banner__overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.28) 62%, rgba(0,0,0,.12) 100%);
  }
  .logo-banner__content {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
  .logo-banner__line { width: 132px; height: 4px; margin: .7rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .trust-bar__inner { flex-direction: column; gap: .5rem; align-items: center; }
  .trust-sep { display: none; }
  .wpp-float { bottom: 16px; right: 16px; }
}

/* ============================================================
   Product Grid & Cards
   ============================================================ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  align-items: start;
}
.prod-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
}
.prod-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  z-index: 1;
}
.prod-card:hover::after { transform: scaleX(1); }
.prod-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--gray-200);
}
.prod-card__media {
  position: relative;
  background: var(--gray-50);
  overflow: hidden;
}
.prod-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #f8fafc;
  padding: .5rem;
  display: block;
  transition: opacity .22s ease, transform .22s ease;
  cursor: zoom-in;
}
.prod-card:hover .prod-photo { transform: scale(1.03); }
.prod-thumbs {
  display: flex;
  gap: .5rem;
  padding: .55rem 1rem 0;
  overflow-x: auto;
  scrollbar-width: thin;
}
.prod-thumbs[hidden] { display: none; }
.prod-thumb {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  padding: 0;
  overflow: hidden;
  flex: 0 0 auto;
  cursor: pointer;
  transition: var(--transition);
}
.prod-thumb:hover {
  border-color: var(--gray-400);
  transform: translateY(-1px);
}
.prod-thumb.is-active {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227,0,27,.12);
}
.prod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zoom-open { overflow: hidden; }
.zoom-modal {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.84);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 300;
}
.zoom-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.zoom-modal__dialog {
  width: min(100%, 980px);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.zoom-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  gap: .8rem;
}
.zoom-modal__title {
  font-size: .95rem;
  font-weight: 600;
}
.zoom-modal__close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.zoom-modal__viewport {
  background: #fff;
  border-radius: 20px;
  overflow: auto;
  padding: .8rem;
  max-height: calc(100vh - 150px);
}
.zoom-modal__image {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: center center;
  transition: transform .15s ease;
  cursor: zoom-in;
}
.zoom-modal.is-zoomed .zoom-modal__image { cursor: zoom-out; }
.zoom-modal__hint {
  text-align: center;
  color: rgba(255,255,255,.8);
  font-size: .84rem;
}
.prod-card__badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--red);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: var(--r-full);
  pointer-events: none;
}
.prod-card__badge--purple { background: var(--blue); }

/* Color Picker */
.prod-picker {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem .5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}
.prod-picker--sm { padding: .5rem .75rem .4rem; }
.prod-picker__lbl {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.cpick {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 600;
  background: var(--gray-50);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 4px 10px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
  font-family: inherit;
}
.cpick:hover { border-color: var(--gray-400); color: var(--gray-800); background: var(--white); }
.cpick--on   { background: var(--gray-900); color: #fff; border-color: var(--gray-900); }
.cpick__dot  { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; display: inline-block; }

/* Card body */
.prod-card__body {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}
.prod-card__name    { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); letter-spacing: -.02em; }
.prod-card__tagline { font-size: .95rem; font-weight: 600; color: var(--red); }
.prod-card__pitch   { font-size: .95rem; color: var(--text-muted); line-height: 1.6; }
.prod-card__bullets { list-style: none; display: flex; flex-direction: column; gap: .3rem; }
.prod-card__bullets li {
  font-size: .92rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.prod-card__bullets li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--wpp);
  font-weight: 700;
}
.prod-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.prod-price          { display: flex; flex-direction: column; }
.prod-price__lbl     { font-size: .75rem; color: var(--text-soft); font-weight: 500; line-height: 1; }
.prod-price__val     { font-size: 1.6rem; font-weight: 800; color: var(--red); letter-spacing: -.03em; line-height: 1.2; }
.prod-card__cta      { font-size: .88rem; padding: .55rem 1.1rem; white-space: nowrap; }

/* Conjunto photo */
.conj-photo-wrap {
  position: relative;
  overflow: hidden;
  background: var(--gray-50);
  border-radius: calc(var(--r-xl) - 1.5px) calc(var(--r-xl) - 1.5px) 0 0;
  margin: -1.75rem -1.75rem .75rem;
}
.conj-body {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.conj-pitch {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.conj-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #f8fafc;
  padding: .5rem;
  display: block;
  transition: opacity .22s ease, transform .22s ease;
  cursor: zoom-in;
}
.conj-card:hover .conj-photo { transform: scale(1.03); }
.conj-card__tag {
  display: inline-block;
  background: var(--gray-100);
  color: var(--text-muted);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-bottom: .25rem;
}
.conj-card__resist {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
}
/* Responsive */
@media (max-width: 1100px) {
  .prod-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .prod-grid { grid-template-columns: 1fr; } /* already 1fr */
  .prod-card__foot { flex-direction: column; align-items: flex-start; gap: .6rem; }
  .prod-card__cta  { width: 100%; justify-content: center; }
  .prod-thumb { width: 50px; height: 50px; }
  .zoom-modal { padding: .75rem; }
  .reviews-grid { grid-template-columns: 1fr; }
}
