/* ============================================================
   AMOBLAMIENTOS MG2 — v2 Stylesheet
   Aesthetic: Warm Wood · Luxury Craft · Editorial
   ============================================================ */

:root {
  --white:       #ffffff;
  --off-white:   #f7f4ef;
  --cream:       #ede8df;
  --warm-sand:   #d9d0c0;
  --wood-light:  #c4a882;
  --wood-mid:    #9a7b5a;
  --wood-dark:   #5c3d1e;
  --charcoal:    #1c1a17;
  --dark:        #252219;
  --mid-dark:    #3a3428;
  --text:        #2e2a22;
  --text-muted:  #7a7060;
  --gold:        #E8B84B;   /* exact logo yellow */
  --gold-dark:   #c9942a;
  --gray-mg:     #808080;   /* exact logo gray */
  --border:      #e0d9cf;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --hh: 90px;
  --tr: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --tr-fast: 0.22s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--off-white); overflow-x: hidden; cursor: none; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: none; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* CURSOR */
.cursor, .cursor-follower {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
}
.cursor { width: 8px; height: 8px; background: var(--gold); transition: width .2s, height .2s; }
.cursor-follower { width: 38px; height: 38px; border: 1.5px solid rgba(232,184,75,.5); transition: left .14s ease, top .14s ease, width .3s, height .3s, opacity .3s; }
.cursor.hov { width: 14px; height: 14px; }
.cursor-follower.hov { width: 58px; height: 58px; }
@media (hover: none) { .cursor, .cursor-follower { display: none; } }

/* CONTAINER */
.container { max-width: 1320px; margin: 0 auto; padding: 0 48px; }

