@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&display=swap');

/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* 🔥 BASE que responde al ZOOM del navegador */
  font-size: 100%; /* = 16px, pero escala con zoom */
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background: #000;
  font-family: 'Space Grotesk', sans-serif;
  color: #fff;
  /* 🔥 Escalamos TODO desde aquí */
  font-size: 1em;
}

/* =========================
   HEADER
========================= */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 4.375em; /* 70px */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.1875em; /* 35px */
  z-index: 1000;
  background: rgba(0,0,0,1);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.header.scrolled {
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(0.5em);
}

.logo img {
  height: 3.4375em !important; /* 55px */
}

.social img {
  width: 1.875em; /* 30px */
  margin-left: 0.9375em; /* 15px */
  transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1);
  cursor: pointer;
}

/* HOVER */
.social img:hover {
  transform: scale(1.18) translateY(-0.125em);
}

/* NAV */
.nav {
  display: flex;
  gap: 1.75em; /* 28px */
  margin-left: 6.25em; /* 100px */
  margin-right: auto;
}

.nav a {
  position: relative;
  color: #fff;
  font-size: 0.875em; /* 14px */
  letter-spacing: 0.04em;
  text-transform: capitalize;
  text-decoration: none;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.125em;
  width: 0;
  height: 2px;
  background: #ff1e00;
  transition: width 2s cubic-bezier(0.25,0.8,0.25,1);
}

.nav a:hover::after {
  width: 100%;
}

/* =========================
   HERO
========================= */

.hero {
  height: 100vh;
  padding-top: 4.375em;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   PROMOS
========================= */

.promos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1.375em; /* 22px */
  padding: 4.375em 2.5em; /* 70px 40px */
}

.promo img {
  width: 100%;
  transition: transform 1.2s cubic-bezier(0.25,0.8,0.25,1);
}

.promo:hover img {
  transform: scale(1.06);
}

.promo-info {
  margin-top: 1em;
}

.promo-info h3 {
  color: #ff1e00;
  font-size: 1.125em; /* 18px */
  margin-bottom: 0.375em;
}

.promo-info p {
  font-size: 0.8125em; /* 13px */
  color: #fff;
  line-height: 1.5;
}

/* =========================
   COMO TRABAJAMOS
========================= */
.como-trabajamos {
  display: grid;
  grid-template-columns: 40% 60%;
  padding: 6.875em 3.75em; /* 110px 60px */
  position: relative;
  z-index: 1;
}

/* FONDO SUTIL */
.como-trabajamos::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.015);
  border-radius: 1.25em;
  z-index: -1;
}

.ct-left {
  padding-left: 5em;
}

.ct-left h2 {
  font-size: 2.75em; /* 44px */
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: #ff1e00;
}

.ct-right {
  max-width: 45em;
  margin-left: 1.875em;
}

.ct-right p {
  margin-bottom: 1.125em;
  font-size: 0.9375em; /* 15px */
  line-height: 1.7;
}

/* =========================
   SLIDER TRABAJOS
========================= */

.trabajos-slider {
  padding: 6.875em 0 5em;
}

.trabajos-title {
  font-size: 2.1875em; /* 35px */
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 3.125em;
  text-align: center;
}

.trabajos-wrapper {
  position: relative;
  padding: 1.875em 5em;
  background: url("img/fondo-slider.jpg") center / cover no-repeat;
}

.trabajos-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.30);
}

.trabajos-viewport,
.trabajos-btn {
  position: relative;
  z-index: 1;
}

.trabajos-viewport {
  overflow: hidden;
}

.trabajos-track {
  display: flex;
  gap: 1.375em;
  transition: transform 0.9s cubic-bezier(0.25,0.8,0.25,1);
}

.trabajo-item {
  flex: 0 0 calc(33.333% - 0.9375em);
  border-radius: 0.875em;
  overflow: hidden;
  background: #111;
  box-shadow: 0 1.125em 2.1875em rgba(0,0,0,0.55);
}

