/* ============================================================
    1. VARIABLES Y RESET
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-dark: #001D3D;
  --blue-mid: #1565A8;
  --blue-light: #00A3E0;
  --yellow: #F39C12;
  --yellow-pale: #FEF9E7;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --dark: #1A1A23;
  --blue-pale: #EAF3FB;
  --blue-tint: #D6E8F7;
  --text-body: #000000;
  --text-muted: #000000;
  --border: #D8E4EE;
  --green: #27AE60;
  --green-pale: #E8F8EE;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.65;
}

/* ============================================================
    2. HEADER
============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 75px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-wrap img {
  width: 55px;
  height: 65px;
  object-fit: contain;
  margin-left: 10px;
}

.logo-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--blue-dark);
  letter-spacing: -0.01em;
  margin-left: -5px;
  line-height: 1;
}

.logo-name span {
  color: var(--yellow);
}

.brand-lockup,
.footer-brand {
  display: flex;
  flex-direction: column;
}

.logo-tagline {
  margin-top: 0.15rem;
  color: var(--text-muted);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--blue-mid);
}

.btn-nav {
  background: var(--blue-mid);
  color: white !important;
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.99rem !important;
  transition: background 0.2s, transform 0.15s !important;
}

.btn-nav:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px);
}


/* ============================================================
    3. HERO
============================================================ */
.page-hero {
  margin-top: 50px;
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: flex-start;
  padding: 4.25rem 0 1.5rem;

}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 4rem;
  align-items: center;
  margin-bottom: -90px;
}

.hero-copy {
  max-width: 560px;
  padding: 0;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.hero-benefits-media {
  justify-self: end;
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 280px;
  transform: none;
  border-radius: 30px;
  border: 1px solid rgba(126, 200, 227, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(126, 200, 227, 0.07));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  text-align: center;
  overflow: hidden;
  box-shadow:
    0 2px 5px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.hero-benefits-media::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-benefits-media::after {
  display: none;
}

.hero-benefits-media span {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-benefits-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 22px;
  filter: saturate(0.96) contrast(1.03);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.hero-benefits {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0rem 0.4rem;
  max-width: 640px;
}

.hero-benefits li {
  position: relative;
  padding: 0.5rem 1rem 0.5rem 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  line-height: 1.2;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

.hero-benefits li::before {
  content: '';
  position: absolute;
  top: 0.7rem;
  left: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(243, 156, 18, 0.12);
}

.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2.9rem, 3vw, 2rem);
  color: white;
  line-height: 1.02;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.page-hero h1 em {
  font-style: italic;
  color: #7EC8E3;
}

.page-hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 520px;
}


/* ============================================================
    5. CLASES GENÉRICAS DE SECCIÓN
============================================================ */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.section-h {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
}

/* ============================================================
    6. QUÉ ES CCTV
============================================================ */
.que-es {
  padding: 5rem 0;
  max-width: 1300px;
  margin: 0 auto;
  margin-top: -2.7%;
}

.que-es-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ---------- CONTENEDOR DEL VIDEO ---------- */

.media-placeholder {
  width: fit-content;
  /* El fondo se ajusta al contenido */
  margin: 0 auto;

  background: var(--blue-pale);
  border: 2px dashed var(--blue-tint);
  border-radius: 20px;
  padding: .8rem;

  display: flex;
  justify-content: center;
  align-items: center;

  transition: .25s;
}

.media-placeholder:hover {
  border-color: var(--blue-light);
  background: #ddeef8;
}

/* Controla únicamente el tamaño del video */
.video-frame {
  width: 540px;
  max-width: 100%;
}

.video-col {
  width: 100%;
}

.video-link-card {
  display: block;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;

  box-shadow:
    0 18px 45px rgba(0, 29, 61, .22);

  transition: .25s ease;
}

.video-link-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 60px rgba(0, 29, 61, .30);
}

/* ---------- THUMBNAIL ---------- */

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #001D3D;
}

