/* Google Fonts now loaded non-blocking (removed render-blocking @import 2026-07-10 — it broke all styling when Google Fonts was blocked, e.g. by antivirus) */

/* ====== Eiffel Eventos — Redesign ====== */
:root{
  --red: #C8302A;
  --red-deep: #8B1A1A;
  --red-darker: #6e1212;
  --ink: #111111;
  --ink-2: #1c1c1c;
  --ink-3: #0a0a0a;
  --white: #FFFFFF;
  --gray-50: #f0efed;
  --gray-100: #ebebeb;
  --gray-500: #7a7a7a;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max: 1400px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --font: 'Barlow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-display: 'Space Mono', 'Courier New', Courier, monospace;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; scroll-padding-top: 96px; }
body{
  font-family: var(--font);
  font-weight: 300;
  color: #1a1a1a;
  background: #f0efed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }

.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* Skip link — a11y + SEO best practice */
.skip-link{
  position: absolute; top: -100px; left: 1rem;
  background: var(--red); color: #fff;
  padding: .8rem 1.2rem; border-radius: 0 0 8px 8px;
  font-size: .85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; z-index: 200;
  transition: top .25s var(--ease);
}
.skip-link:focus{ top: 0; outline: 2px solid #fff; outline-offset: 2px; }

.overline{
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display:inline-block;
  position: relative;
  padding-left: 1.4rem;
}
.overline::before{
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1.5px;
  background: currentColor;
  transform: translateY(-50%);
}
.overline.on-dark{ color: var(--red); }

h1,h2,h3,h4{ font-family: var(--font); }
h2.section-title{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-top: 0.6rem;
}
.section-rule{
  width: 48px; height: 2px; background: var(--red);
  margin: 1rem 0 2rem;
  border-radius: 0;
}
.section-rule.center{ margin-left:auto; margin-right:auto; }

.section{ padding: clamp(5rem, 10vw, 8rem) 0; scroll-margin-top: 96px; }

/* === Buttons === */
.btn{
  display:inline-flex; align-items:center; gap:.6rem;
  padding: .95rem 1.6rem;
  border-radius: 3px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  will-change: transform;
}
.btn-primary{
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 30px rgba(200,48,42,0.35);
}
.btn-primary:hover{ transform: scale(1.04); background: #d63a34; box-shadow: 0 14px 40px rgba(200,48,42,0.5); }
.btn-ghost{
  border: 1.5px solid rgba(255,255,255,0.8);
  color:#fff; background: transparent;
}
.btn-ghost:hover{ transform: scale(1.04); background: rgba(255,255,255,0.08); border-color:#fff; }
.btn-dark{
  background: var(--ink); color:#fff;
}
.btn-dark:hover{ background:#222; transform: scale(1.04); }

/* === Navbar === */
.nav{
  position: fixed; top:0; left:0; right:0; z-index: 60;
  padding: 1.1rem 0;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease), backdrop-filter .35s var(--ease);
}
.nav.scrolled{
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 30px rgba(0,0,0,0.35);
  padding: .7rem 0;
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; gap:2rem; }
.nav-links{ display:flex; gap: 2.2rem; }
/* Navlinks — Barlow, a bit lighter weight */
.nav-link{
  color:#fff; font-family: var(--font-display); font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  position: relative; padding: .4rem 0;
}
.nav-link::after{
  content:''; position:absolute; left:0; bottom: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width .3s var(--ease);
}
.nav-link:hover::after{ width: 100%; }
.nav-right{ display:flex; align-items:center; gap: 1.4rem; }
.nav-socials{ display:flex; gap: .8rem; }
.nav-socials a{ color:#fff; opacity:.85; transition: opacity .25s ease, transform .25s ease; }
.nav-socials a:hover{ opacity:1; transform: translateY(-2px); }
.nav-phone{
  padding: .7rem 1.1rem; border-radius: 999px;
  background: var(--red); color:#fff;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  display:flex; align-items:center; gap:.5rem;
  transition: transform .25s ease, background .25s ease;
}
.nav-phone:hover{ background:#d63a34; transform: scale(1.04); }
.hamburger{ display:none; width: 36px; height: 36px; align-items:center; justify-content:center; }
.hamburger span{ display:block; width: 22px; height: 2px; background:#fff; position:relative; }
.hamburger span::before, .hamburger span::after{
  content:''; position:absolute; left:0; width:22px; height:2px; background:#fff;
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.hamburger span::before{ top:-7px; }
.hamburger span::after{ top: 7px; }
.hamburger.open span{ background: transparent; }
.hamburger.open span::before{ top:0; transform: rotate(45deg); }
.hamburger.open span::after{ top:0; transform: rotate(-45deg); }

.mobile-menu{
  position: fixed; inset: 0; z-index: 55;
  background: var(--ink);
  display:flex; flex-direction:column; align-items:flex-start; justify-content:center;
  padding: 5rem var(--pad) 2rem;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.mobile-menu.open{ transform: translateX(0); }
.mobile-menu .accent-line{ width: 60px; height: 3px; background: var(--red); margin-bottom: 2rem; }
.mobile-menu a{
  color:#fff; font-size: 2rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  margin: .6rem 0;
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.mobile-menu.open a{ opacity: 1; transform: translateY(0); }

/* === Hero === */
.hero{
  position: relative;
  min-height: 100vh;
  display:flex; align-items:flex-end;
  color:#fff;
  overflow:hidden;
  isolation: isolate;
}
.hero-bg{
  position:absolute; inset:0; z-index:-2;
  background: #2a0808;
}
.hero-bg .slide{
  position:absolute; inset:0;
  background-size: cover; background-position: center;
  opacity:0; transition: opacity 1.4s ease;
  transform: scale(1.05);
  animation: kenburns 14s ease-in-out infinite alternate;
}
.hero-bg .slide.active{ opacity:1; }
@keyframes kenburns{
  from{ transform: scale(1.05); }
  to{ transform: scale(1.15); }
}
.hero-overlay{
  position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(to right, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.25) 100%),
    linear-gradient(to top, rgba(10,10,10,0.65) 0%, transparent 50%);
}
.hero-grain{
  position:absolute; inset:0; z-index:-1; pointer-events:none;
  opacity:.08; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
}
.hero-content{ width:100%; padding-bottom: clamp(4rem, 9vw, 7rem); padding-top: 8rem; }
.hero h1{
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: .8rem; margin-bottom: 1.4rem;
  max-width: 16ch;
  text-wrap: balance;
}
.hero h1 .word{
  display: inline-block;
  opacity:0; transform: translateY(22px);
  animation: slideUp .6s var(--ease) forwards;
}
/* hero word colors */
.hero h1 .word{ color: #fff; }
.hero h1 .word.red{ color: var(--red); }
.hero-overline{
  opacity:0; transform: translateX(-14px);
  animation: fadeRight .8s var(--ease) .3s forwards;
  color: var(--red);
  font-size: .82rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  display:inline-flex; align-items:center; gap:.7rem;
  text-transform: uppercase;
}
.hero-overline::before{ content:''; width: 32px; height: 1.5px; background: var(--red); display:inline-block; }
.hero-sub{
  font-weight: 300; font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 48ch; line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.2rem;
  opacity:0; animation: fadeUp .8s var(--ease) .5s forwards;
}
.hero-ctas{
  display:flex; flex-wrap: wrap; gap: 1rem;
  opacity:0; animation: fadeUp .8s var(--ease) .7s forwards;
}
.scroll-ind{
  position:absolute; left: 50%; bottom: 1.6rem;
  transform: translateX(-50%);
  color: #fff; opacity: .7;
  display:flex; flex-direction:column; align-items:center; gap:.4rem;
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  animation: floatY 2.2s ease-in-out infinite;
}
.scroll-ind .arrow{
  width: 1px; height: 38px; background: #fff; position:relative; overflow:hidden;
}
.scroll-ind .arrow::after{
  content:''; position:absolute; left:0; top:-100%;
  width:100%; height: 100%;
  background: var(--red);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine{
  0%{ top:-100%; } 50%{ top: 0; } 100%{ top: 100%; }
}
@keyframes floatY{
  0%,100%{ transform: translate(-50%, 0); }
  50%{ transform: translate(-50%, -6px); }
}
@keyframes slideUp{
  from{ opacity:0; transform: translateY(22px); }
  to{ opacity:1; transform: translateY(0); }
}
@keyframes fadeUp{
  from{ opacity:0; transform: translateY(16px); }
  to{ opacity:1; transform: translateY(0); }
}
@keyframes fadeRight{
  from{ opacity:0; transform: translateX(-14px); }
  to{ opacity:1; transform: translateX(0); }
}
.hero-redline{
  position:absolute; left:0; right:0; bottom:0; height: 2px; background: var(--red);
}
.hero-skip{
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem); bottom: 1.6rem;
  z-index: 5;
  display: flex; gap: .6rem;
}
.hero-skip-btn{
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: rgba(0,0,0,0.28);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.hero-skip-btn:hover{ background: var(--red); border-color: var(--red); transform: scale(1.08); }

/* === Hero 2-column layout */
.hero-layout{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: flex-end;
  width: 100%;
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  padding-top: 8rem;
}
.hero-left{ max-width: 48ch; }

/* Clickable product card in hero */
.hero-product-card{
  position: relative;
  width: clamp(200px, 22vw, 320px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 1.4rem 1.4rem 1rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
  display: flex; flex-direction: column; gap: .8rem;
  align-self: flex-end;
  margin-bottom: 0;
}
.hero-product-card:hover{
  background: rgba(200,48,42,0.2);
  border-color: var(--red);
  transform: translateY(-4px);
}
.hpc-tag{ display: flex; align-items: baseline; gap: .7rem; }
.hpc-num{
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 900;
  color: var(--red); line-height: 1;
  letter-spacing: -0.02em;
}
.hpc-label{
  font-family: var(--font-display);
  font-size: .9rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.9);
}
.hpc-cta{
  display: inline-flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,0.9);
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  background: var(--red);
  padding: .55rem .9rem;
  border-radius: 999px;
  align-self: flex-start;
  transition: background .25s ease, transform .25s ease;
}
.hero-product-card:hover .hpc-cta{ background: #d63a34; transform: scale(1.03); }

@media (max-width: 700px){
  .hero-layout{ grid-template-columns: 1fr; }
  .hero-product-card{ width: 100%; align-self: auto; margin-bottom: 0; }
  .hpc-cta{ opacity: 1; transform: none; }
}

/* Slideshow controls */
.hero-slide-bar{
  position: absolute; left: 0; right: 0; bottom: 2px;
  z-index: 10;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 var(--pad) 1.6rem;
}
.hero-slide-label{
  display: flex; align-items: baseline; gap: .8rem;
}
.hero-slide-num{
  font-family: var(--font-mono);
  font-size: 2.2rem; font-weight: 700;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-slide-name{
  font-family: var(--font-mono);
  font-size: .75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.75);
  padding-bottom: .35rem;
}
.hero-dots{
  display: flex; gap: .5rem; align-items: center;
  padding-bottom: .35rem;
}
.hero-dot{
  width: 28px; height: 2px; border-radius: 2px;
  background: rgba(255,255,255,0.35);
  transition: background .35s ease, width .35s ease;
  cursor: pointer;
  padding: 0; border: none;
}
.hero-dot:hover{ background: rgba(255,255,255,0.65); }
.hero-dot.active{ background: var(--red); width: 44px; }

/* === Stats — Layher-style light strip === */
.stats{
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 3.5rem 0;
  color: var(--ink);
  position: relative;
}
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat{
  text-align:center;
  padding: 1rem 1.2rem;
  position:relative;
}
.stat + .stat::before{
  content:''; position:absolute; left:0; top:18%; bottom:18%;
  width: 1px; background: rgba(0,0,0,0.1);
}
.stat .num{
  font-family: var(--font-mono);
  font-weight: 700; font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  display:flex; align-items:baseline; justify-content:center; gap: .15ch;
}
.stat .num .plus{ color: var(--red); font-size:.6em; transform: translateY(-.2em); }
.stat .label{
  margin-top: .8rem;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(0,0,0,0.45);
}

/* === Products === */
.products-head{ text-align:center; }
/* === Products grid with featured hero card === */
.products-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.products-grid .product-card.featured{
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
/* Product label names — display font for punch */
.product-card .label .name{
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 1.1rem; line-height: 1.05;
}
.products-grid .product-card.featured .label .name{
  font-size: 1.9rem;
}
.products-grid .product-card.featured .label .meta{
  font-size: 12px;
}
.products-grid .product-card.featured .arrow{
  width: 56px; height: 56px;
}
@media (max-width: 1024px){
  .products-grid{ grid-template-columns: repeat(2, 1fr); }
  .products-grid .product-card.featured{ grid-column: span 2; grid-row: auto; aspect-ratio: 16/9; }
  .products-grid .product-card.featured .label .name{ font-size: 1.3rem; }
}
@media (max-width: 700px){
  .products-grid{ grid-template-columns: 1fr; }
  .products-grid .product-card.featured{ grid-column: auto; aspect-ratio: 4/3.4; }
}
.product-card{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3.4;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  will-change: transform;
  background: #1a1a1a;
}
.product-card:hover{ transform: translateY(-8px) scale(1.02); box-shadow: 0 22px 60px rgba(200,48,42,0.32); }
.product-card .ph{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  color: rgba(255,255,255,0.35);
  font-family: 'Courier New', monospace;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
}
.product-card .img-fill{
  position:absolute; inset:0;
  background-size: cover; background-position: center;
  transition: transform .8s var(--ease);
}
.product-card:hover .img-fill{ transform: scale(1.08); }
.product-card .scrim{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.7) 100%);
  z-index:1;
}
.product-card .hover-overlay{
  position:absolute; inset:0; z-index:2;
  background: linear-gradient(to top, rgba(200,48,42,0.96), rgba(200,48,42,0.0) 70%);
  opacity: 0; transform: translateY(20px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.product-card:hover .hover-overlay{ opacity: 1; transform: translateY(0); }
.product-card .label{
  position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.1rem;
  z-index: 3; color:#fff;
  display:flex; align-items:flex-end; justify-content: space-between; gap:.8rem;
}
.product-card .label .name{
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 1.1rem; line-height: 1.05;
}
.product-card .label .meta{
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: .3rem;
}
.product-card .arrow{
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; border: 1px solid #fff;
  color: var(--red);
  display:flex; align-items:center; justify-content:center;
  opacity: 1;
  transform: none;
  transition: transform .35s var(--ease), background .35s var(--ease);
  flex-shrink: 0;
}
.product-card:hover .arrow{ transform: scale(1.08) rotate(10deg); }

/* === Eventos === */
/* === Testimonials === */
.testimonials{
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.testimonials::before{
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 20% 0%, rgba(200,48,42,0.18), transparent 70%);
  pointer-events: none;
}
.testi-head{ text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
.testi-head h2.section-title{ color: #fff; }

.testi-layout{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.6rem;
  position: relative; z-index: 1;
  align-items: stretch;
}

/* Featured big card */
.testi-featured{
  background: linear-gradient(160deg, rgba(200,48,42,0.18) 0%, rgba(28,28,28,0.8) 60%);
  border: 1px solid rgba(200,48,42,0.3);
  border-radius: 18px;
  padding: 2.5rem;
  position: relative;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.testi-quote-mark-big{
  font-family: 'Times New Roman', Georgia, serif;
  font-size: 9rem; line-height: 0.6;
  color: var(--red); opacity: .3;
  font-weight: 700;
  margin-bottom: -.5rem;
  margin-left: -.4rem;
}
.testi-text-big{
  font-size: 1.4rem; line-height: 1.45;
  color: #fff;
  font-weight: 300;
  margin: 1.2rem 0 1.8rem;
  font-style: italic;
  letter-spacing: -0.01em;
}
.testi-where{
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.2rem;
  padding: .5rem .9rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  width: max-content;
}
.testi-where svg{ color: #4caf50; }

/* Side stack of smaller cards */
.testi-side{
  display: flex; flex-direction: column; gap: 1rem;
}
.testi-mini{
  background: rgba(28,28,28,0.7);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.4rem 1.4rem 1.2rem;
  flex: 1;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
  backdrop-filter: blur(6px);
}
.testi-mini:hover{
  transform: translateX(-3px);
  border-color: rgba(200,48,42,0.4);
}
.testi-text-mini{
  font-size: .92rem; line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin: .8rem 0 1.2rem;
  font-style: italic;
  flex: 1;
}

.stars{ display: inline-flex; gap: 2px; }

/* Author block (shared) */
.testi-author{
  display: flex; align-items: center; gap: .9rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.testi-avatar{
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.1rem;
  font-family: var(--font);
  flex-shrink: 0;
}
.testi-name{ font-weight: 700; font-size: .95rem; color: #fff; }
.testi-role{ font-size: .76rem; color: rgba(255,255,255,0.55); margin-top: 2px; }

.testi-cta{ text-align: center; margin-top: 3rem; position: relative; z-index: 1; }
.testi-link{
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--red); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: .82rem;
  font-family: var(--font-mono);
  padding-bottom: .3rem;
  border-bottom: 1px solid rgba(200,48,42,0.5);
  transition: gap .25s ease, color .25s ease;
}
.testi-link:hover{ gap: .8rem; color: #fff; border-color: #fff; }

@media (max-width: 900px){
  .testi-layout{ grid-template-columns: 1fr; }
  .testi-featured{ padding: 2rem 1.6rem; }
  .testi-text-big{ font-size: 1.15rem; }
}

/* === Process (dark card grid) === */
.process-section{
  background: #111111;
  color: #fff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.process-head{ margin-bottom: 3rem; }
.process-cards{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.proc-card{
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 1.6rem 1.2rem 1.4rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), border-color .3s ease, box-shadow .3s ease;
}
.proc-card--in{ opacity: 1; transform: translateY(0); }
.proc-card:hover{ border-color: rgba(200,48,42,0.5); box-shadow: 0 12px 40px rgba(200,48,42,0.15); }
.proc-card__bar{
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.proc-card--in .proc-card__bar{ transform: scaleX(1); }
.proc-card__num{
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  color: rgba(200,48,42,0.25);
  line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 1rem; transition: color .4s ease;
}
.proc-card--in .proc-card__num{ color: var(--red); }
.proc-card__title{
  font-family: var(--font-display);
  font-size: .95rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: #fff; margin-bottom: .7rem;
}
.proc-card__desc{
  font-size: .85rem; line-height: 1.55;
  color: rgba(255,255,255,0.55); font-weight: 300;
}
@media (max-width: 1024px){
  .process-row{ grid-template-columns: repeat(2, 1fr); gap: 2rem 1.2rem; }
  .step-arrow{ display: none; }
}
@media (max-width: 600px){
  .process-row{ grid-template-columns: 1fr; }
}

/* === Trust badges === */
.trust-strip{
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 1.6rem 0;
}
.trust-row{
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: nowrap;
}
.trust-item{
  display: flex; align-items: center; gap: .7rem;
  flex: 1 1 0; min-width: 0;
}
.trust-ic{
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(200,48,42,0.1);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-label{
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111;
  line-height: 1.15;
  white-space: nowrap;
}
.trust-sub{
  font-size: .68rem;
  color: #666;
  margin-top: 2px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 900px){
  .trust-row{ flex-wrap: wrap; }
  .trust-item{ flex: 1 1 45%; }
}

/* === Project Gallery === */
.gallery{
  background: #0a0a0a;
  color: #fff;
}
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 1rem;
}
.gal-cell{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1a1a;
}
.gal-cell.w2{ grid-column: span 2; }
.gal-cell.h2{ grid-row: span 2; }
.gal-cell::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
  border-radius: inherit;
}
.gal-cell image-slot{ transition: transform .8s var(--ease); }
.gal-cell:hover image-slot{ transform: scale(1.05); }
@media (max-width: 900px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .gal-cell.w2{ grid-column: span 2; }
  .gal-cell.h2{ grid-row: span 2; }
}
@media (max-width: 600px){
  .gallery-grid{ grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .gal-cell.w2{ grid-column: auto; }
  .gal-cell.h2{ grid-row: auto; }
}
.gallery-more-wrap{ text-align: center; margin-top: 2.2rem; position: relative; z-index: 1; }
.gallery-more{
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 1.8rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: transparent; color: #fff;
  font-family: var(--font-mono);
  font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.gallery-more:hover{ background: var(--red); border-color: var(--red); transform: translateY(-2px); }

/* === Mobile sticky bar === */
.mobile-bar{
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: .6rem .8rem env(safe-area-inset-bottom);
}
.mobile-bar .mb-btn{
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: #fff;
  padding: .6rem .4rem;
  border-radius: 10px;
  font-size: .65rem;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  transition: background .2s ease;
}
.mobile-bar .mb-btn:active{ background: rgba(255,255,255,0.06); }
.mobile-bar .mb-call{ color: #fff; }
.mobile-bar .mb-wa svg{ color: #25D366; }
.mobile-bar .mb-mail svg{ color: var(--red); }
@media (max-width: 700px){
  .mobile-bar{ display: flex; gap: .4rem; }
  body{ padding-bottom: 70px; }
  .floats{ bottom: 80px !important; }
}

/* === Quote nudge popup (fullscreen) === */
.quote-nudge{
  position: fixed; inset: 0;
  z-index: 150;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(12px);
  padding: clamp(1rem, 4vw, 2rem);
  animation: nudgeFade .35s var(--ease);
  transition: opacity .4s ease;
}
.quote-nudge.closing{ opacity: 0; }
@keyframes nudgeFade{
  from { opacity: 0; }
  to   { opacity: 1; }
}
.qn-card{
  position: relative;
  width: 100%; max-width: 560px;
  background: #fff;
  border-radius: 22px;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.6rem, 4vw, 3rem) clamp(2rem, 4vw, 2.5rem);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: nudgeCardIn .55s var(--ease);
}
@keyframes nudgeCardIn{
  0%   { opacity: 0; transform: translateY(40px) scale(0.94); }
  60%  { opacity: 1; transform: translateY(-6px) scale(1.01); }
  100% { transform: translateY(0) scale(1); }
}
.qn-close{
  position: absolute; top: 1rem; right: 1rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.05);
  color: #555;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.qn-close:hover{ background: var(--red); color: #fff; transform: scale(1.08); }
.qn-pulse{
  position: relative;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
}
.qn-pulse::before, .qn-pulse::after{
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--red); opacity: .55;
  animation: pulseRing 2.2s ease-out infinite;
}
.qn-pulse::after{ animation-delay: 1.1s; }
@keyframes pulseRing{
  0%   { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.9); opacity: 0; }
}
.qn-card .overline{ display: block; margin-bottom: .8rem; }
.qn-title{
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #111;
  margin-bottom: 1rem;
  text-transform: none;
}
.qn-text{
  font-size: 1.05rem; line-height: 1.6;
  color: #555;
  font-weight: 300;
  margin: 0 auto 2rem;
  max-width: 42ch;
}
.qn-ctas{
  display: flex; gap: .7rem; flex-wrap: wrap; justify-content: center;
  margin-bottom: 1.4rem;
}
.qn-btn{
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  transition: all .2s ease;
}
.qn-primary{ background: var(--red); color: #fff; box-shadow: 0 8px 24px rgba(200,48,42,0.3); }
.qn-primary:hover{ background: #d63a34; transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 32px rgba(200,48,42,0.4); }
.qn-wa{ background: #25D366; color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.qn-wa:hover{ background: #2ee676; transform: translateY(-2px) scale(1.02); }
.qn-dismiss{
  display: inline-block;
  font-size: .8rem;
  color: #999;
  background: none;
  padding: .4rem .6rem;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s ease;
}
.qn-dismiss:hover{ color: #111; }

@media (max-width: 700px){
  .qn-ctas .qn-btn{ width: 100%; justify-content: center; }
}

/* === Cookie banner === */
.cookie-banner{
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 480px;
  z-index: 200;
  background: rgba(17,17,17,0.97);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: cookieSlideUp .4s var(--ease);
  backdrop-filter: blur(12px);
}
@keyframes cookieSlideUp{
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-text{
  font-size: .82rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin-bottom: .9rem;
}
.cookie-text a{ color: var(--red); text-decoration: underline; }
.cookie-ctas{ display: flex; gap: .5rem; justify-content: flex-end; }
.cookie-btn{
  padding: .6rem 1.1rem;
  border-radius: 8px;
  font-size: .75rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  cursor: pointer;
  transition: all .2s ease;
  border: 1px solid transparent;
}
.cookie-decline{
  background: transparent;
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
}
.cookie-decline:hover{ border-color: rgba(255,255,255,0.4); color: #fff; }
.cookie-accept{
  background: var(--red);
  color: #fff;
}
.cookie-accept:hover{ background: #d63a34; }
@media (max-width: 700px){
  .cookie-banner{ left: .8rem; right: .8rem; bottom: 80px; }
}

/* === Misión y Visión === */
.mision-vision{
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.mision-vision::before{
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(70% 70% at 50% 0%, #000 30%, transparent 80%);
  pointer-events: none;
}
.mision-vision::after{
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgba(200,48,42,0.22), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.mv-head{
  text-align: center;
  margin-bottom: 4rem;
  position: relative; z-index: 1;
}
.mv-head h2.section-title{ color: #fff; }
.mv-head .amp{
  font-family: 'Times New Roman', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  color: var(--red);
  margin: 0 0.2em;
}

.mv-grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  position: relative; z-index: 1;
}
.mv-divider{
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.18) 20%, rgba(200,48,42,0.6) 50%, rgba(255,255,255,0.18) 80%, transparent);
  min-height: 100%;
}
.mv-block{ position: relative; padding-top: .5rem; }
.mv-num{
  font-family: var(--font-mono);
  font-size: 5rem; font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, rgba(200,48,42,0.9), rgba(200,48,42,0.15));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.04em;
  margin-bottom: .8rem;
}
/* Misión & visión tag */
.mv-tag{
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .8rem;
  padding-left: 1.4rem;
  position: relative;
}
.mv-tag::before{
  content: ''; position: absolute; left: 0; top: 50%;
  width: 18px; height: 1.5px; background: var(--red);
  transform: translateY(-50%);
}
/* Misión title — display font */
.mv-title{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: .4rem 0 1.2rem;
  color: #fff;
  text-transform: uppercase;
  max-width: 18ch;
}
.mv-block > p{
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  font-size: 0.98rem;
  font-weight: 300;
  margin-bottom: 1.6rem;
  max-width: 44ch;
}
.mv-list{
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mv-list li{
  display: flex; align-items: flex-start; gap: .8rem;
  padding: .9rem 0;
  font-size: 0.94rem;
  line-height: 1.55;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}
.mv-list .check{
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

@media (max-width: 860px){
  .mv-grid{ grid-template-columns: 1fr; }
  .mv-divider{
    width: 100%; height: 1px; min-height: 1px;
    background: linear-gradient(to right, transparent, rgba(200,48,42,0.6), transparent);
    margin: 1rem 0;
  }
  .mv-num{ font-size: 3.5rem; }
}

/* === Product detail modal === */
.modal-backdrop{
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  animation: fadeInBackdrop .25s var(--ease);
}
@keyframes fadeInBackdrop{ from{ opacity:0; } to{ opacity:1; } }
.modal{
  background: #fff;
  border-radius: 18px;
  width: 100%; max-width: 1100px;
  max-height: 92vh; overflow-y: auto;
  display: grid; grid-template-columns: 1.05fr 1.1fr;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: slideInModal .4s var(--ease);
}
@keyframes slideInModal{
  from{ opacity:0; transform: translateY(28px) scale(0.97); }
  to{ opacity:1; transform: translateY(0) scale(1); }
}
.modal-close{
  position: absolute; top: 1rem; right: 1rem; z-index: 5;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: #111;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  transition: transform .2s var(--ease), background .2s ease;
}
.modal-close:hover{ background: var(--red); color: #fff; transform: scale(1.08); }
.modal-img{
  position: relative;
  background: #1a1a1a;
  min-height: 260px;
}
.modal-img img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-body{ padding: clamp(1.5rem, 3vw, 2.4rem); }
/* Modal title — display font */
.modal-title{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: .4rem 0 1rem;
}
.modal-tagline{
  font-size: 1.05rem; line-height: 1.5;
  color: #333; font-weight: 400;
  margin-bottom: 1rem;
}
.modal-desc{
  font-size: .92rem; line-height: 1.65;
  color: #555; font-weight: 300;
  margin-bottom: 1.6rem;
}
.modal-h{
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  margin: 1.6rem 0 .8rem;
}
.spec-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem 1.2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 1rem;
}
.spec{
  padding: .4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.spec-label{
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: #999; font-weight: 400;
  margin-bottom: .2rem;
}
.spec-value{
  font-size: .95rem; color: #111; font-weight: 500;
}
.feature-list.compact{ margin: 0; }
.feature-list.compact li{ padding: .4rem 0; font-size: .92rem; border-bottom-color: rgba(0,0,0,0.04); }
.modal-ctas{
  display: flex; gap: .8rem; margin-top: 2rem;
  flex-wrap: wrap;
}
.product-card{
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  border: 0;
}

@media (max-width: 860px){
  .modal{ grid-template-columns: 1fr; }
  .modal-img{ min-height: 220px; max-height: 280px; }
}
/* === Eventos (light variant) === */
.eventos-light{
  background: #fff;
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}
.eventos-row{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.evt-item{
  text-align: center;
  padding: 0 .6rem;
}
.evt-circle{
  width: 72px; height: 72px; border-radius: 50%;
  background: #c8c8c8;
  color: #fff;
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 1rem;
  transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.evt-circle.primary{
  background: var(--red);
  box-shadow: 0 12px 30px rgba(200,48,42,0.3);
}
.evt-item:hover .evt-circle{
  background: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(200,48,42,0.32);
}
.evt-item h3{
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  line-height: 1.25;
  color: var(--red);
  margin-bottom: 0.9rem;
  min-height: 2.4em;
}
.evt-item p{
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #666;
  max-width: 24ch;
  margin: 0 auto;
}

/* === Eventos (legacy dark variant — kept for compatibility) === */
.eventos{
  background:
    linear-gradient(180deg, #111 0%, #1c1c1c 100%);
  color:#fff; position:relative; overflow:hidden;
}
.eventos::before{
  content:''; position:absolute; inset:0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.05; pointer-events:none; mix-blend-mode: overlay;
}
.eventos-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items:start;
}
.eventos-left h2{ color:#fff; }
.eventos-left p{
  color: rgba(255,255,255,0.7);
  max-width: 38ch;
  font-size: 1.05rem;
  line-height: 1.6;
}
.eventos-cards{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.evt-card{
  background: #1c1c1c;
  border: 1px solid rgba(200,48,42,0.2);
  border-radius: 12px;
  padding: 1.6rem 1.3rem;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
  position: relative;
}
.evt-card:hover{
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(200,48,42,0.25), 0 10px 40px rgba(200,48,42,0.15);
  transform: translateY(-4px);
}
.evt-icon{
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(200,48,42,0.15);
  color: var(--red);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 1rem;
}
/* Evento card headings — display font */
.evt-card h3{
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: .5rem;
}
/* Evento item headings */
.evt-item h3{
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--red);
  margin-bottom: .9rem;
  min-height: 2.4em;
}
.evt-card p{
  font-weight: 300; font-size: .85rem; line-height: 1.5;
  color: rgba(255,255,255,0.65);
}

/* === Nosotros === */
.nosotros{
  background: var(--white);
}
.nosotros-grid{
  display: grid; grid-template-columns: 0.95fr 1fr; gap: 4rem;
  align-items: stretch;
}
.nosotros-img{
  position: relative;
  border-radius: 0 14px 14px 0;
  overflow: hidden;
  min-height: 560px;
  margin-left: calc(-1 * var(--pad));
  background: #2a0808;
}
.nosotros-img::before{
  content:''; position:absolute; left:0; top:0; bottom:0; width: 6px; background: var(--red); z-index: 3;
}
.nosotros-img .img-fill{
  position:absolute; inset:0;
  background-size: cover; background-position: center top;
}
.nosotros-img .badge{
  position:absolute; left: 2rem; bottom: 2rem;
  background: var(--red); color:#fff;
  padding: 1rem 1.4rem;
  border-radius: 12px;
  font-weight: 900; line-height: 1; text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 14px 40px rgba(200,48,42,0.4);
}
.nosotros-img .badge .big{ display:block; font-size: 2.6rem; }
.nosotros-img .badge .sm{ display:block; font-size: .7rem; font-weight: 400; letter-spacing: .18em; margin-top: .3rem; opacity:.9; }
.feature-list{
  list-style: none; margin: 1.5rem 0; padding: 0;
}
.feature-list li{
  display:flex; align-items:flex-start; gap: .8rem;
  padding: .55rem 0;
  font-weight: 400; font-size: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.feature-list li:last-child{ border-bottom:0; }
.check{
  flex: 0 0 22px; width: 22px; height: 22px;
  border-radius: 50%; background: var(--red);
  display:flex; align-items:center; justify-content:center;
  color:#fff; margin-top:2px;
}
.mission{
  margin-top: 2rem;
  padding: 1.5rem 1.6rem;
  border-left: 4px solid var(--red);
  background: var(--gray-50);
  border-radius: 0 10px 10px 0;
  font-size: .98rem; line-height: 1.6;
  font-weight: 300;
}
.mission strong{ font-weight: 700; color: var(--red); display:block; margin-bottom:.25rem; text-transform: uppercase; font-size: .78rem; letter-spacing: .15em; }

/* === Pilares === */
/* Pilares — light bg */
.pilares{ background: #fff; }
.pilares-head{ text-align:center; border-bottom: 1px solid rgba(0,0,0,0.07); padding-bottom: 3rem; margin-bottom: 3rem; }
.pilares-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.pilar{
  background: #fff; border-radius: 16px; padding: 2rem 1.7rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: relative; overflow:hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pilar::before{
  content:''; position:absolute; left:0; right:0; top:0;
  height: 4px; background: linear-gradient(to right, var(--red), var(--red-deep));
}
.pilar:hover{ transform: translateY(-6px); box-shadow: 0 18px 50px rgba(200,48,42,0.12); }
.pilar-icon{
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--red); color:#fff;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 1.2rem;
}
.pilar h3{
  font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  font-size: 1.1rem; margin-bottom: .8rem;
}
.pilar blockquote{
  font-style: italic; font-weight: 300;
  color: #333; line-height: 1.55;
  font-size: .98rem;
  margin-bottom: 1.2rem;
}
.pilar cite{
  font-style: normal; font-weight: 700;
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--red);
}

/* === Brands === */
.brands{
  background: var(--ink); color:#fff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative; overflow:hidden;
}
.brands::before{
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events:none;
  mask-image: radial-gradient(60% 60% at 50% 50%, #000 30%, transparent 80%);
}
.brands-head{ text-align:center; margin-bottom: 3rem; position:relative; z-index:1; }
.brands-head h2{ color:#fff; }
.brands-head p{ color: rgba(255,255,255,0.6); margin-top: .8rem; }
.brands-rows{ display:flex; flex-direction:column; gap: 1.4rem; position:relative; z-index:1; }
.brands-track-wrap{
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.brands-track{
  display: flex; gap: 18px; align-items: stretch;
  animation: marquee 55s linear infinite;
  width: max-content;
  padding: .5rem 0;
}
.brands-track.reverse{ animation: marquee-rev 60s linear infinite; }
.brands-track-wrap:hover .brands-track{ animation-play-state: paused; }
@keyframes marquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}
@keyframes marquee-rev{
  0%{ transform: translateX(-50%); }
  100%{ transform: translateX(0); }
}
.brand-logo{
  height: 88px; width: 160px;
  display:flex; align-items:center; justify-content:center;
  padding: .7rem .9rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.16);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  flex-shrink: 0;
  overflow: hidden;
}
.brand-logo img{
  max-height: 100%; max-width: 100%;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
}
.brand-logo:hover{
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 40px rgba(200,48,42,0.28);
}

/* === Contacto === */
.contacto{
  background: var(--ink); color:#fff;
  position: relative; overflow:hidden;
}
.contacto::before{
  content:''; position:absolute; right:-10%; top:-20%;
  width: 700px; height: 700px;
  background: radial-gradient(closest-side, rgba(200,48,42,0.25), transparent 70%);
  filter: blur(20px); pointer-events:none;
}
.contacto-grid{
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 4rem;
  align-items: start;
  position: relative;
}
.contacto-left h2{ color:#fff; }
.contacto-left .lead{
  color: rgba(255,255,255,0.7);
  max-width: 36ch; line-height: 1.6;
  margin-bottom: 2rem;
}
.contact-list{ list-style:none; padding:0; margin: 0 0 2rem; }
.contact-list li{
  display:flex; gap: 1rem; padding: .8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: .95rem;
}
.contact-list li:last-child{ border-bottom: 0; }
.contact-list .ico{
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(200,48,42,0.15);
  color: #ff7670;
  display:flex; align-items:center; justify-content:center;
  flex-shrink: 0;
}
.contact-list .ico svg{ width: 16px; height: 16px; }
.contact-list .txt-label{
  display:block; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: .15rem;
}
.contact-list .txt-val{ color:#fff; font-weight: 400; }
.contact-socials{ display:flex; gap: .8rem; }
.contact-socials a{
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display:flex; align-items:center; justify-content:center;
  color:#fff; transition: all .3s ease;
}
.contact-socials a:hover{ background: var(--red); border-color: var(--red); transform: translateY(-3px); }

.contact-map{
  margin-top: 2rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  height: 240px;
  position: relative;
}
.contact-map iframe{
  width: 100%; height: 100%; border: 0; display: block;
}
.contact-map .map-link{
  position: absolute;
  bottom: 10px; right: 10px;
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .45rem .7rem;
  background: rgba(20,20,20,0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  color: #fff; font-size: .78rem; font-weight: 600;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
}
.contact-map .map-link:hover{ background: var(--red); border-color: var(--red); }

.form-card{
  background: rgba(28,28,28,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field{ margin-bottom: 1rem; position: relative; }
.field label{
  display:block;
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: .4rem; font-weight: 400;
}
.field input, .field textarea{
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: .85rem 1rem;
  border-radius: 8px;
  font-family: inherit; font-size: .95rem; font-weight: 300;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.field textarea{ resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus{
  outline: none;
  border-color: var(--red);
  background: rgba(200,48,42,0.06);
  box-shadow: 0 0 0 3px rgba(200,48,42,0.25);
}
.radio-group{
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.radio-group label{
  display: inline-flex; align-items:center; gap: .5rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  font-size: .8rem;
  cursor: pointer; transition: all .25s ease;
  text-transform: none; letter-spacing: 0; margin: 0;
}
.radio-group input{ display:none; }
.radio-group label:hover{ border-color: rgba(255,255,255,0.3); color:#fff; }
.radio-group label.active{
  background: var(--red); border-color: var(--red); color:#fff;
}
.submit-btn{
  width: 100%;
  padding: 1.1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color:#fff; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  font-size: .9rem;
  margin-top: .4rem;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  box-shadow: 0 14px 40px rgba(200,48,42,0.3);
}
.submit-btn:hover{ transform: scale(1.02); filter: brightness(1.06); box-shadow: 0 20px 50px rgba(200,48,42,0.45); }
.submit-alt{
  display: block;
  width: 100%;
  margin-top: .7rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: .82rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color .2s ease;
}
.submit-alt:hover{ color: #fff; }
.form-success{
  background: rgba(46, 160, 67, 0.12);
  border: 1px solid rgba(46, 160, 67, 0.4);
  color: #6fd585;
  padding: .9rem 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  font-size: .9rem;
}

/* === Contacto — light (white) theme override === */
.contacto{ background: #fff; color: var(--ink); }
.contacto::before{ background: radial-gradient(closest-side, rgba(200,48,42,0.10), transparent 70%); }
.contacto-left h2{ color: var(--ink); }
.contacto-left .lead{ color: #555; }
.contact-list li{ border-bottom: 1px solid rgba(0,0,0,0.1); }
.contact-list .ico{ background: rgba(200,48,42,0.12); color: var(--red); }
.contact-list .txt-label{ color: #888; }
.contact-list .txt-val{ color: var(--ink); }
.contact-list .txt-val:hover{ color: var(--red); }
.contact-socials a{ background: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.1); color: var(--ink); }
.contact-socials a:hover{ background: var(--red); border-color: var(--red); color: #fff; }
.form-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}
.field label{ color: #666; }
.field input, .field textarea{
  background: #f5f4f2;
  border: 1px solid rgba(0,0,0,0.14);
  color: var(--ink);
}
.field input::placeholder, .field textarea::placeholder{ color: #9a9a9a; }
.field input:focus, .field textarea:focus{ background: #fff; }
.radio-group label{
  background: #f5f4f2;
  border: 1px solid rgba(0,0,0,0.14);
  color: #555;
}
.radio-group label:hover{ border-color: rgba(0,0,0,0.35); color: var(--ink); }
.radio-group label.active{ background: var(--red); border-color: var(--red); color: #fff; }
.submit-alt{ color: #777; }
.submit-alt:hover{ color: var(--ink); }
.form-error{
  background: rgba(200,48,42,0.08);
  border: 1px solid rgba(200,48,42,0.35);
  color: var(--red-deep);
  padding: .8rem 1rem; border-radius: 10px; margin-top: .9rem; font-size: .88rem;
}
.form-success{
  background: rgba(46, 160, 67, 0.12);
  border: 1px solid rgba(46, 160, 67, 0.45);
  color: #1b7a2f;
}

/* === Footer === */
.footer{
  background: var(--ink-3); color: #c8c8c8;
  padding: 4rem 0 1.6rem;
}
.footer-grid{
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer h4{
  color:#fff; text-transform: uppercase; letter-spacing: .15em;
  font-size: .78rem; margin-bottom: 1.2rem;
}
.footer-tag{ color: rgba(255,255,255,0.5); font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1rem; }
.footer p.desc{ font-size: .9rem; line-height: 1.6; max-width: 36ch; }
.footer ul{ list-style:none; padding:0; }
.footer ul li{ margin-bottom: .55rem; font-size: .9rem; }
.footer ul a{ color: #c8c8c8; transition: color .25s ease, padding .25s ease; }
.footer ul a:hover{ color: var(--red); padding-left: .35rem; }
.footer-bottom{
  padding-top: 1.6rem;
  display:flex; justify-content:space-between; align-items:center; gap: 1rem;
  font-size: .8rem; color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
}
.footer-socials{ display:flex; gap:.6rem; margin-top: 1.2rem; }
.footer-socials a{
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:center; color:#fff;
  transition: all .25s ease;
}
.footer-socials a:hover{ background: var(--red); border-color: var(--red); transform: translateY(-2px); }

/* === Floating buttons === */
.floats{
  position: fixed; right: 1.4rem; bottom: 1.4rem;
  display:flex; flex-direction:column; gap:.7rem; z-index: 80;
}
.float-btn{
  width: 56px; height: 56px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff;
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
  transition: transform .25s ease, filter .25s ease;
  position: relative;
}
.float-btn:hover{ transform: scale(1.08); filter: brightness(1.06); }
.float-wa{ background: #25D366; }
.float-wa::before{
  content:''; position: absolute; inset:-6px; border-radius:50%;
  border: 2px solid #25D366; opacity: .6;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse{
  0%{ transform: scale(.9); opacity:.6; }
  100%{ transform: scale(1.5); opacity: 0; }
}
.float-mail{ background: var(--red); }

/* === Reveal === */
.reveal{ opacity:0; transform: translateY(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform: translateY(0); }
.reveal-stagger > *{ opacity:0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.in > *{ opacity:1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1){ transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2){ transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3){ transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4){ transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5){ transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6){ transition-delay: 400ms; }
.reveal-stagger.in > *:nth-child(7){ transition-delay: 480ms; }
.reveal-stagger.in > *:nth-child(8){ transition-delay: 560ms; }
.reveal-stagger.in > *:nth-child(9){ transition-delay: 640ms; }

/* Clip reveal for headings */
.clip-reveal{
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s var(--ease);
}
.clip-reveal.in{ clip-path: inset(0 0 0 0); }

/* === Logo === */
.logo{ display:flex; align-items:center; gap: .7rem; }
.logo-tower{
  width: 22px; height: 32px;
  position: relative;
  flex-shrink: 0;
}
.logo-wordmark{
  display:flex; flex-direction:column; line-height:1;
}
/* Logo wordmark — display font */
.logo-wordmark .name{
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.6rem; letter-spacing: .14em; color:#fff;
  text-transform: uppercase;
}
.logo-wordmark .tag{
  font-family: var(--font-mono);
  font-weight: 400; font-size: .58rem; letter-spacing: .18em; color: rgba(255,255,255,0.65);
  text-transform: uppercase; margin-top: 5px;
}
.logo.dark .name{ color: var(--ink); }
.logo.dark .tag{ color: rgba(0,0,0,0.55); }

/* Responsive */
@media (max-width: 1024px){
  .products-grid{ grid-template-columns: repeat(2, 1fr); }
  .eventos-grid{ grid-template-columns: 1fr; gap: 2.5rem; }
  .eventos-cards{ grid-template-columns: repeat(2, 1fr); }
  .eventos-row{ grid-template-columns: repeat(3, 1fr); gap: 2.5rem 1rem; }
  .nosotros-grid{ grid-template-columns: 1fr; gap: 2.5rem; }
  .nosotros-img{ min-height: 360px; border-radius: 14px; margin-left: 0; }
  .pilares-grid{ grid-template-columns: 1fr; }
  .contacto-grid{ grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 700px){
  .nav-links{ display:none; }
  .nav-phone .ph-num{ display:none; }
  .nav-socials{ display:none; }
  .hamburger{ display:flex; }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0; }
  .stat + .stat::before{ display:none; }
  .stat:nth-child(odd)::after{
    content:''; position:absolute; right:0; top:18%; bottom:18%; width:1px;
    background: linear-gradient(to bottom, transparent, var(--red), transparent);
  }
  .products-grid{ grid-template-columns: 1fr; }
  .eventos-cards{ grid-template-columns: 1fr; }
  .eventos-row{ grid-template-columns: repeat(2, 1fr); }
  .form-row{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  h2.section-title{ font-size: 2rem; }
  .floats{ right: 1rem; bottom: 1rem; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* =====================================================================
   NOVEDADES / BLOG
   ===================================================================== */

/* Homepage teaser section */
.novedades{ background: var(--gray-50); }
.novedades-head{ margin-bottom: 2.6rem; }
.novedades-sub{ color: var(--gray-500); max-width: 48ch; margin-top: .4rem; }

.nov-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

/* Shared card (used on homepage + blog list) */
.nov-card{
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  color: inherit;
  height: 100%;
}
.nov-card:hover{ transform: translateY(-6px); box-shadow: 0 22px 50px rgba(0,0,0,0.16); }
.nov-card__media{
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--ink-2);
  overflow: hidden;
}
.nov-card__media img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.nov-card:hover .nov-card__media img{ transform: scale(1.05); }
.nov-card__ph{
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
}
.nov-tag{
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: .66rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 999px;
  color: #fff;
  backdrop-filter: blur(4px);
}
.nov-tag--evento{ background: var(--red); }
.nov-tag--blog{ background: rgba(17,17,17,0.85); }
.nov-soon{
  position: absolute; top: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: .62rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .32rem .6rem;
  border-radius: 999px;
  background: #fff; color: var(--ink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.nov-card__body{
  display: flex; flex-direction: column;
  gap: .55rem;
  padding: 1.3rem 1.4rem 1.5rem;
  flex: 1;
}
.nov-card__meta{
  display: flex; align-items: center; gap: .4rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: .72rem; color: var(--gray-500);
}
.nov-card__meta svg{ flex-shrink: 0; color: var(--red); }
.nov-card__loc{ color: var(--gray-500); }
.nov-card__title{
  font-family: var(--font-display);
  font-size: 1.18rem; line-height: 1.25; font-weight: 700;
  color: var(--ink);
  text-wrap: pretty;
}
.nov-card__excerpt{
  color: #555; font-size: .92rem; line-height: 1.55;
  flex: 1;
}
.nov-card__more{
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: .3rem;
  font-family: var(--font-mono);
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  color: var(--red);
}
.nov-card:hover .nov-card__more svg{ transform: translateX(3px); }
.nov-card__more svg{ transition: transform .3s var(--ease); }
.novedades-cta{ margin-top: 2.8rem; text-align: center; }

/* Blog page — list */
.blog-main{ min-height: 60vh; }
.blog-hero{
  background: var(--ink);
  color: #fff;
  padding: clamp(7rem, 12vw, 9rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  position: relative; overflow: hidden;
}
.blog-hero::before{
  content:''; position:absolute; right:-8%; top:-30%;
  width: 620px; height: 620px;
  background: radial-gradient(closest-side, rgba(200,48,42,0.28), transparent 70%);
  filter: blur(20px); pointer-events:none;
}
.blog-hero__title{
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 700; line-height: 1.05; color: #fff;
  margin-top: .6rem;
}
.blog-hero__sub{ color: rgba(255,255,255,0.65); max-width: 52ch; margin-top: 1rem; }
.blog-body{ padding-top: 2.6rem; padding-bottom: clamp(4rem, 8vw, 6rem); }
.blog-filters{
  display: flex; gap: .6rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-chip{
  font-family: var(--font-mono);
  font-size: .78rem; font-weight: 600; letter-spacing: .05em;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(0,0,0,0.15);
  background: transparent; color: #444;
  transition: all .2s var(--ease);
}
.filter-chip:hover{ border-color: var(--red); color: var(--red); }
.filter-chip.is-active{ background: var(--red); border-color: var(--red); color: #fff; }
.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.blog-empty{ color: var(--gray-500); text-align: center; padding: 3rem 0; }

/* Blog page — single article */
.article-hero{
  background: var(--ink);
  background-size: cover; background-position: center;
  color: #fff;
  padding: clamp(7rem, 12vw, 9.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}
.article-hero__inner{ max-width: 900px; }
.article-back{
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-mono); font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.6rem;
}
.article-back svg{ transform: rotate(180deg); }
.article-back:hover{ color: #fff; }
.article-tags{ display: flex; gap: .5rem; margin-bottom: 1rem; }
.article-tags .nov-tag, .article-tags .nov-soon{ position: static; }
.article-title{
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; line-height: 1.08; color: #fff;
  text-wrap: pretty;
}
.article-meta{
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  margin-top: 1.3rem;
  font-family: var(--font-mono); font-size: .82rem;
  color: rgba(255,255,255,0.7);
}
.article-meta span{ display: inline-flex; align-items: center; gap: .45rem; }
.article-meta svg{ color: #ff6a64; }

.article-wrap{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3rem;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  align-items: start;
}
.article-body{ max-width: 70ch; }
.article-body p{
  font-size: 1.08rem; line-height: 1.75; color: #333;
  margin-bottom: 1.3rem;
}
.article-h{
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700; color: var(--ink);
  margin: 2.2rem 0 1rem;
}
.article-gallery{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.article-gal-item{
  padding: 0; border: 0; background: none;
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}
.article-gal-item img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
}
.article-gal-item:hover img{ transform: scale(1.05); }

.article-cta{
  position: sticky; top: 110px;
  background: var(--ink); color: #fff;
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  display: flex; flex-direction: column; gap: .8rem;
}
.article-cta h3{
  font-family: var(--font-display); font-size: 1.15rem; color: #fff; font-weight: 700;
}
.article-cta p{ color: rgba(255,255,255,0.7); font-size: .92rem; line-height: 1.5; margin-bottom: .4rem; }
.article-cta .btn{ width: 100%; justify-content: center; }
.btn-ghost-dark{
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff; background: transparent;
}
.btn-ghost-dark:hover{ background: rgba(255,255,255,0.08); border-color:#fff; transform: scale(1.02); }

/* Lightbox */
.lightbox{
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(8,8,8,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 4vw;
  cursor: zoom-out;
  animation: lb-in .2s ease;
}
@keyframes lb-in{ from{ opacity: 0; } to{ opacity: 1; } }
.lightbox img{ max-width: 100%; max-height: 90vh; border-radius: 8px; cursor: default; }
.lightbox-close{
  position: absolute; top: 1.4rem; right: 1.6rem;
  color: #fff; background: rgba(255,255,255,0.12);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover{ background: rgba(255,255,255,0.25); }

@media (max-width: 900px){
  .nov-grid, .blog-grid{ grid-template-columns: repeat(2, 1fr); }
  .article-wrap{ grid-template-columns: 1fr; gap: 2rem; }
  .article-cta{ position: static; }
}
@media (max-width: 620px){
  .nov-grid, .blog-grid{ grid-template-columns: 1fr; }
  .article-gallery{ grid-template-columns: 1fr; }
}

/* === Redes / Social feed === */
.redes{ background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.redes::before{
  content:''; position:absolute; left:-10%; bottom:-30%;
  width: 620px; height: 620px;
  background: radial-gradient(closest-side, rgba(200,48,42,0.22), transparent 70%);
  filter: blur(20px); pointer-events:none;
}
.redes-head{ margin-bottom: 2.6rem; position: relative; z-index: 1; }
.redes-sub{ color: rgba(255,255,255,0.6); max-width: 48ch; margin-top: .4rem; }
.redes-grid{
  display: grid;
  grid-template-columns: 1fr 500px;
  max-width: 1000px;
  margin: 0 auto;
  gap: 3rem;
  position: relative; z-index: 1;
  align-items: center;
}
.redes-info{ color: #fff; }
.redes-info__icon{
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff; margin-bottom: 1.2rem;
}
.redes-info h3{
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 700; color: #fff;
  line-height: 1.1;
}
.redes-info p{
  color: rgba(255,255,255,0.65); line-height: 1.6;
  max-width: 40ch; margin: 1rem 0 1.6rem;
}
.redes-card-label{
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-mono); font-size: .74rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: .9rem;
}
.redes-fb{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.2rem;
}
.redes-fb__frame{
  border-radius: 10px; overflow: hidden;
  background: #fff; min-height: 500px;
}
.redes-fb__frame iframe{ display: block; width: 100%; }

.redes-ig{
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  border-radius: 16px;
  padding: 2.4rem;
  color: #fff;
  background:
    radial-gradient(120% 120% at 0% 0%, #feda75 0%, #fa7e1e 22%, #d62976 48%, #962fbf 74%, #4f5bd5 100%);
  position: relative; overflow: hidden;
}
.redes-ig__icon{
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
}
.redes-ig__handle{
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700; line-height: 1;
}
.redes-ig__desc{ color: rgba(255,255,255,0.92); line-height: 1.55; max-width: 34ch; }
.redes-ig .btn-primary{
  background: #fff; color: var(--ink);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.redes-ig .btn-primary:hover{ background: #fff; transform: scale(1.04); }

@media (max-width: 860px){
  .redes-grid{ grid-template-columns: 1fr; }
  .redes-ig{ padding: 2rem; }
}

/* ===== Eiffel child overrides ===== */
/* Prev/next arrows relocated into a column directly under the hero product card */
.hero-card-col{ display:flex; flex-direction:column; gap:1rem; align-self:flex-end; width:clamp(200px,22vw,320px); }
.hero-card-col .hero-product-card{ width:100%; align-self:auto; margin-bottom:0; }
.hero-card-col .hero-skip{ position:static; right:auto; bottom:auto; z-index:auto; justify-content:flex-end; }
@media (max-width: 700px){
  .hero-card-col{ width:100%; align-self:auto; }
  .hero-card-col .hero-skip{ justify-content:center; }
}

/* Framing for the new "Escenarios" (slide 1) hero photo — show more of the full stage */
.hero-bg > .slide:first-child{ background-position: center 38% !important; }


/* === Compact product popup: show everything without scrolling (2026-07-09) === */
.modal{ max-height: 90vh; grid-template-columns: 0.92fr 1.18fr; }
.modal-body{ padding: clamp(1.2rem, 2vw, 1.8rem); align-self: center; }
.modal-title{ font-size: clamp(1.3rem, 2vw, 1.85rem); margin: .25rem 0 .55rem; }
.modal-tagline{ font-size: 1rem; line-height: 1.4; margin-bottom: .7rem; }
.modal-desc{ font-size: .88rem; line-height: 1.5; margin-bottom: 1rem; }
.modal-h{ margin: 1rem 0 .5rem; }
.spec-grid{ grid-template-columns: repeat(3, 1fr); gap: .5rem .9rem; padding-top: .7rem; }
.spec{ padding: .25rem 0; }
.feature-list.compact{ display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.4rem; }
.feature-list.compact li{ padding: .28rem 0; font-size: .88rem; }
.modal-ctas{ margin-top: 1.1rem; }
@media (max-width: 860px){
  .modal{ grid-template-columns: 1fr; max-height: 92vh; }
  .spec-grid{ grid-template-columns: repeat(2, 1fr); }
  .feature-list.compact{ grid-template-columns: 1fr; }
}
/* === end compact product popup === */


/* === Mobile fixes (2026-07-09): contact wallpaper + hero crowding === */
/* Contact: mobile bg-image was tiling (cover/no-repeat never set) -> remove it, match desktop's clean white */
@media only screen and (max-width: 767px){
  section#contacto{
    background-image: none !important;
    background-color: #ffffff !important;
  }
}
/* Hero: shrink oversized headline + tighten rhythm so phones aren't crammed */
@media only screen and (max-width: 700px){
  .hero h1{ font-size: clamp(1.55rem, 7vw, 1.95rem) !important; line-height: 1.07; margin-bottom: 0.9rem; }
  .hero-sub{ margin-bottom: 1.3rem; }
  .hero-overline{ font-size: 0.74rem; }
  .hero-layout{ gap: 1.5rem; padding-bottom: 44px; }
}
/* === end mobile fixes === */


/* === Mobile: compress hero product card (2026-07-09) === */
@media only screen and (max-width: 700px){
  .hero-product-card{ padding: 1rem 1.1rem 0.7rem !important; gap: 0.55rem !important; }
  .hpc-num{ font-size: 2.2rem !important; line-height: 1; }
  .hpc-cta{ padding: 0.5rem 0.9rem !important; }
  .hero-dots{ padding-bottom: 0.2rem !important; }
}
/* === end compress hero card === */











/* ===== Novedades gallery (2026-07-09) ===== */
.nov-gallery{ display:grid; grid-template-columns:repeat(3,1fr); gap:.6rem; margin:2.2rem 0 1rem; }
.nov-gallery a, .nov-gallery img{ display:block; width:100%; }
.nov-gallery img{ aspect-ratio:4/3; object-fit:cover; border-radius:12px; transition:transform .3s ease; }
.nov-gallery img:hover{ transform:scale(1.02); }
.nov-gallery.g-2{ grid-template-columns:repeat(2,1fr); }
@media (max-width:700px){ .nov-gallery{ grid-template-columns:1fr 1fr; gap:.4rem; } }
/* ===== end novedades gallery ===== */


/* Badge (+20 Años en obra): give the number and text breathing room */
.badge{ padding: 18px 22.4px !important; }
.badge .big{ line-height: 1.02 !important; display: block; }
.badge .sm{ margin-top: 0.6rem !important; line-height: 1.25 !important; }
/* end badge text breathing room */


/* Product pages (new template): clear the fixed nav + tidy layout — eiffel-product blog-main spacing */
.eiffel-product .blog-main{ padding-top: clamp(120px, 13vh, 155px); padding-bottom: clamp(3rem,6vw,5rem); }
.eiffel-product .blog-single{ max-width: 860px; }
.eiffel-product .blog-body .wp-block-gallery{ margin: 1.6rem 0; }
.eiffel-product .blog-body img{ border-radius: 12px; }
@media (max-width:700px){ .eiffel-product .blog-main{ padding-top: 104px; } }


/* === Product pages: solid dark header (2026-07-10) — these pages have a light background and no dark hero, so the transparent white-text nav was unreadable === */
body.eiffel-product header,
body.eiffel-product header.nav{
	background:#0a0a0a !important;
	border-bottom:1px solid rgba(255,255,255,0.08);
}


/* === Failsafe: if design.js is blocked or fails to run (e.g. antivirus/adware), reveal-on-scroll content must NOT stay invisible. When design.js runs it adds .eiffel-js to <html>; if that never happens, force the content visible. 2026-07-10 === */
html:not(.eiffel-js) .reveal{ animation: eiffelFailsafeReveal .4s ease 1.6s forwards; }
@keyframes eiffelFailsafeReveal{ to{ opacity:1 !important; transform:none !important; } }
html:not(.eiffel-js) [style*="opacity:0"]{ animation: eiffelFailsafeReveal .4s ease 1.6s forwards; }


/* === Floating WhatsApp button — fixed, always visible while scrolling (2026-07-10) === */
.eiffel-wa-fab{
  position:fixed; right:22px; bottom:22px; z-index:99990;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 26px rgba(37,211,102,.5), 0 3px 10px rgba(0,0,0,.2);
  transition:transform .22s ease, box-shadow .22s ease;
  animation:eiffelWaPulse 2.6s ease-out infinite;
}
.eiffel-wa-fab:hover{ transform:scale(1.09); box-shadow:0 12px 34px rgba(37,211,102,.6), 0 3px 10px rgba(0,0,0,.22); }
.eiffel-wa-fab:focus-visible{ outline:3px solid #fff; outline-offset:3px; }
.eiffel-wa-fab svg{ width:32px; height:32px; display:block; }
@keyframes eiffelWaPulse{
  0%{ box-shadow:0 8px 26px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.45); }
  70%{ box-shadow:0 8px 26px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow:0 8px 26px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width:600px){ .eiffel-wa-fab{ right:16px; bottom:16px; width:52px; height:52px; } .eiffel-wa-fab svg{ width:29px; height:29px; } }
@media (prefers-reduced-motion: reduce){ .eiffel-wa-fab{ animation:none; } }

/* cache-bump 1783691585506 */


/* === hero-fit-2026-07-10: fit the whole hero in the first screen on shorter laptops + keep the carousel controls clear of the floating WhatsApp button (desktop only; mobile handled separately) === */
@media (min-width:861px){
  .hero .hero-card-col{ margin-bottom: 44px; }
}
@media (min-width:861px) and (max-height:900px){
  .hero h1{ font-size:clamp(2.3rem,4.5vw,3.2rem)!important; line-height:1.0!important; margin:8px 0 16px!important; }
  .hero-sub{ margin:0 0 1rem!important; }
}
@media (min-width:861px) and (max-height:790px){
  .hero h1{ font-size:clamp(1.95rem,4vw,2.65rem)!important; margin:6px 0 12px!important; }
  .hero-sub{ font-size:.95rem!important; margin:0 0 .7rem!important; }
  .hero .hero-card-col{ margin-bottom: 36px; }
}

/* cache-bump 1783694294879 */

/* cache-bump 1783696208482 */


/* wa-fab hide on mobile, keep on desktop (2026-07-10) — mobile already has WhatsApp access in the mobile bar */
@media (max-width: 860px){ .eiffel-wa-fab{ display: none !important; } }