/* ── HEADER ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; height: var(--hh);
  background: #ffffff;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: border-color var(--tr), box-shadow var(--tr), height var(--tr);
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 24px rgba(28,26,23,.06);
  height: 72px;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 36px;
  gap: 0;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 68px; width: auto; object-fit: contain; transition: height var(--tr); }
.header.scrolled .logo-img { height: 54px; }

.nav { display: flex; align-items: center; gap: 24px; }
.nav-link {
  font-size: 12px; font-weight: 400; letter-spacing: .09em; text-transform: uppercase;
  color: var(--text-muted); position: relative; transition: color var(--tr-fast);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width var(--tr);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  background: var(--charcoal) !important; color: #fff !important;
  padding: 10px 22px; border-radius: 0; transition: background var(--tr-fast) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--charcoal) !important; }

.burger { display: none; flex-direction: column; gap: 5px; width: 30px; }
.burger span { display: block; height: 1.5px; background: var(--charcoal); transition: transform .3s, opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: var(--hh); left: 0; right: 0; bottom: 0;
  background: var(--charcoal); z-index: 998;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: translateX(100%); transition: transform .45s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.open { transform: none; }
.mobile-nav { display: flex; flex-direction: column; gap: 20px; text-align: center; }
.mobile-nav-link {
  font-family: var(--font-display); font-size: 40px; font-weight: 300;
  color: var(--off-white); letter-spacing: .02em; transition: color var(--tr-fast);
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-menu-footer {
  position: absolute; bottom: 40px; display: flex; flex-direction: column; gap: 8px; text-align: center;
  font-size: 13px; color: rgba(255,255,255,.35); letter-spacing: .1em;
}

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; overflow: hidden;
  background: var(--charcoal);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center center;
  opacity: 0; transition: opacity 1.2s ease; transform: scale(1.04);
}
.hero-slide.active { opacity: 1; transform: scale(1); transition: opacity 1.2s ease, transform 8s ease; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(20,16,10,.88) 0%, rgba(20,16,10,.60) 55%, rgba(20,16,10,.30) 100%);
}
.hero-texture {
  position: absolute; inset: 0; opacity: .03;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,.1) 2px, rgba(255,255,255,.1) 4px);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2; padding: var(--hh) 80px 0; max-width: 860px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-bottom: 32px;
  opacity: 0; animation: fadeUp .8s .3s forwards;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse { 0%,100%{opacity:.5}50%{opacity:1} }

.hero-title {
  font-family: var(--font-display); font-size: clamp(54px,8vw,100px);
  font-weight: 300; line-height: 1; color: #fff; letter-spacing: -.02em; margin-bottom: 28px;
}
.hero-line { display: block; opacity: 0; transform: translateY(36px); }
.hero-line:nth-child(1) { animation: fadeUp .8s .5s forwards; }
.hero-line:nth-child(2) { animation: fadeUp .8s .65s forwards; }
.hero-line:nth-child(3) { animation: fadeUp .8s .8s forwards; }
.hero-title .italic { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: 16px; line-height: 1.75; color: rgba(255,255,255,.65);
  margin-bottom: 44px; opacity: 0; animation: fadeUp .8s .95s forwards;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s 1.1s forwards;
}

.hero-scroll-indicator {
  position: absolute; bottom: 44px; left: 80px; z-index: 2;
  display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: fadeIn 1s 1.6s forwards;
}
.scroll-text { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.scroll-bar { width: 60px; height: 1px; background: rgba(255,255,255,.2); overflow: hidden; }
.scroll-progress { width: 30%; height: 100%; background: var(--gold); animation: scrollAnim 2.4s ease-in-out infinite; }
@keyframes scrollAnim { 0%{transform:translateX(-100%)}100%{transform:translateX(400%)} }

.hero-slide-counter {
  position: absolute; bottom: 44px; right: 80px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeIn 1s 1.6s forwards;
}
.slide-cur, .slide-total { font-size: 12px; letter-spacing: .12em; color: rgba(255,255,255,.5); font-family: var(--font-display); }
.slide-cur { color: var(--gold); }
.slide-line { width: 40px; height: 1px; background: rgba(255,255,255,.2); position: relative; }
.slide-line-progress { position: absolute; top: 0; left: 0; height: 100%; background: var(--gold); width: 33%; transition: width .4s; }

/* BUTTONS */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--charcoal);
  font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  padding: 16px 36px; transition: background var(--tr-fast), transform var(--tr-fast), box-shadow var(--tr-fast);
}
.btn-gold:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,184,75,.35); }
.btn-ghost-hero {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,.35); color: #fff;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  padding: 15px 32px; transition: border-color var(--tr-fast), background var(--tr-fast);
}
.btn-ghost-hero:hover { border-color: var(--gold); background: rgba(232,184,75,.1); }
.btn-gold-sm {
  display: inline-flex; align-items: center;
  background: var(--gold); color: var(--charcoal);
  font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  padding: 13px 28px; transition: background var(--tr-fast);
  margin-top: 8px;
}
.btn-gold-sm:hover { background: #fff; }
.btn-outline-dark {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--charcoal); color: var(--charcoal);
  font-size: 12px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 40px; background: transparent; transition: background var(--tr-fast), color var(--tr-fast);
}
.btn-outline-dark:hover { background: var(--charcoal); color: #fff; }

/* ── MATERIAL STRIP ── */
.material-strip {
  background: var(--charcoal);
  padding: 0;
  overflow: hidden;
  border-top: 3px solid var(--gold);
}
.material-strip-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0; padding: 20px 48px;
}
.mat-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55); padding: 8px 24px;
}
.mat-item svg { color: var(--gold); flex-shrink: 0; }
.mat-sep { color: var(--gold); font-size: 20px; line-height: 1; opacity: .4; }

