/* ===================================================================
   INNOVAHGLASS — Cierres de terraza plegables
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy-950: #0a2540;
  --navy-900: #0d3459;
  --navy-800: #123f66;
  --blue-700: #1668a8;
  --blue-600: #1c84cf;
  --blue-500: #2e9cea;
  --blue-300: #8fc6ec;
  --blue-100: #dcedfb;
  --blue-50: #f2f8fd;
  --gold-500: #d3a545;
  --gold-600: #b8872a;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ea952;
  --ink-900: #101c26;
  --ink-700: #33454f;
  --ink-500: #647380;
  --ink-300: #a8b4bd;
  --line: #e3ecf3;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(10, 37, 64, 0.08);
  --shadow-md: 0 12px 30px rgba(10, 37, 64, 0.12);
  --shadow-lg: 0 24px 60px rgba(10, 37, 64, 0.18);
  --ff-head: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --ff-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --topbar-h: 40px;
  --header-h: 78px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--ff-body);
  color: var(--ink-900);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.section-pad { padding: 96px 0; }

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ---------- Section heads ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-600);
}
.section-head { max-width: 700px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 42px);
  color: var(--navy-950);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-title strong, .section-title .accent { color: var(--blue-600); }
.section-sub {
  margin-top: 16px;
  color: var(--ink-500);
  font-size: 17px;
  max-width: 620px;
}
.section-head.center .section-sub { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 15.5px;
  padding: 15px 28px;
  border-radius: 100px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(28, 132, 207, .35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(28, 132, 207, .42); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(37, 211, 102, .35);
}
.btn-whatsapp:hover { transform: translateY(-3px); background: var(--whatsapp-dark); box-shadow: 0 16px 30px rgba(37, 211, 102, .42); }
.btn-outline {
  background: transparent;
  color: var(--navy-950);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--blue-600); color: var(--blue-700); background: var(--blue-50); }
.btn-ghost-light {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ===================================================================
   TOP UTILITY BAR
   =================================================================== */
.topbar {
  height: var(--topbar-h);
  background: var(--navy-950);
  color: #cfe4f4;
  font-size: 13.5px;
}
.topbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar-info { display: flex; align-items: center; gap: 22px; }
.topbar-info span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar-info svg { width: 14px; height: 14px; opacity: .85; }
.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-weight: 700;
  font-family: var(--ff-head);
  letter-spacing: .01em;
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0);
  transition: border-color .2s ease, color .2s ease;
}
.topbar-cta svg { width: 15px; height: 15px; color: var(--whatsapp); }
.topbar-cta:hover { color: #8fd0f7; }
@media (max-width: 700px) {
  .topbar-info span:not(:first-child) { display: none; }
}
@media (max-width: 480px) {
  .topbar { height: 36px; font-size: 12px; }
  .topbar-info span { gap: 5px; }
}

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  height: var(--header-h);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, height .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 42px; width: auto; }
.brand-name {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 19px;
  color: var(--navy-950);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.brand-name small {
  display: block;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--blue-600);
  transition: width .25s ease;
}
.main-nav a:hover { color: var(--navy-950); }
.main-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 10px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  display: block;
  width: 22px; height: 2px;
  background: var(--navy-950);
  position: relative;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: calc(var(--topbar-h) + var(--header-h));
    left: 0; right: 0;
    height: calc(100vh - var(--topbar-h) - var(--header-h));
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 30px 28px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { padding: 16px 4px; font-size: 18px; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .main-nav .btn { margin-top: 18px; }
  .nav-toggle { display: flex; }
  .header-actions .desktop-only { display: none; }
}
@media (min-width: 981px) {
  .main-nav .mobile-only-cta { display: none; }
}
@media (max-width: 600px) {
  .brand-name { font-size: 16px; }
  .brand img { height: 34px; }
  .brand-name small { display: none; }
}

