/*
 * ============================================================
 *  UDECON — CSS UNIFICADO
 *  Aplica a: martinez-udecon.html  +  page-microgoma (WP)
 *  Fuentes requeridas:
 *    Bebas Neue, DM Sans, Oswald, Source Serif 4
 * ============================================================
 */

/* ══════════════════════════════════════
   1. VARIABLES GLOBALES
══════════════════════════════════════ */
:root {
  /* Paleta azul (UDECON / MARTINEZ) */
  --azul:        #1B3A6B;
  --azul-dk:     #112548;
  --azul-lt:     #2554a0;

  /* Paleta rojo/oro (MICROGOMA) */
  --rojo:        #EC3237;
  --rojo-dk:     #b82228;
  --oro:         #E7BB36;
  --oro-dk:      #c49c20;

  /* Neutros */
  --negro:       #0e0e0e;
  --gris-dk:     #1c1c1c;
  --gris-md:     #2d2d2d;
  --gris-lt:     #f4f5f7;
  --texto:       #3a3a4a;
  --blanco:      #ffffff;

  /* Acento activo — cambiá este valor por página si querés
     UDECON  → var(--oro)
     MICROGOMA → var(--rojo) */
  --acento:      #E7BB36;
  --acento-dk:   #c49c20;
}

/* ══════════════════════════════════════
   2. RESET Y BASE
══════════════════════════════════════ */
*  { box-sizing: border-box; }
html { scroll-behavior: smooth; }
a  { text-decoration: none; }

body {
  font-family: 'DM Sans', 'Source Serif 4', Georgia, serif;
  color: var(--texto);
  background: var(--blanco);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  letter-spacing: 1.5px;
}

/* ══════════════════════════════════════
   3. NAVBAR
══════════════════════════════════════ */
.navbar {
  background: rgba(27, 58, 107, 0.97) !important;
  border-bottom: 3px solid var(--acento);
  padding: .5rem 1.5rem;
  transition: all .3s;
}
.navbar.scrolled      { box-shadow: 0 4px 24px rgba(0,0,0,.25); }

/* Navbar MICROGOMA (fondo oscuro) */
.navbar-dark-mg {
  background: rgba(14,14,14,0.97) !important;
  border-bottom: 2px solid var(--rojo);
}

.navbar-brand {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: 1.5rem; letter-spacing: 3px;
  color: var(--blanco) !important;
  line-height: 1;
}
.navbar-brand span  { color: var(--acento); }
.navbar-brand small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  margin-top: -2px;
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: .88rem;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.8) !important;
  padding: .4rem 1rem !important;
  position: relative; transition: color .2s;
  border: 1px solid transparent;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 1rem; right: 1rem;
  height: 2px; background: var(--acento);
  transform: scaleX(0); transition: transform .2s;
}
.nav-link:hover              { color: var(--acento) !important; }
.nav-link:hover::after       { transform: scaleX(1); }

/* Hover estilo MICROGOMA */
.navbar-dark-mg .nav-link:hover { color: var(--oro) !important; border-color: var(--oro); }

.navbar-toggler      { border-color: var(--acento); }
.navbar-toggler-icon { filter: invert(1); }

.btn-nav-cta {
  background: var(--acento); color: var(--azul-dk) !important;
  font-weight: 700 !important; border-radius: 0 !important;
  padding: .45rem 1.2rem !important;
  transition: background .2s !important;
}
.btn-nav-cta:hover { background: var(--acento-dk) !important; }

/* ══════════════════════════════════════
   4. HERO — variantes
══════════════════════════════════════ */

/* Hero UDECON / MARTINEZ (azul, altura fija) */
.hero {
  height: 70svh;
  padding: 100px 0;
  background:
    linear-gradient(160deg, rgba(17,37,72,0.95) 0%, rgba(27,58,107,0.88) 60%, rgba(37,84,160,0.75) 100%),
    repeating-linear-gradient(-55deg, transparent 0, transparent 30px, rgba(231,187,54,0.04) 30px, rgba(231,187,54,0.04) 31px);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: 'UDECON';
  position: absolute; right: -3rem; bottom: -2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18rem; line-height: 1; letter-spacing: -5px;
  color: rgba(255,255,255,0.03);
  pointer-events: none; user-select: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--acento) 50%, transparent);
}

