/* ==========================================================================
   LN SERVICES INC — Mockup sitio corporativo (home)
   Estructura calcada del layout de referencia (iasaglobal.com/panama).
   TEMA CLARO: base blanco/gris claro; navy #011341 solo como acento
   estructural (navbar, hero, sección destacada, footer).
   Colores planos, esquinas 2-4px, sombras mínimas, bordes 1px.
   Tipografía: misma que iasaglobal.com/panama (referencia del cliente) —
   Oxanium (headings, kicker, stats, botones, wordmark) + Roboto (cuerpo).
   Google Fonts. Ver DECISIONS.md 2026-07-14.
   ========================================================================== */

:root{
  --navy: #011341;
  --navy-2: #04205e;
  --navy-3: #0a2f7a;
  --silver: #aeb7c4;
  --silver-light: #d7dce4;
  --off-white: #f4f6f9;
  --white: #ffffff;
  --ink: #1b2431;
  --text: #3c4658;
  --line: #dfe4ec;
  --line-dark: rgba(255,255,255,.14);
  --wa: #1fae5b;

  --font: 'Roboto', Arial, sans-serif;
  --font-display: 'Oxanium', 'Roboto', Arial, sans-serif;

  --container: 1180px;
  --radius: 3px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html{ scroll-behavior: smooth; scroll-padding-top: 90px; }

body{
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4{ margin: 0 0 .5em; line-height: 1.15; font-family: var(--font-display); font-weight: 700; }
p{ margin: 0 0 1em; line-height: 1.65; color: var(--text); }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- reveal on scroll ---------- */
[data-reveal]{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].in-view{ opacity: 1; transform: translateY(0); }

/* ---------- buttons (rectangulares, planos) ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .9em 1.7em;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }

.btn-primary{ background: var(--white); color: var(--navy); }
.btn-primary:hover{ background: var(--silver-light); }

.btn-navy{ background: var(--navy); color: var(--white); }
.btn-navy:hover{ background: var(--navy-2); }

.btn-outline-navy{ background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover{ background: var(--navy); color: var(--white); }

.btn-block{ width: 100%; }
.btn-lg{ padding: 1.05em 2em; font-size: 1rem; }

.btn-whatsapp{ background: var(--wa); color: var(--white); }
.btn-whatsapp:hover{ background: #188a48; }

.btn-nav-cta{ background: var(--wa); color: var(--white); padding: .6em 1.3em; font-size: .85rem; }
.btn-nav-cta:hover{ background: #188a48; }
.nav-cta--desktop{ display: none; flex-shrink: 0; }

/* ==========================================================================
   HEADER + DROPDOWN (navy)
   ========================================================================== */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 26px 0;
  transition: background-color .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled{ padding: 16px 0; }
.header-inner{ display: flex; align-items: center; justify-content: space-between; gap: 28px; }

/* Lockup horizontal: monograma LN + wordmark al lado */
.brand{ display: flex; align-items: center; gap: 16px; padding-right: 10px; }
.brand-logo{ height: 46px; width: auto; transition: height .4s var(--ease); }
.site-header.scrolled .brand-logo{ height: 38px; }
.brand-wordmark{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver-light);
  white-space: nowrap;
  line-height: 1;
  padding-top: 4px;
}
@media (max-width: 560px){
  .brand-wordmark{ display: none; }
  .brand-logo{ height: 40px; }
}

.main-nav{ align-items: center; gap: 2px; }

.nav-item{ position: relative; }
.nav-link{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 22px;
  cursor: pointer;
  transition: color .3s;
}
.nav-link::after{
  content: '';
  position: absolute; left: 22px; right: 22px; bottom: 6px;
  height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-link:hover::after{ transform: scaleX(1); }

.dd-chevron{ transition: transform .3s var(--ease); }
.has-dropdown.is-open .dd-chevron,
.has-dropdown:hover .dd-chevron{ transform: rotate(180deg); }

.dropdown-panel{
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  padding: 8px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  z-index: 10;
}
.dropdown-panel a{
  padding: 10px 14px;
  border-radius: 2px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  transition: background-color .25s, color .25s;
}
.dropdown-panel a:hover{ background: var(--off-white); color: var(--navy-3); }
.dropdown-panel__all{
  margin-top: 4px;
  border-top: 1px solid var(--line);
  padding-top: 12px !important;
  color: var(--navy-3) !important;
  text-decoration: underline;
}

@media (hover: hover){
  .has-dropdown:hover .dropdown-panel{
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
  }
}
.has-dropdown.is-open .dropdown-panel{
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}

.nav-toggle{
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; z-index: 210;
}
.nav-toggle span{ width: 26px; height: 2px; background: var(--white); transition: transform .3s var(--ease), opacity .3s var(--ease); }

.site-header.scrolled{
  background: var(--navy);
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}

.site-header.menu-open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .nav-toggle span:nth-child(2){ opacity: 0; }
.site-header.menu-open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px){
  .main-nav{ display: flex; flex: 1; justify-content: center; }
  .main-nav .nav-cta--mobile{ display: none; }
  .nav-cta--desktop{ display: inline-flex; }
  .nav-toggle{ display: none; }
}

@media (max-width: 899px){
  .main-nav{
    display: flex;
    position: fixed; inset: 0 0 auto 0; top: 0;
    background: var(--navy);
    flex-direction: column; align-items: stretch;
    padding: 100px 28px 40px;
    max-height: 100vh;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform .45s var(--ease);
  }
  .main-nav.open{ transform: translateY(0); }
  .main-nav .nav-link{ font-size: 1.15rem; width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line-dark); justify-content: space-between; }
  .nav-link::after{ display: none; }
  .nav-item{ width: 100%; }
  .dropdown-panel{
    position: static; transform: none; box-shadow: none; border: none; background: rgba(255,255,255,.04);
    max-height: 0; overflow: hidden; padding: 0; opacity: 1; visibility: visible; pointer-events: auto;
    transition: max-height .35s var(--ease), padding .35s var(--ease);
  }
  .has-dropdown.is-open .dropdown-panel{ max-height: 460px; padding: 8px; }
  .dropdown-panel a{ color: var(--silver-light); }
  .dropdown-panel a:hover{ background: rgba(255,255,255,.06); color: var(--white); }
  .btn-nav-cta{ margin-top: 22px; align-self: flex-start; }
}