/* ===================================================================
   HERO / BANNER CAROUSEL
   =================================================================== */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  max-height: 880px;
  overflow: hidden;
  background: var(--navy-950);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 7s ease;
}
.hero-slide.active img { transform: scale(1); }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,.55) 0%, rgba(10,37,64,.35) 40%, rgba(9,28,46,.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: .04em;
  padding: 9px 20px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.hero-badge svg { width: 16px; height: 16px; color: var(--gold-500); }
.hero-title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(34px, 5.4vw, 68px);
  line-height: 1.06;
  color: var(--white);
  letter-spacing: -0.015em;
  max-width: 820px;
  text-shadow: 0 4px 24px rgba(0,0,0,.2);
}
.hero-title .accent { color: var(--blue-500); }
.hero-desc {
  margin-top: 22px;
  font-size: 18px;
  color: rgba(255,255,255,.86);
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.22);
  width: 100%;
  max-width: 620px;
}
.hero-stat strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
}
.hero-stat span { font-size: 13px; color: rgba(255,255,255,.7); }

.hero-dots {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 6;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 34px; height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,.35);
  transition: background .3s ease, width .3s ease;
}
.hero-dots button.active { background: var(--white); width: 52px; }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 6;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-scroll .wheel {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.55);
  border-radius: 14px;
  position: relative;
}
.hero-scroll .wheel::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 4px;
  margin-left: -2px;
  border-radius: 50%;
  background: var(--white);
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot { 0% { opacity: 1; top: 6px; } 70% { opacity: 0; top: 20px; } 100% { opacity: 0; top: 6px; } }

@media (min-width: 700px) { .hero-scroll { display: flex; } }
@media (max-width: 700px) {
  .hero { height: 100vh; min-height: 640px; }
  .hero-stats { gap: 26px; margin-top: 40px; }
  .hero-stat strong { font-size: 24px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-dots { right: 20px; bottom: 20px; }
}

/* ===================================================================
   MARQUEE STRIP (trust bar)
   =================================================================== */
.marquee-strip {
  background: var(--navy-950);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .03em;
  padding: 0 30px;
  white-space: nowrap;
}
.marquee-track span svg { width: 16px; height: 16px; color: var(--gold-500); }
.marquee-track span::after { content: '•'; margin-left: 30px; color: rgba(255,255,255,.25); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================================================================
   NOSOTROS
   =================================================================== */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-media { position: relative; }
.about-media .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-media .badge-float {
  position: absolute;
  bottom: -26px;
  right: -26px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 240px;
}
.about-media .badge-float .icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-media .badge-float .icon svg { width: 24px; height: 24px; color: var(--blue-600); }
.about-media .badge-float strong { display: block; font-family: var(--ff-head); font-size: 22px; color: var(--navy-950); }
.about-media .badge-float span { font-size: 12.5px; color: var(--ink-500); }
.about-media .ring {
  position: absolute;
  top: -22px; left: -22px;
  width: 90px; height: 90px;
  border: 10px solid var(--blue-100);
  border-radius: 50%;
  z-index: -1;
}
.about-body p { color: var(--ink-700); font-size: 16.5px; margin-top: 18px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.about-feature:hover { border-color: var(--blue-100); background: var(--blue-50); transform: translateY(-2px); }
.about-feature .icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-feature .icon svg { width: 19px; height: 19px; color: var(--white); }
.about-feature strong { display: block; font-family: var(--ff-head); font-size: 14.5px; color: var(--navy-950); margin-bottom: 2px; }
.about-feature span { font-size: 13px; color: var(--ink-500); line-height: 1.45; }

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-media { max-width: 460px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .about-features { grid-template-columns: 1fr; }
  .about-media .badge-float { right: 8px; bottom: -20px; padding: 16px 18px; }
}

/* ===================================================================
   SERVICIOS
   =================================================================== */
.services { background: var(--blue-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card .num {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 13px;
  color: var(--blue-600);
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.service-card .icon-wrap {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 10px 20px rgba(13, 52, 89, .25);
}
.service-card .icon-wrap svg { width: 30px; height: 30px; color: var(--white); }
.service-card h3 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 21px;
  color: var(--navy-950);
  margin-bottom: 12px;
}
.service-card p { color: var(--ink-500); font-size: 15px; flex-grow: 1; }
.service-card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 22px; }
.service-card .tags span {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 5px 11px;
  border-radius: 100px;
}
.service-card .guarantee {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-600);
  margin-bottom: 18px;
}
.service-card .guarantee svg { width: 15px; height: 15px; }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy-950);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  transition: color .2s ease, gap .2s ease;
}
.service-card .card-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.service-card .card-link:hover { color: var(--blue-600); }
.service-card .card-link:hover svg { transform: translateX(4px); }

@media (max-width: 980px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; }
}

