/* styles.css */

/* Minimal reset (NO estilos visuales globales, solo normalización básica) */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

/* ========================= SECTION 0 ========================= */
.section-0 {
  position: sticky;
  top: 0;
  z-index: 9999;

  /* look premium similar al modelo */
  background: #000;
  backdrop-filter: blur(10px);
}

.section-0 .section-0__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;

  /* altura/aire como el modelo */
  padding: 18px 38px;
  min-height: 74px;

  /* contenido centrado (no pegado a bordes) */
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;

  gap: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.section-0 .section-0__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* ESTILOS LOGO (MODIFICA AQUÍ TAMAÑO/PIXELS/ALINEACIÓN) */
.section-0 .section-0__logoImg {
  width: 170px;          /* <-- tamaño más parecido al modelo */
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.95;
}

/* Alternativa si usas texto */
.section-0 .section-0__brandText {
  color: #ffffff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 14px;
}

.section-0 .section-0__nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.section-0 .section-0__link {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* look modelo */
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;

  padding: 10px 2px;
  transition: opacity 180ms ease, color 180ms ease;
}

.section-0 .section-0__link:hover {
  color: #ffffff;
  opacity: 1;
}

.section-0 .section-0__store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;

padding: 5px 10px 5px 10px;
  border-radius: 999px;

  /* modelo: oscuro / outlined (no blanco) */
  background: #ffffff;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.22);

  transition: background 180ms ease, border-color 180ms ease;
}

.section-0 .section-0__store:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.32);
  transform: none;
}

.section-0 .section-0__navToggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Hamburguesa con ícono (Font Awesome) */
.section-0 .section-0__burger {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.section-0 .section-0__burgerIcon {
  color: #ffffff;
  font-size: 18px;
}

.section-0 .section-0__mobilePanel {
  display: none;
  position: absolute;

  /* alinear al ancho del contenedor centrado */
  left: 38px;
  right: 38px;

  top: 74px;
  background: rgba(10,10,14,0.98);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 10px;
}

.section-0 .section-0__mobileLink {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.90);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 12px;
  font-weight: 800;
  padding: 12px 10px;
  border-radius: 12px;
}

.section-0 .section-0__mobileLink:hover {
  background: rgba(255,255,255,0.06);
}

.section-0 .section-0__mobileStore {
  display: table;
  color: #ffffff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(255,255,255,0.22);
  text-align: left;
}

.section-0 .section-0__mobileStore:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.32);
  transform: none;
}

@media (max-width: 920px) {
  .section-0 .section-0__nav { display: none; }
  .section-0 .section-0__burger { display: inline-flex; }
  .section-0 .section-0__navToggle:checked ~ .section-0__mobilePanel { display: block; }
}

@media (max-width: 520px) {
  .section-0 .section-0__bar { padding: 14px 14px; min-height: 64px; }
  .section-0 .section-0__mobilePanel { left: 14px; right: 14px; top: 64px; }
  .section-0 .section-0__logoImg { width: 140px; }
}


/* ========================= SECTION 1 ========================= */
.section-1 {
  position: relative;
  min-height: 70vh;
  width: 100%;
  overflow: hidden;

  /* CAMBIAR FONDO (imagen o GIF) aquí */
  background-image: url("assets/banner-hero.jpg");
  background-size: cover;
  background-position: center;
}

.section-1 .section-1__bgVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-1 .section-1__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.52), rgba(0,0,0,0.62));
}

.section-1 .section-1__content {
  position: relative;
  z-index: 1;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 18px;
  text-align: center;
}

.section-1 .section-1__headline {
  margin: 0;
  color: #ffffff;

  /* Serif elegante como el modelo */
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  letter-spacing: -0.01em;

  font-size: 58px;
  max-width: 980px;
  line-height: 1.14;

  text-shadow: 0 12px 34px rgba(0,0,0,0.58);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Si en tu texto usas <em> o <i>, esto hace el énfasis tipo “machine / landscape” */
.section-1 .section-1__headline em,
.section-1 .section-1__headline i {
  font-style: italic;
  font-weight: 500;
}

@media (max-width: 900px) {
  .section-1 .section-1__headline { font-size: 44px; }
  .section-1 { min-height: 64vh; }
  .section-1 .section-1__content { min-height: 64vh; }
}

@media (max-width: 520px) {
  .section-1 .section-1__headline { font-size: 32px; }
  .section-1 { min-height: 58vh; }
  .section-1 .section-1__content { min-height: 58vh; }
}
/* ========================= SECTION 2 ========================= */
.section-2 {
  width: 100%;
  padding: 64px 18px;
  background: #111119;
}

.section-2 .section-2__wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.section-2 .section-2__image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  display: block;
}