.trabajo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FLECHAS */
.trabajos-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75em;
  height: 2.75em;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(0.375em);
  border: none;
  font-size: 1.375em;
  color: #fff;
  cursor: pointer;
}

.trabajos-btn.prev { left: 1.25em; }
.trabajos-btn.next { right: 1.25em; }

/* =========================
   DISEÑO – BANNERS
========================= */

.diseno-banners {
  padding: 7.5em 3.125em;
}

.diseno-banners-title {
  text-align: center;
  font-size: 2.1875em;
  margin-bottom: 5em;
}

.diseno-banners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75em;
}

.diseno-banner {
  display: flex;
  flex-direction: column;
  gap: 1.125em;
}

/* =========================================
   LINEA GRIS ENTRE TITULO Y TEXTO (DISEÑO)
========================================= */

.diseno-banner-texto h3 {
  color: #ff1e00;
  font-weight: 600;
  letter-spacing: 0.02em;
}



.diseno-banner-texto p {
  color: #ccc;
  font-size: 0.875em;
  line-height: 1.6;
}

.diseno-banner-imagen {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 0.875em;
}

.diseno-banner-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======================================================
   TITULOS PRINCIPALES – LINEA ANIMADA AUTOMÁTICA
   ====================================================== */

/* BASE COMÚN */
.trabajos-title,
.diseno-banners-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.625em;
}

/* LINEA */
.trabajos-title::after,
.diseno-banners-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #ff1e00;
  animation: lineaTitulo 1.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* ANIMACIÓN */
@keyframes lineaTitulo {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.trabajos-slider,
.diseno-banners {
  text-align: center;
}

/* ======================================================
   TITULOS CENTRADOS – LINEA ANIMADA EN LOOP
   ====================================================== */

.trabajos-title,
.diseno-banners-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5em;
}

/* LINEA */
.trabajos-title::after,
.diseno-banners-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: #ff1e00;
  left: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  animation: lineaTituloLoop 6s cubic-bezier(0.25,0.8,0.25,1) infinite;
}

/* ANIMACIÓN EN LOOP */
@keyframes lineaTituloLoop {
  0% {
    transform: scaleX(0);
    opacity: 1;
  }
  40% {
    transform: scaleX(1);
    opacity: 1;
  }
  70% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}

/* =========================================
   LINEA FINA BAJO TEXTO DE PROMOS
========================================= */

.promo-info {
  position: relative;
  padding-bottom: 1em;
}

.promo-info::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

/* =========================================
   FONDO SUTIL PARA BLOQUES DE DISEÑO
========================================= */

.diseno-banner {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.75em 1.375em 1.875em;
  border-radius: 1em;
}

/* separa mejor texto e imagen */
.diseno-banner-texto {
  margin-bottom: 1.125em;
}

/* =========================================
   FRASE EN MOVIMIENTO
========================================= */

.frase-movimiento {
  width: 100%;
  overflow: hidden;
  margin: 2.1875em 0 3.4375em;
}

.frase-track {
  display: flex;
  width: max-content;
  animation: scroll-frase 28s linear infinite;
}

.frase-track span {
  font-family: 'Archivo', sans-serif;
  white-space: nowrap;
  font-size: 1.5625em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bebebe;
  padding-right: 2.5em;
}

/* Animación */
@keyframes scroll-frase {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =========================================
   WHATSAPP FLOTANTE
========================================= */

.wsp-float {
  position: fixed;
  right: 1.75em;
  bottom: 1.75em;
  z-index: 9999;
  overflow: hidden;
  width: 3.75em;
  height: 3.75em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0.625em 1.875em rgba(0,0,0,0.45);
  transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1),
              box-shadow 0.35s ease;
}

.wsp-float img {
  transition: transform 0.35s ease;
  width: 3.4375em;
  height: 3.4375em;
  filter: brightness(1.1);
}