.video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, .08),
      rgba(0, 0, 0, .35));
}

/* ---------- BOTÓN PLAY ---------- */

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.play-circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 0 0 10px rgba(255, 255, 255, .20),
    0 12px 30px rgba(0, 0, 0, .30);

  transition: .25s;
}

.video-link-card:hover .play-circle {
  transform: scale(1.08);
  box-shadow:
    0 0 0 14px rgba(255, 255, 255, .25),
    0 18px 40px rgba(0, 0, 0, .35);
}

.video-play-btn svg {
  width: 22px;
  height: 22px;
}

/* ---------- FOTO ---------- */

.photo-placeholder {
  background: var(--blue-pale);
  border: 2px dashed var(--blue-tint);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- CAPTION (opcional) ---------- */

.video-caption {
  margin-top: 1rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: .8rem 1rem;

  display: flex;
  align-items: center;
  gap: .75rem;

  font-size: .8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, .6);
}

.caption-icon {
  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background: rgba(243, 156, 18, .12);
  border-radius: 6px;
}

.caption-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 2;
}


/* ============================================================
    7. CÓMO FUNCIONA
============================================================ */
.como-funciona {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2.5rem;
}

.como-funciona-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.pasos-grid-tech {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  margin-left: 1%;
  position: relative;
}

.scanner-line {
  position: absolute;
  top: 30px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: rgba(13, 122, 191, 0.1);
  z-index: 0;
}

.scanner-line::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100px;
  height: 4px;
  background: var(--blue-mid);
  box-shadow: 0 0 10px var(--blue-light), 0 0 20px var(--blue-light);
  border-radius: 50px;
  animation: scanMove 4s infinite ease-in-out alternate;
}

@keyframes scanMove {
  0% {
    left: 0;
  }

  100% {
    left: calc(100% - 100px);
  }
}

.paso-card-tech {
  background: var(--white);
  border: 2px solid var(--blue-light);
  box-shadow: 0 5px 15px rgba(10, 61, 107, 0.05);
  border-radius: 18px;
  padding: 1.1rem 1.1rem;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 5rem;
  row-gap: 0.8rem;
  align-content: start;
  align-items: start;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.paso-card-tech:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(21, 101, 168, 0.1);
  border-color: var(--blue-tint);
}

.tech-glow {
  position: absolute;
  right: -50px;
  width: 120px;
  height: 120px;
  background: var(--blue-pale);
  filter: blur(30px);
  opacity: 0.8;
  border-radius: 50%;
  pointer-events: none;
}

.tech-glow.delay-1 {
  background: var(--blue-tint);
}

.tech-glow.delay-2 {
  background: var(--yellow-pale);
  opacity: 900;
}

.tech-glow.delay-3 {
  background: var(--green-pale);
  opacity: 900;
}

.paso-num {
  grid-column: 1;
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #d98a10;
  line-height: 1;
}

.paso-icon {
  grid-column: 2;
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border: 1px solid var(--blue-tint);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  color: var(--blue-mid);
  justify-self: start;
  align-self: center;
}

.paso-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.paso-card-tech h3 {
  grid-column: 1 / -1;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.2;
  min-height: 2.8rem;
}

.paso-card-tech p {
  grid-column: 1 / -1;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: -25px;
  align-self: start;
}


/* ============================================================
    7B. RESPONSIVE
============================================================ */
@media (max-width: 768px) {
  .alcantarillado-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .alcantarillado-text {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }

  .btn-alcantarillado {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .alcantarillado {
    padding: 1.5rem 1.25rem;
  }
}


/* ============================================================
    8. GALERÍA
============================================================ */
.galeria {
  background: var(--blue-tint);
  padding: 1rem 2rem;
  position: relative;
  overflow: hidden;
}

.galeria>* {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.galeria .section-eyebrow {
  color: var(--yellow);
}

.galeria .section-h {
  color: var(--blue-dark);
}

.galeria .section-sub {
  color: var(--blue-dark);
}

.galeria-carousel {
  position: relative;
  margin-top: 0%;
  padding: 0 3.2rem;
}

.galeria-viewport {
  overflow: hidden;
  padding: 1.25rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.9) 12%, rgba(0, 0, 0, 0.9) 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.9) 12%, rgba(0, 0, 0, 0.9) 88%, transparent 100%);
}

