/* 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 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 ========================= */
/* Layout igual a Section 6 (pero invertido: texto izq / reel der) */
/* Texto */
/* Sellos (mantener grandes, pero responsive) */
/* Botón: igual estilo Section 6 */
/* Reel (mismo look que Section 6) */
.section-7 .section-7__reel{ position: relative; }

/* Placa detrás */
/* Teléfono */
/* Responsive */
@media (max-width: 980px){
}

@media (max-width: 520px){
  /* Sellos: deben entrar TODOS en una sola fila sin romper el viewport */
/* 5 sellos => 5 columnas exactas dentro del ancho del teléfono */
}


/* ========================= 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) */
/* ====== 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){
  }


/* =========================
   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){
  }

/* HUB VITAL 7.2: placa trasera igual a Protocolos */
/* ====== SECTION 3 – SUEROS (Carrusel 3D) ====== */
/* Basado en tu carrusel de tinturas (responsive). Todo scoping a .section-3 para no romper otras secciones. */
.section-3 .hp3d{
  width: 100%;
  max-width: 1200px;
  height: 450px;
  position: relative;
  perspective: 1000px;
  margin: 10px auto 0;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.section-3 .hp3d__track{
  width: 100%;
  height: 100%;
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-3 .hp3d__card{
  position:absolute;
  width: 260px;
  height: 360px;
  background: transparent;
  border-radius: 20px;
  overflow: visible;
  box-shadow: none;
  cursor:pointer;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  user-select:none;
  -webkit-user-select:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-end;
  gap: 10px;
  padding-bottom: 6px;
}
.section-3 .hp3d__card img{
  width:100%;
  height:100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(0,0,0,.38));
  pointer-events:none;
  user-select:none;
  -webkit-user-drag:none;
}
.section-3 .hp3d__label{
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(239,231,218,.92);
  text-shadow: 0 14px 40px rgba(0,0,0,.55);
}

/* Posiciones (idénticas al carrusel base) */
.section-3 .hp3d__card.center{ z-index:10; transform: scale(1.12) translateZ(0); opacity:1; }
.section-3 .hp3d__card.left-2{ z-index:1; transform: translateX(-400px) scale(0.80) translateZ(-300px); opacity:0.70; }
.section-3 .hp3d__card.left-1{ z-index:5; transform: translateX(-200px) scale(0.92) translateZ(-120px); opacity:0.90; }
.section-3 .hp3d__card.right-1{ z-index:5; transform: translateX(200px) scale(0.92) translateZ(-120px); opacity:0.90; }
.section-3 .hp3d__card.right-2{ z-index:1; transform: translateX(400px) scale(0.80) translateZ(-300px); opacity:0.70; }
.section-3 .hp3d__card.hidden{ opacity:0; pointer-events:none; }

/* Flechas */
.section-3 .hp3d__arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  background: rgba(215,179,193, 0.38);
  color: rgba(255,255,255,.92);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:20;
  transition: all 0.25s ease;
  font-size: 1.6rem;
  border: 1px solid rgba(239,231,218,.18);
  outline:none;
  padding-bottom: 4px;
}
.section-3 .hp3d__arrow:hover{
  background: rgba(0,0,0,.55);
  transform: translateY(-50%) scale(1.08);
}
.section-3 .hp3d__arrow--left{ left: 14px; padding-right: 3px; }
.section-3 .hp3d__arrow--right{ right: 14px; padding-left: 3px; }