/* ── PORTFOLIO ── */
.portfolio-section { padding: 72px 0 80px; background: #fff; }

/* MASONRY GRID — CSS columns, sin huecos */
.masonry-grid {
  columns: 4;
  column-gap: 10px;
}
.m-item {
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--cream);
  cursor: zoom-in;
}
.m-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.m-item:hover .m-img { transform: scale(1.04); }
.m-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,16,10,.85) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px;
  gap: 3px;
}
.m-item:hover .m-overlay { opacity: 1; }
.m-cat { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.m-name { font-family: var(--font-display); font-size: 15px; color: #fff; font-weight: 300; line-height: 1.2; }
.m-zoom {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; border: 1px solid rgba(255,255,255,.25);
  transition: background .2s;
}
.m-zoom:hover { background: var(--gold); color: var(--charcoal); }

/* Items hidden by filter */
.m-item.hidden { display: none; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(10,8,6,.96);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; animation: fadeIn .25s ease; }
.lb-img-wrap {
  position: relative; max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center;
}
.lb-img {
  max-width: 100%; max-height: 85vh;
  object-fit: contain; display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}
.lb-caption {
  color: rgba(255,255,255,.55); font-size: 13px;
  letter-spacing: .08em; margin-top: 14px; text-align: center;
}
.lb-close {
  position: absolute; top: 20px; right: 24px;
  color: rgba(255,255,255,.6); z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); transition: background .2s, color .2s;
}
.lb-close:hover { background: var(--gold); color: var(--charcoal); }
.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.6); z-index: 10;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); transition: background .2s, color .2s;
}
.lb-arrow:hover { background: var(--gold); color: var(--charcoal); }
.hero-slide-counter { display: none; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.section-eyebrow {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-eyebrow.light { color: var(--gold); }
.section-header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px; flex-wrap: wrap; gap: 24px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(34px,4vw,54px);
  font-weight: 300; line-height: 1.1; color: var(--charcoal);
}
.section-title em { font-style: italic; color: var(--gold); }
.center-eye { text-align: center; }
.center-title { text-align: center; margin-bottom: 0; }

.filter-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.filter-btn {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); padding: 9px 20px;
  border: 1px solid var(--border); background: transparent;
  transition: all var(--tr-fast); font-family: var(--font-body);
}
.filter-btn:hover { border-color: var(--charcoal); color: var(--charcoal); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--charcoal); font-weight: 500; }

.portfolio-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px; gap: 12px;
}
.p-item { position: relative; overflow: hidden; background: var(--cream); }
.p-item.tall { grid-row: span 2; }
.p-item.wide { grid-column: span 2; }
.p-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
}
.p-item:hover .p-img { transform: scale(1.07); }
.p-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px; background: linear-gradient(to top, rgba(20,16,10,.88) 0%, transparent 100%);
  transform: translateY(6px); opacity: 0;
  transition: opacity .3s, transform .3s; display: flex; flex-direction: column; gap: 4px;
}
.p-item:hover .p-info { opacity: 1; transform: none; }
.p-cat { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.p-name { font-family: var(--font-display); font-size: 17px; color: #fff; font-weight: 300; }
.load-more-wrap { text-align: center; margin-top: 56px; }

/* ── CATEGORY SECTIONS ── */
.cat-section {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 700px;
}
.cat-section.reverse { direction: rtl; }
.cat-section.reverse > * { direction: ltr; }
.cat-media { position: relative; overflow: hidden; }
.cat-img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.cat-section:hover .cat-img { transform: scale(1.04); }
.cat-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20,16,10,.25) 0%, transparent 60%);
}
.cat-section.reverse .cat-img-overlay {
  background: linear-gradient(to left, rgba(20,16,10,.25) 0%, transparent 60%);
}
.cat-text-side {
  background: var(--charcoal); padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden;
}
.cat-text-side::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.015) 0, rgba(255,255,255,.015) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}
.cat-number {
  font-family: var(--font-display); font-size: 120px; font-weight: 300;
  color: rgba(255,255,255,.04); line-height: 1; position: absolute;
  top: 30px; right: 40px; letter-spacing: -.04em; user-select: none;
}
.cat-heading {
  font-family: var(--font-display); font-size: clamp(42px,5vw,68px);
  font-weight: 300; color: #fff; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 22px;
}
.cat-desc { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.6); margin-bottom: 28px; }
.cat-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.cat-list li {
  font-size: 13px; color: rgba(255,255,255,.5);
  padding-left: 18px; position: relative;
}
.cat-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* ── PROCESS ── */
.process-section {
  position: relative; padding: 120px 0;
  background: var(--cream); overflow: hidden;
}
.process-bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-display); font-size: clamp(100px,16vw,200px); font-weight: 300;
  color: rgba(156,120,80,.06); white-space: nowrap; user-select: none; letter-spacing: .1em;
  pointer-events: none;
}
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 64px;
}
.process-card {
  background: var(--off-white); padding: 48px 36px;
  transition: background var(--tr), transform var(--tr);
  position: relative; overflow: hidden;
}
.process-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transition: transform var(--tr);
}
.process-card:hover { background: var(--charcoal); transform: translateY(-4px); }
.process-card:hover::before { transform: scaleX(1); }
.process-card:hover .process-num { color: rgba(255,255,255,.08); }
.process-card:hover .process-title { color: #fff; }
.process-card:hover .process-desc { color: rgba(255,255,255,.5); }
.process-card:hover .process-icon-wrap { color: var(--gold); }
.process-icon-wrap { color: var(--gold); margin-bottom: 16px; transition: color var(--tr); }
.process-num {
  font-family: var(--font-display); font-size: 60px; font-weight: 300;
  color: var(--warm-sand); line-height: 1; margin-bottom: 20px; transition: color var(--tr);
}
.process-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 500;
  color: var(--charcoal); margin-bottom: 12px; transition: color var(--tr);
}
.process-desc { font-size: 14px; line-height: 1.75; color: var(--text-muted); transition: color var(--tr); }