/* HOVER */
.wsp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 0.875em 2.5em rgba(0,0,0,0.65);
}

.cta-final {
  padding: 7.5em 3.75em;
  background: #000;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75em;
}

/* ===== CALCULADORA ===== */

.cta-calculadora {
  background: rgba(255,255,255,0.04);
  padding: 2.5em;
  border-radius: 1.125em;
}

.cta-calculadora h2 {
  font-size: 2em;
  margin-bottom: 1.5625em;
  color: #ff1e00;
}

.cta-calculadora label {
  display: block;
  margin: 1.125em 0 0.375em;
  font-size: 0.875em;
  color: #ccc;
}

.cta-calculadora input,
.cta-calculadora select {
  width: 100%;
  padding: 0.625em;
  background: #111;
  border: 1px solid #222;
  color: #fff;
  border-radius: 0.375em;
  font-size: 0.875em;
}

.extras {
  margin-top: 1.125em;
}

.extras-title {
  color: #ff1e00;
  font-weight: 600;
  margin-bottom: 0.375em;
}

.extras ul {
  padding-left: 1.125em;
}

.extras li {
  font-size: 0.875em;
  color: #ddd;
  margin-bottom: 0.25em;
}

.total {
  margin-top: 1.5625em;
}

#precio-unitario {
  font-size: 1.375em;
  font-weight: 600;
}

#precio-aclaracion {
  font-size: 0.8125em;
  color: #aaa;
  margin-top: 0.25em;
}

/* ===== FORMULARIO ===== */

.cta-form {
  background: rgba(255,255,255,0.04);
  padding: 2.5em;
  border-radius: 1.125em;
}

.cta-form h2 {
  font-size: 2em;
  margin-bottom: 1.5625em;
  color: #ff1e00;
}

.form-msg {
  margin-top: 1em;
  font-size: 0.875em;
  letter-spacing: 0.04em;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 0.75em;
  margin-bottom: 0.875em;
  background: #111;
  border: 1px solid #222;
  color: #fff;
  border-radius: 0.375em;
  font-size: 0.875em;
}

.cta-form textarea {
  min-height: 7.5em;
  resize: none;
}

