:root{
  --header-h: 64px; /* ajusta si tu header es mÃ¡s alto */
}


/* ===============================
   RESET
================================ */
  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

}

/* ===============================
   BASE
================================ */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none; 
}

html::-webkit-scrollbar,
body::-webkit-scrollbar{
  display: none;              /* Chrome, Safari, Edge */
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #e5e7eb; 
  
background:
  radial-gradient(circle at center,
    rgba(10,110,209,.28) 0%,
    rgba(10,110,209,.14) 25%,
    rgba(10,110,209,.06) 45%,
    transparent 70%
  ),
  linear-gradient(135deg,
    #0b0f16 0%,
    #141a24 35%,
    #0e1320 60%,
    #06080f 100%
  );

  overflow-x: hidden;
  line-height: 1.6;
  padding-top: var(--header-h);
}





/* ===============================
   HERO FRAME CONTEN
================================ */
.container:first-of-type{
  padding-top: 0;
}
.container{
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 0;

  display: flex;
  justify-content: center;

  overflow-x: hidden;
}

.container:has(.hero-frame){
  margin-bottom: clamp(60px, 8vh, 120px);
}

/* ===============================
   HERO FRAME – EDGE TO EDGE
================================ */
.hero-frame{
  position: relative;
  width: 100vw;
  max-width: 100vw;
  min-width: 100vw;
  margin: 0;
  padding: clamp(24px, 4vw, 64px);
  min-height: 75vh;
  background-image: url("../icon/icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 0;            
  overflow: hidden;
  display: flex;
  align-items: center;
  animation: subtleZoom 15s ease-in-out infinite;
  box-shadow: none;            
}


/* OVERLAY */
.hero-frame::before{
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(0,0,0,.60),
    rgba(0,0,0,.80)
  );

  z-index: 0; /* 👈 CLAVE */
}







/* ===============================
   CONTENIDO
================================ */
.hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  margin-top: -30px;
}

/* ===============================
   LEFT
================================ */
.hero-left h1 {
  font-size: clamp(26px, 5vw, 46px);
  line-height: 1.1;
}

.hero-left p {
  color: #c8d3e6;
  max-width: 520px;
  margin: 16px 0 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
}