/* Responsive */
@media (max-width: 768px){
  .section-3 .hp3d{height: 420px}
  .section-3 .hp3d__card{width: 200px; height: 300px}

  .section-3 .hp3d__card.left-2{transform: translateX(-250px) scale(.80) translateZ(-300px)}
  .section-3 .hp3d__card.left-1{transform: translateX(-120px) scale(.92) translateZ(-120px)}
  .section-3 .hp3d__card.right-1{transform: translateX(120px) scale(.92) translateZ(-120px)}
  .section-3 .hp3d__card.right-2{transform: translateX(250px) scale(.80) translateZ(-300px)}
}
@media (max-width: 420px){
  .section-3 .hp3d{height: 390px}
  .section-3 .hp3d__card{width: 180px; height: 270px}
  .section-3 .hp3d__card.left-2{transform: translateX(-210px) scale(.80) translateZ(-300px)}
  .section-3 .hp3d__card.left-1{transform: translateX(-105px) scale(.92) translateZ(-120px)}
  .section-3 .hp3d__card.right-1{transform: translateX(105px) scale(.92) translateZ(-120px)}
  .section-3 .hp3d__card.right-2{transform: translateX(210px) scale(.80) translateZ(-300px)}
}
/* Dots / slots (paginación) */
.section-3 .hp3d__dots{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 25;
  pointer-events: auto;
}

.section-3 .hp3d__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0%);
  background: rgba(239,231,218,.22);
  cursor: pointer;
  padding: 0;
  outline: none;
}

.section-3 .hp3d__dot.is-active{
  width: 10px;
  height: 10px;
  background: rgba(239,231,218,.90);
  border-color: rgba(239,231,218,.95);
}
/* =========================
   SECTION 5.05 – REELS (hp3d)
   - Solo afecta al carrusel data-hp3d-carousel="reels"
========================= */
.section-3 .hp3d[data-hp3d-carousel="reels"]{
  height: 560px;              /* más alto porque el reel es “alto” */
  max-width: 1200px;
}

.section-3 .hp3d[data-hp3d-carousel="reels"] .hp3d__card{
  width: 320px;
  height: 480px;
  padding-bottom: 6px;
}

.section-3 .hp3d[data-hp3d-carousel="reels"] .hp3d__embed{
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

/* Instagram embed (iframe/blockquote) dentro del contenedor */
.section-3 .hp3d[data-hp3d-carousel="reels"] .hp3d__embed iframe{
  width: 100% !important;
  height: 100% !important;
}

.section-3 .hp3d[data-hp3d-carousel="reels"] .hp3d__embed blockquote.instagram-media{
  margin: 0 auto !important;
  width: 100% !important;
  min-width: 0 !important; /* clave para móvil */
}

/* Responsive reels */
@media (max-width: 768px){
  .section-3 .hp3d[data-hp3d-carousel="reels"]{ height: 520px; }
  .section-3 .hp3d[data-hp3d-carousel="reels"] .hp3d__card{ width: 260px; height: 420px; }
}
@media (max-width: 420px){
  .section-3 .hp3d[data-hp3d-carousel="reels"]{ height: 500px; }
  .section-3 .hp3d[data-hp3d-carousel="reels"] .hp3d__card{ width: 240px; height: 400px; }
}
/* =========================
   FIX MOBILE: NO BORDE BLANCO / NO SCROLL HORIZONTAL
========================= */
html, body{
  overflow-x: hidden;
}

.section-3 .hp3d{
  overflow: hidden; /* recorta lo que se sale por el 3D */
}
/* =========================
   REELS IFRAME – fit perfecto al cuadro
========================= */
.section-3 .hp3d[data-hp3d-carousel="reels"] .hp3d__embed{
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
}

/* el iframe ocupa todo el cuadro */
.section-3 .hp3d[data-hp3d-carousel="reels"] .igReelFrame{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Móvil: un poco más ancho para verse premium */
@media (max-width: 520px){
  .section-3 .hp3d[data-hp3d-carousel="reels"] .hp3d__card{
    width: 300px;
  }
}
/* =========================
   SECTION X – SELLOS HUB VITAL
   (Métricas + grid de cards)
========================= */
.section-seals{
  width: 100%;
  padding: 88px 18px 70px;
  text-align: center;
  overflow: hidden;

  /* Fondo oscuro coherente con Section 3 */
  background:
    radial-gradient(1200px 420px at 50% 18%, rgb(0 253 255 / 8%), rgba(0, 0, 0, 0.0) 55%),
    linear-gradient(180deg, #0a0a0f 0%, #09090d 38%, #07070b 100%);
}

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

/* ===== Metrics (3 columnas) ===== */
.section-seals__metrics{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: start;

  margin: 0 auto 56px;
  max-width: 980px;

  /* Glass */
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  overflow: hidden;
}

.section-seals__metric{
  padding: 26px 18px 22px;
  position: relative;
}

.section-seals__metric:not(:first-child){
  border-left: 1px solid rgba(255,255,255,0.10);
}

.section-seals__metricTop{
  color: rgba(255,255,255,0.92);
  font-family: sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 22px;
  line-height: 1.0;
}

.section-seals__metricTitle{
  margin-top: 10px;
  color: rgba(255,255,255,0.88);
  font-family: sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.section-seals__metricDesc{
  margin-top: 10px;
  color: rgba(255,255,255,0.62);
  font-family: sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.55;
}

/* Header: ya reusa Section 3 (badge/title/desc) */
.section-seals__header{
  margin-bottom: 44px;
}

/* ===== Grid de cards (5) ===== */
.section-seals__grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}

.section-seals__card{
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 10px;
  align-items: start;

  padding: 18px 16px 16px;

  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);

  box-shadow: 0 18px 44px rgba(0,0,0,0.34);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.section-seals__card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.20);
}

.section-seals__seal{
  width: 100%;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}

.section-seals__seal img{
  display: block;
  max-width: 160px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.35));
}

