/* ====================================================
   Metalon Estruturas — CSS
   Palette: Navy #0c1a2e | Blue #1e40af | Amber #f59e0b
==================================================== */
:root {
  --navy:       #0c1a2e;
  --navy-mid:   #1a2d4a;
  --steel:      #1e3a5f;
  --blue:       #1e40af;
  --blue-light: #3b82f6;
  --amber:      #f59e0b;
  --amber-dark: #d97706;
  --white:      #ffffff;
  --light:      #f0f4ff;
  --text:       #1e293b;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(12,26,46,.12);
  --shadow-lg:  0 12px 48px rgba(12,26,46,.20);
  --navbar-h:   72px;
  --banner-h:   0px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

img { max-width: 100%; }
a { text-decoration: none; color: inherit; }

:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

/* ── Section helpers ── */
.section-light { background: var(--white); }
.section-pale  { background: var(--light); }
.section-dark  { background: var(--navy); }
.section-blue  { background: var(--blue); }

.py-section { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 992px) { .py-section { padding-top: 7rem; padding-bottom: 7rem; } }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: .5rem;
}
.section-title em { font-style: normal; color: var(--blue-light); }
.section-title-light { color: var(--white); }
.section-title-dark  { color: var(--navy); }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 580px; }

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d-100 { transition-delay: .1s !important; }
.d-200 { transition-delay: .2s !important; }
.d-300 { transition-delay: .3s !important; }
.d-400 { transition-delay: .4s !important; }
.d-500 { transition-delay: .5s !important; }
.d-600 { transition-delay: .6s !important; }