/* ===============================
   BUTTON
================================ */
.primary-btn{
  background: linear-gradient(135deg, #0A6ED1, #0854a0);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;

  /* brillo simple */
  box-shadow:
    0 6px 16px rgba(10,110,209,.35),
    inset 0 1px 0 rgba(255,255,255,.25);

  transition: transform .2s ease, box-shadow .2s ease;
}

.primary-btn:hover{
  transform: translateY(-1px);
  box-shadow:
    0 10px 26px rgba(10,110,209,.45),
    inset 0 1px 0 rgba(255,255,255,.3);
}


/* ===============================
   RIGHT
================================ */
.hero-right {
  text-align: center;
}

/* ===============================
   CAROUSEL
================================ */
.carousel {
  width: 100%;
  max-width: 400px;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  border: none;
  margin-left: auto;
  margin-right: 20px;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform .8s ease;
}

.carousel-card {
  min-width: 100%;
  padding: 32px;
  background: transparent;
}

.carousel-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.carousel-card p {
  color: #c8d6ee;
  line-height: 1.5;
}

/* ===============================
   ANIMATIONS
================================ */
@keyframes glowPulse {
  0% { box-shadow: 0 0 10px rgba(10,110,209,.4), 0 0 22px rgba(10,110,209,.3); }
  50%{ box-shadow: 0 0 22px rgba(10,110,209,.85),0 0 45px rgba(10,110,209,.65);}
  100%{box-shadow: 0 0 10px rgba(10,110,209,.4), 0 0 22px rgba(10,110,209,.3);}
}

@keyframes shineMove {
  from { transform: translateX(-30%); }
  to   { transform: translateX(30%); }
}

@keyframes subtleZoom {
  0% { background-size: 100%; }
  50% { background-size: 105%; }
  100% { background-size: 100%; }
}

/* ===============================
   TABLET (<= 1100px)
================================ */
@media (max-width: 1100px) and (min-width: 601px){

  /* 🔑 Ajuste REAL para pegar el hero al header */
  .container:has(.hero-frame){
    margin-top: calc(var(--header-h) * -0.2);
  }

  .hero-frame{
    width: calc(100% - 40px);
    max-width: 100%;
    min-width: unset;

    min-height: 520px;
    margin: 0 auto;

    padding: clamp(32px, 5vw, 56px);
    border-radius: 24px;

    background-image: url("../icon/icon2.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .hero-layout{
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    align-items: center;
    justify-items: center;
    margin-top: 50px;
  }

  .hero-left h1{
    font-size: clamp(28px, 4.2vw, 36px);
  }

  .hero-left p{
    font-size: 15px;
    max-width: 560px;
    margin-inline: auto;
  }

  .hero-buttons{
    justify-content: center;
  }

  .carousel{
    max-width: 360px;
    height: 200px;
    margin: 0 auto;
  }
}

/* ===============================
   MOBILE (<= 600px)
================================ */

@media (max-width: 600px){

  body{
    padding-top: 0 !important;
  }

  /* ===============================
     HERO FRAME (COMO TABLET)
  =============================== */
  .hero-frame{
    width: calc(100% - 24px);
    max-width: 100%;
    min-width: unset;

    /* 🔑 CLAVE: altura controlada como tablet */
    min-height: 460px;
    height: auto;

    margin: calc(var(--header-h) - 32px) auto 0;
    padding: 28px 20px 32px;
    border-radius: 20px;
    overflow: hidden;
    background-image: url("../icon/icon2.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    animation: none; /* ← evita zoom en móvil */
  }
  
  /* ===============================
     OVERLAY (SIN CAMBIOS)
  =============================== */
  .hero-frame::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:0;
  }

  /* ===============================
     CONTENIDO (IGUAL QUE TABLET)
  =============================== */
  .hero-layout{
    position: relative;
    z-index: 2;

    width: 100%;

    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 92px; 
    text-align: center;
    align-items: center;
    justify-items: center;
    text-align: center;
    margin-top: 0;
    transform: none;
  }

  .hero-left h1{
    font-size: 26px;      /* ↓ más compacto */
    line-height: 1.15;
    max-width: 90%;
    margin-inline: auto;
  }


  .hero-left p{
    font-size: 14px;
    max-width: 520px;
    margin: 12px auto 20px;
  }

  /* ===============================
     BOTONES
  =============================== */
  .hero-buttons{
    width: 90%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
  }

  .primary-btn{
    width: 90%;           /* ↓ no tan largos */
    max-width: 280px;
    padding: 12px 0;      /* ↓ menos alto */
    font-size: 13px;      /* ↓ texto botón */
    border-radius: 10px;
  }

  /* ===============================
     CARRUSEL
  =============================== */
  .carousel{
    max-width: 300px;
    height: 160px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.45;
     
  }
}

/* ===============================
   TABLET (<= 1100px)
================================ */
@media (max-width: 1100px){

  .hero-frame{
    width: 100vw;
    max-width: 100vw;
    min-width: 100vw;

    margin: calc(var(--header-h) * -1) 0 48px 0;
    padding: clamp(32px, 5vw, 56px);

    min-height: calc(100vh - var(--header-h));
    border-radius: 0;

    background-image: url("../icon/icon2.png");
  }

  .hero-layout{
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    align-items: center;
    justify-items: center;
  }

  .hero-left p{
    max-width: 560px;
    margin-inline: auto;
  }

  .hero-buttons{
    justify-content: center;
  }

  .carousel{
    margin: 0 auto;
  }
}


/* ===============================
   2K (>= 1920px)
================================ */

@media (min-width: 1920px){
  .container{
    width: 100vw;
    margin: 0;
    padding: 0;
    justify-content: flex-start !important;
  }

  .hero-frame{
    width: 100vw;                 /* 👈 CLAVE */
    max-width: 100vw !important;  /* 👈 FUERZA */
    min-width: 100vw !important;  /* 👈 FUERZA */
    margin: 0;
    
    min-height: 720px;
    padding: clamp(56px, 4vw, 88px);
    border-radius: 30px;
  }

  .hero-left h1{
    font-size: clamp(44px, 3vw, 56px);
  }

  .hero-left p{
    font-size: 18px;
    max-width: 620px;
  }

  .carousel{
    max-width: 460px;
    height: 260px;
  }
}

/* ===============================
   4K / TV (>= 2560px)
================================ */

@media (min-width: 2560px){
  .container{
    width: 100vw;
    margin: 0;
    padding: 0;
    justify-content: flex-start !important;
  }

  .hero-frame{
    width: 100vw;                 
    max-width: 100vw !important;
    min-width: 100vw !important;
    margin: 0;

    min-height: 820px;
    padding: clamp(72px, 4vw, 120px);
    border-radius: 36px;
    box-shadow: 0 40px 90px rgba(0,0,0,.6);
  }

  .hero-left h1{
    font-size: clamp(56px, 2.6vw, 72px);
  }

  .hero-left p{
    font-size: 20px;
    max-width: 720px;
  }

  .carousel{
    max-width: 520px;
    height: 300px;
  }
}

/* ===============================
   TV / SMART TV
================================ */
@media (min-width: 3000px) {

  .hero-frame{
    width: 100%;
  max-width: 2600px;
  min-width: unset;
    min-height: 60vh;
    padding: clamp(96px, 8vh, 140px);
    border-radius: 40px;
    box-shadow: 0 50px 120px rgba(0,0,0,.65);
    
  }

  .hero-layout{
    gap: 100px;
    margin-top: 0;
  }

  .hero-left h1{
    font-size: clamp(64px, 2.4vw, 84px);
    line-height: 1.05;
  }

  .hero-left p{
    font-size: 22px;
    max-width: 820px;
    line-height: 1.6;
  }

  .primary-btn{
    font-size: 18px;
    padding: 22px 56px;
    border-radius: 16px;
  }

  .carousel{
    max-width: 620px;
    height: 340px;
  }

  .carousel-card h3{
    font-size: 26px;
  }

  .carousel-card p{
    font-size: 18px;
  }
}





/* ===============================
   SAP DIFFERENCE SECTION
================================ */

.sap-section {
  width: 100%;
  padding: 0px 20px 10px;
  margin-top: -100px;
  
  
}

.sap-diff {
  max-width: 1200px;
  margin: 120px auto;
  text-align: center;
}

.sap-diff h2 {
  font-size: 36px;
  margin-bottom: 60px;
  color: #ffffff;
}

.sap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.sap-card {
  position: relative;
  padding: 22px 18px;
  border: 1px solid rgba(24, 23, 23, 0.65);
  border-radius: 16px; 
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  transition: all .3s ease;
}
.sap-card:hover {
  transform: translateY(-20px);
  
}

.sap-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 28px;
  background: linear-gradient(135deg, #6d28d9, #0A6ED1);
  color: #fff;
  box-shadow: 0 0 20px rgba(109,40,217,.6);
}

.sap-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.sap-card p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.5;
}

/* RESPONSIVE */

@media (max-width: 768px){

  .sap-section{
    padding: 24px 14px 32px;
    margin-top: -140px; /* sube la secciÃ³n sin romper layout */
  }

  .sap-diff{
    margin: 40px auto;
    max-width: 100%;
    padding: 0.2 6px;
  }

  .sap-diff h2{
    margin: 1 !important;
    text-align: center;
    font-size: clamp(20px, 6vw, 32px);
    line-height: 1.2;
  }

  .sap-grid{
    gap: 16px;
    margin-top: -30px; /* 🔼 sube solo las cards */
  }

  .sap-card{
    padding: 20px 18px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  }

  .sap-icon{
    width: 52px;
    height: 52px;
    font-size: 22px;
    margin-bottom: 12px;
  }

  .sap-card h3{
    font-size: 16px;
    margin-bottom: 6px;
  }

  .sap-card p{
    font-size: 13px;
    line-height: 1.4;
  }

}

@media (min-width: 641px) and (max-width: 1024px){

  .sap-section{
    margin-top: -110px;  /* 🔼 ajuste suave en tablet */
  }

}



/* ===============================
   FOOTER
================================ */
.footer,
.footer *{
  font-family: inherit;
  letter-spacing: 0;
}

.footer{
  position: relative;
  margin-top: -20px;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(3,3,3,.92),
    rgba(6,6,6,.98)
  );
  isolation: isolate;
}

