/* landing-tv.css */
:root{
  --ftx-dark:#161c2d;
  --ftx-accent:#32b5b6;
  --ftx-text:#161c2d;
}

.ftx-landing{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ftx-text);
}

/* Tipografías: si tenés Daikon/Gilroy/Gotham cargadas en tu sitio,
   podés reemplazar estas familias sin tocar el layout */
.ftx-title{
  font-weight: 800;
  letter-spacing: -1px;
  font-size: clamp(2rem, 3vw, 3.75rem);
  line-height: 1.05;
}
.ftx-subtitle{
  font-weight: 800;
  letter-spacing: -0.5px;
  font-size: clamp(1.25rem, 2.2vw, 2.25rem);
  line-height: 1.15;
}
.ftx-lead{
  opacity: .75;
  font-size: 1.05rem;
  margin: 0;
}
.ftx-h3{
  font-weight: 800;
  letter-spacing: -0.8px;
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
  line-height: 1.15;
}
.ftx-body{
  font-size: 1.05rem;
  line-height: 1.6;
}
.ftx-maxw{ max-width: 980px; }

/* Botones */
.ftx-btn{
  border-radius: 999px;
}
.ftx-btn--accent{
  background: var(--ftx-accent);
  border-color: var(--ftx-accent);
  color: var(--ftx-dark);
  font-weight: 700;
}

/* =========================
   HERO (SECCIÓN 1 EXACTA)
   ========================= */

.ftx-hero{
  position: relative;
  overflow: hidden;
  background: #F9FAFC;
  padding: 60px 0 70px;
}

/* aro/gradiente de fondo */
.ftx-hero__ring{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* bloque tvs */
.ftx-hero__tvs{
  position: relative;
  height: 340px;               /* ajusta el “alto” del bloque de TVs */
  margin: 10px auto 130px;
  z-index: 1;
}

.ftx-hero__tv{
  position: absolute;
  top: 10px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.18));
}

/* TV principal */
.ftx-hero__tv--main{
  left: 50%;
  transform: translateX(-50%);
  width: 76%;
  max-width: 820px;
  z-index: 3;
}

/* laterales */
.ftx-hero__tv--left{
  left: 2%;
  top: 70px;
  width: 44%;
  max-width: 460px;
  z-index: 2;
}

.ftx-hero__tv--right{
  right: 2%;
  top: 70px;
  width: 44%;
  max-width: 460px;
  z-index: 2;
}

/* texto */
.ftx-hero__content{
  position: relative;
  z-index: 2;
}

.ftx-hero__title{
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #161c2d;
  font-size: 44px;             /* desktop */
  line-height: 1.05;
}

.ftx-hero__sku{
  font-weight: 800;
  color: #161c2d;
  font-size: 24px;             /* desktop */
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.ftx-hero__desc{
  color: rgba(22,28,45,.70);
  font-size: 14px;             /* como en el diseño */
  margin-bottom: 18px;
}

/* botón pill oscuro */
.ftx-hero__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 42px;
  border-radius: 999px;
  background: #161c2d;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  margin-top: 18px;
}

.ftx-hero__btn:hover{
  color:#fff;
  opacity:.92;
}

/* =========================
   RESPONSIVE (mobile/tablet)
   ========================= */

/* Tablets */
@media (max-width: 991.98px){
  .ftx-hero{
    padding: 46px 0 56px;
  }

  .ftx-hero__tvs{
    height: 280px;
    margin-bottom: 100px;
  }

  .ftx-hero__title{ font-size: 36px; }
  .ftx-hero__sku{ font-size: 20px; }
}

/* Mobile */
@media (max-width: 575.98px){
  .ftx-hero{
    padding: 36px 0 48px;
  }

  /* en mobile, mostramos solo la principal para que quede prolijo */
  .ftx-hero__tv--left,
  .ftx-hero__tv--right{
    display: none;
  }

  .ftx-hero__tvs{
    height: 220px;
    margin: 0 auto 18px;
	margin-bottom: 50px;
  }

  .ftx-hero__tv--main{
    width: 96%;
    top: 0;
  }

  .ftx-hero__title{ font-size: 30px; }
  .ftx-hero__sku{ font-size: 16px; }
  .ftx-hero__desc{ font-size: 13px; }
}


/* Bandas oscuras (Android + Conectividad) */
.ftx-band{
  background: var(--ftx-dark);
}

/* Decorativos (hex/line) */
.ftx-hex{
  position:absolute;
  right: 0;
  top: -10px;
  width: min(320px, 55vw);
  opacity: .9;
  pointer-events:none;
}
.ftx-hex--center{
  right: 10%;
  top: 10%;
  width: min(360px, 60vw);
  opacity: .85;
}

.ftx-line{
  position:absolute;
  right: 0;
  bottom: -10px;
  width: min(720px, 90vw);
  opacity: .9;
  pointer-events:none;
}
.ftx-line--left{
  left: 0;
  right: auto;
  top: -10px;
  bottom: auto;
  width: min(720px, 90vw);
}

.ftx-img-float{
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.12));
}
/* =========================
   SECCIÓN 3 (como la captura)
   ========================= */

.ftx-s3{
  padding: 0 0 60px;
}

/* UNA sola pieza (el redondeo grande vive acá) */
.ftx-s3__wrap{
  display: flex;
  width: 100%;
  min-height: 560px;
  overflow: hidden;

  /* SOLO esquina sup. derecha grande */
  border-top-right-radius: 90px;

  /* resto recto como el diseño */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* mitades 50/50 exacto */
.ftx-s3__left,
.ftx-s3__right{
  width: 50%;
}

/* imagen a full */
.ftx-s3__left{ position: relative; }
.ftx-s3__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* evita que Bootstrap te “achique” */
  max-width: none !important;
}