/* ===== TITULO estilo elegante serif como la imagen ===== */
.section-2 .section-2__title {
  margin: 0 0 18px;
  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.01em;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Si usas <em> en el nombre */
.section-2 .section-2__title em,
.section-2 .section-2__title i {
  font-style: italic;
  font-weight: 500;
}

/* ===== PARRAFOS más finos y elegantes ===== */
.section-2 .section-2__paragraph {
  margin: 0 0 20px;
  color: rgba(255,255,255,0.72);

  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
}

/* ===== BOTON minimal outlined ===== */
.section-2 .section-2__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;

  color: #ffffff;
  background: transparent;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);

  transition: background 180ms ease, border-color 180ms ease;
}

.section-2 .section-2__cta:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
}

/* Responsive */
@media (max-width: 980px) {
  .section-2 .section-2__wrap { grid-template-columns: 1fr; }
  .section-2 .section-2__image { height: 360px; }
}

@media (max-width: 520px) {
  .section-2 { padding: 54px 14px; }
  .section-2 .section-2__title { font-size: 30px; }
  .section-2 .section-2__image { height: 280px; border-radius: 18px; }
}

/* ========================= SECTION 3 ========================= */
.section-3{
  width: 100%;
  padding: 88px 18px 20px;
  background: radial-gradient(1200px 420px at 50% 18%, rgb(0 253 255 / 10%), rgba(0, 0, 0, 0.0) 55%), linear-gradient(180deg, #0a0a0f 0%, #09090d 38%, #07070b 100%);
  text-align: center;
  overflow: hidden;
}

.section-3 .section-3__wrap{
  max-width: 1120px;
  margin: 0 auto;
}

.section-3 .section-3__header{
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 44px;
}

.section-3 .section-3__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);

  color: rgba(255,255,255,0.84);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-3 .section-3__title{
  margin: 0;
  color: #ffffff;

  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;

  font-size: 58px;
  max-width: 920px;

  text-shadow: 0 18px 46px rgba(0,0,0,0.60);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.section-3 .section-3__desc{
  margin: 0;
  max-width: 720px;

  color: rgba(255,255,255,0.66);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.75;
}

.section-3 .section-3__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
    margin-top: 25px;

  padding: 12px 22px;
  border-radius: 999px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;

  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;

  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.section-3 .section-3__cta:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.26);
}

/* ===== Polaroid Fan ===== */
.section-3 .section-3__fan{
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;

  padding-top: 18px;
  padding-bottom: 10px;
}