/* Hero MICROGOMA (oscuro, full height) */
.hero-mg {
  min-height: 100vh;
  padding-top: 72px;
  background:
    linear-gradient(160deg, rgba(14,14,14,0.94) 50%, rgba(236,50,55,0.10) 100%),
    repeating-linear-gradient(-45deg, transparent 0, transparent 28px, rgba(231,187,54,0.03) 28px, rgba(231,187,54,0.03) 29px);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-mg::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--rojo) 50%, transparent);
}

/* Textos del hero */
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--acento);
  border-left: 3px solid var(--acento);
  padding-left: .7rem; margin-bottom: 1.2rem;
  animation: fadeUp .6s ease both;
}
.hero-tag {
  background: var(--oro);
  font-family: 'Oswald', sans-serif; font-size: .78rem;
  letter-spacing: 4px; color: var(--rojo);
  border: 1px solid var(--oro);
  display: inline-block; padding: .25rem .9rem;
  margin-bottom: 1.2rem;
  animation: fadeDown .5s ease both;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: .92; color: var(--blanco);
  animation: fadeUp .6s .1s ease both;
}
.hero-mg h1 { animation-name: fadeDown; }
.hero h1 span,
.hero h1 .txt-acento { color: var(--acento); }
.hero h1 .txt-rojo   { color: var(--rojo); }
.hero h1 .txt-oro    { color: var(--oro); }

.hero-desc, .hero-lead {
  font-size: 1.05rem; color: rgba(255,255,255,.7);
  max-width: 500px; line-height: 1.75;
  margin: 1.5rem 0 2rem;
  animation: fadeUp .6s .2s ease both;
}
.hero-desc strong { color: var(--blanco); }

.hero-lead-dark {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem; color: #000;
  max-width: 520px; line-height: 1.7;
}
.hero-btns { animation: fadeUp .6s .3s ease both; }

/* Badge MICROGOMA en hero */
.mg-badge {
  display: inline-flex; align-items: center; gap: .7rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(231,187,54,.3);
  padding: .6rem 1.2rem;
  margin-top: 2rem;
  animation: fadeUp .6s .4s ease both;
}
.mg-badge span   { font-family: 'DM Sans', sans-serif; font-size: .78rem; color: rgba(255,255,255,.65); letter-spacing: 1px; }
.mg-badge strong { color: var(--acento); font-size: .9rem; }

/* ══════════════════════════════════════
   5. BOTONES
══════════════════════════════════════ */
.btn-azul {
  background: var(--azul); color: var(--blanco);
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: .9rem; letter-spacing: 1.5px; text-transform: uppercase;
  border: none; padding: .8rem 2rem; border-radius: 0;
  display: inline-block; transition: background .2s, transform .15s;
}
.btn-azul:hover { background: var(--azul-dk); color: var(--blanco); transform: translateY(-2px); }

.btn-acento {
  background: var(--acento); color: var(--azul-dk);
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: .9rem; letter-spacing: 1.5px; text-transform: uppercase;
  border: none; padding: .8rem 2rem; border-radius: 0;
  display: inline-block; transition: background .2s, transform .15s;
}
.btn-acento:hover { background: var(--acento-dk); color: var(--azul-dk); transform: translateY(-2px); }

.btn-rojo {
  background: var(--rojo); color: var(--blanco);
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: 2px; text-transform: uppercase;
  border: none; padding: .75rem 2rem;
  display: inline-block; transition: background .2s, transform .15s;
}
.btn-rojo:hover { background: var(--rojo-dk); color: var(--blanco); transform: translateY(-2px); }

.btn-oro {
  background: var(--oro); color: var(--negro);
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: 2px; text-transform: uppercase;
  border: none; padding: .75rem 2rem;
  display: inline-block; transition: background .2s, transform .15s;
}
.btn-oro:hover { background: var(--oro-dk); color: var(--negro); transform: translateY(-2px); }