.cta-form button {
  width: 100%;
  padding: 0.875em;
  background: #ff1e00;
  color: #fff;
  border: none;
  border-radius: 0.5em;
  font-size: 0.9375em;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.cta-form button:hover {
  transform: scale(1.03);
}

/* =========================
   SERVICIOS EXTRA – AJUSTE FINAL
========================= */

.extras-info {
  margin-top: 1.625em;
  padding-top: 0.875em;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.extras-info strong {
  display: block;
  margin-bottom: 0.75em;
  color: #ff1e00;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.extras-info ul {
  list-style: none;
  padding-left: 0;
}

.extras-info li {
  font-size: 0.875em;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 0.375em;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #050505;
  padding: 5em 2.5em 1.875em;
  border-top: 1px solid rgba(17, 17, 17, 0.3);
}

.footer-inner {
  max-width: 87.5em;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5em;
  align-items: flex-start;
}

/* COLUMNAS */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}

/* REDES */
.footer-redes {
  flex-direction: row;
  gap: 1.125em;
}

.footer-redes img {
  width: 1.625em;
  height: 1.625em;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-redes a:hover img {
  transform: scale(1.15);
  opacity: 1;
}

/* MENU */
.footer-menu a {
  color: #ccc;
  font-size: 0.875em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #fff;
}

/* CONTACTO */
.footer-contacto p {
  font-size: 0.875em;
  color: #ccc;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 3.125em;
  padding-top: 1.125em;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.75em;
  color: #777;
}

section {
  scroll-margin-top: 5.625em;
}

/* =========================
   SEPARADOR BROCHA ANIMADA
========================= */
.separador-brocha {
  background: #000;
  padding: 0.625em 0;
  overflow: hidden;
}

.separador-brocha svg {
  width: 100%;
  height: 7.5em;
}

.brocha-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  animation: dibujarBrocha 10s ease-in-out infinite;
  opacity: 0.2;
}

/* CMYK */
.cmyk-c { stroke: #00ffff; animation-delay: 0s; }
.cmyk-m { stroke: #ff2fa1; animation-delay: .6s; }
.cmyk-y { stroke: #ffd400; animation-delay: 1.2s; }
.cmyk-k { stroke: #202020; animation-delay: 1.8s; }

@keyframes dibujarBrocha {
  0% { stroke-dashoffset: 2200; opacity: 0; }
  20% { opacity: 1; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -2200; opacity: 0; }
}

/* =========================
   REDES SOCIALES – FIX DOTS
========================= */

.social a,
.footer-redes a {
  text-decoration: none;
  position: relative;
}

/* elimina cualquier ::after heredado */
.social a::after,
.footer-redes a::after {
  content: none !important;
}

/* elimina foco azul/puntos raros */
.social a:focus,
.footer-redes a:focus {
  outline: none;
}

/* opcional: mejor alineación */
.social,
.footer-redes {
  display: flex;
  gap: 0.875em;
  align-items: center;
}
/* =========================
   RESPONSIVE
========================= */

/* 📱 MOBILE */
@media (max-width: 768px) {

}

/* 📲 TABLET */
@media (min-width: 769px) and (max-width: 1024px) {

}

@media (max-width: 768px) {

  .header {
    padding: 0 1.125em; /* 18px */
    height: auto;
  }

  .nav {
    display: none; /* después hacemos menú hamburguesa si querés */
  }

  .logo img {
    height: 2.8125em; /* 45px */
  }

  .social img {
    width: 1.625em; /* 26px */
    margin-left: 0.625em; /* 10px */
  }
}

@media (max-width: 768px) {

  .promos {
    grid-template-columns: 1fr;
    padding: 2.5em 1.25em; /* 40px 20px */
    gap: 1.75em; /* 28px */
  }

  .promo-info h3 {
    font-size: 1.0625em; /* 17px */
  }

  .promo-info p {
    font-size: 0.875em; /* 14px */
  }
}

@media (max-width: 768px) {

  .como-trabajamos {
    grid-template-columns: 1fr;
    padding: 4.375em 1.25em; /* 70px 20px */
  }

  .como-trabajamos::before {
    display: none;
  }

  .ct-left {
    padding-left: 0;
    margin-bottom: 1.875em; /* 30px */
  }

  .ct-left h2 {
    font-size: 2.125em; /* 34px */
    text-align: left;
  }

  .ct-right {
    margin-left: 0;
  }
}

@media (max-width: 768px) {

  .trabajo-item {
    flex: 0 0 100%;
  }

  .trabajos-wrapper {
    padding: 1.875em 1.25em; /* 30px 20px */
  }

  .trabajos-title {
    font-size: 2em; /* 32px */
  }
}

@media (max-width: 768px) {

  .diseno-banners {
    padding: 5em 1.25em; /* 80px 20px */
  }

  .diseno-banners-grid {
    grid-template-columns: 1fr;
    gap: 1.875em; /* 30px */
  }

  .diseno-banners-title {
    font-size: 2em; /* 32px */
  }
}

@media (max-width: 768px) {

  .separador-brocha {
    padding: 1.875em 0; /* 30px */
  }

  .separador-brocha svg {
    height: 7.5em; /* 120px */
  }
}

@media (max-width: 768px) {

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 2.5em; /* 40px */
  }

  .cta-calculadora,
  .cta-form {
    padding: 1.5625em; /* 25px */
  }
}

@media (max-width: 768px) {

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.875em; /* 30px */
  }

  .footer-redes {
    justify-content: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {

  .promos {
    grid-template-columns: repeat(2, 1fr);
  }

  .diseno-banners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 4.375em; /* 70px */
  padding: 0 2.1875em; /* 35px */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  z-index: 1000;
}

.logo img {
  height: 2.375em; /* 38px */
}

.social {
  display: flex;
  gap: 0.875em; /* 14px */
}

.social img {
  width: 1.875em; /* 30px */
  cursor: pointer;
  transition: transform 0.3s ease;
}

.social img:hover {
  transform: scale(1.15);
}

.nav {
  display: flex;
  gap: 1.75em; /* 28px */
  margin-left: 6.25em; /* 100px */
  margin-right: auto;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3125em; /* 5px */
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.375em; /* 22px */
  height: 3px;
  background: #fff;
}

@media (max-width: 768px) {

  /* HEADER FLEX */
  .header {
    height: 4.25em; /* 68px */
    padding: 0 1em; /* 16px */
    
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* HAMBURGUESA IZQUIERDA */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.25em; /* 4px */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5em; /* 8px */
    order: 1; /* primero */
    position: relative;
    width: 1.875em; /* 30px */
    height: 1.875em; /* 30px */
    justify-content: center;
  }

  .menu-toggle span {
    width: 1.375em; /* 22px */
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: absolute;
  }

  .menu-toggle span:nth-child(1) {
    top: 0.5em; /* 8px */
  }

  .menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-toggle span:nth-child(3) {
    bottom: 0.5em; /* 8px */
  }

  /* HAMBURGUESA ACTIVA → X */
  .menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-1.25em); /* -20px */
  }

  .menu-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }

  /* LOGO CENTRADO */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    order: 2;
  }

  .logo img {
    height: 2.625em !important; /* 42px - forzamos el tamaño en mobile */
    display: block;
  }

  /* REDES DERECHA */
  .social {
    display: flex;
    gap: 0; /* bien juntas */
    align-items: center;
    order: 3; /* último */
    margin-left: auto;
  }

  .social img {
    width: 1.375em; /* 22px - un poco más chicas también */
    height: 1.375em; /* 22px */
  }

  /* NAV DESPLEGABLE LATERAL */
  .nav {
    position: fixed;
    top: 4.25em; /* 68px */
    left: -13.75em; /* -220px - empieza oculto a la izquierda */
    width: 13.75em; /* 220px - más angosto */
    height: auto; /* altura automática */
    max-height: 25em; /* 400px - límite de altura */
    background: rgba(0, 0, 0, 0.85); /* más transparente */
    backdrop-filter: blur(0.75em); /* 12px - más blur para compensar */
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
    gap: 0;
    padding: 1.25em; /* 20px - menos padding */
    z-index: 999;
    margin: 0;
    
    transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0.125em 0 1.25em rgba(0, 0, 0, 0.5); /* 2px 0 20px */
    border-radius: 0 0 0.75em 0; /* 12px - redondeo abajo derecha */
  }

  .nav.active {
    left: 0; /* se desliza desde la izquierda */
  }

  .nav a {
    width: 100%;
    padding: 0.625em 0; /* 10px - más juntas verticalmente */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8125em; /* 13px - letras más chicas */
    letter-spacing: 0.05em;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  /* HERO MOBILE */
  .hero {
    height: auto; /* altura automática */
    min-height: 0; /* sin altura mínima */
    padding-top: 4.25em; /* 68px - solo el espacio del header */
    padding-bottom: 0; /* sin espacio abajo */
  }

  .hero img {
    content: url('img/hero-mobile.jpg');
    width: 100%;
    height: auto; /* altura según proporción de la imagen */
    display: block; /* elimina espacio extra */
    object-fit: cover;
  }

  /* WHATSAPP MÁS CHICO */
  .wsp-float {
    width: 3.125em; /* 50px */
    height: 3.125em; /* 50px */
    right: 1.125em; /* 18px */
    bottom: 1.125em; /* 18px */
  }

  .wsp-float img {
    width: 2.8125em; /* 45px */
    height: 2.8125em; /* 45px */
  }
}