/* ===================================================================
   WHY US
   =================================================================== */
.why {
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--blue-700) 130%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(46,156,234,.25), transparent 70%);
}
.why .section-head .section-title { color: var(--white); }
.why .eyebrow { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); color: #bfe0f6; }
.why .eyebrow::before { background: var(--blue-500); }
.why .section-sub { color: rgba(255,255,255,.72); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  position: relative;
  z-index: 2;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  backdrop-filter: blur(6px);
  transition: transform .3s ease, background .3s ease;
}
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.11); }
.why-card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-card .icon svg { width: 26px; height: 26px; color: var(--gold-500); }
.why-card strong { display: block; font-family: var(--ff-head); font-size: 16px; margin-bottom: 8px; }
.why-card span { font-size: 13.5px; color: rgba(255,255,255,.68); line-height: 1.5; }

@media (max-width: 1080px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } .why-card { padding: 22px 18px; } }
@media (max-width: 420px) { .why-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   FEATURED CAROUSEL (trabajos destacados)
   =================================================================== */
.featured { background: var(--white); overflow: hidden; }
.featured-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}
.featured-nav { display: flex; gap: 12px; }
.featured-nav button {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.featured-nav button:hover { background: var(--navy-950); border-color: var(--navy-950); transform: scale(1.05); }
.featured-nav button:hover svg { color: var(--white); }
.featured-nav svg { width: 20px; height: 20px; color: var(--navy-950); }

.featured-track-wrap { overflow: hidden; }
.featured-track {
  display: flex;
  gap: 24px;
  transition: transform .55s cubic-bezier(.2,.7,.3,1);
  will-change: transform;
}
.featured-item {
  position: relative;
  flex: 0 0 340px;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.featured-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.featured-item:hover img { transform: scale(1.08); }
.featured-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9,28,46,.85) 100%);
}
.featured-item .tag {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 3;
  background: rgba(255,255,255,.92);
  color: var(--navy-950);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 100px;
}
.featured-item .cap {
  position: absolute;
  left: 22px; right: 22px; bottom: 20px;
  z-index: 3;
  color: var(--white);
}
.featured-item .cap strong { display: block; font-family: var(--ff-head); font-size: 18px; }
.featured-item .cap span { font-size: 13px; color: rgba(255,255,255,.75); }

@media (max-width: 600px) {
  .featured-head { flex-direction: column; align-items: flex-start; }
  .featured-item { flex: 0 0 78vw; height: 360px; }
}

/* ===================================================================
   GALERIA
   =================================================================== */
.gallery { background: var(--blue-50); }
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.gallery-filters button {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  color: var(--ink-700);
  background: var(--white);
  transition: all .2s ease;
}
.gallery-filters button:hover { border-color: var(--blue-300); color: var(--blue-700); }
.gallery-filters button.active { background: var(--navy-950); border-color: var(--navy-950); color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 10px;
  gap: 18px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(9,28,46,.82) 100%);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay .zoom-ic {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
}
.gallery-item .overlay .zoom-ic svg { width: 16px; height: 16px; color: var(--navy-950); }
.gallery-item .overlay span { color: var(--white); font-size: 13px; font-weight: 600; font-family: var(--ff-head); }
.gallery-item.hidden { display: none; }

.gallery-more { text-align: center; margin-top: 44px; }

@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 420px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 3000;
  background: rgba(6, 18, 30, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
  padding: 24px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(90vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background .2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.22); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 22px; height: 22px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-family: var(--ff-head);
  font-size: 13px;
  letter-spacing: .05em;
}
@media (max-width: 600px) {
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; }
}

/* ===================================================================
   CTA STRIP (mercadopago mid banner)
   =================================================================== */
.cta-strip {
  background: linear-gradient(120deg, var(--blue-700), var(--navy-900));
  border-radius: var(--radius-lg);
  margin: 0 auto;
  padding: 46px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-strip::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(211,165,69,.28), transparent 70%);
}
.cta-strip-text { position: relative; z-index: 2; }
.cta-strip-text .eyebrow { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); color: var(--gold-500); }
.cta-strip-text .eyebrow::before { background: var(--gold-500); }
.cta-strip-text h3 { font-family: var(--ff-head); font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; color: var(--white); margin-top: 6px; }
.cta-strip-text p { color: rgba(255,255,255,.75); margin-top: 10px; max-width: 460px; font-size: 15px; }
.cta-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 2; }