/* ==========================================================================
   HERO SLIDER (navy)
   ========================================================================== */
.hero-slider{
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--navy);
}

.slides{ position: relative; height: 100svh; z-index: 1; }
.slide{
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s var(--ease), visibility .9s;
  padding-top: 70px;
}
.slide.is-active{ opacity: 1; visibility: visible; }

.slide-visual{
  position: absolute; left: 0; right: 0; bottom: -10px;
  height: 46%;
  opacity: .5;
  pointer-events: none;
}
.slide-visual svg{ width: 100%; height: 100%; }
.slide-visual--center{
  position: absolute;
  right: 4%; top: 50%;
  left: auto; bottom: auto;
  transform: translateY(-50%) scale(.9);
  height: auto;
  opacity: .45;
  display: none;
}
@media (min-width: 860px){ .slide-visual--center{ display: block; } }

.slide-content{ position: relative; z-index: 2; max-width: 720px; }

.hero-kicker{
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  color: var(--silver-light);
  margin-bottom: .9em;
}

.slide-title{
  color: var(--white);
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  letter-spacing: 0;
}
.slide-sub{ color: var(--silver-light); font-size: 1.02rem; max-width: 600px; }

.slider-dots{
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 4;
}
.dot{
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none; cursor: pointer; padding: 0;
  transition: background-color .3s;
}
.dot.is-active{ background: var(--white); }

.slider-arrow{
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: var(--radius);
  background: transparent;
  border: 1px solid var(--line-dark);
  color: var(--white);
  display: none;
  align-items: center; justify-content: center;
  cursor: pointer; z-index: 4;
  transition: background-color .3s;
}
.slider-arrow:hover{ background: rgba(255,255,255,.1); }
.slider-arrow--prev{ left: 24px; }
.slider-arrow--next{ right: 24px; }
@media (min-width: 760px){ .slider-arrow{ display: flex; } }