.footer::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #030303;
  z-index: -1;
}

/* CONTENEDOR */
.footer-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 32px 20px 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
 
}

/* COLUMNAS */
.footer-col h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
  padding-bottom: 3px;
  color: #e5e7eb;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 4px;
  
}

.footer-col ul li a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .4px;
  transition: all .25s ease;
}

.footer-col ul li a:hover {
  color: #0A6ED1;
  text-shadow: 0 0 6px rgba(10,110,209,0.5);
}

/* BARRA INFERIOR */
.footer-bottom {
  background: linear-gradient(
  180deg,
  rgba(3,3,3,.92),
  rgba(6,6,6,.98)
);
  
  padding: 16px 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  color: #9ca3af;
  border-top: 1px solid rgba(255,255,255,0.05);
}



/* ðŸ“± MOBILE */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px;
  }

  .footer-col h3 {
    font-size: 14px;
  }

  .footer-col ul li a {
    font-size: 12.5px;
  }

  .footer-bottom {
    font-size: 11px;
  }
}


/* ===============================
  TITULO CARRUSEL DE TABLAS
================================ */
.secsion-tile{
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: #999999;
  
}

.ts-title{
  
  max-width: 100%;
  text-align: center;
  font-size: clamp(18px, 5vw, 32px);
  margin: 3 auto; 
  

}
.ts-title h2{
  margin: 0;
  font-size: clamp(14px, 2.5vw, 36px);
  line-height: 1.25;   /* mÃ¡s alto */
  letter-spacing: -0.3px
}