/* ── BRANDS ── */
.brands-section { padding: 100px 0; background: var(--off-white); }
.brands-sub { text-align: center; font-size: 15px; color: var(--text-muted); margin: 16px auto 56px; max-width: 460px; }
.brands-coming-soon { text-align: center; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); margin-top: 36px; opacity: .6; }
.brands-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.brands-grid-centered {
  grid-template-columns: repeat(4, 260px);
  justify-content: center;
  gap: 20px;
}
.brand-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 40px 36px; text-align: center;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
  position: relative; overflow: hidden;
}
.brand-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transition: transform var(--tr);
}
.brand-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(28,26,23,.1); border-color: var(--warm-sand); }
.brand-card:hover::before { transform: scaleX(1); }
.brand-img-wrap { height: 80px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.brand-img { max-height: 64px; max-width: 200px; width: auto; object-fit: contain; mix-blend-mode: multiply; }
.brand-logo-text {
  font-family: var(--font-display); font-size: 26px; font-weight: 600;
  letter-spacing: .06em; margin-bottom: 10px; line-height: 1;
}
.brand-cat { font-size: 11px; color: var(--text-muted); letter-spacing: .1em; text-transform: uppercase; }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 120px 0; background: var(--charcoal); }
.testimonials-section .section-eyebrow { text-align: center; }
.testimonials-section .section-title { color: #fff; margin-bottom: 64px; }
.testimonials-track {
  max-width: 1000px; margin: 0 auto; padding: 0 48px; position: relative;
}
.testi-card {
  display: none; grid-template-columns: 1fr 1fr; gap: 0;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  animation: fadeIn .5s ease;
}
.testi-card.active { display: grid; }
.testi-work-img { position: relative; overflow: hidden; min-height: 360px; }
.testi-work-img img { width: 100%; height: 100%; object-fit: cover; }
.testi-work-label {
  position: absolute; bottom: 16px; left: 16px;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.6); background: rgba(20,16,10,.6); padding: 6px 12px;
}
.testi-content { padding: 48px; display: flex; flex-direction: column; justify-content: space-between; }
.testi-stars { color: var(--gold); font-size: 16px; letter-spacing: 4px; margin-bottom: 24px; }
.testi-text {
  font-family: var(--font-display); font-size: 20px; font-weight: 300;
  font-style: italic; color: rgba(255,255,255,.8); line-height: 1.65; flex: 1; margin-bottom: 36px;
}
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--gold);
}
.testi-name { font-size: 14px; font-weight: 500; color: #fff; }
.testi-loc { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 2px; }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.testi-arrow {
  width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: border-color var(--tr-fast), color var(--tr-fast), background var(--tr-fast);
}
.testi-arrow:hover { border-color: var(--gold); color: var(--gold); }
.testi-dots { display: flex; gap: 8px; }
.t-dot {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.2);
  transition: background var(--tr-fast), width var(--tr-fast);
}
.t-dot.active { background: var(--gold); width: 22px; border-radius: 3px; }