/* ==========================================================================
   SECTIONS — genéricos (tema claro)
   ========================================================================== */
.section{ padding: 90px 0; }
.section--white{ background: var(--white); }
.section--muted{ background: var(--off-white); }
.section--dark{ background: var(--navy); }

/* Título de sección alineado a la izquierda con regla corta (estilo IASA) */
.section-head{
  max-width: 640px;
  margin: 0 0 2.8rem;
  text-align: left;
}
.section-head h2{
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .01em;
  padding-bottom: .55em;
  position: relative;
}
.section-head h2::after{
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 56px; height: 3px;
  background: var(--navy);
}
.section-head--dark h2::after{ background: var(--white); }
.h2--light{ color: var(--white) !important; }
.section-sub{ font-size: 1rem; margin-top: 1em; }

/* ==========================================================================
   SERVICIOS (claro)
   ========================================================================== */
.services-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start; /* alturas naturales, no todas iguales */
}
@media (min-width: 680px){ .services-grid{ grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px){ .services-grid{ grid-template-columns: repeat(3, 1fr); } }

.service-card{
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover{ border-color: var(--navy); transform: translateY(-4px); }

.service-icon{
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: var(--radius);
  background: var(--off-white); color: var(--navy);
  margin-bottom: 1.1rem;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.service-icon svg{ width: 28px; height: 28px; }
.service-card:hover .service-icon{ background: var(--navy); color: var(--white); }

.service-card h3{ font-size: 1.04rem; color: var(--navy); }
.service-card p{ font-size: .92rem; }

.service-link{
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .86rem; font-weight: 700; color: var(--navy-3);
  margin-top: auto;
  transition: gap .3s;
}
.service-link:hover{ gap: 10px; text-decoration: underline; }

/* ==========================================================================
   EQUIPOS QUE ATENDEMOS (claro, carrusel)
   ========================================================================== */
.equipos-section{ padding-bottom: 70px; }

.equipos-carousel-wrap{ position: relative; margin-top: 10px; }

.equipos-carousel{
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 20px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--silver) transparent;
}
.equipos-carousel::-webkit-scrollbar{ height: 6px; }
.equipos-carousel::-webkit-scrollbar-thumb{ background: var(--silver); border-radius: 3px; }

.equipo-card{
  flex: 0 0 180px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.equipo-card:hover{ border-color: var(--navy); transform: translateY(-4px); }
.equipo-icon{ display: inline-flex; color: var(--navy); margin-bottom: 14px; }
.equipo-icon svg{ width: 40px; height: 40px; }
.equipo-card p{ color: var(--ink); font-size: .86rem; font-weight: 600; margin-bottom: 0; }

.carousel-arrow{
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  align-items: center; justify-content: center;
  cursor: pointer; z-index: 3;
  display: none;
  transition: border-color .3s, background-color .3s;
}
.carousel-arrow:hover{ border-color: var(--navy); }
.carousel-arrow--prev{ left: 2px; }
.carousel-arrow--next{ right: 2px; }
@media (min-width: 760px){ .carousel-arrow{ display: flex; } }

/* ==========================================================================
   TALLERES (claro, asimétrico: texto izq + visual der)
   ========================================================================== */
.talleres-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
@media (min-width: 960px){ .talleres-grid{ grid-template-columns: 1.15fr .85fr; } }

.talleres-text .section-head{ margin-bottom: 1.6rem; }
.talleres-text p{ font-size: 1rem; max-width: 560px; }

.talleres-datos{
  margin: 1.2rem 0 1.8rem;
  border-left: 3px solid var(--navy);
  padding-left: 18px;
}
.talleres-datos li{
  font-size: .92rem;
  color: var(--text);
  margin-bottom: 8px;
}

.talleres-acciones{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.talleres-acciones .btn{ font-size: .9rem; }

.talleres-visuals{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.talleres-visual{
  aspect-ratio: 1;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.talleres-visual--main{
  grid-column: 1 / -1;
  aspect-ratio: 2 / 1;
}
.talleres-visual:hover{ background: var(--navy); color: var(--white); border-color: var(--navy); }
.talleres-visual svg{ width: 38%; height: 38%; max-width: 96px; }
.talleres-visual--main svg{ width: 22%; height: auto; }

.talleres-visual--map{ padding: 0; overflow: hidden; }
.talleres-visual--map:hover{ background: var(--off-white); border-color: var(--line); }
.talleres-visual--map iframe{ width: 100%; height: 100%; min-height: 220px; border: 0; display: block; }
@media (max-width: 560px){ .talleres-visual--map iframe{ min-height: 260px; } }

/* ==========================================================================
   DESTACADO (navy: tabs + stats)
   ========================================================================== */
.featured-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px){ .featured-grid{ grid-template-columns: 1fr 1.05fr; } }

.featured-visual{
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 24px;
}
.featured-visual svg{ width: 100%; height: auto; }

.featured-content .section-head{ margin-bottom: 1.6rem; }
.featured-content p{ color: var(--silver-light); }

.tabs-nav{
  display: flex; gap: 6px; margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--line-dark);
}
.tab-btn{
  background: none; border: none; cursor: pointer;
  font-family: var(--font); font-weight: 700; font-size: .88rem;
  color: var(--silver);
  padding: 10px 4px; margin-right: 22px;
  position: relative;
  transition: color .3s;
}
.tab-btn::after{
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--white);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.tab-btn.is-active{ color: var(--white); }
.tab-btn.is-active::after{ transform: scaleX(1); }

.tab-panel{ display: none; }
.tab-panel.is-active{ display: block; animation: fadeInTab .5s var(--ease); }
@keyframes fadeInTab{ from{ opacity: 0; transform: translateY(6px); } to{ opacity: 1; transform: translateY(0); } }

.featured-stats{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 2rem;
}
@media (min-width: 560px){ .featured-stats{ grid-template-columns: repeat(4, 1fr); } }

.fstat{ text-align: left; border-left: 3px solid var(--white); padding-left: 14px; }
.stat-number{ display: block; font-family: var(--font-display); font-size: clamp(1.7rem, 3.4vw, 2.2rem); font-weight: 700; color: var(--white); }
.stat-number--static{ color: var(--white); }
.stat-label{ display: block; font-size: .74rem; color: var(--silver-light); letter-spacing: .02em; margin-top: .2em; }

/* ==========================================================================
   SECTORES (claro, grid asimétrico)
   ========================================================================== */
.sectores-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}
@media (min-width: 640px){ .sectores-grid{ grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px){
  .sectores-grid{ grid-template-columns: repeat(3, 1fr); }
  .sector-card--wide{ grid-column: span 2; }
}

.sector-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.sector-card:hover{ border-color: var(--navy); transform: translateY(-4px); }
.sector-card h3{ font-size: 1rem; color: var(--navy); }
.sector-desc{ font-size: .9rem; }
.sector-bullets{ margin: 0; }
.sector-bullets li{
  font-size: .86rem; color: var(--text);
  padding-left: 16px; position: relative; margin-bottom: 7px;
}
.sector-bullets li::before{
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--navy);
}

/* ==========================================================================
   CTA CONTACTO (claro, con borde)
   ========================================================================== */
.cta-band{
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 70px 0;
}
.cta-inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-text h2{
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: .3em;
}
.cta-phone{ margin-bottom: .4em; }
.cta-phone a{
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.8vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  transition: color .3s;
}
.cta-phone a:hover{ color: var(--navy-3); text-decoration: underline; }
.cta-note{ font-size: .88rem; color: var(--text); margin: 0; max-width: 480px; }

/* ==========================================================================
   FOOTER (navy, 4 columnas)
   ========================================================================== */
.site-footer{ background: var(--navy); color: var(--silver-light); padding-top: 64px; }
.footer-inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 720px){ .footer-inner{ grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px){ .footer-inner{ grid-template-columns: 1.4fr .9fr .9fr 1fr; } }

.footer-logo{ height: 96px; width: auto; margin-bottom: 18px; }
.footer-col h4{
  color: var(--white); font-size: .85rem; text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 1.1em;
}
.footer-col p{ color: var(--silver-light); font-size: .88rem; }
.footer-contact-line a:hover{ text-decoration: underline; }

.footer-nav{ display: flex; flex-direction: column; gap: 10px; }
.footer-nav a{ font-size: .88rem; color: var(--silver-light); }
.footer-nav a:hover{ color: var(--white); text-decoration: underline; }

.badge-24-7{
  display: inline-block; margin: .3em 0 1em;
  padding: 6px 12px; border-radius: 2px;
  border: 1px solid var(--line-dark);
  color: var(--white);
  font-size: .72rem; font-weight: 700; letter-spacing: .03em;
  text-transform: uppercase;
}
.footer-wa-btn{ margin-top: 6px; }

.footer-bottom{ padding: 22px 0; }
.footer-bottom-inner{
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
}
.footer-bottom-inner p{ margin: 0; font-size: .78rem; color: var(--silver); }
.social-icons{ display: flex; gap: 12px; }
.social-icons a{
  width: 34px; height: 34px; border-radius: 2px;
  border: 1px solid var(--line-dark);
  color: var(--silver-light);
  display: flex; align-items: center; justify-content: center;
  transition: background-color .3s, color .3s, border-color .3s;
}
.social-icons a:hover{ background: var(--white); border-color: var(--white); color: var(--navy); }

/* ==========================================================================
   WHATSAPP FLOTANTE (botón funcional, se mantiene circular)
   ========================================================================== */
.whatsapp-float{
  position: fixed; right: 22px; bottom: 22px;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  z-index: 150;
  transition: transform .3s var(--ease);
}
.whatsapp-float:hover{ transform: scale(1.06); }

/* ==========================================================================
   MODAL "SITIO EN DESARROLLO" (navy, de marca)
   ========================================================================== */
.dev-modal-overlay{
  position: fixed; inset: 0;
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(2, 8, 24, .7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.dev-modal-overlay.is-visible{ opacity: 1; }
.dev-modal-overlay[hidden]{ display: none; }

.dev-modal{
  position: relative;
  width: 100%;
  max-width: 520px;
  background: var(--navy);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 44px 38px 38px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  transform: scale(.96) translateY(10px);
  transition: transform .45s var(--ease);
}
.dev-modal-overlay.is-visible .dev-modal{ transform: scale(1) translateY(0); }

.dev-modal__close{
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: var(--radius);
  background: transparent;
  border: 1px solid var(--line-dark);
  color: var(--silver-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background-color .3s, color .3s;
}
.dev-modal__close:hover{ background: rgba(255,255,255,.1); color: var(--white); }

.dev-modal__brand{
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 22px;
}
.dev-modal__brand img{ height: 44px; width: auto; }
.dev-modal__wordmark{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver-light);
  line-height: 1;
  padding-top: 4px;
}

.dev-modal__badge{
  display: inline-block;
  padding: 6px 14px;
  border-radius: 2px;
  border: 1px solid var(--line-dark);
  color: var(--white);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 1.2em;
}

.dev-modal__title{
  color: var(--white);
  font-size: clamp(1.2rem, 3.2vw, 1.5rem);
  margin-bottom: .55em;
}

.dev-modal__desc{
  color: var(--silver-light);
  font-size: .92rem;
  max-width: 400px;
  margin: 0 auto 1.8em;
}

.dev-modal__actions{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.dev-modal__actions .btn{ font-size: .88rem; }

body.dev-modal-open{ overflow: hidden; }

@media (max-width: 520px){
  .dev-modal{ padding: 38px 22px 30px; }
  .dev-modal__actions{ flex-direction: column; }
  .dev-modal__actions .btn{ width: 100%; }
}

/* ==========================================================================
   Utilidades / accesibilidad
   ========================================================================== */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