.btn-negro {
  background: var(--negro); color: var(--blanco);
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 1.1rem; letter-spacing: 2px; text-transform: uppercase;
  border: none; padding: .85rem 2.5rem;
  display: inline-block; transition: background .2s;
}
.btn-negro:hover { background: #1a1a1a; color: var(--blanco); }

.btn-borde {
  background: var(--rojo); border: 2px solid var(--oro);
  color: var(--blanco);
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: 2px; text-transform: uppercase;
  padding: .7rem 1.8rem; display: inline-block; transition: all .2s;
}
.btn-borde:hover { background: var(--rojo-dk); color: var(--blanco); }

.btn-borde-blanco {
  border: 2px solid rgba(255,255,255,.5); color: var(--blanco);
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: .9rem; letter-spacing: 1.5px; text-transform: uppercase;
  background: transparent; padding: .78rem 2rem; border-radius: 0;
  display: inline-block; transition: all .2s;
}
.btn-borde-blanco:hover { background: var(--blanco); color: var(--azul); }

.btn-borde-azul {
  border: 2px solid var(--azul); color: var(--azul);
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: .9rem; letter-spacing: 1.5px; text-transform: uppercase;
  background: transparent; padding: .78rem 2rem; border-radius: 0;
  display: inline-block; transition: all .2s;
}
.btn-borde-azul:hover { background: var(--azul); color: var(--blanco); }

/* ══════════════════════════════════════
   6. STATS BAR
══════════════════════════════════════ */
.stats-bar         { background: var(--acento); padding: .9rem 0; }
.stats-bar-rojo    { background: var(--rojo);   padding: 1rem 0; }

.stat-item { text-align: center; border-right: 1px solid rgba(27,58,107,.2); }
.stats-bar-rojo .stat-item { border-right-color: rgba(255,255,255,.2); }
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: 2.2rem; line-height: 1; letter-spacing: 1px;
  color: var(--azul-dk);
}
.stats-bar-rojo .stat-num { color: var(--blanco); font-size: 2rem; font-weight: 700; }

.stat-label {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(27,58,107,.65);
}
.stats-bar-rojo .stat-label { color: rgba(255,255,255,.75); }

/* ══════════════════════════════════════
   7. SECCIONES — COMUNES
══════════════════════════════════════ */
.sec-pad   { padding: 90px 0; }
.sec-pad-mg { padding: 80px 0; }

.sec-tag {
  font-family: 'DM Sans', 'Oswald', sans-serif;
  font-size: .75rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--azul-lt); display: block; margin-bottom: .4rem;
}
.sec-tag-oro { color: var(--oro); }

.sec-title {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: clamp(2.2rem,4vw,3.2rem); line-height: 1; margin-bottom: 1rem;
}
.sec-title span      { color: var(--azul-lt); }
.sec-title-dark      { color: var(--negro); }

.sec-desc  { color: #777;  line-height: 1.8; font-size: .97rem; }
.sec-desc-dark { color: #aaa; line-height: 1.75; font-size: .95rem; }

.sec-divider { width: 50px; height: 3px; background: var(--acento); margin: 1rem 0 1.5rem; }

/* ══════════════════════════════════════
   8. TARJETAS DE SERVICIOS (UDECON)
══════════════════════════════════════ */
#servicios { background: var(--gris-lt); }

.serv-card {
  background: var(--blanco);
  border-top: 4px solid var(--azul);
  padding: 2rem 1.5rem 1.8rem;
  height: 100%;
  box-shadow: 0 2px 12px rgba(27,58,107,.07);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.serv-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 0;
  background: var(--azul); transition: height .3s; z-index: 0;
}
.serv-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(27,58,107,.15); border-color: var(--acento); }
.serv-card:hover::after { height: 3px; }
.serv-card > * { position: relative; z-index: 1; }

.serv-icon {
  width: 64px; height: 64px;
  background: var(--azul);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem; transition: background .2s;
}
.serv-card:hover .serv-icon        { background: var(--acento); }
.serv-icon i                       { font-size: 1.6rem; color: var(--blanco); }
.serv-card:hover .serv-icon i      { color: var(--azul-dk); }
.serv-card h4 { font-size: 1.5rem; margin-bottom: .5rem; color: var(--azul-dk); }
.serv-card p  { font-size: .88rem; color: #888; line-height: 1.7; margin-bottom: 1rem; }

.serv-list { list-style: none; padding: 0; margin: 0; }
.serv-list li {
  font-size: .85rem; color: #666; padding: .35rem 0;
  border-bottom: 1px solid #eee;
  display: flex; align-items: center; gap: .6rem;
}
.serv-list li:last-child { border-bottom: none; }
.serv-list li i { color: var(--acento); font-size: .8rem; flex-shrink: 0; }

/* ══════════════════════════════════════
   9. BANNER MICROGOMA
══════════════════════════════════════ */
.mg-banner {
  background: linear-gradient(135deg, var(--azul-dk) 0%, var(--azul) 60%, var(--azul-lt) 100%);
  padding: 70px 0; position: relative; overflow: hidden;
}
.mg-banner-oro {
  background: var(--oro);
}
.mg-banner::before {
  content: 'MICROGOMA';
  position: absolute; right: -2rem; top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10rem; letter-spacing: 2px;
  color: rgba(255,255,255,0.04);
  pointer-events: none; white-space: nowrap;
}
.mg-banner-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif; font-size: .75rem;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--acento); border: 1px solid var(--acento);
  padding: .25rem .9rem; margin-bottom: 1rem;
}
.mg-banner h2        { font-size: clamp(2rem,5vw,3.5rem); color: var(--blanco); line-height: 1; }
.mg-banner h2 span   { color: var(--acento); }
.mg-banner p         { color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.75; max-width: 520px; }