/* ── CONTACT ── */
.contact-section { position: relative; padding: 120px 0; overflow: hidden; }
.contact-bg-wood {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
}
.contact-bg-wood::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(156,120,80,.03) 0, rgba(156,120,80,.03) 1px, transparent 1px, transparent 28px);
}
.contact-inner {
  position: relative; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
}
.contact-heading {
  font-family: var(--font-display); font-size: clamp(36px,4.5vw,56px);
  font-weight: 300; color: var(--charcoal); line-height: 1.1; margin-bottom: 20px;
}
.contact-heading em { font-style: italic; color: var(--gold); }
.contact-sub { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }
.contact-detail { }
.contact-detail-label { display: block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); }
.contact-detail-val { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--charcoal); }

.contact-channels { display: flex; flex-direction: column; gap: 16px; }
.channel-card {
  display: flex; align-items: center; gap: 24px;
  padding: 28px 32px; transition: transform var(--tr), box-shadow var(--tr);
  border-left: 4px solid transparent;
}
.channel-card:hover { transform: translateX(6px); box-shadow: 0 16px 50px rgba(28,26,23,.12); }
.channel-wa { background: #fff; border-left-color: #25d366; }
.channel-ig { background: #fff; border-left-color: #e1306c; }
.channel-fb { background: #fff; border-left-color: #1877f2; }
.channel-icon-wrap {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.channel-wa .channel-icon-wrap { background: #25d366; color: #fff; }
.channel-ig .channel-icon-wrap { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.channel-fb .channel-icon-wrap { background: #1877f2; color: #fff; }
.channel-info { flex: 1; }
.channel-name { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--charcoal); }
.channel-handle { font-size: 14px; color: var(--text-muted); margin: 2px 0 8px; }
.channel-cta { font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }

/* ── MAP SECTION ── */
.map-section { background: var(--charcoal); }

.map-header { padding: 72px 0 0; }
.map-header-inner {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.map-header-left .section-eyebrow { color: var(--gold); }
.map-title {
  font-family: var(--font-display); font-size: clamp(30px,4vw,50px);
  font-weight: 300; color: #fff; line-height: 1.1; margin-top: 8px;
}
.map-title em { font-style: italic; color: var(--gold); }

.map-info-chips { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.map-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .06em; color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  padding: 10px 18px;
}
.map-chip svg { color: var(--gold); flex-shrink: 0; }
.map-chip-link {
  color: var(--gold); border-color: rgba(232,184,75,.3);
  background: rgba(232,184,75,.06);
  transition: background var(--tr-fast), border-color var(--tr-fast);
}
.map-chip-link:hover { background: rgba(232,184,75,.14); border-color: var(--gold); }

.map-wrapper {
  position: relative; height: 500px; overflow: hidden;
}
.map-iframe {
  width: 100%; height: 100%; border: none; display: block;
  filter: grayscale(30%) contrast(1.05);
  transition: filter var(--tr);
}
.map-wrapper:hover .map-iframe { filter: grayscale(0%) contrast(1); }

/* Overlay info card */
.map-overlay-card {
  position: absolute; top: 32px; left: 48px;
  background: #fff; padding: 28px 28px 24px;
  width: 280px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  z-index: 10;
  border-top: 3px solid var(--gold);
}
.map-card-logo img { height: 44px; width: auto; object-fit: contain; margin-bottom: 12px; }
.map-card-name {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--charcoal); margin-bottom: 6px;
}
.map-card-address {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-muted);
}
.map-card-address svg { color: var(--gold); flex-shrink: 0; }
.map-card-divider { height: 1px; background: var(--border); margin: 18px 0; }
.map-card-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25d366; color: #fff;
  font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  padding: 12px 20px; margin-bottom: 10px;
  transition: background var(--tr-fast);
}
.map-card-btn:hover { background: #1da851; }
.map-card-btn-outline {
  display: block; text-align: center;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 11px 20px;
  transition: background var(--tr-fast), color var(--tr-fast);
}
.map-card-btn-outline:hover { background: var(--gold); color: var(--charcoal); }

@media (max-width: 900px) {
  .map-header-inner { flex-direction: column; align-items: flex-start; }
  .map-wrapper { height: 420px; }
  .map-overlay-card { top: 16px; left: 16px; width: 240px; padding: 20px; }
}
@media (max-width: 600px) {
  .map-wrapper { height: 380px; }
  .map-info-chips { flex-direction: column; align-items: flex-start; }
  .map-overlay-card { position: static; width: 100%; box-shadow: none; border-top: 3px solid var(--gold); }
  .map-wrapper { height: auto; display: flex; flex-direction: column; }
  .map-iframe { height: 320px; }
}

/* ── FOOTER ── */
.footer { background: var(--dark); }
.footer-top-bar { border-bottom: 1px solid rgba(255,255,255,.07); padding: 48px 0; }
.footer-top-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.footer-brand-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: #b0b0b0;
  letter-spacing: .06em;
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.35); flex: 1; letter-spacing: .04em; }
.footer-social-icons { display: flex; gap: 16px; }
.footer-social-icons a { color: rgba(255,255,255,.35); transition: color var(--tr-fast); }
.footer-social-icons a:hover { color: var(--gold); }
.footer-bottom-bar { padding: 28px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); transition: color var(--tr-fast); }
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.2); }