.section-3 .section-3__polaroid{


  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  box-shadow:
    0 30px 70px rgba(0,0,0,0.62),
    inset 0 1px 0 rgba(255,255,255,0.10);

padding: 5px 5px 10px;
  text-align: center;

  transform-origin: 50% 110%;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.section-3 .section-3__polaroidImg{
  width: 100%;
  height: calc(100% - 34px);
  border-radius: 18px;
  overflow: hidden;

  background: radial-gradient(600px 300px at 40% 25%, rgba(255,255,255,0.18), rgba(0,0,0,0) 58%),
              linear-gradient(180deg, rgba(255,255,255,0.10), rgba(0,0,0,0.16));
  border: 1px solid rgba(255,255,255,0.10);
}

.section-3 .section-3__polaroidImg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-3 .section-3__polaroidLabel{
  margin: 10px 4px 0;
  color: rgba(255,255,255,0.68);

  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* posiciones/rotaciones tipo screenshot */
.section-3 .section-3__polaroid--1{ transform: translateY(18px) rotate(-10deg); }
.section-3 .section-3__polaroid--2{ transform: translateY(6px) rotate(-4deg); }
.section-3 .section-3__polaroid--3{ transform: translateY(6px) rotate(4deg); }
.section-3 .section-3__polaroid--4{ transform: translateY(18px) rotate(10deg); }

/* hover: “sube” y se endereza un poco */
@media (hover:hover) and (pointer:fine){
  .section-3 .section-3__polaroid:hover{
    transform: translateY(-6px) rotate(0deg) scale(1.03);
    border-color: rgba(255,255,255,0.18);
    box-shadow:
      0 40px 90px rgba(0,0,0,0.68),
      inset 0 1px 0 rgba(255,255,255,0.12);
    z-index: 2;
  }
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .section-3{ padding: 76px 18px 92px; }
  .section-3 .section-3__title{ font-size: 44px; }
  .section-3 .section-3__fan{ gap: 14px; }
  .section-3 .section-3__polaroid{ width: 220px; max-width: 40vw; }
}

@media (max-width: 720px){
  .section-3 .section-3__fan{
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 6px 8px;
    scrollbar-width: none;
  }
  .section-3 .section-3__fan::-webkit-scrollbar{ display:none; }
  /* FIX: que no se “corten” las curvas al hacer scroll horizontal */
  .section-3{ overflow: visible; }
  .section-3 .section-3__fan{
    padding-left: 18px;
    padding-right: 18px;
    scroll-padding-left: 18px;
    scroll-padding-right: 18px;
    overscroll-behavior-x: contain;
  }


  .section-3 .section-3__polaroid{
    flex: 0 0 auto;
    width: 240px;
    max-width: none;
    scroll-snap-align: center;
  }

  .section-3 .section-3__polaroid--1,
  .section-3 .section-3__polaroid--4{ transform: translateY(10px) rotate(-6deg); }
  .section-3 .section-3__polaroid--2{ transform: translateY(0px) rotate(-2deg); }
  .section-3 .section-3__polaroid--3{ transform: translateY(0px) rotate(2deg); }
  .section-3 .section-3__polaroid--4{ transform: translateY(10px) rotate(6deg); }
}

@media (max-width: 520px){
  .section-3{ padding: 68px 14px 20px; }
  .section-3 .section-3__title{ font-size: 34px; }
  .section-3 .section-3__desc{ font-size: 14px; }
}


/* ========================= SECTION 4 ========================= */
.section-4{
  width: 100%;
  padding: 110px 18px 120px;

  /* Fondo gris suave + viñeta como el screenshot */
  background:
    radial-gradient(900px 380px at 50% 18%, rgba(255,255,255,0.90), rgba(255,255,255,0.00) 65%),
    radial-gradient(1400px 520px at 50% 100%, rgba(0,0,0,0.10), rgba(0,0,0,0.00) 60%),
    linear-gradient(180deg, #eeeeee 0%, #dedede 42%, #cfcfcf 100%);

  overflow: hidden;
}

.section-4 .section-4__wrap{
  max-width: 1120px;
  margin: 0 auto;

  /* Centra el bloque como en el modelo, pero texto alineado a la izquierda */
  display: grid;
  justify-items: start;
  gap: 18px;
}

/* Badge pill minimal (blanco, borde sutil) */
.section-4 .section-4__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 14px;
  border-radius: 999px;

  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.10);

  color: rgba(0,0,0,0.72);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* Quote */
.section-4 .section-4__quote{
  margin: 0;
  padding: 0;
  max-width: 980px; /* mantiene el “bloque” elegante como screenshot */
}

.section-4 .section-4__quoteText{
  margin: 0 0 14px;

  color: rgba(0,0,0,0.92);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 500;

  font-size: 60px;
  line-height: 1.05;
  letter-spacing: -0.02em;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  text-shadow: 0 20px 60px rgba(0,0,0,0.10);
}

.section-4 .section-4__quoteAuthor{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(0,0,0,0.62);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .section-4{ padding: 92px 18px 100px; }
  .section-4 .section-4__quoteText{ font-size: 48px; }
}

@media (max-width: 520px){
  .section-4{ padding: 78px 14px 88px; }

  /* En móvil se ve como “bloque” más compacto */
  .section-4 .section-4__quoteText{
    font-size: 34px;
  }

  .section-4 .section-4__badge{
    font-size: 10px;
    letter-spacing: 0.12em;
  }
}

/* ========================= SECTION 5 ========================= */
.section-5{
  width: 100%;
  padding: 92px 18px 120px;
  text-align: center;

  background:
    radial-gradient(900px 420px at 50% 22%, rgba(255,255,255,0.10), rgba(0,0,0,0) 62%),
    radial-gradient(1200px 520px at 50% 110%, rgba(0,0,0,0.55), rgba(0,0,0,0) 55%),
    linear-gradient(180deg, #0b0b10 0%, #08080c 55%, #06060a 100%);
  overflow: hidden;
}

.section-5 .section-5__wrap{ max-width: 1120px; margin: 0 auto; }

.section-5 .section-5__head{
  margin-bottom: 22px;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.section-5 .section-5__badge{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);

  color: rgba(255,255,255,0.84);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-5 .section-5__title{
  margin: 0;
  color:#fff;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.06;
  font-size: 58px;
  text-shadow: 0 18px 46px rgba(0,0,0,0.62);
}

/* ===== Fan layout ===== */
.section-5 .section-5__fan{
  position: relative;
  height: 520px;
  margin-top: 28px;

  display: grid;
  place-items: center;
}

/* Card base */
.section-5 .section-5__card{
  position: absolute;

  width: 340px;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  box-shadow:
    0 34px 90px rgba(0,0,0,0.70),
    inset 0 1px 0 rgba(255,255,255,0.10);

  /* base transform definido por --base en cada card */
  transform: var(--base, translateX(0) translateY(0) rotate(0deg));
  transform-origin: 50% 120%;

  transition:
    transform 220ms ease,
    filter 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  will-change: transform;
}

.section-5 .section-5__photo{
  width: 100%;
  height: 100%;
  background:
    radial-gradient(700px 420px at 40% 15%, rgba(255,255,255,0.18), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(0,0,0,0.16));
}

.section-5 .section-5__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  filter: saturate(0.95) contrast(1.02);
}

/* Barra inferior */
.section-5 .section-5__bar{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px 16px;

  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.10);
}

.section-5 .section-5__name{
  margin: 0 0 4px;
  color: rgba(255,255,255,0.92);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 14px;
}

.section-5 .section-5__role{
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Centro: más grande */
.section-5 .section-5__card--c{
  width: 380px;
  height: 460px;
  z-index: 5;
  --base: translateX(0px) translateY(-10px) rotate(0deg);
}

.section-5 .section-5__bar--center{
  background: rgba(255,255,255,0.18);
}

.section-5 .section-5__pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 10px;
  border-radius: 999px;

  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.18);

  color: rgba(255,255,255,0.85);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  margin-bottom: 8px;
}

/* Posiciones abanico (base) */
.section-5 .section-5__card--l2{ z-index: 1; --base: translateX(-360px) translateY(40px) rotate(-18deg); filter: brightness(0.92); }
.section-5 .section-5__card--l1{ z-index: 2; --base: translateX(-210px) translateY(22px) rotate(-10deg); filter: brightness(0.95); }
.section-5 .section-5__card--r1{ z-index: 2; --base: translateX(210px)  translateY(22px) rotate(10deg);  filter: brightness(0.95); }
.section-5 .section-5__card--r2{ z-index: 1; --base: translateX(360px)  translateY(40px) rotate(18deg);  filter: brightness(0.92); }

/* Hover desktop: NO se centra; sube + crece + encima */
@media (hover:hover) and (pointer:fine){
  /* desactivamos :hover directo (evita flicker por solapamiento) */
  .section-5 .section-5__card:hover{
    transform: var(--base, translateX(0) translateY(0) rotate(0deg));
  }

  .section-5 .section-5__card.is-active{
    transform: var(--base, translateX(0) translateY(0) rotate(0deg)) translateY(-32px) scale(1.06);
    border-color: rgba(255,255,255,0.22);
    filter: brightness(1.03);

    box-shadow:
      0 46px 110px rgba(0,0,0,0.75),
      inset 0 1px 0 rgba(255,255,255,0.12);

    z-index: 8;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1100px){
  .section-5 .section-5__title{ font-size: 46px; }
  .section-5 .section-5__fan{ height: 480px; }

  .section-5 .section-5__card{ width: 300px; height: 390px; }
  .section-5 .section-5__card--c{ width: 340px; height: 430px; }

  .section-5 .section-5__card--l2{ --base: translateX(-300px) translateY(46px) rotate(-16deg); }
  .section-5 .section-5__card--l1{ --base: translateX(-170px) translateY(26px) rotate(-9deg); }
  .section-5 .section-5__card--r1{ --base: translateX(170px)  translateY(26px) rotate(9deg); }
  .section-5 .section-5__card--r2{ --base: translateX(300px)  translateY(46px) rotate(16deg); }
}

@media (max-width: 820px){
  .section-5 .section-5__fan{ height: 460px; }
  .section-5 .section-5__card--l2{ --base: translateX(-220px) translateY(54px) rotate(-14deg); }
  .section-5 .section-5__card--l1{ --base: translateX(-120px) translateY(32px) rotate(-8deg); }
  .section-5 .section-5__card--r1{ --base: translateX(120px)  translateY(32px) rotate(8deg); }
  .section-5 .section-5__card--r2{ --base: translateX(220px)  translateY(54px) rotate(14deg); }
}

@media (max-width: 620px){
  /* Mobile: carrusel horizontal con snap */
  .section-5{ padding: 78px 14px 96px; }
  .section-5 .section-5__title{ font-size: 34px; }

  .section-5 .section-5__fan{
    height: auto;
    margin-top: 18px;

    display: flex;
    gap: 14px;
    justify-content: flex-start;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 6px 14px;
    scrollbar-width: none;
  }
  .section-5 .section-5__fan::-webkit-scrollbar{ display:none; }

  .section-5 .section-5__card{
    position: relative;
    flex: 0 0 auto;
    width: 280px;
    height: 380px;
    transform: none !important;
    filter: none;
    scroll-snap-align: center;
  }

  .section-5 .section-5__card--c{
    width: 300px;
    height: 400px;
  }
}

/* ========================= SECTION 6 ========================= */
.section-6{
  width: 100%;
  padding: 110px 18px 120px;
  text-align: center;

  background:
    radial-gradient(900px 420px at 50% 18%, rgba(255,255,255,0.08), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, #0b0b10 0%, #08080c 60%, #06060a 100%);
}

/* Wrap */
.section-6 .section-6__wrap{
  max-width: 1120px;
  margin: 0 auto;
}

/* Header */
.section-6 .section-6__head{
  margin-bottom: 34px;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.section-6 .section-6__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);

  color: rgba(255,255,255,0.84);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-6 .section-6__title{
  margin: 0;
  color:#fff;

  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.06;
  font-size: 58px;

  text-shadow: 0 18px 46px rgba(0,0,0,0.62);
}

.section-6 .section-6__subtitle{
  margin: 0;
  color: rgba(255,255,255,0.66);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.75;
}

/* Layout */
.section-6 .section-6__content{
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

/* Reel lado izquierdo */
.section-6 .section-6__reel{
  position: relative;
  display: grid;
  place-items: center;
}

/* Fondo suave detrás */
.section-6 .section-6__reelStage{
  position: relative;
  display: grid;
  place-items: center;
}

.section-6 .section-6__reelStage::before{
  content:"";
  position:absolute;
  width: 420px;
  height: 540px;
  border-radius: 34px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 40px 120px rgba(0,0,0,0.7);
  opacity: 0.5;
  transform: translateY(20px);
}

/* Telefono */
.section-6 .section-6__phone{
  position: relative;
  width: 360px;
  aspect-ratio: 9 / 16;
  border-radius: 34px;
  background:#ffffff;
  overflow:hidden;
  z-index:1;

  box-shadow:
    0 30px 90px rgba(0,0,0,0.75),
    0 0 0 1px rgba(255,255,255,0.12);
}

.section-6 .section-6__phoneInner{
  width:100%;
  height:100%;
  overflow:hidden;
}

/* Ajuste embed Instagram */
.section-6 .section-6__phoneInner .instagram-media{
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  margin:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
}

/* Texto lado derecho */
.section-6 .section-6__info{
  text-align:left;
}

.section-6 .section-6__infoTitle{
  margin: 0 0 12px;
  color:#fff;

  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  font-size: 28px;
  letter-spacing:-0.02em;
}

.section-6 .section-6__infoText{
  margin: 0 0 20px;
  color: rgba(255,255,255,0.72);

  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height:1.8;
  max-width: 46ch;
}

/* Boton estilo section 3 */
.section-6 .section-6__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 22px;
  border-radius:999px;

  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.18);
  color:#fff;

  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:800;
  font-size:14px;
  letter-spacing:0.02em;
  text-decoration:none;

  transition: all 180ms ease;
}

.section-6 .section-6__btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.28);
}