.mg-feat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(231,187,54,.2);
  border-left: 3px solid var(--acento);
  padding: 1rem 1.2rem; margin-bottom: .8rem;
}
.mg-feat h6 { font-family: 'DM Sans', sans-serif; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--acento); margin-bottom: .2rem; }
.mg-feat p  { font-size: .83rem; color: rgba(255,255,255,.6); margin: 0; line-height: 1.5; }

/* ══════════════════════════════════════
   10. BENEFICIOS (MICROGOMA)
══════════════════════════════════════ */
#beneficios { background: var(--gris-dk); }

.ben-card {
  background: var(--negro); border: 1px solid var(--gris-md);
  border-top: 3px solid var(--rojo);
  padding: 1.8rem 1.5rem; height: 100%;
  transition: transform .2s;
}
.ben-card:hover { transform: translateY(-4px); }
.ben-icon       { font-size: 2.2rem; color: var(--oro); margin-bottom: 1rem; }
.ben-card h4    { font-size: 1.1rem; margin-bottom: .6rem; }
.ben-card p     { font-size: .87rem; color: #999; line-height: 1.65; }

/* ══════════════════════════════════════
   11. APLICACIONES (MICROGOMA)
══════════════════════════════════════ */
.apl-block {
  background: var(--gris-dk);
  border-left: 3px solid var(--rojo);
  padding: 1.4rem 1.6rem; margin-bottom: 1rem;
}
.apl-block h5 { font-size: .95rem; color: var(--oro); margin-bottom: .4rem; }
.apl-block p  { font-size: .87rem; color: #bbb; line-height: 1.65; margin: 0; }

/* ══════════════════════════════════════
   12. INSTITUCIONES (MICROGOMA)
══════════════════════════════════════ */
.inst-card {
  background: var(--gris-dk); border: 1px solid var(--gris-md);
  border-bottom: 3px solid var(--rojo);
  padding: 1.5rem; height: 100%; text-align: center;
  transition: transform .2s;
}
.inst-card:hover  { transform: translateY(-3px); }
.inst-icon        { font-size: 2rem; margin-bottom: .8rem; color: var(--rojo); }
.inst-card h5     { font-size: 1rem; margin-bottom: .5rem; }
.inst-card p      { font-size: .84rem; color: #999; line-height: 1.6; }

/* ══════════════════════════════════════
   13. GALERÍA DE OBRAS
══════════════════════════════════════ */
#galeria { background: var(--negro); }

.filtros { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; justify-content: center; }
.filtro-btn {
  font-family: 'Oswald', sans-serif; font-size: .78rem; letter-spacing: 1.5px;
  text-transform: uppercase; border: 1px solid var(--gris-md);
  background: transparent; color: #888; padding: .35rem 1rem;
  cursor: pointer; transition: all .2s;
}
.filtro-btn:hover,
.filtro-btn.active { border-color: var(--rojo); color: var(--rojo); background: rgba(236,50,55,.08); }

.obra-card { overflow: hidden; }
.obra-img-wrap {
  width: 100%; height: 360px;
  position: relative; overflow: hidden;
  background: var(--gris-dk); display: flex;
}
.obra-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; width: 100%; height: 100%;
  background: repeating-linear-gradient(45deg, #1c1c1c, #1c1c1c 10px, #222 10px, #222 20px);
}
.obra-placeholder i    { font-size: 2.2rem; color: #444; }
.obra-placeholder span { font-family: 'Oswald', sans-serif; font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: #555; }

.obra-overlay {
  position: absolute; inset: 0;
  background: rgba(236,50,55,.88);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.obra-card:hover .obra-overlay { opacity: 1; }
.obra-overlay i    { font-size: 2rem; color: var(--blanco); }
.obra-overlay span { font-family: 'Oswald', sans-serif; font-size: .8rem; letter-spacing: 2px; color: var(--blanco); margin-top: .4rem; }

.obra-info { font-family: 'Oswald', sans-serif; padding: 1.4rem 1rem; background: var(--gris-dk); }
.obra-tag  { font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; color: var(--oro); display: block; margin-bottom: .2rem; }
.obra-info h6 { font-family: 'Oswald', sans-serif; font-size: .92rem; margin: 0; font-weight: 700; }

/* ══════════════════════════════════════
   14. CATÁLOGO DE PRODUCTOS
══════════════════════════════════════ */
#productos { background: var(--gris-dk); }

.prod-card {
  background: var(--negro); border: 1px solid var(--gris-md);
  height: 100%; display: flex; flex-direction: column;
  transition: transform .2s, border-color .2s;
}
.prod-card:hover { transform: translateY(-4px); border-color: var(--oro); }

.prod-img-wrap {
  height: 250px; background: var(--gris-md);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.prod-img-bg {
  display: flex; flex-direction: column;
  width: 100%; 
  /*height: 100%;
  align-items: center; justify-content: center;*/
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
}
.prod-img-bg i { font-size: 3rem; color: var(--rojo); opacity: .75; }

.prod-badge-top {
  position: absolute; top: .6rem; right: .6rem;
  font-family: 'Oswald', sans-serif; font-size: .68rem; letter-spacing: 1.5px;
  text-transform: uppercase; padding: .2rem .6rem;
  background: var(--oro); color: var(--negro); font-weight: 700;
}
.prod-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
.prod-cat  { font-family: 'Oswald', sans-serif; font-size: .7rem; letter-spacing: 2px; color: var(--oro); text-transform: uppercase; margin-bottom: .3rem; display: block; }
.prod-body h5 { font-size: 1.05rem; margin-bottom: .5rem; }
.prod-body p  { font-size: .83rem; color: #999; line-height: 1.6; flex: 1; }

.prod-footer { padding: .8rem 1.2rem; border-top: 1px solid var(--gris-md); display: flex; align-items: center; justify-content: space-between; }
.prod-pres   { font-size: .75rem; color: #666; font-family: 'Oswald', sans-serif; letter-spacing: 1px; text-transform: uppercase; }
.prod-wa {
  font-family: 'Oswald', sans-serif; font-size: .78rem; letter-spacing: 1px;
  text-transform: uppercase; color: var(--oro); border: 1px solid var(--oro);
  padding: .3rem .8rem; transition: all .2s;
}
.prod-wa:hover { background: var(--oro); color: var(--negro); }

/* ══════════════════════════════════════
   15. NOSOTROS (UDECON)
══════════════════════════════════════ */
#nosotros { background: var(--blanco); }

.nos-img-wrap {
  background: var(--azul);
  height: 400px; position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.nos-img-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.03), rgba(255,255,255,.03) 10px, transparent 10px, transparent 20px);
}
.nos-img-placeholder { text-align: center; color: rgba(255,255,255,.3); position: relative; z-index: 1; }
.nos-img-placeholder i    { font-size: 3rem; display: block; margin-bottom: .5rem; }
.nos-img-placeholder span { font-family: 'DM Sans', sans-serif; font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; }

.nos-stat {
  background: var(--azul); padding: 1.5rem; text-align: center;
  border-bottom: 3px solid var(--acento); transition: background .2s;
}
.nos-stat:hover   { background: var(--azul-lt); }
.nos-stat-num     { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--acento); line-height: 1; }
.nos-stat-label   { font-size: .75rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-top: .2rem; }

.valor-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; }
.valor-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--gris-lt); display: flex; align-items: center; justify-content: center; }
.valor-icon i  { color: var(--azul); font-size: 1.1rem; }
.valor-item h6 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .9rem; margin-bottom: .2rem; color: var(--azul-dk); text-transform: uppercase; letter-spacing: .5px; }
.valor-item p  { font-size: .85rem; color: #888; line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════
   16. CONTACTO
══════════════════════════════════════ */
#contacto { background: var(--gris-lt); }

.contact-card {
  background: var(--blanco); border-top: 4px solid var(--azul);
  padding: 2rem 1.8rem;
  box-shadow: 0 2px 16px rgba(27,58,107,.08);
  height: 100%;
}
.contact-card h5 { font-size: 1.4rem; color: var(--azul-dk); margin-bottom: 1rem; }
.contact-info-item { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1rem; }
.contact-info-item i    { color: var(--azul); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.contact-info-item span { font-size: .9rem; color: #666; line-height: 1.5; }

.form-control-mu {
  background: var(--gris-lt); border: 1px solid #ddd;
  border-radius: 0; font-family: 'DM Sans', sans-serif;
  font-size: .9rem; padding: .7rem 1rem;
  color: var(--texto); transition: border-color .2s; width: 100%;
}
.form-control-mu:focus { border-color: var(--azul); outline: none; background: var(--blanco); }
.form-label-mu  { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--azul-dk); margin-bottom: .35rem; display: block; }
.form-group-mu  { margin-bottom: 1rem; }

/* ══════════════════════════════════════
   17. CTA SECTION (MICROGOMA)
══════════════════════════════════════ */
.cta-section {
  padding: 80px 20px; text-align: center;
  background: linear-gradient(135deg, var(--rojo-dk) 0%, var(--rojo) 100%);
}
.cta-section h2 { color: var(--blanco); font-size: clamp(2rem,5vw,3.5rem); }
.cta-section p  { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2rem; }

/* ══════════════════════════════════════
   18. FOOTER
══════════════════════════════════════ */

/* Footer UDECON completo */
.site-footer { background: var(--azul-dk); padding: 60px 0 0; color: rgba(255,255,255,.6); }
.footer-brand { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 3px; color: var(--blanco); }
.footer-brand span  { color: var(--acento); }
.footer-brand small { display: block; font-family: 'DM Sans', sans-serif; font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: -2px; }
.footer-desc  { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.5); margin-top: .8rem; max-width: 280px; }
.footer-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 2px; color: var(--blanco); margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a   { font-size: .88rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: var(--acento); }

.footer-bottom {
  margin-top: 3rem; border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.2rem 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.35);
}
.footer-bottom strong { color: var(--acento); }

/* Footer simple MICROGOMA */
footer.footer-simple {
  background: #080808; border-top: 1px solid var(--gris-md);
  padding: 2rem 1rem; text-align: center; color: #555; font-size: .85rem;
}
footer.footer-simple strong { color: var(--oro); }

/* Redes */
.social-links { display: flex; gap: .6rem; }
.social-link {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .9rem; transition: all .2s;
}
.social-link:hover { border-color: var(--acento); color: var(--acento); }

/* ══════════════════════════════════════
   19. WHATSAPP FLOTANTE
══════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 9999;
  background: #25d366; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  animation: pulseWa 2.5s infinite; transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float i     { font-size: 1.7rem; color: white; }

/* ══════════════════════════════════════
   20. ANIMACIONES
══════════════════════════════════════ */
@keyframes pulseWa  { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)} 50%{box-shadow:0 6px 32px rgba(37,211,102,.7)} }
@keyframes pulse-wa { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)} 50%{box-shadow:0 6px 32px rgba(37,211,102,.7)} }
@keyframes fadeUp   { from{opacity:0;transform:translateY(20px)}  to{opacity:1;transform:translateY(0)} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-16px)} to{opacity:1;transform:translateY(0)} }