/* WA FLOAT */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 60px; height: 60px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 8px 32px rgba(37,211,102,.4);
  transition: transform var(--tr-fast), box-shadow var(--tr-fast);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,.55); }
.wa-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid #25d366; animation: pulse 2s infinite;
}
@keyframes pulse { 0%{transform:scale(1);opacity:.8}100%{transform:scale(1.5);opacity:0} }

/* ANIMATIONS */
@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* WHITE BG for specific sections */
.portfolio-section, .brands-section { background: #fff; }

/* ── MUSIC PLAYER ── */
.music-player {
  position: fixed; bottom: 100px; right: 28px; z-index: 890;
  background: rgba(20,16,10,.92); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 40px; padding: 10px 16px 10px 10px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  transition: transform .3s ease, opacity .3s ease;
}
.music-player:hover { transform: translateY(-2px); }
.music-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; gap: 0; position: relative;
  transition: background var(--tr-fast);
}
.music-btn:hover { background: #fff; }
.music-bars {
  display: none; align-items: flex-end; gap: 2px; height: 14px;
}
.music-bars.playing { display: flex; }
.music-icon-play, .music-icon-pause { position: absolute; }
.music-bars span {
  width: 3px; background: var(--charcoal); border-radius: 2px;
  animation: barBounce 0.8s ease-in-out infinite;
}
.music-bars span:nth-child(1) { height: 8px; animation-delay: 0s; }
.music-bars span:nth-child(2) { height: 14px; animation-delay: .15s; }
.music-bars span:nth-child(3) { height: 6px; animation-delay: .3s; }
.music-bars span:nth-child(4) { height: 11px; animation-delay: .45s; }
@keyframes barBounce {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}
.music-info { line-height: 1.3; }
.music-title { font-size: 11px; font-weight: 500; color: #fff; letter-spacing: .04em; }
.music-sub { font-size: 10px; color: rgba(255,255,255,.4); letter-spacing: .06em; }
.music-vol { display: flex; align-items: center; gap: 6px; }
.music-vol svg { color: rgba(255,255,255,.4); flex-shrink: 0; }
.music-range {
  -webkit-appearance: none; appearance: none;
  width: 60px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.2); outline: none; cursor: pointer;
}
.music-range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 10px; height: 10px;
  border-radius: 50%; background: var(--gold); cursor: pointer;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .header-inner { padding: 0 32px; }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: flex; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .p-item.wide { grid-column: span 1; }
  .masonry-grid { columns: 2; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid-centered { grid-template-columns: repeat(2, 1fr); }
  .philosophy-strip-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .philosophy-stats { gap: 0; }
  .phi-stat { padding: 0 24px; }
  .cat-section { grid-template-columns: 1fr; min-height: auto; }
  .cat-section.reverse { direction: ltr; }
  .cat-media { height: 320px; }
  .cat-text-side { padding: 60px 40px; }
  .statement-grid { grid-template-columns: 1fr; gap: 48px; }
  .statement-right { border-left: none; border-top: 1px solid var(--warm-sand); padding-left: 0; padding-top: 40px; flex-direction: row; flex-wrap: wrap; }
  .testi-card.active { grid-template-columns: 1fr; }
  .testi-work-img { min-height: 260px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 600px) {
  :root { --hh: 68px; }
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .hero-content { padding: var(--hh) 24px 0; }
  .hero-scroll-indicator { left: 24px; }
  .hero-slide-counter { right: 24px; }
  .masonry-grid { columns: 2; column-gap: 6px; }
  .m-item { margin-bottom: 6px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .filter-tabs { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-actions { flex-direction: column; }
  .btn-gold, .btn-ghost-hero { width: 100%; justify-content: center; }
  .material-strip-inner { flex-direction: column; gap: 4px; }
  .mat-sep { display: none; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav { gap: 16px; }
}

/* ── STATS COUNTER ── */
.stats-section {
  background: var(--charcoal); padding: 72px 0; border-top: 3px solid var(--gold);
}
.stats-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-counter { text-align: center; padding: 0 56px; }
.stat-counter-num {
  font-family: var(--font-display); font-size: clamp(48px,6vw,80px);
  font-weight: 300; color: #fff; line-height: 1;
}
.counter-suffix { color: var(--gold); }
.stat-counter-label {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-top: 8px;
}
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,.1); }

/* ── ZONES ── */
.zones-section { padding: 100px 0; background: var(--off-white); }
.zones-inner { display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: center; }
.zones-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-top: 16px; }
.zones-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.zone-card {
  background: var(--white); border: 1px solid var(--border); padding: 28px 24px;
  transition: border-color var(--tr), transform var(--tr);
  position: relative; overflow: hidden;
}
.zone-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold); transform: scaleY(0); transition: transform var(--tr);
}
.zone-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.zone-card:hover::before { transform: scaleY(1); }
.zone-icon { color: var(--gold); margin-bottom: 12px; }
.zone-name { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--charcoal); margin-bottom: 6px; }
.zone-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ── INSTAGRAM ── */
.instagram-section { padding: 100px 0; background: var(--white); }
.ig-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.ig-handle-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text-muted); font-weight: 500;
  transition: color var(--tr-fast);
}
.ig-handle-link:hover { color: #e1306c; }
.ig-fallback-grid {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 6px;
}
.ig-thumb {
  position: relative; overflow: hidden; aspect-ratio: 1;
  display: block; background: var(--cream);
}
.ig-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.ig-thumb:hover img { transform: scale(1.06); }
.ig-thumb-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.ig-thumb:hover .ig-thumb-overlay { opacity: 1; }
.ig-cta { text-align: center; margin-top: 32px; }

/* ── PRESUPUESTO BTN ── */
.presupuesto-btn {
  position: fixed; bottom: 168px; right: 28px; z-index: 889;
  display: flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--charcoal);
  font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 12px 20px; border-radius: 30px;
  box-shadow: 0 8px 32px rgba(232,184,75,.4);
  transition: transform var(--tr-fast), box-shadow var(--tr-fast), background var(--tr-fast);
  white-space: nowrap;
}
.presupuesto-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(232,184,75,.55);
  background: var(--gold-dark);
}