/* Responsive */
@media (max-width: 980px){
  .section-6 .section-6__title{
    font-size:44px;
  }

  .section-6 .section-6__content{
    grid-template-columns:1fr;
    gap:40px;
  }

  .section-6 .section-6__info{
    text-align:center;
  }

  .section-6 .section-6__infoText{
    margin-left:auto;
    margin-right:auto;
  }
}

@media (max-width: 520px){
  .section-6{
    padding:80px 14px 100px;
  }

  .section-6 .section-6__title{
    font-size:34px;
  }

  .section-6 .section-6__phone{
    width: 300px;
    border-radius:28px;
  }

  .section-6 .section-6__reelStage::before{
    width: 340px;
    height: 480px;
  }
}
/* ========================= SECTION 7 ========================= */
.section-7{
  width: 100%;
  background: #0b0b10; /* base oscura */
}

/* HERO / Banner */
.section-7 .section-7__banner{
  width: 100%;
  position: relative;
  overflow: hidden;

  min-height: 64vh;

  display: flex;
  align-items: flex-start;   /* sube el contenido */
  justify-content: center;

  padding-top: 90px;         /* controla altura visual del texto */

  background-image: url("img/hubvitalbanner.mp4");
  background-size: cover;
  background-position: center;
}
/* Overlay tipo “Netflix” como la imagen */
.section-7 .section-7__bannerOverlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      #08080c 0%,          /* mismo tono final de section-6 */
      rgba(8,8,12,0.95) 8%,
      rgba(8,8,12,0.75) 16%,
      rgba(8,8,12,0.45) 28%,
      rgba(8,8,12,0.0) 45%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,0.20) 55%,
      rgba(0,0,0,0.50) 100%
    );
}