.galeria-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 400px;
  transition: transform 0.45s ease;
}

.galeria-slide {
  flex: 0 0 440px;
  width: 440px;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(21, 101, 168, 0.16);
  background: linear-gradient(180deg, #dff3ef, #d9eef9);
  box-shadow: 0 16px 32px rgba(10, 61, 107, 0.10);
  transform: scale(0.78);
  opacity: 0.22;
  transition: transform 0.45s ease, opacity 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
  filter: saturate(0.55) blur(1px);
}

.galeria-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galeria-slide.is-active {
  transform: scale(1.06);
  opacity: 1;
  box-shadow: 0 24px 48px rgba(10, 61, 107, 0.18);
  filter: none;
}

.galeria-slide.is-near {
  transform: scale(0.88);
  opacity: 0.42;
  filter: saturate(0.72) blur(0.4px);
}

.galeria-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(10, 61, 107, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  z-index: 1;
}

.galeria-arrow:hover {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 14px 28px rgba(10, 61, 107, 0.18);
  background: #1d83d6;
}

.galeria-arrow svg {
  width: 35px;
  height: 35px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.galeria-arrow-prev {
  left: 0;
}

.galeria-arrow-next {
  right: 0;
}


/* ============================================================
    12. FOOTER
============================================================ */
footer {
  background: var(--blue-dark);
  padding: 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner .logo-name {
  color: white;
  font-size: 2rem;
  text-decoration: none;
}

.footer-brand {
  text-decoration: none;
}

.footer-logo .logo-tagline {
  color: rgba(255, 255, 255, 0.72);
  font-size: .70rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.90rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1rem auto 0;
  text-align: center;
  font-size: 0.90rem;
  color: rgba(255, 255, 255, 0.3);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.social-links a:hover {
  background: var(--blue-mid);
  transform: translateY(-3px);
}

.social-links img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.footer-copy {
  font-size: 0.90rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
    13. RESPONSIVE
============================================================ */

/* =========================
   TABLETS (1024px)
========================= */
@media (max-width:1024px) {

  /* HEADER */

  header {
    height: auto;
    padding: 1rem 2rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  nav {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }

  /* HERO */

  .page-hero {
    margin-top: 135px;
    padding: 3.5rem 2rem 2rem;
    min-height: auto;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 0;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-benefits-media {
    justify-self: center;
    width: 100%;
    max-width: 650px;
    height: 340px;
  }

  .hero-benefits {
    max-width: 100%;
  }

  /* QUE ES */

  .que-es {
    padding: 4rem 2rem;
    margin-top: 0;
  }

  .que-es-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* PASOS */

  .como-funciona {
    padding: 3rem 2rem;
  }

  .pasos-grid-tech {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-left: 0;
  }

  .scanner-line {
    display: none;
  }

  /* CTA */

  .alcantarillado {
    padding: 2rem;
  }

  .alcantarillado-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }

  .alcantarillado-text {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .btn-alcantarillado {
    margin-right: 0;
  }

  /* GALERÍA */

  .galeria {
    padding: 2rem;
  }

  .galeria-track {
    min-height: 280px;
  }

  .galeria-slide {
    width: 280px;
    flex-basis: 280px;
  }

}

/* =========================
   CELULARES (768px)
========================= */

@media (max-width:768px) {

  /* HEADER */

  header {
    padding: 1rem;
  }

  .logo-wrap {
    justify-content: center;
    gap: 12px;
  }

  .logo-wrap img {
    width: 48px;
    height: 58px;
    margin-left: 0;
  }

  .logo-name {
    font-size: 1.7rem;
    margin-left: 0;
  }

  .logo-tagline {
    font-size: .58rem;
  }

  nav {
    width: 100%;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  nav a {
    font-size: .95rem;
  }

  /* HERO */

  .page-hero {
    margin-top: 165px;
    padding: 2.5rem 1rem;
  }

  .page-hero h1 {
    font-size: 2.1rem;
  }

  .page-hero-desc {
    font-size: .95rem;
  }

  .hero-benefits {
    justify-content: center;
    gap: .6rem;
  }

  .hero-benefits li {
    white-space: normal;
    text-align: center;
  }

  .hero-benefits-media {
    height: 240px;
  }

  /* SECCIONES */

  .que-es,
  .como-funciona,
  .galeria {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-h {
    font-size: 2rem;
  }

  /* TARJETAS */

  .paso-card-tech {
    padding: 1.2rem;
    column-gap: 1.3rem;
  }

  .paso-card-tech h3 {
    min-height: auto;
    font-size: 1.3rem;
  }

  .paso-card-tech p {
    margin-top: 0;
    font-size: .95rem;
  }

  /* CTA */

  .alcantarillado {
    padding: 1.8rem 1rem;
  }

  .alcantarillado-text h3 {
    white-space: normal;
  }

  .btn-alcantarillado {
    width: 100%;
    justify-content: center;
  }

  /* GALERÍA */

  .galeria-carousel {
    padding: 0 2.3rem;
  }

  .galeria-track {
    min-height: 220px;
  }

  .galeria-slide {
    width: 190px;
    flex-basis: 190px;
  }

  .galeria-arrow {
    width: 40px;
    height: 40px;
  }

  .galeria-arrow svg {
    width: 26px;
    height: 26px;
  }

  /* FOOTER */

  footer {
    padding: 2rem 1rem 1.3rem;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-inner .logo-name {
    font-size: 1.8rem;
    margin-left: 0;
  }

  .footer-logo .logo-tagline {
    font-size: .68rem;
    text-align: center;
  }

  .social-links {
    width: 100%;
    justify-content: center;
    gap: 1rem;
  }

  .social-links a {
    width: 42px;
    height: 42px;
  }

  .social-links img {
    width: 30px;
    height: 30px;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 1rem;
  }

  .footer-copy {
    font-size: .82rem;
    line-height: 1.5;
  }

}

/* =========================
   CELULARES PEQUEÑOS (480px)
========================= */

@media (max-width:480px) {

  header {
    padding: .9rem;
  }

  nav {
    gap: .8rem;
  }

  nav a {
    font-size: .85rem;
  }

  .page-hero {
    margin-top: 175px;
    padding: 2rem 1rem;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .page-hero-desc {
    font-size: .9rem;
  }

  .hero-benefits {
    flex-direction: column;
    align-items: center;
  }

  .hero-benefits li {
    width: 100%;
    text-align: left;
  }

  .hero-benefits-media {
    height: 190px;
  }

  .section-h {
    font-size: 1.7rem;
  }

  .paso-num {
    font-size: 2rem;
  }

  .paso-icon {
    width: 38px;
    height: 38px;
  }

  .galeria-carousel {
    padding: 0 1.8rem;
  }

  .galeria-slide {
    width: 150px;
    flex-basis: 150px;
  }

  .galeria-arrow {
    width: 34px;
    height: 34px;
  }

  .footer-inner .logo-name {
    font-size: 1.6rem;
  }

  .footer-logo .logo-tagline {
    font-size: .62rem;
  }

  .social-links a {
    width: 38px;
    height: 38px;
  }

  .social-links img {
    width: 28px;
    height: 28px;
  }

  .footer-copy {
    font-size: .75rem;
    padding: 0 .5rem;
  }

}