/* TikTok channel card */
.channel-tk .channel-icon-wrap { background: #010101; color: #fff; }

/* Responsive additions */
@media (max-width: 900px) {
  .stats-grid { gap: 32px 0; }
  .stat-counter { padding: 16px 32px; }
  .stat-divider { display: none; }
  .zones-inner { grid-template-columns: 1fr; gap: 40px; }
  .zones-grid { grid-template-columns: repeat(2,1fr); }
  .ig-fallback-grid { grid-template-columns: repeat(3,1fr); }
  .presupuesto-btn span { display: none; }
  .presupuesto-btn { padding: 14px; border-radius: 50%; }
}
@media (max-width: 600px) {
  .zones-grid { grid-template-columns: 1fr; }
  .ig-fallback-grid { grid-template-columns: repeat(3,1fr); }
  .stats-section { padding: 48px 0; }
}

/* ── RENDERS SECTION ── */
.renders-section {
  padding: 100px 0 0;
  background: var(--charcoal);
  overflow: hidden;
}
.renders-section .section-eyebrow { color: var(--gold); text-align: center; }
.renders-section .section-title { color: #fff; text-align: center; }
.renders-sub {
  text-align: center; font-size: 15px; color: rgba(255,255,255,.45);
  margin: 12px auto 0; max-width: 500px;
}
.renders-slider-wrap { margin-top: 56px; }

.render-pair {
  display: none;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
  gap: 0;
  animation: fadeIn .5s ease;
}
.render-pair.active { display: grid; }

.render-side { position: relative; overflow: hidden; }
.render-img {
  width: 100%; height: 520px; object-fit: cover; display: block;
  transition: transform 1s ease;
}
.render-side:hover .render-img { transform: scale(1.03); }

.render-badge {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 14px;
}
.render-badge-render { background: rgba(28,26,23,.75); color: var(--gold); border: 1px solid rgba(232,184,75,.4); }
.render-badge-result { background: var(--gold); color: var(--charcoal); }

.render-arrow-mid {
  display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--charcoal);
  height: 100%; min-height: 520px;
  font-size: 28px; z-index: 2;
}

.renders-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; padding: 32px 0 48px;
}
.renders-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--tr-fast), color var(--tr-fast), background var(--tr-fast);
}
.renders-btn:hover { border-color: var(--gold); color: var(--gold); }
.renders-dots { display: flex; gap: 8px; }
.r-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2); transition: background var(--tr-fast), width var(--tr-fast);
}
.r-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ── GARANTIA ── */
.garantia-section {
  padding: 0; background: var(--gold);
}
.garantia-inner {
  display: grid; grid-template-columns: 120px 1fr auto;
  align-items: center; gap: 48px;
  padding: 56px 48px; max-width: 1320px; margin: 0 auto;
}
.garantia-icon-wrap {
  width: 90px; height: 90px; border-radius: 50%;
  background: rgba(28,26,23,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal); flex-shrink: 0;
}
.garantia-title {
  font-family: var(--font-display); font-size: clamp(26px,3vw,38px);
  font-weight: 300; color: var(--charcoal); line-height: 1.1; margin-bottom: 8px;
}
.garantia-title em { font-style: italic; }
.garantia-desc { font-size: 14px; color: rgba(28,26,23,.7); line-height: 1.65; max-width: 440px; }
.garantia-section .section-eyebrow { color: rgba(28,26,23,.6); margin-bottom: 8px; }
.garantia-badges {
  display: flex; flex-direction: column; gap: 12px; flex-shrink: 0;
}
.g-badge {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--charcoal); letter-spacing: .04em;
  background: rgba(28,26,23,.1); padding: 10px 16px; border-radius: 30px;
}
.g-badge svg { flex-shrink: 0; }

/* ── FAQ ── */
.faq-section { padding: 100px 0; background: var(--off-white); }
.faq-inner { display: grid; grid-template-columns: 320px 1fr; gap: 80px; align-items: start; }
.faq-sub { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-top: 16px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 0; text-align: left;
  font-size: 15px; font-weight: 500; color: var(--charcoal);
  font-family: var(--font-body); transition: color var(--tr-fast);
  background: none;
}
.faq-q:hover { color: var(--gold); }
.faq-q.open { color: var(--gold); }
.faq-chevron { flex-shrink: 0; transition: transform .3s ease; }
.faq-q.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  font-size: 14px; color: var(--text-muted); line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0;
}
.faq-a.open { max-height: 200px; padding-bottom: 20px; }

/* Renders responsive */
@media (max-width: 900px) {
  .render-pair.active { grid-template-columns: 1fr; }
  .render-arrow-mid { min-height: 48px; height: 48px; transform: rotate(90deg); }
  .render-img { height: 300px; }
  .garantia-inner { grid-template-columns: 1fr; gap: 28px; }
  .garantia-icon-wrap { display: none; }
  .garantia-badges { flex-direction: row; flex-wrap: wrap; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .render-img { height: 220px; }
  .garantia-badges { flex-direction: column; }
}