/* ======================================================
   BANNER SITE MODELO
====================================================== */
.modelo-banner {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: linear-gradient(90deg, #1e40af 0%, #1d4ed8 50%, #7c3aed 100%);
  color: #fff;
  text-align: center;
  padding: .6rem 3rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .3px;
}
.modelo-banner i { color: rgba(255,255,255,.7); margin: 0 .5rem; }


/* ======================================================
   NAVBAR
====================================================== */
.m-nav {
  position: fixed;
  inset: var(--banner-h) 0 auto;
  z-index: 1000;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  background: rgba(12,26,46,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(12,26,46,.3);
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.m-nav.scrolled {
  background: rgba(12,26,46,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(12,26,46,.3);
}
.m-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.m-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
}
.m-brand-icon {
  width: 38px;
  height: 38px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.m-brand-icon i { font-size: 1.1rem; color: var(--navy); }
.m-brand span strong { color: var(--amber); }

.m-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.m-links a {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 500;
  padding: .45rem .85rem;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.m-links a:hover  { background: rgba(255,255,255,.1); color: #fff; }
.m-links a.active { color: var(--amber); }

.m-nav-cta {
  background: var(--amber);
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: .5rem 1.1rem !important;
  border-radius: 8px !important;
}
.m-nav-cta:hover { background: var(--amber-dark) !important; }

.m-toggler {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ======================================================
   PAGE TOP OFFSET (accounts for banner + navbar)
====================================================== */
body { padding-top: calc(var(--banner-h) + var(--navbar-h)); }
body.no-banner { padding-top: var(--navbar-h); }

/* ======================================================
   PAGE HERO (inner pages banner)
====================================================== */
.page-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 2.5rem;
  min-height: 200px;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(30,64,175,.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(245,158,11,.07) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-tag {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: .5rem;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: .75rem;
}
.breadcrumb-m {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb-m a { color: rgba(255,255,255,.5); }
.breadcrumb-m a:hover { color: var(--amber); }
.breadcrumb-m .sep { font-size: .65rem; }
.breadcrumb-m .current { color: rgba(255,255,255,.85); }

/* ======================================================
   HOMEPAGE HERO
====================================================== */
.f-hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}
.f-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(30,64,175,.25) 0%, transparent 60%),
    radial-gradient(circle at 75% 80%, rgba(245,158,11,.06) 0%, transparent 40%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,64,175,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.3);
  color: var(--amber);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -.5px;
}
.hero-title em { font-style: normal; color: var(--amber); }
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: .9rem;
  padding: .75rem 1.5rem;
  border-radius: 10px;
  transition: background .15s, transform .15s, box-shadow .15s;
}
.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: .9rem;
  padding: .73rem 1.5rem;
  border-radius: 10px;
  transition: border-color .15s, color .15s, background .15s;
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(245,158,11,.05);
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hstat { text-align: left; }
.hstat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hstat-num sup { font-size: .9rem; color: var(--amber); }
.hstat-label {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-top: .2rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-svg-wrap {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-svg-wrap svg { display: block; width: 100%; height: auto; }

.hero-badge-float {
  position: absolute;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: .7rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  font-size: .8rem;
}
.hero-badge-float i { color: var(--amber); font-size: 1.1rem; }
.hero-badge-float strong { display: block; font-size: .85rem; }
.hero-badge-float span  { font-size: .72rem; color: rgba(255,255,255,.6); }
.hbf-1 { top: 8%; right: -5%; }
.hbf-2 { bottom: 12%; left: -5%; }

/* ======================================================
   HOME SERVICES STRIP
====================================================== */
.service-strip { padding: 5rem 0; }
.srv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.srv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--amber));
  opacity: 0;
  transition: opacity .25s;
}
.srv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.srv-card:hover::before { opacity: 1; }
.srv-icon {
  width: 56px;
  height: 56px;
  background: var(--light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.srv-icon i { font-size: 1.5rem; color: var(--blue); }
.srv-card h4 { font-size: 1.1rem; margin-bottom: .6rem; color: var(--navy); }
.srv-card p { font-size: .88rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.6; }
.srv-link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap .15s;
}
.srv-link:hover { gap: .6rem; }

/* ======================================================
   NUMBERS / COUNTERS
====================================================== */
.num-strip { padding: 4rem 0; background: var(--navy); }
.num-item { text-align: center; padding: 1rem; }
.num-val {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.num-val .num-sfx { color: var(--amber); }
.num-item p { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: .4rem; }

/* ======================================================
   FEATURED PROJECTS (homepage)
====================================================== */
.feat-proj-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.feat-proj-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.fp-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.fp-img i { font-size: 3.5rem; opacity: .8; }
.fp-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--amber);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 999px;
}
.fp-body { padding: 1.25rem 1.5rem; }
.fp-body h5 { font-size: 1rem; color: var(--navy); margin-bottom: .35rem; }
.fp-body .fp-loc { font-size: .8rem; color: var(--muted); margin-bottom: .85rem; display: flex; align-items: center; gap: .3rem; }
.fp-specs { display: flex; gap: 1rem; flex-wrap: wrap; }
.fp-specs span { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: .3rem; }
.fp-specs i { color: var(--blue); }

/* ======================================================
   CTA BANNER (homepage)
====================================================== */
.cta-banner {
  background: linear-gradient(130deg, var(--blue) 0%, #1d4ed8 50%, var(--steel) 100%);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: .75rem; }
.cta-banner p  { color: rgba(255,255,255,.75); margin-bottom: 2rem; }

/* ======================================================
   ABOUT — HISTÓRIA
====================================================== */
.historia-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--amber));
}
.tl-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: .75rem;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: .45rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,158,11,.2);
  transform: translateX(calc(50% - 1px));
}
.tl-year {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
  margin-bottom: .2rem;
}
.tl-item h5 { font-size: .95rem; color: var(--navy); margin-bottom: .25rem; }
.tl-item p  { font-size: .85rem; color: var(--muted); }

.historia-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy); margin-bottom: 1rem; }
.historia-text p  { font-size: .95rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }

/* ======================================================
   ABOUT — MVV
====================================================== */
.mvv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  height: 100%;
  transition: box-shadow .25s, border-color .25s;
}
.mvv-card:hover { box-shadow: var(--shadow); border-color: var(--blue-light); }
.mvv-icon {
  width: 60px; height: 60px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.mvv-icon i { font-size: 1.5rem; color: var(--blue); }
.mvv-card h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: .6rem; }
.mvv-card p  { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ======================================================
   ABOUT — TEAM
====================================================== */
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-avatar-inner {
  width: 88px; height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
}
.team-body { padding: 1.25rem 1rem 1.5rem; }
.team-body h5 { font-size: 1rem; color: var(--navy); margin-bottom: .2rem; }
.team-body .team-role { font-size: .78rem; font-weight: 600; color: var(--blue-light); margin-bottom: .6rem; }
.team-body p { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ======================================================
   ABOUT — CERTIFICATIONS
====================================================== */
.cert-strip {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
.cert-badge i { color: var(--blue); font-size: .95rem; }
.cert-badge:hover { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,64,175,.1); }

/* ======================================================
   PROJECTS — FILTER
====================================================== */
.gallery-filter {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all .18s;
}
.filter-btn:hover  { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* ======================================================
   PROJECT CARD (gallery)
====================================================== */
.proj-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, opacity .3s;
}
.proj-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.proj-card.hidden { display: none; }

.proj-img {
  height: 196px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.proj-img i { font-size: 3.8rem; color: rgba(255,255,255,.7); }
.proj-cat {
  position: absolute;
  bottom: .9rem;
  left: .9rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 999px;
}
.proj-year {
  position: absolute;
  top: .9rem;
  right: .9rem;
  background: var(--amber);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 999px;
}
.proj-body { padding: 1.2rem 1.4rem 1.5rem; }
.proj-body h5 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.proj-loc {
  font-size: .78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-bottom: .85rem;
}
.proj-specs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.proj-specs span {
  font-size: .75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.proj-specs i { color: var(--blue); }

/* ======================================================
   CONTACT
====================================================== */
.contact-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}
.f-field { margin-bottom: 1.1rem; }
.f-field label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .4rem;
}
.f-input, .f-textarea, .f-select {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: .88rem;
  color: var(--text);
  font-family: inherit;
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
.f-input:focus, .f-textarea:focus, .f-select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,64,175,.12);
}
.f-row { display: grid; gap: 1rem; }
.f-row.cols-2 { grid-template-columns: 1fr 1fr; }
.f-textarea { resize: vertical; min-height: 130px; }
.submit-btn {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: .85rem;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, transform .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: inherit;
}
.submit-btn:hover { background: #1a37a3; transform: translateY(-1px); }

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2rem;
  color: #fff;
  position: sticky;
  top: calc(var(--banner-h) + var(--navbar-h) + 1rem);
}
.contact-info-card h4 { font-size: 1.1rem; margin-bottom: 1.5rem; color: #fff; }
.ci-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.ci-icon {
  width: 40px; height: 40px;
  background: rgba(245,158,11,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon i { color: var(--amber); font-size: 1.05rem; }
.ci-item strong { display: block; font-size: .82rem; color: rgba(255,255,255,.6); font-weight: 600; margin-bottom: .15rem; }
.ci-item span, .ci-item a { font-size: .9rem; color: #fff; }
.ci-item a:hover { color: var(--amber); }
.hours-box {
  background: rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
}
.hours-row { display: flex; justify-content: space-between; font-size: .82rem; padding: .35rem 0; }
.hours-row:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.08); }
.hours-row span { color: rgba(255,255,255,.6); }
.hours-row strong { color: #fff; }

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: #22c55e;
  color: #fff;
  font-weight: 700;
  padding: .75rem;
  border-radius: 10px;
  margin-top: 1.5rem;
  transition: background .15s;
}
.btn-wa:hover { background: #16a34a; }

/* Toast */
.m-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: #fff;
  padding: .8rem 1.5rem;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  white-space: nowrap;
  z-index: 9999;
}
.m-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* WhatsApp Float */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 54px; height: 54px;
  background: #22c55e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(34,197,94,.45);
  z-index: 900;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(34,197,94,.55); }

/* ======================================================
   FOOTER
====================================================== */
.m-footer {
  background: var(--navy);
  paddind-top: 4rem;
  padding-bottom: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer-brand-name span { background: var(--amber); color: var(--navy); border-radius: 6px; padding: .1rem .45rem; font-size: .95rem; }
.footer-desc { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.65; max-width: 360px; margin-bottom: 1.25rem; }
.footer-contact-list { list-style: none; font-size: .82rem; }
.footer-contact-list li { color: rgba(255,255,255,.55); display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.footer-contact-list i { color: var(--amber); width: 16px; }
.footer-col h6 { font-size: .75rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a { font-size: .85rem; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col ul a:hover { color: var(--amber); }
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom strong { color: rgba(255,255,255,.55); }

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 991px) {
  .hero-row { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .historia-row { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hbf-1, .hbf-2 { display: none; }
}
@media (max-width: 768px) {
  .m-links { display: none; flex-direction: column; position: fixed; inset: calc(var(--banner-h) + var(--navbar-h)) 0 0; background: var(--navy); padding: 2rem 1.5rem; gap: .5rem; z-index: 999; overflow-y: auto; }
  .m-links.open { display: flex; }
  .m-links a { font-size: 1rem; padding: .75rem 1rem; }
  .m-toggler { display: block; }
  .f-row.cols-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .hero-stats { gap: 1.25rem; flex-wrap: wrap; }
  .gallery-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { text-align: center; justify-content: center; }
}