/* Texto encima del banner */
.section-7 .section-7__wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Badge (pill sutil, no naranja fuerte) */
.section-7 .section-7__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 7px 14px;
  border-radius: 999px;

  background: rgb(255 105 16 / 50%);

  border: 1px solid rgba(255,255,255,0.16);

  color: rgba(255,255,255,0.86);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Título serif grande (igual lenguaje visual que Section 3) */
.section-7 .section-7__title{
  margin: 14px 0 8px;
  color: #ffffff;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.06;

  font-size: 58px;
  text-shadow: 0 18px 46px rgba(0,0,0,0.60);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtítulo fino */
.section-7 .section-7__subtitle{
  margin: 0;
  color: rgba(255,255,255,0.70);

  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.75;

  text-align: center;
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 980px){
  .section-7 .section-7__banner{
    min-height: 56vh;
    padding-top: 54px;
  }
  .section-7 .section-7__title{ font-size: 44px; }
}

/* Tablet/Phone landscape: mantener look tipo PC, pero sin bajar el texto */
@media (max-width: 980px) and (orientation: landscape){
  .section-7 .section-7__banner{
    padding-top: 40px;
  }
}

@media (max-width: 520px){
  .section-7 .section-7__banner{
    min-height: 52vh;
    padding-top: 22px;
  }
  .section-7 .section-7__wrap{ padding: 0 14px; }
  .section-7 .section-7__title{ font-size: 34px; }
}


@media (max-width: 520px){
  .section-7 .section-7__banner{ min-height: 52vh; }
  .section-7 .section-7__wrap{ padding: 0 14px; }
  .section-7 .section-7__title{ font-size: 34px; }
}

.section-7 .section-7__sub-7-1 {
  padding: 35px;
  background: #eae9e5ff;
}

.section-7 .section-7__brandsTitle {
  margin: 0 auto 25px;
  text-align: center;
  color: #000000;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

/* LIMPIO: sin fondo ni borde “visible”; solo borde guía */
.section-7 .section-7__brandsMarquee {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;


}

.section-7 .section-7__brandsTrack {
  display: flex;
  gap: 100px;
  align-items: center;
  padding: 18px 22px;
  width: max-content;
  animation: section7-marquee 18s linear infinite;
}

.section-7 .section-7__brandLogo {
  height: 50px;
  width: auto;
  display: block;
  opacity: 0.92;
  filter: grayscale(100%);
}

.section-7 .section-7__brandsFadeLeft {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 85px;
  background: linear-gradient(90deg, #eae9e5ff 0%, rgba(13,13,18,0) 100%);
  pointer-events: none;
}

.section-7 .section-7__brandsFadeRight {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 85px;
  background: linear-gradient(270deg, #eae9e5ff 0%, rgba(13,13,18,0) 100%);
  pointer-events: none;
}

@keyframes section7-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* ========================= SUBSECCIÓN 7.2 ========================= */
.section-7 .section-7__sub-7-2{
  overflow-x: hidden;
  padding: 70px 18px 0;
  background: #1f1f1f;
}

/* Layout igual a Section 6 (pero invertido: texto izq / reel der) */
.section-7 .section-7__reelsWrap{
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 34px;
  align-items: center;
}

/* Texto */
.section-7 .section-7__reelsInfo{
  text-align: left;
}

.section-7 .section-7__reelsTitle{
  margin: 0 0 10px;
  color: #ffffff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.section-7 .section-7__reelsSubtitle{
  margin: 0 0 8px;
  color: rgba(255,255,255,0.78);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-7 .section-7__reelsText{
  margin: 0 0 16px;
  color: rgba(255,255,255,0.72);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
      margin-bottom: 30px;

}

/* Sellos (mantener grandes, pero responsive) */
.section-7 .section-7__seals{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 10px 0 18px;
}


.section-7 .section-7__seal{
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  transform: scale(1);
  transition: transform 180ms ease, filter 180ms ease;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.35));
  will-change: transform;
}

.section-7 .section-7__seal.is-hover{
  transform: scale(1.06);
  filter: drop-shadow(0 16px 34px rgba(0,0,0,0.40));
}

/* Botón: igual estilo Section 6 */
.section-7 .section-7__reelsBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;

  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;

  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.section-7 .section-7__reelsBtn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.28);
}

/* Reel (mismo look que Section 6) */
.section-7 .section-7__reelsEmbed{
  display: grid;
  justify-items: end;
}

.section-7 .section-7__reel{ position: relative; }

.section-7 .section-7__reelStage{
  position: relative;
  display: grid;
  place-items: center;
  padding: 8px 0;
}

/* Placa detrás */
.section-7 .section-7__reelStage::before{
  content: "";
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(520px, 92%);
  height: min(560px, 74vh);
  border-radius: 34px;
  background: rgba(255,255,255,0.10);
  opacity: 0.45;
  box-shadow: 0 22px 80px rgba(0,0,0,0.55);
}

/* Teléfono */
.section-7 .section-7__phone{
  position: relative;
  width: min(400px, 94%);
  aspect-ratio: 9 / 16;
  border-radius: 34px;
  background: #ffffff;
  overflow: hidden;
  z-index: 1;

  box-shadow:
    0 28px 85px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.12);
}