/* ===============================
   MOBILE + TABLET
================================ */
@media (max-width: 768px){

  .secsion-tile{
    min-height: 70vh;

    /* ❌ eliminado margin-top negativo */
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;

    padding-top: 60px;   /* controla separación superior */
    padding-bottom: 40px;
  }

  .ts-title{
    margin-top: 0 !important;
    margin-bottom: 32px !important;

    /* 🔑 SUBE SOLO EL CONTENIDO */
    transform: translateY(-80px);
  }

  .ts-title h2{
    margin: 0 !important;
    text-align: center;
    font-size: clamp(23px, 6vw, 38px);
    line-height: 1.15;
  }
}


/* ===============================
   DESKTOP (SIN CAMBIOS)
================================ */
@media (min-width: 769px){

  .secsion-tile{
    align-items: center !important; /* se mantiene igual */
  }

  .ts-title{
    position: relative;
    top: -30px;   /* igual que antes */
    padding: 0 !important;
  }
}



/* ===============================
   TROUBLESHOOT SECTION CARRUSEL
================================ */
.ts-section{
  width: 100%;
  min-height: 10vh; 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 0;
  margin-top: -20px ;
  
}


.ts-wrapper{
  max-width:100%;
  width:100%;
  display:flex;
  justify-content: center;
  align-items:flex-start;
  gap:80px;

}

/* LEFT = CAROUSEL */
.ts-left{
  display:flex;
  justify-content:flex-start;
   justify-content:center;
}

.ts-title{
  font-size: clamp(36px, 5vw, 56px);
  font-weight:800;
  color:#ffffff;
  margin-top:0; 
}

.ts-sub{
  font-size:16px;
  color:#0A6ED1;
  letter-spacing:.3px;
}


/* ===============================
   CAROUSEL (PLANO 3 EN 3)
================================ */
.ts-carousel{
  width: 100%;
  max-width: 980px;
  height: 440px;
  overflow: hidden;   /* ðŸ‘ˆ solo corta tarjetas */
  position: relative;
  
}

.ts-carousel-track{
  display: flex;
  height: 100%;
  transition: transform .6s ease;
  will-change: transform;
}

/* TARJETAS */
.ts-carousel-card{
  flex: 0 0 33.333333%;
  padding: 22px 14px;   /* simula el gap */
  box-sizing:border-box;
  
}

.ts-carousel::before{
  display:none;
}

.ts-carousel-wrapper{
  position: relative;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  overflow: visible;   /* ðŸ‘ˆ permite que las flechas salgan */
}




.ts-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;   /* sin fondo */
  box-shadow: none;          /* sin sombra */
  width: auto;
  height: auto;
  font-size: 70px;           /* mÃ¡s grande */
  font-weight: 800;
  color: #ffffff;            /* solo blanco */
  cursor: pointer;
  z-index: 50;
  transition: transform .2s ease, opacity .2s ease;
}

.ts-arrow:hover{
  opacity: .65;
  transform: translateY(-50%) scale(1.15);
}

.ts-arrow.left{
  left: -60px;   /* sÃ¡quela hacia la izquierda */
}

.ts-arrow.right{
  right: -60px;  /* sÃ¡quela hacia la derecha */
}


.troubleshoot-block{
  width: 100%;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(24, 23, 23, 0.65);
  box-shadow: 0 8px 18px rgba(0,0,0,0.55);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap: 8px;
  text-align:left;
  transition: transform .35s ease, box-shadow .35s ease;
  

  
}

.troubleshoot-block:hover{
  transform: translateY(-20px);
 
}

/* TITULOS */
.troubleshoot-block h3,
.troubleshoot-block h4{
  color:#ffffff;
  font-size:16px;
  line-height:1.25;
}

/* TEXTO */
.troubleshoot-block p{
  color:#9ca3af;
  font-size:13px;
  line-height:1.45;
}

.troubleshoot-block ul{
  margin:6px 0;
  padding-left:14px;
}

.troubleshoot-block li{
  color:#9ca3af;
  font-size:11.5px;
  line-height:1.3;
  margin-bottom:4px;
}

.troubleshoot-block strong{
  color:#ffffff;
  font-size:13px;
}