/* panel turquesa */
.ftx-s3__right{
  background: #2fb5b5;
  display: flex;
  align-items: center;
}

/* contenido (ubicación como la captura) */
.ftx-s3__content{
  width: 100%;
  padding: 72px 84px;
}

/* título centrado */
.ftx-s3__title{
  margin: 0 0 26px;
  font-weight: 800;
  letter-spacing: -0.8px;
  font-size: 46px;
  line-height: 1.08;
  color: #0b1320;
  text-align: left;
}

/* texto alineado a la izquierda, en bloque centrado */
.ftx-s3__text{
  margin: 0 auto;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
  color: rgba(255,255,255,.92);
}

/* ===== responsive ===== */
@media (max-width: 1199.98px){
  .ftx-s3__content{ padding: 62px 56px; }
  .ftx-s3__title{ font-size: 40px; }
}

@media (max-width: 991.98px){
  .ftx-s3__wrap{
    flex-direction: column;
    min-height: auto;
    border-top-right-radius: 110px;
  }

  .ftx-s3__left,
  .ftx-s3__right{
    width: 100%;
  }

  .ftx-s3__left{
    height: 340px;
  }

  .ftx-s3__content{
    padding: 44px 24px 50px;
  }

  .ftx-s3__title{
    font-size: 30px;
    margin-bottom: 18px;
  }

  .ftx-s3__text{
    max-width: none;
    font-size: 15px;
  }
}
/* =========================
   SECCIÓN 4 - SONIDO (CORREGIDA)
   ========================= */

.ftx-s4{
  background:#fff;
  padding: 0px 0;
}

.ftx-s4__wrap{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;  /* 50/50 exacto */
  min-height: 520px;
  align-items: center;
}

/* Divisor vertical del medio (como tu captura) */
.ftx-s4__wrap::after{
  content:"";
  position:absolute;
  top: -30px;
  bottom: -30px;
  left: 50%;
  width: 4px;
  transform: translateX(-2px);
  z-index: 2;
}

/* Línea curva: debe pasar por debajo de todo */
.ftx-s4__line{
  position: absolute;
  left: -6%;
  bottom: -60px;
  width: 700px;
  max-width: none !important;
  z-index: 1;
  pointer-events: none;
}

/* IZQUIERDA */
.ftx-s4__left{
  position: relative;
  z-index: 3;
  padding-right: 40px;
}

.ftx-s4__title{
  margin: 0 0 22px;
  font-weight: 800;
  letter-spacing: -0.9px;
  font-size: 48px;
  line-height: 1.06;
  color: #0b1320;
}

.ftx-s4__text{
  margin: 0;
  max-width: 420px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(11,19,32,.75);
}

/* DERECHA */
.ftx-s4__right{
  position: relative;
  z-index: 3;
  padding-left: 40px;
}

.ftx-s4__scene{
  position: relative;
  height: 420px;
}

/* Hexágono centrado detrás de la TV grande */
.ftx-s4__hex{
  position:absolute;
  left: 4%;
  top: 56%;
  transform: translate(-50%, -50%);
  width: 320px;
  max-width: none !important;
  z-index: 1;
  pointer-events:none;
}

/* TV grande: entra un poco desde el centro hacia la derecha */
.ftx-s4__tvBack{
  position:absolute;
  left: 40%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  max-width: none !important;
  z-index: 2;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.20));
}

/* TV perfil: pegada a la derecha */
.ftx-s4__tvSide{
  position:absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 165px;
  max-width: none !important;
  z-index: 3;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.18));
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1199.98px){
  .ftx-s4__title{ font-size: 42px; }
  .ftx-s4__tvBack{ width: 520px; }
  .ftx-s4__tvSide{ width: 150px; }
  .ftx-s4__hex{ width: 290px; }
  .ftx-s4__line{ width: 980px; left: -10%; }
}

@media (max-width: 991.98px){
  .ftx-s4{ padding: 60px 0; }

  .ftx-s4__wrap{
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: auto;
  }

  /* sin divisor en mobile */
  .ftx-s4__wrap::after{ display:none; }

  .ftx-s4__left{ padding-right: 0; }
  .ftx-s4__right{ padding-left: 0; }

  .ftx-s4__scene{ height: 320px; }

  /* línea más corta y centrada */
  .ftx-s4__line{
    left: -25%;
    bottom: -40px;
    width: 860px;
  }

  .ftx-s4__tvBack{ width: 420px; }
  .ftx-s4__tvSide{ width: 120px; right: 2%; }
  .ftx-s4__hex{ width: 230px; }
  .ftx-s4__title{ font-size: 34px; }
}

@media (max-width: 575.98px){
  .ftx-s4__scene{ height: 280px; }
  .ftx-s4__tvBack{ width: 320px; }
  .ftx-s4__tvSide{ width: 100px; right: 0; }
  .ftx-s4__hex{ width: 200px; top: 58%; }
  .ftx-s4__line{ width: 780px; left: -55%; }
}

/* FINAL */
.ftx-final{
  background: var(--ftx-dark);
}
.ftx-final__bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
}
.ftx-final .container{ z-index: 1; }

.ftx-final__tv{
  width: min(1100px, 95vw);
}

/* Ajustes responsive finos */
@media (min-width: 992px){
  .ftx-hero{ padding-top: 3.5rem; padding-bottom: 3.5rem; }
}