.section-seals__cardTitle{
  margin: 2px 0 0;
  color: rgba(255,255,255,0.92);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2;
}

.section-seals__cardDesc{
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.55;
}

/* ===== Responsive ===== */
@media (max-width: 1100px){
  .section-seals__grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px){
  .section-seals__metrics{
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .section-seals__metric:not(:first-child){
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.10);
  }

  .section-seals__grid{ grid-template-columns: repeat(2, 1fr); }
  .section-seals__seal img{ max-width: 150px; }
}

@media (max-width: 420px){
  .section-seals__grid{ grid-template-columns: 1fr; }
  .section-seals__seal img{ max-width: 170px; }
}
/* ========================= sellossection 3 ========================= */
.sellossection-3{
  width: 100%;
  padding: 88px 18px 20px;
  background: radial-gradient(1200px 420px at 50% 18%, rgb(54 255 0 / 10%), rgba(0, 0, 0, 0.0) 55%), linear-gradient(180deg, #000000 0%, #03553d 38%, #091116 100%);
  text-align: center;
  overflow: hidden;
}

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

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

.sellossection-3 .sellossection-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;
}

.sellossection-3 .sellossection-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;
}

.sellossection-3 .sellossection-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;
}

.sellossection-3 .sellossection-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;
}

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

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

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

.sellossection-3 .sellossection-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;
}

.sellossection-3 .sellossection-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);
}

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

.sellossection-3 .sellossection-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 */
.sellossection-3 .sellossection-3__polaroid--1{ transform: translateY(18px) rotate(-10deg); }
.sellossection-3 .sellossection-3__polaroid--2{ transform: translateY(6px) rotate(-4deg); }
.sellossection-3 .sellossection-3__polaroid--3{ transform: translateY(6px) rotate(4deg); }
.sellossection-3 .sellossection-3__polaroid--4{ transform: translateY(18px) rotate(10deg); }

/* hover: “sube” y se endereza un poco */
@media (hover:hover) and (pointer:fine){
  .sellossection-3 .sellossection-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){
  .sellossection-3{ padding: 76px 18px 92px; }
  .sellossection-3 .sellossection-3__title{ font-size: 44px; }
  .sellossection-3 .sellossection-3__fan{ gap: 14px; }
  .sellossection-3 .sellossection-3__polaroid{ width: 220px; max-width: 40vw; }
}

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


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

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

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