@media (max-width: 820px) {
  .cta-strip { flex-direction: column; align-items: flex-start; padding: 36px 28px; }
}

/* ===================================================================
   CONTACTO / COTIZACION
   =================================================================== */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy-950);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  left: -100px; bottom: -100px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(46,156,234,.28), transparent 70%);
}
.contact-info-card h3 { font-family: var(--ff-head); font-size: 24px; font-weight: 700; position: relative; z-index: 2; }
.contact-info-card > p { color: rgba(255,255,255,.72); margin-top: 12px; font-size: 15px; position: relative; z-index: 2; }
.contact-list { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; position: relative; z-index: 2; }
.contact-list a, .contact-list .row {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  transition: gap .2s ease;
}
.contact-list a:hover { gap: 20px; color: #bfe0f6; }
.contact-list .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-list .icon svg { width: 21px; height: 21px; color: var(--blue-500); }
.contact-list strong { display: block; font-family: var(--ff-head); font-size: 15px; }
.contact-list span { font-size: 13px; color: rgba(255,255,255,.65); }
.contact-social { display: flex; gap: 12px; margin-top: 34px; position: relative; z-index: 2; }
.contact-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.contact-social a:hover { background: var(--blue-600); transform: translateY(-3px); }
.contact-social svg { width: 19px; height: 19px; color: var(--white); }

.quote-card {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
}
.quote-card h3 { font-family: var(--ff-head); font-size: 24px; font-weight: 700; color: var(--navy-950); }
.quote-card > p { color: var(--ink-500); margin-top: 10px; font-size: 15px; }
.quote-form { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-700); font-family: var(--ff-head); }
.field input, .field select, .field textarea {
  font-family: var(--ff-body);
  font-size: 15px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink-900);
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px var(--blue-100);
}
.field textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: 12.5px; color: var(--ink-500); display: flex; align-items: center; gap: 7px; }
.form-note svg { width: 14px; height: 14px; color: var(--whatsapp); flex-shrink: 0; }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .contact-info-card, .quote-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.7); }
.footer-top { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { height: 38px; }
.footer-brand span { font-family: var(--ff-head); font-weight: 800; font-size: 18px; color: var(--white); }
.footer-col p { font-size: 14.5px; line-height: 1.7; }
.footer-col h4 { font-family: var(--ff-head); color: var(--white); font-size: 15px; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 14.5px; transition: color .2s ease, padding-left .2s ease; }
.footer-col ul a:hover { color: var(--white); padding-left: 4px; }
.footer-col .contact-line { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; margin-bottom: 14px; }
.footer-col .contact-line svg { width: 16px; height: 16px; color: var(--blue-500); flex-shrink: 0; margin-top: 2px; }

.footer-pay {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-top: 6px;
}
.footer-pay .rows { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-pay strong { color: var(--white); font-family: var(--ff-head); font-size: 15px; }
.footer-pay p { font-size: 13px; margin-bottom: 16px; }
.footer-pay .mp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(211,165,69,.15);
  border: 1px solid rgba(211,165,69,.35);
  color: var(--gold-500);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.footer-pay .mp-badge svg { width: 15px; height: 15px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}
.footer-bottom-social { display: flex; gap: 10px; }
.footer-bottom-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-bottom-social svg { width: 16px; height: 16px; }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===================================================================
   FLOATING MERCADOPAGO PROMO BANNER
   =================================================================== */
.mp-float {
  position: fixed;
  left: 24px; bottom: 24px;
  z-index: 2000;
  max-width: 380px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .5s cubic-bezier(.2,.7,.3,1), opacity .5s ease;
}
.mp-float.show { transform: translateY(0); opacity: 1; }
.mp-float .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mp-float .icon svg { width: 24px; height: 24px; color: var(--white); }
.mp-float strong { display: block; font-family: var(--ff-head); font-size: 14.5px; color: var(--navy-950); margin-bottom: 4px; }
.mp-float p { font-size: 12.5px; color: var(--ink-500); line-height: 1.5; margin-bottom: 10px; }
.mp-float a.link { font-family: var(--ff-head); font-weight: 700; font-size: 13px; color: var(--blue-600); }
.mp-float .close-x {
  position: absolute; top: 10px; right: 10px;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-500);
  background: var(--blue-50);
}
.mp-float .close-x svg { width: 12px; height: 12px; }
.mp-float .progress-bar {
  position: absolute;
  left: 0; bottom: 0;
  height: 3px;
  background: var(--gold-500);
  border-radius: 0 0 0 var(--radius-lg);
  width: 100%;
  transform-origin: left;
}
.mp-float.show .progress-bar { animation: mpShrink 8s linear forwards; }
@keyframes mpShrink { from { width: 100%; } to { width: 0%; } }

@media (max-width: 560px) {
  .mp-float { left: 12px; right: 12px; bottom: 148px; max-width: none; }
}

/* ===================================================================
   FLOATING WHATSAPP BUTTON
   =================================================================== */
.wa-float {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 1900;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.45);
  animation: waPulse 2.6s infinite;
}
.wa-float svg { width: 30px; height: 30px; color: var(--white); }
.wa-float:hover { background: var(--whatsapp-dark); }
@keyframes waPulse {
  0% { box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 560px) {
  .wa-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* ===================================================================
   CHATBOT WIDGET
   =================================================================== */
.chatbot-launcher {
  position: fixed;
  right: 26px; bottom: 100px;
  z-index: 1900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, background .25s ease;
}
.chatbot-launcher:hover { transform: scale(1.06); background: var(--blue-700); }
.chatbot-launcher svg { width: 26px; height: 26px; color: var(--white); }
.chatbot-launcher .dot {
  position: absolute; top: 4px; right: 4px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 2px solid var(--navy-950);
}
@media (max-width: 560px) {
  .chatbot-launcher { right: 16px; bottom: 82px; width: 52px; height: 52px; }
}

.chatbot-panel {
  position: fixed;
  right: 26px; bottom: 172px;
  z-index: 1950;
  width: 360px;
  max-height: 66vh;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(24px) scale(.97);
  opacity: 0;
  visibility: hidden;
  transition: transform .3s ease, opacity .3s ease, visibility .3s;
}
.chatbot-panel.open { transform: translateY(0) scale(1); opacity: 1; visibility: visible; }
.chatbot-head {
  background: linear-gradient(120deg, var(--navy-950), var(--blue-700));
  color: var(--white);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatbot-head .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chatbot-head .av svg { width: 20px; height: 20px; }
.chatbot-head strong { display: block; font-family: var(--ff-head); font-size: 14.5px; }
.chatbot-head span { font-size: 12px; color: rgba(255,255,255,.72); display: flex; align-items: center; gap: 5px; }
.chatbot-head span::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #43e07a; }
.chatbot-head .cb-close { margin-left: auto; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); }
.chatbot-head .cb-close:hover { background: rgba(255,255,255,.15); }
.chatbot-head .cb-close svg { width: 14px; height: 14px; }

.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--blue-50);
}
.cb-msg { display: flex; gap: 10px; max-width: 90%; }
.cb-msg .bubble {
  background: var(--white);
  border-radius: 14px 14px 14px 4px;
  padding: 12px 15px;
  font-size: 13.8px;
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
  line-height: 1.5;
}
.cb-msg.user { align-self: flex-end; }
.cb-msg.user .bubble { background: var(--navy-950); color: var(--white); border-radius: 14px 14px 4px 14px; }
.cb-options { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.cb-options button {
  text-align: left;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy-950);
  transition: border-color .2s ease, background .2s ease;
}
.cb-options button:hover { border-color: var(--blue-600); background: var(--blue-50); }
.cb-cta {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: var(--white);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 13.5px;
  padding: 12px 18px;
  border-radius: 100px;
}
.cb-cta svg { width: 16px; height: 16px; }
.chatbot-body::-webkit-scrollbar { width: 6px; }
.chatbot-body::-webkit-scrollbar-thumb { background: var(--blue-100); border-radius: 4px; }

@media (max-width: 560px) {
  .chatbot-panel { right: 12px; left: 12px; width: auto; bottom: 148px; max-height: 60vh; }
}

/* ===================================================================
   MISC / ANIMATIONS
   =================================================================== */
.blob-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}