.troubleshoot-block small{
  font-size:10.5px;
  letter-spacing:.5px;
  opacity:.75;
}

/* BOTÃ“N */
.troubleshoot-block .trial-btn{
  margin-top:8px;
  align-self:flex-start;
  padding:8px 14px;
  border-radius:999px;
  border:none;
  font-size:11px;
  font-weight:700;
  cursor:pointer;
  background:#062a55;
  color:#ffffff;
  transition:.25s;
}

.troubleshoot-block .trial-btn:hover{
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.5),
    0 0 30px rgba(207,216,224,.45);
}

.ts-carousel-card:not(.is-master) .troubleshoot-block{
  max-height: 450px;   /* mismo valor que la 10 */
  overflow: hidden;
}


.ts-carousel-track{
  align-items: stretch; /* fuerza misma altura */
}

.ts-carousel-card{
  display:flex;
}

.troubleshoot-block{
  height: 100%;
}

.ts-carousel{
  height: 440px;   
}

.troubleshoot-block,
.ts-carousel-card {
  outline: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

@media (max-width: 1024px){

  .ts-carousel{
    height: 420px;

    /* 🔑 SUBE LA SECCIÓN (SUAVE) */
    transform: translateY(-70px);
  }

  .ts-carousel-card{
    flex: 0 0 50%;
    padding: 18px 10px;
  }

  .ts-arrow.left{ left: -40px; }
  .ts-arrow.right{ right: -40px; }

  .troubleshoot-block h4{ font-size: 15px; }
  .troubleshoot-block p{ font-size: 12.5px; }
  .troubleshoot-block li{ font-size: 11px; }
  .troubleshoot-block strong{ font-size: 12px; }
  .ts-arrow{ font-size:48px; }
}

@media (max-width: 640px) and (orientation: portrait){

  .ts-carousel{
    height: auto;

    /* 🔥 SE MANTIENE EL EMPUJE */
    transform: translateY(-90px);

    /* 🔑 FIX DE CALIDAD DE TEXTO */
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
  }

  .ts-carousel-card{
    flex: 0 0 100%;
    padding: 18px 14px;
  }

  .ts-arrow{
    display: none !important;
  }

  /* ===============================
     TIPOGRAFÍA
  =============================== */
  .troubleshoot-block h4{
    font-size: 15px;
  }

  .troubleshoot-block p{
    font-size: 13px;
  }

  .troubleshoot-block li{
    font-size: 12.5px;
  }

  .troubleshoot-block strong{
    font-size: 12px;
  }

  /* ===============================
     NO SUBIR TARJETA AL TOCAR
  =============================== */
  .troubleshoot-block:hover,
  .troubleshoot-block:active,
  .troubleshoot-block:focus{
    transform: translateY(0) !important;
  }

  /* ===============================
     SUAVIZADO DE TEXTO
  =============================== */
  .ts-section,
  .troubleshoot-block{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
}


/* ===============================
   PANTALLAS GRANDES (4 TABLAS)
================================ */
@media (min-width: 1600px){

  
  /* 🚫 evita tarjeta fantasma */
  .ts-carousel-track{
    width: calc(100% - 1px);
  }

  /* 🔒 tarjetas rígidas */
  .ts-carousel-card{
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ts-carousel-card{
    flex-grow: 0;
    flex-shrink: 0;
  }

  .ts-carousel-track{
    justify-content: flex-start;
  }

  .ts-carousel{
    max-width: 1400px;
    height: 520px;
  }

  .ts-carousel-wrapper{
    max-width: 1400px;
  }

  .ts-carousel-card{
    flex: 0 0 25%;
    padding: 28px 20px;
  }

  .troubleshoot-block{
    padding: 22px;
  }

  .troubleshoot-block h3,
  .troubleshoot-block h4{
    font-size: 18px;
  }

  .troubleshoot-block p{
    font-size: 14.5px;
  }
}

@media (min-width: 2400px){

  .ts-carousel{
    max-width: 1600px;
    height: 500px;
  }

  .ts-carousel-wrapper{
    max-width: 1600px;
  }

  .ts-carousel-card{
    flex: 0 0 25%;
    padding: 26px 18px;
  }

  .troubleshoot-block{
    padding: 20px;
  }

  .troubleshoot-block h3,
  .troubleshoot-block h4{
    font-size: 18px;
  }

  .troubleshoot-block p{
    font-size: 14px;
  }
}


@media (min-width: 900px) and (max-width: 1199px){

  .ts-carousel-card{
    flex: 0 0 50%;   /* 👈 fuerza 2 tablas */
  }

  .ts-carousel{
    height: auto;
  }
}