.section-7 .section-7__phone::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.10);
  pointer-events: none;
}

.section-7 .section-7__phoneInner{
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.section-7 .section-7__phoneInner .instagram-media{
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
/* Responsive */
@media (max-width: 980px){
  .section-7 .section-7__sub-7-2{
  overflow-x: hidden; padding: 54px 16px 0; }

  .section-7 .section-7__reelsWrap{
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: center;
  }

  .section-7 .section-7__reelsInfo{
    text-align: center;
  }

  .section-7 .section-7__reelsText{
    margin-left: auto;
    margin-right: auto;
  }

  .section-7 .section-7__seals{
    justify-content: center;
  }

  .section-7 .section-7__reelsEmbed{
    justify-items: center;
  }

  .section-7 .section-7__reelStage::before{
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 520px){
  /* Sellos: deben entrar TODOS en una sola fila sin romper el viewport */
  .section-7 .section-7__seals{
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
    overflow: hidden;
    padding-bottom: 0;
  }

  /* 5 sellos => 5 columnas exactas dentro del ancho del teléfono */
  .section-7 .section-7__seal{
    width: calc((100% - (8px * 4)) / 5);
    height: auto;
    max-width: 80px;   /* mantiene "grande", pero no rompe */
    aspect-ratio: 1 / 1;
  }

  .section-7 .section-7__reelStage::before{
    height: min(520px, 62vh);
    border-radius: 30px;
  }

  .section-7 .section-7__phone{
    width: min(340px, 94%);
    border-radius: 30px;
  }

  .section-7 .section-7__phone::after{
    border-radius: 30px;
  }
}


/* ========================= SECTION FOOTER ========================= */
.section-footer {
  width: 100%;
  background: #000000;
  padding: 62px 18px;
}

.section-footer .section-footer__wrap {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.section-footer .section-footer__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.section-footer .section-footer__icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.section-footer .section-footer__iconLink {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  /* BORDE GUÍA (puedes borrarlo si quieres ultra limpio) */
  border: 1px solid rgba(255,255,255,0.12);

  background: transparent;
  transition: transform 180ms ease, border-color 180ms ease;
}

.section-footer .section-footer__iconLink:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(255,255,255,0.22);
}

.section-footer .section-footer__icon {
  color: #ffffff;
  font-size: 28px; /* tamaño del ícono */
}

@media (max-width: 520px) {
  .section-footer { padding: 54px 14px; }
  .section-footer .section-footer__iconLink { width: 58px; height: 58px; border-radius: 16px; }
  .section-footer .section-footer__title { font-size: 24px; }
  .section-footer .section-footer__icon { font-size: 26px; }
}


/* =========================
   HOME PROJECT – PARCHES (Feb 2026)
   - Store icon
   - WhatsApp FAB
   - Reels 3D Carousel (Protocolos + Hub Vital)
   - Hub Vital banner video
   - Mobile: sueros rectos (sin curvas)
========================= */

/* Store icon (navbar) */
.section-0 .section-0__store{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.section-0 .section-0__storeIcon{
  height: 25px;
  display: inline-block;
  object-fit: contain;
  margin-right: 0;
}
@media (max-width: 720px){
  .section-0 .section-0__storeIcon{ height: 20px; }
}

/* WhatsApp Floating Button */
.whatsapp-fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25D366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 99999;
  box-shadow: 0 18px 46px rgba(0,0,0,0.45);
}
.whatsapp-fab i{ font-size: 28px; }
.whatsapp-fab:hover{ transform: translateY(-1px); }

/* Hub Vital banner: video loop (como sección 1) */
.section-7 .section-7__banner{
  background-image: none !important;
}
.section-7 .section-7__bgVideo{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reels – carrusel 3D (no cambia el look del “teléfono” principal) */
.section-6 .section-6__reelStage,
.section-7 .section-7__reelStage{
  width: min(560px, 100%);
  margin-left: auto;
  margin-right: auto;
  min-height: 620px; /* reserva alto para los 3 reels */
}

.reel-carousel{
  position: relative;
  width: 100%;
  height: 100%;
}

.reel-item{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, opacity 220ms ease, filter 220ms ease;
  cursor: pointer;
}

.reel-item.is-active{
  cursor: default;
  z-index: 5;
}
.reel-item.is-active.reel-item--left,
.reel-item.is-active.reel-item--right{
  /* si por JS queda clase left/right, igual debe verse centrado */
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  opacity: 1;
  filter: none;
}


.reel-item--left{
  z-index: 2;
  opacity: 0.92;
  filter: brightness(0.96);
  transform: translate(calc(-50% - 150px), -50%) scale(0.86) rotate(-6deg);
}

.reel-item--right{
  z-index: 2;
  opacity: 0.92;
  filter: brightness(0.96);
  transform: translate(calc(-50% + 150px), -50%) scale(0.86) rotate(6deg);
}

.reel-item--center{
  z-index: 4;
  opacity: 1;
  filter: none;
  transform: translate(-50%, -50%) scale(1);
}

/* Mobile tweaks (mantener 3 visibles) */
@media (max-width: 520px){
  .section-6 .section-6__reelStage,
  .section-7 .section-7__reelStage{
    width: 100%;
    min-height: 560px;
  }

  .reel-item--left{ transform: translate(calc(-50% - 110px), -50%) scale(0.84) rotate(-6deg); }
  .reel-item--right{ transform: translate(calc(-50% + 110px), -50%) scale(0.84) rotate(6deg); }
}



/* ====== PATCH v3.1 (Feb 2026) ====== */
/* Store icon bigger (PC + mobile) */
.section-0__storeIcon{

  height: 50px;
}
@media (max-width: 620px){
  .section-0__storeIcon{

    height: 38px;
  }
}

/* Reels: en móvil NO 3D overlay (para no romper el ancho). Se usa scroll horizontal tipo "equipo". */
@media (max-width: 620px){
  .reel-carousel{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 6px 12px;
  }
  .reel-item{
    position: relative;
    left: auto;
    top: auto;
    transform: none !important;
    transition: none !important;
    flex: 0 0 86%;
    scroll-snap-align: center;
    cursor: default;
  }
  .reel-item--left,
  .reel-item--right,
  .reel-item--center{
    z-index: 1;
    opacity: 1;
    filter: none;
  }
}


/* =========================
   STORE ICON SIZE CONTROL
========================= */
:root{
  --storeIconSize: 56px;
  --storeIconSizeMobile: 46px;
}
.section-0__storeIcon{
  width: var(--storeIconSize);
  height: var(--storeIconSize);
  display:inline-block;
  object-fit:contain;
}
@media (max-width: 620px){
  .section-0__storeIcon{
    width: var(--storeIconSizeMobile);
    height: var(--storeIconSizeMobile);
  }
}

/* =========================
   REELS NAV (PC)
========================= */
.reelNav{
  position:absolute;
  top:0;
  bottom:0;
  width:110px;
  background:transparent;
  border:0;
  padding:0;
  cursor:pointer;
  z-index:30;
}
.reelNav--left{ left:0; }
.reelNav--right{ right:0; }
.reelNav:focus{ outline:none; }
@media (max-width: 620px){
  .reelNav{ display:none; }
}

/* =========================
   REELS MOBILE: SCROLL HORIZONTAL (sin sobreponer)
========================= */
@media (max-width: 620px){
  .reel-carousel{
    height:auto !important;
    display:flex;
    gap:16px;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding: 6px 14px 18px;
  }
  .reel-item{
    position:relative !important;
    left:auto !important;
    top:auto !important;
    transform:none !important;
    flex: 0 0 auto;
    scroll-snap-align:center;
    transition:none !important;
    cursor:default;
  }
  .reel-item--left,.reel-item--center,.reel-item--right{
    opacity:1 !important;
    filter:none !important;
  }
  .reel-item.is-active{ z-index:auto; }
}

/* HUB VITAL 7.2: placa trasera igual a Protocolos */
.section-7 .section-7__reelStage::before{
  width: 420px;
  height: 540px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateY(20px);
  border-radius: 34px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 40px 120px rgba(0,0,0,0.7);
  opacity: 0.5;
}