/* ============================================
   SURJET.COM — Industrial Premium CSS v3.1
   Plugin: Surjet Core
   Este archivo contiene TODO el CSS de Surjet.
   Editable desde: Plugins → Editor → Surjet Core → surjet.css
   ============================================ */


/* ============================================
   SURJET.COM — Industrial Premium CSS v3.1
   Prototipo Homepage
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --surjet-blue: #0047ba;
  --surjet-blue-dark: #003a9e;
  --surjet-dark: #0a0a1a;
  --surjet-slate: #1e293b;
  --surjet-light: #f8fafc;
  --surjet-steel: #64748b;
  --surjet-accent: #00b4d8;
  --surjet-white: #ffffff;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; }

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo img { height: 35px; }
.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--surjet-slate);
  transition: color 0.3s ease;
}
.main-nav a:hover { color: var(--surjet-blue); }
.header-portal {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--surjet-blue);
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.header-portal:hover {
  background: var(--surjet-dark);
  color: #fff;
}
.header-phone {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: var(--surjet-blue);
  font-weight: 600;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--surjet-blue);
  color: var(--surjet-white);
  padding: 16px 40px;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::after { left: 100%; }
.btn-primary:hover {
  background: var(--surjet-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,71,186,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--surjet-white);
  padding: 14px 40px;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--surjet-white);
  color: var(--surjet-dark);
  border-color: var(--surjet-white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--surjet-white);
  color: var(--surjet-blue);
  padding: 16px 40px;
  font-size: 0.95rem;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}
.btn-sm { padding: 12px 30px; font-size: 0.85rem; }
.btn-lg { padding: 20px 55px; font-size: 1rem; }

/* --- SECTION TITLES --- */
.titulo-seccion {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--surjet-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
.titulo-seccion::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--surjet-blue);
  margin: 20px auto 0;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.titulo-seccion.visible::after,
.reveal.visible .titulo-seccion::after { width: 120px; }
.intro-texto .titulo-seccion::after { margin: 20px 0 0; }
.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 15px auto 0;
  color: var(--surjet-steel);
  font-size: 1.05rem;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--surjet-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,26,0.85) 0%, rgba(0,71,186,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  padding-top: 70px;
}
.hero-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--surjet-white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 em { font-style: normal; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 550px;
  margin-bottom: 35px;
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

/* --- CIFRAS --- */
.cifras-section {
  background: var(--surjet-white);
  padding: 80px 0 60px;
}
.cifras-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.cifra-item { text-align: center; padding: 20px 10px; }
.cifra-numero.cifra-text {
  font-size: 3.5rem;
  letter-spacing: 1px;
}
.cifra-numero {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--surjet-blue), var(--surjet-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  display: block;
}
.cifra-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--surjet-steel);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
  display: block;
}

/* --- INTRO --- */
.intro-section {
  background: var(--surjet-white);
  padding: 40px 0 100px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-texto h2 { text-align: left; margin-bottom: 25px; }
.intro-texto p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 15px;
}
.intro-texto .btn { margin-top: 15px; }
.intro-imagen img {
  width: 100%;
  box-shadow: 20px 20px 0 var(--surjet-blue);
  transition: box-shadow 0.4s ease;
}
.intro-imagen img:hover {
  box-shadow: 30px 30px 0 var(--surjet-accent);
}

/* --- MARCAS --- */
.marcas-section {
  background: var(--surjet-light);
  padding: 80px 0;
}
.marcas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 50px;
  align-items: center;
}
.marca-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 25px;
  background: var(--surjet-white);
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  min-height: 90px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.marca-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--surjet-blue), var(--surjet-accent));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.marca-item:hover {
  border-color: var(--surjet-blue);
  box-shadow: 0 8px 25px rgba(0,71,186,0.12);
  transform: translateY(-4px);
}
.marca-item:hover::before { transform: scaleX(1); }
.marca-item img {
  max-height: 75px;
  max-width: 200px;
  object-fit: contain;
  transition: all 0.4s ease;
}
.marca-item:hover img { transform: scale(1.08); }

/* ================================================
   SOLUCIONES — Cards con efecto 3D tilt + glow
   ================================================ */
.soluciones-section {
  background: var(--surjet-white);
  padding: 80px 0 100px;
}
.soluciones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}
.solucion-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--surjet-white);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.solucion-card:hover {
  border-color: transparent;
  box-shadow: 0 25px 60px rgba(0,71,186,0.2), 0 0 0 1px rgba(0,71,186,0.1);
  transform: translateY(-10px);
}
/* Glow effect on hover */
.solucion-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--surjet-blue), var(--surjet-accent), var(--surjet-blue));
  border-radius: 9px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.solucion-card:hover::before { opacity: 1; }

.card-image {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: var(--surjet-white);
  border-radius: 8px 8px 0 0;
  position: relative;
  overflow: hidden;
}
.card-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.solucion-card:hover .card-image img {
  transform: scale(1.1);
}
/* Shine sweep effect on image */
.card-image::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,71,186,0.06), transparent);
  transition: left 0.7s ease;
}
.solucion-card:hover .card-image::after {
  left: 150%;
}

.card-overlay {
  padding: 22px 25px;
  background: var(--surjet-white);
  border-top: 2px solid var(--surjet-light);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 8px 8px;
  transition: border-color 0.4s ease;
}
.solucion-card:hover .card-overlay {
  border-top-color: var(--surjet-blue);
}
.card-overlay h3 {
  font-family: var(--font-heading);
  color: var(--surjet-dark);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  transition: color 0.4s ease;
}
.solucion-card:hover .card-overlay h3 {
  color: var(--surjet-blue);
}
.card-overlay p {
  color: var(--surjet-steel);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--surjet-blue);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
}
.card-link::after {
  content: '→';
  transition: transform 0.3s ease;
}
.solucion-card:hover .card-link {
  color: var(--surjet-accent);
}
.solucion-card:hover .card-link::after {
  transform: translateX(5px);
}

/* --- SERVICIOS --- */
.servicios-section {
  background: var(--surjet-light);
  padding: 80px 0 100px;
}
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.servicio-item { text-align: center; padding: 30px 20px; }
.servicio-icon {
  width: 100px; height: 100px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surjet-white);
  border-radius: 50%;
  padding: 22px;
  box-shadow: 0 5px 20px rgba(0,71,186,0.1);
  transition: all 0.4s ease;
}
.servicio-item:hover .servicio-icon {
  box-shadow: 0 8px 30px rgba(0,71,186,0.2);
  transform: translateY(-5px);
}
.servicio-icon img { width: 100%; height: 100%; object-fit: contain; }
.servicio-item h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--surjet-dark);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.servicio-item p {
  font-size: 0.95rem;
  color: var(--surjet-steel);
  line-height: 1.7;
}

/* ==============================================
   SECTION DOTS NAV — Scroll progress indicator
   ============================================== */
.section-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.section-dots.visible {
  opacity: 1;
  pointer-events: auto;
}
.section-dots-track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(0, 71, 186, 0.12);
  border-radius: 1px;
  z-index: 0;
}
.section-dots-fill {
  width: 100%;
  background: var(--surjet-blue);
  border-radius: 1px;
  transition: height 0.15s linear;
}
.section-dot {
  position: relative;
  z-index: 1;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid rgba(0, 71, 186, 0.3);
  background: #fff;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  outline: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.section-dot:hover {
  border-color: var(--surjet-blue);
  transform: scale(1.4);
  box-shadow: 0 0 0 3px rgba(0, 71, 186, 0.1);
}
.section-dot.passed {
  background: var(--surjet-blue);
  border-color: var(--surjet-blue);
  box-shadow: none;
}
.section-dot.active {
  width: 13px;
  height: 13px;
  background: var(--surjet-blue);
  border-color: var(--surjet-blue);
  box-shadow: 0 0 0 5px rgba(0, 71, 186, 0.18);
  transform: scale(1.1);
}
@media (max-width: 900px) {
  .section-dots { display: none; }
}

/* ==============================================
   DARK SECTION TRANSITIONS — Contained Cards
   Los bloques oscuros ya no son muros full-width.
   Son contenedores redondeados con márgenes,
   "flotando" dentro de la página blanca.
   Inspirado en Stripe/Apple.
   ============================================== */
.sat-section,
.cta-final,
.page-cta,
.distribuidores-section {
  max-width: 1440px;
  margin: 50px auto;
  border-radius: 24px;
  overflow: hidden;
  /* Scroll reveal: empieza ligeramente reducida y sube */
  transform: scale(0.97) translateY(40px);
  opacity: 0.5;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.sat-section.in-view,
.cta-final.in-view,
.page-cta.in-view,
.distribuidores-section.in-view {
  transform: scale(1) translateY(0);
  opacity: 1;
}
@media (max-width: 1480px) {
  .sat-section,
  .cta-final,
  .page-cta,
  .distribuidores-section {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 600px) {
  .sat-section,
  .cta-final,
  .page-cta,
  .distribuidores-section {
    margin-left: 12px;
    margin-right: 12px;
    border-radius: 16px;
  }
}

/* --- SAT --- */
.sat-section {
  background: linear-gradient(135deg, #0a1628 0%, #0d2847 50%, #0a1628 100%);
  padding: 80px 0 100px;
}
.sat-section .section-tag { color: rgba(255,255,255,0.5); }
.sat-section .titulo-seccion { color: var(--surjet-white); }
.sat-section .titulo-seccion::after { background: var(--surjet-accent); }
.sat-section .servicio-item h3 { color: var(--surjet-white); }
.sat-section .servicio-item p { color: rgba(255,255,255,0.7); }
.sat-section .section-subtitle { color: rgba(255,255,255,0.8); }
.sat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.sat-dato { text-align: center; padding: 20px; }
.dato-grande {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--surjet-accent);
  display: block;
  margin-bottom: 15px;
}
.sat-dato h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--surjet-white);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sat-dato p { color: #999; font-size: 0.9rem; line-height: 1.6; }
.sat-cta { text-align: center; margin-top: 50px; }

/* --- SECTORES --- */
.sectores-section {
  background: var(--surjet-white);
  padding: 80px 0 100px;
}
.sectores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.sector-card {
  position: relative;
  overflow: hidden;
  height: 260px;
  cursor: pointer;
}
.sector-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sector-card:hover img { transform: scale(1.1); }
.sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,10,30,0.75) 0%, rgba(0,10,30,0.15) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 25px;
  transition: background 0.4s ease;
}
.sector-card:hover .sector-overlay { background: linear-gradient(0deg, rgba(0,71,186,0.85) 0%, rgba(0,71,186,0.2) 60%, transparent 100%); }
.sector-overlay h3 {
  font-family: var(--font-heading);
  color: var(--surjet-white);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.4;
}

/* --- DISTRIBUIDORES --- */
.distribuidores-section {
  background: linear-gradient(135deg, #002a6e 0%, var(--surjet-blue) 50%, #003d9e 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.distribuidores-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.02) 40px,
    rgba(255,255,255,0.02) 80px
  );
  pointer-events: none;
}
.distribuidores-section h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--surjet-white);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.distribuidores-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* --- BLOG HOME --- */
.blog-section {
  background: var(--surjet-white);
  padding: 80px 0 100px;
}

/* --- RSC --- */
.rsc-section {
  background: var(--surjet-light);
  padding: 70px 0 80px;
}
.rsc-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.rsc-logos img {
  height: 55px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.4s ease;
}
.rsc-logos img:hover { filter: grayscale(0%); opacity: 1; }

/* --- CTA FINAL --- */
.cta-final {
  background: var(--surjet-dark);
  padding: 100px 0;
  text-align: center;
}
.cta-final h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--surjet-white);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cta-final p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px;
}
.cta-tel { margin-top: 30px; }
.cta-tel a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--surjet-white);
  font-weight: 600;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}
.cta-tel a:hover { color: var(--surjet-accent); }


/* --- PRODUCT GALLERY CAROUSEL --- */
.product-gallery-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 16px 0;
  margin-top: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--surjet-blue) transparent;
}
.product-gallery-carousel::-webkit-scrollbar {
  height: 6px;
}
.product-gallery-carousel::-webkit-scrollbar-track {
  background: transparent;
}
.product-gallery-carousel::-webkit-scrollbar-thumb {
  background: var(--surjet-blue);
  border-radius: 3px;
}
.product-gallery-carousel img {
  flex: 0 0 auto;
  max-height: 280px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  scroll-snap-align: start;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  padding: 8px;
  transition: transform 0.2s ease;
}
.product-gallery-carousel img:hover {
  transform: scale(1.03);
}

/* --- FOOTER --- */
.site-footer {
  background: #050510;
  padding: 60px 0 30px;
  color: #888;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr;
  gap: 30px;
}
.footer-certifications-img {
  margin-top: 16px;
}
.footer-certifications-img img {
  max-width: 100%;
  height: auto;
  opacity: 0.8;
}
.footer-col p { font-size: 0.9rem; line-height: 1.7; margin-top: 5px; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--surjet-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--surjet-accent); }
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 15px;
}
.footer-legal a {
  color: #666;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}
.footer-legal a:hover { color: var(--surjet-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

/* --- STAGGERED CARD REVEAL --- */
.solucion-card.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.solucion-card.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* Staggered delays for 3-column grid */
.solucion-card.reveal:nth-child(3n+1) { transition-delay: 0s; }
.solucion-card.reveal:nth-child(3n+2) { transition-delay: 0.15s; }
.solucion-card.reveal:nth-child(3n+3) { transition-delay: 0.3s; }

/* ================================================
   PÁGINAS INTERIORES
   ================================================ */

/* --- HERO INTERIOR --- */
.hero-interior {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  margin-top: 70px;
}
.hero-interior .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,26,0.8) 0%, rgba(0,71,186,0.5) 100%);
}
.hero-interior .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 30px;
}
.hero-interior h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--surjet-white);
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin: 0;
}
.hero-interior .hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-top: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- BREADCRUMBS --- */
.breadcrumbs {
  background: var(--surjet-light);
  padding: 15px 0;
  border-bottom: 1px solid #e5e7eb;
}
.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--surjet-steel);
}
.breadcrumbs a {
  color: var(--surjet-blue);
  transition: color 0.3s;
}
.breadcrumbs a:hover { color: var(--surjet-accent); }
.breadcrumbs span.separator { color: #ccc; }
.breadcrumbs span.current { color: var(--surjet-dark); font-weight: 500; }

/* --- PAGE CONTENT --- */
.page-content {
  padding: 80px 0;
}
.page-content.alt-bg { background: var(--surjet-light); }
.page-text {
  max-width: 800px;
  margin: 0 auto;
}
.page-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--surjet-dark);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-text h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--surjet-dark);
  margin-bottom: 12px;
}
.page-text p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.page-text ul {
  padding-left: 25px;
  margin-bottom: 20px;
}
.page-text ul li {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 8px;
}
.page-text strong { color: var(--surjet-dark); }

/* --- CONTENT GRID (50/50) --- */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-grid img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* --- PRODUCT GRID (cards de categoría) --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}
.product-card {
  background: var(--surjet-white);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: block;
}
.product-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(0,71,186,0.15);
  transform: translateY(-8px);
}
.product-card .card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: var(--surjet-white);
  overflow: hidden;
}
.product-card .card-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.product-card:hover .card-img img { transform: scale(1.08); }
.product-card .card-body {
  padding: 20px;
  border-top: 2px solid var(--surjet-light);
  transition: border-color 0.4s ease;
}
.product-card:hover .card-body { border-top-color: var(--surjet-blue); }
.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--surjet-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.product-card:hover h3 { color: var(--surjet-blue); }
.product-card p {
  color: var(--surjet-steel);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.product-card .btn-sm {
  font-size: 0.75rem;
  padding: 10px 25px;
}

/* --- CONTACT FORM --- */
.contact-section {
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--surjet-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--surjet-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--surjet-white);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--surjet-blue);
  box-shadow: 0 0 0 3px rgba(0,71,186,0.1);
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-info-card {
  background: var(--surjet-dark);
  padding: 40px;
  border-radius: 8px;
  color: var(--surjet-white);
}
.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: var(--surjet-white);
}
.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-info-item .info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(0,71,186,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surjet-accent);
  font-size: 1.1rem;
}
.contact-info-item .info-text p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
.contact-info-item .info-text a {
  color: var(--surjet-accent);
  transition: color 0.3s;
}
.contact-info-item .info-text a:hover { color: var(--surjet-white); }

/* --- RSC EXPANDED --- */
.rsc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.rsc-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--surjet-white);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.4s ease;
}
.rsc-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}
.rsc-card img {
  max-height: 70px;
  max-width: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}
.rsc-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--surjet-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.rsc-card p {
  color: var(--surjet-steel);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* --- LEGAL PAGES --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 30px 80px;
}
.legal-content h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--surjet-dark);
  text-transform: uppercase;
  margin-bottom: 30px;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--surjet-dark);
  margin-top: 30px;
  margin-bottom: 15px;
}
.legal-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* --- BLOG GRID --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}
.blog-card {
  background: var(--surjet-white);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  text-decoration: none;
  display: block;
}
.blog-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}
.blog-card .blog-img {
  height: 200px;
  overflow: hidden;
}
.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-card .blog-body {
  padding: 20px;
}
.blog-card .blog-date {
  font-size: 0.8rem;
  color: var(--surjet-steel);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--surjet-dark);
  line-height: 1.4;
  transition: color 0.3s;
}
.blog-card:hover h3 { color: var(--surjet-blue); }

/* --- RMA SECTION --- */
.rma-steps {
  counter-reset: step;
  margin: 30px 0;
}
.rma-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 25px;
  background: var(--surjet-light);
  border-radius: 8px;
  border-left: 4px solid var(--surjet-blue);
}
.rma-step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--surjet-blue);
  min-width: 40px;
  text-align: center;
}

/* --- RESPONSIVE INTERIORES --- */
@media (max-width: 768px) {
  .hero-interior { height: 250px; }
  .content-grid { grid-template-columns: 1fr; gap: 30px; }
  .content-grid.reverse { direction: ltr; }
  .product-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .rsc-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .soluciones-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; }
  .cifras-grid { grid-template-columns: repeat(2, 1fr); }
  .cifra-numero { font-size: 2.5rem; }
  .intro-grid { grid-template-columns: 1fr; }
  .marcas-grid { grid-template-columns: repeat(2, 1fr); }
  .soluciones-grid { grid-template-columns: 1fr; }
  .servicios-grid { grid-template-columns: 1fr; }
  .sat-grid { grid-template-columns: 1fr; }
  .sectores-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-card { height: 180px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-imagen img { box-shadow: 10px 10px 0 var(--surjet-blue); }
}

/* ============================================
   PÁGINAS INTERIORES — CSS v1.0
   ============================================ */

/* --- HERO INTERIOR --- */
.hero-interior {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  margin-top: 70px;
}
.hero-interior .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,26,0.85) 0%, rgba(0,71,186,0.4) 100%);
}
.hero-interior .hero-interior-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 30px;
}
.hero-interior h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--surjet-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-interior-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-top: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* --- BREADCRUMBS --- */
.breadcrumbs {
  background: var(--surjet-light);
  padding: 15px 0;
  border-bottom: 1px solid #e5e7eb;
}
.breadcrumbs-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--surjet-steel);
}
.breadcrumbs-inner a {
  color: var(--surjet-blue);
  transition: color 0.3s ease;
}
.breadcrumbs-inner a:hover { color: var(--surjet-accent); }
.breadcrumbs-inner .separator { color: #cbd5e1; }

/* --- PAGE CONTENT --- */
.page-content {
  padding: 60px 0 80px;
}
.page-content .container { max-width: 1200px; }
.page-content-narrow { max-width: 900px; margin: 0 auto; padding: 0 30px; }

/* --- PAGE SECTIONS --- */
.page-section {
  padding: 60px 0;
}
.page-section:nth-child(even) { background: var(--surjet-light); }
.page-section:nth-child(odd) { background: var(--surjet-white); }
.page-section .section-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* --- PRODUCT GRID (cards like soluciones) --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}
.product-grid.grid-2 { grid-template-columns: repeat(2, 1fr); }
.product-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }

.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--surjet-white);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  border-color: transparent;
  box-shadow: 0 25px 60px rgba(0,71,186,0.2), 0 0 0 1px rgba(0,71,186,0.1);
  transform: translateY(-10px);
}
.product-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--surjet-blue), var(--surjet-accent), var(--surjet-blue));
  border-radius: 9px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.product-card:hover::before { opacity: 1; }

.product-card .card-image {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: var(--surjet-white);
  border-radius: 8px 8px 0 0;
  position: relative;
  overflow: hidden;
}
.product-card .card-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .card-image img { transform: scale(1.1); }
.product-card .card-image::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,71,186,0.06), transparent);
  transition: left 0.7s ease;
}
.product-card:hover .card-image::after { left: 150%; }

.product-card .card-body {
  padding: 22px 25px;
  background: var(--surjet-white);
  border-top: 2px solid var(--surjet-light);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 8px 8px;
  transition: border-color 0.4s ease;
}
.product-card:hover .card-body { border-top-color: var(--surjet-blue); }
.product-card .card-body h3 {
  font-family: var(--font-heading);
  color: var(--surjet-dark);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  transition: color 0.4s ease;
}
.product-card:hover .card-body h3 { color: var(--surjet-blue); }
.product-card .card-body p {
  color: var(--surjet-steel);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}
.product-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--surjet-blue);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
}
.product-card .card-link::after { content: '→'; transition: transform 0.3s ease; }
.product-card:hover .card-link { color: var(--surjet-accent); }
.product-card:hover .card-link::after { transform: translateX(5px); }

/* --- ABOUT / TEAM SECTION --- */
.team-section {
  padding: 60px 0;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.team-grid.reverse { direction: rtl; }
.team-grid.reverse > * { direction: ltr; }
.team-text h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--surjet-dark);
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}
.team-text h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--surjet-blue);
  margin-top: 15px;
}
.team-text p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.team-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 15px 15px 0 var(--surjet-blue);
  transition: box-shadow 0.4s ease;
}
.team-image img:hover { box-shadow: 20px 20px 0 var(--surjet-accent); }

/* --- VALUES GRID --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.value-card {
  text-align: center;
  padding: 40px 25px;
  background: var(--surjet-white);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.4s ease;
}
.value-card:hover {
  border-color: var(--surjet-blue);
  box-shadow: 0 15px 40px rgba(0,71,186,0.12);
  transform: translateY(-5px);
}
.value-card .value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surjet-blue), var(--surjet-accent));
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
}
.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--surjet-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.value-card p {
  color: var(--surjet-steel);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- RMA SECTION --- */
.rma-section {
  background: var(--surjet-slate);
  padding: 60px 0;
}
.rma-section h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--surjet-white);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.rma-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--surjet-accent);
  margin-top: 15px;
}
.rma-section p { color: #ccc; font-size: 1rem; line-height: 1.7; margin-bottom: 15px; }
.rma-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}
.rma-step {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
}
.rma-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--surjet-accent);
  color: var(--surjet-white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 15px;
}
.rma-step h3 {
  font-family: var(--font-heading);
  color: var(--surjet-white);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.rma-step p { color: #aaa; font-size: 0.9rem; }

/* --- CONTACT FORM --- */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form { width: 100%; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--surjet-dark);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #333;
  background: var(--surjet-white);
  border: 2px solid #e5e7eb;
  border-radius: 4px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--surjet-blue);
  box-shadow: 0 0 0 3px rgba(0,71,186,0.1);
}
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form .btn { width: 100%; text-align: center; border: none; font-size: 1rem; }

.contact-info { padding: 30px 0; }
.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surjet-blue), var(--surjet-accent));
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
}
.contact-info-text h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--surjet-dark);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.contact-info-text p {
  color: var(--surjet-steel);
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-info-text a { color: var(--surjet-blue); transition: color 0.3s; }
.contact-info-text a:hover { color: var(--surjet-accent); }

/* --- LEGAL CONTENT --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 30px 80px;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--surjet-dark);
  text-transform: uppercase;
  margin: 40px 0 15px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--surjet-slate);
  margin: 25px 0 10px;
}
.legal-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 15px;
}
.legal-content ul {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 10px 0 20px 25px;
}
.legal-content ul li { margin-bottom: 5px; }

/* --- BLOG GRID --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.blog-card {
  background: var(--surjet-white);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(0,71,186,0.15);
  transform: translateY(-8px);
}
.blog-card .blog-image {
  height: 200px;
  overflow: hidden;
}
.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-image img { transform: scale(1.08); }
.blog-card .blog-body {
  padding: 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-card .blog-date {
  font-size: 0.8rem;
  color: var(--surjet-steel);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.blog-card .blog-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--surjet-dark);
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color 0.3s;
  flex-grow: 1;
}
.blog-card:hover .blog-body h3 { color: var(--surjet-blue); }
.blog-card .blog-body .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--surjet-blue);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
}
.blog-card .blog-body .card-link::after { content: '→'; transition: transform 0.3s ease; }
.blog-card:hover .blog-body .card-link { color: var(--surjet-accent); }
.blog-card:hover .blog-body .card-link::after { transform: translateX(5px); }

/* --- RSC DETAIL GRID --- */
.rsc-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.rsc-card {
  text-align: center;
  padding: 40px 25px;
  background: var(--surjet-white);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.4s ease;
}
.rsc-card:hover {
  border-color: var(--surjet-blue);
  box-shadow: 0 15px 40px rgba(0,71,186,0.12);
  transform: translateY(-5px);
}
.rsc-card img {
  height: 60px;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: grayscale(80%);
  opacity: 0.7;
  transition: all 0.4s ease;
}
.rsc-card:hover img { filter: grayscale(0%); opacity: 1; }
.rsc-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--surjet-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.rsc-card p {
  color: var(--surjet-steel);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* --- QUALITY PRINCIPLES --- */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}
.principle-card {
  padding: 30px 25px;
  background: var(--surjet-white);
  border-left: 4px solid var(--surjet-blue);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
  transition: all 0.4s ease;
}
.principle-card:hover {
  border-left-color: var(--surjet-accent);
  box-shadow: 0 8px 30px rgba(0,71,186,0.12);
  transform: translateX(5px);
}
.principle-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--surjet-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.principle-card p {
  color: var(--surjet-steel);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* --- INTERIOR RESPONSIVE --- */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-section { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .rsc-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-interior { height: 220px; }
  .hero-interior h1 { font-size: 1.6rem; }
  .product-grid { grid-template-columns: 1fr; }
  .product-grid.grid-2 { grid-template-columns: 1fr; }
  .product-grid.grid-4 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 30px; }
  .team-grid.reverse { direction: ltr; }
  .rma-steps { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .rsc-detail-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-image img { box-shadow: 10px 10px 0 var(--surjet-blue); }
}

/* =====================================================
   PRODUCT DETAIL PAGES — Vertical Layout v2
   ===================================================== */

.product-page-section {
  padding: 50px 0 80px;
}

/* Product Title */
.product-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--surjet-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 40px;
}

/* =============================================
   PRODUCT PAGE — UNIVERSAL PREMIUM v6
   ============================================= */

/* === BREADCRUMBS === */
.product-breadcrumbs-bar {
  padding: 14px 0;
  background: #f8fafc;
  border-bottom: 1px solid #eef1f5;
  font-size: 0.8rem;
  color: #9ca3af;
}
.product-breadcrumbs-bar a { color: #6b7280; text-decoration: none; transition: color 0.2s; }
.product-breadcrumbs-bar a:hover { color: var(--surjet-blue); }
.product-breadcrumbs-bar span { margin: 0 6px; color: #d1d5db; }
.product-breadcrumbs-bar strong { color: var(--surjet-dark); font-weight: 600; }

/* === SHOWCASE SECTION (2-column grid) === */
.product-showcase {
  padding: 50px 0 60px;
  background: #fff;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 60px;
  align-items: start;
}

/* --- IMAGE COLUMN (left) --- */
.product-img-col {
  position: sticky;
  top: 80px;
  min-width: 0;
}

.product-gallery {
  background: #f5f7fa;
  border-radius: 20px;
  border: 1px solid #eef1f5;
  overflow: hidden;
}

.product-img-main {
  padding: 40px 30px;
  text-align: center;
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Subtle glow behind product */
.product-img-main::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,71,186,0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.product-main-photo {
  position: relative;
  width: 100%;
  max-width: 100%;
  max-height: 380px;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.product-img-main:hover .product-main-photo {
  transform: scale(1.03);
}

/* Thumbnail strip */
.product-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid #eef1f5;
  background: #fff;
  overflow-x: auto;
}

.product-thumb {
  flex: 0 0 64px;
  width: 64px; height: 64px;
  border-radius: 10px;
  border: 2px solid transparent;
  background: #f5f7fa;
  cursor: pointer;
  padding: 4px;
  transition: all 0.2s ease;
  overflow: hidden;
}

.product-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.product-thumb:hover { border-color: #d1d5db; }
.product-thumb.active { border-color: var(--surjet-blue); background: #fff; }

/* PDF download area */
.product-pdf-area {
  margin-top: 14px;
}

.product-pdf-area a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: var(--surjet-dark);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.product-pdf-area a:hover {
  background: var(--surjet-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,71,186,0.25);
}

/* --- INFO COLUMN (right) --- */
.product-info-col {
  min-width: 0;
  overflow: hidden;
}

/* Header: badge + title + subtitle */
.product-info-header {
  margin-bottom: 28px;
}

.product-cat-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(0,71,186,0.08);
  color: var(--surjet-blue);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 14px;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--surjet-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 10px 0;
  line-height: 1.15;
}

.product-subtitle {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 6px 0;
}

.product-tagline {
  font-style: italic;
  color: var(--surjet-blue);
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

/* Features / Characteristics */
.product-features {
  margin-bottom: 28px;
}

.product-features > ul,
.product-features > ol {
  list-style: none;
  padding: 0;
  margin: 0 0 4px 0;
}

/* Feature group headings (bold li in ul) */
.product-features > ul > li {
  padding: 0;
  margin-top: 18px;
}

.product-features > ul > li:first-child {
  margin-top: 0;
}

.product-features > ul > li > strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--surjet-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 100%);
  border-left: 3px solid var(--surjet-blue);
  border-radius: 0 8px 8px 0;
  margin-bottom: 2px;
}

/* Feature sub-items (ol following ul) */
.product-features > ol {
  padding: 0;
  counter-reset: none;
}

.product-features > ol > li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.55;
  border-bottom: 1px solid #f3f4f6;
}

.product-features > ol > li:last-child {
  border-bottom: none;
}

.product-features > ol > li::before {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 9px;
  color: var(--surjet-blue);
  font-weight: 700;
  font-size: 0.75rem;
}

/* Plain paragraphs in features */
.product-features > p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4b5563;
  margin: 0 0 12px 0;
}

.product-features > p > strong,
.product-features strong {
  color: var(--surjet-blue);
  font-weight: 700;
}

/* H1 inside content — hide it, we use our own */
.product-features > h1,
.product-features > h2 {
  display: none;
}

/* Hide subtitle-class paragraphs (already extracted) */
.product-features > p.subtit,
.product-features > p[class*="subtit"] {
  display: none;
}

/* --- CTA BUTTONS --- */
.product-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.product-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--surjet-blue);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,71,186,0.25);
}

.product-btn-primary:hover {
  background: #003da0;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,71,186,0.35);
  color: #fff;
}

.product-btn-primary svg { opacity: 0.7; }

.product-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  background: transparent;
  color: var(--surjet-dark);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.product-btn-secondary:hover {
  border-color: var(--surjet-blue);
  color: var(--surjet-blue);
  transform: translateY(-2px);
}

.product-btn-secondary svg { opacity: 0.5; }

/* === DETAILS SECTION (tabs, full-width below grid) === */
.product-details-section {
  padding: 0 0 60px;
  background: #fff;
}

.product-details-section .surjet-tabs {
  margin-top: 0;
}

/* --- TABS --- */
.surjet-tabs {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.tab-nav {
  display: flex;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  overflow-x: auto;
}

.tab-btn {
  flex: 1;
  min-width: 120px;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #9ca3af;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.tab-btn:hover { color: var(--surjet-blue); background: rgba(0,71,186,0.03); }

.tab-btn.active {
  color: var(--surjet-blue);
  background: #fff;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 20%; right: 20%;
  height: 3px;
  background: var(--surjet-blue);
  border-radius: 3px 3px 0 0;
}

/* Tab panels */
.tab-panel {
  display: none;
  padding: 32px;
}

.tab-panel.active {
  display: block;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tab content: paragraphs */
.tab-panel > p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #4b5563;
  margin: 0 0 16px;
}

.tab-panel > p:last-child { margin-bottom: 0; }

.tab-panel strong {
  color: var(--surjet-blue);
  font-weight: 700;
}

/* Tab content: lists (feature checkmarks) */
.tab-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tab-panel li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: #374151;
  font-size: 0.92rem;
  line-height: 1.5;
  border-bottom: 1px solid #f3f4f6;
}

.tab-panel li:last-child { border-bottom: none; }

.tab-panel li::before {
  content: '';
  position: absolute;
  left: 4px; top: 14px;
  width: 16px; height: 16px;
  background: var(--surjet-blue);
  border-radius: 50%;
  opacity: 0.1;
}

.tab-panel li::after {
  content: '✓';
  position: absolute;
  left: 7px; top: 12px;
  color: var(--surjet-blue);
  font-weight: 800;
  font-size: 0.68rem;
}

/* Tab content: specs table */
.tab-panel table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  table-layout: fixed;
  word-wrap: break-word;
}

.tab-panel table tr { border-bottom: 1px solid #f3f4f6; }
.tab-panel table tr:last-child { border-bottom: none; }
.tab-panel table tr:nth-child(even) { background: #fafbfc; }

.tab-panel table td {
  padding: 12px 16px;
  vertical-align: top;
  color: #4b5563;
}

.tab-panel table td:first-child {
  font-weight: 700;
  color: var(--surjet-dark);
  width: 50%;
}

/* Tab content: video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.video-card {
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #eef1f5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* === BOTTOM CTA === */
.product-bottom-cta {
  background: var(--surjet-dark);
  padding: 48px 0;
}

.product-bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.product-bottom-cta h3 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 6px 0;
}

.product-bottom-cta p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin: 0;
}

.product-bottom-cta .product-btn-primary {
  white-space: nowrap;
  flex-shrink: 0;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .product-showcase-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .product-img-col { position: static; }
  .product-title { font-size: 1.7rem; }
  .product-bottom-cta-inner { flex-direction: column; text-align: center; }
  .video-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
}

@media (max-width: 600px) {
  .product-showcase { padding: 30px 0 40px; }
  .product-img-main { padding: 24px 16px; min-height: 200px; }
  .product-title { font-size: 1.45rem; }
  .product-actions { flex-direction: column; }
  .product-btn-primary, .product-btn-secondary { width: 100%; justify-content: center; }
  .tab-panel { padding: 20px 16px; }
  .video-grid { grid-template-columns: 1fr; }
  .product-bottom-cta { padding: 36px 0; }
}

/* =====================================================
   WORDPRESS-SPECIFIC OVERRIDES
   ===================================================== */

/* Strip WPBakery shortcode remnants */
.entry-content .wpb_wrapper,
.entry-content .vc_row,
.entry-content .vc_column_container,
.entry-content .wpb_column,
.entry-content .vc_col-sm-6,
.entry-content .vc_col-sm-12 {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}

/* ── Article content styling ── */
.entry-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #333;
}
.entry-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--surjet-dark);
  margin: 45px 0 20px;
  letter-spacing: 0.5px;
}
.entry-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--surjet-dark);
  margin: 35px 0 15px;
}
.entry-content p {
  margin-bottom: 18px;
}
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}
.entry-content a {
  color: var(--surjet-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.entry-content a:hover {
  color: var(--surjet-dark);
}
.entry-content ul, .entry-content ol {
  margin: 15px 0 20px 25px;
}
.entry-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.entry-content blockquote {
  border-left: 4px solid var(--surjet-blue);
  padding: 15px 25px;
  margin: 25px 0;
  background: var(--surjet-light);
  font-style: italic;
  color: #555;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.95rem;
}
.entry-content td, .entry-content th {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-align: left;
}
.entry-content th {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--surjet-dark);
  background: var(--surjet-light);
}
.entry-content strong {
  color: var(--surjet-dark);
}

/* WP block editor compatibility */
.entry-content .wp-block-image img {
  border-radius: 8px;
}
.entry-content .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}
.entry-content .wp-block-table td,
.entry-content .wp-block-table th {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* WP admin bar offset */
body.admin-bar .site-header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* Mobile hamburger menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--surjet-dark);
  margin: 5px 0;
  transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .main-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--surjet-white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 999;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .header-portal {
    display: none;
  }
  .header-phone {
    display: none;
  }
}

/* (Legacy video/tab styles removed — all in PREMIUM v6 section above) */

/* WP Images in content */
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* WP list styling in product pages */
.entry-content ul,
.entry-content ol {
  padding-left: 25px;
  margin-bottom: 20px;
}
.entry-content li {
  color: var(--text-secondary, #555);
  line-height: 1.8;
  margin-bottom: 6px;
}

/* WP tables in product pages */
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  margin: 20px 0;
}
.entry-content table tr:nth-child(even) {
  background: var(--surjet-light);
}
.entry-content table td,
.entry-content table th {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
  text-align: left;
}
.entry-content table td:first-child,
.entry-content table th:first-child {
  font-weight: 600;
  color: var(--surjet-dark);
}

/* WP headings in product content */
.entry-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--surjet-dark);
  text-transform: uppercase;
  margin: 30px 0 15px;
}
.entry-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--surjet-dark);
  margin: 25px 0 10px;
}
.entry-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--surjet-dark);
  margin: 20px 0 10px;
}

/* WP paragraphs */
.entry-content p {
  color: var(--text-secondary, #555);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* CTA section used in pages */
.page-cta {
  background: var(--surjet-dark);
  padding: 80px 0;
  text-align: center;
  margin-top: 60px;
}
.page-cta h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--surjet-white);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-cta p {
  color: #ccc;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

/* ==================== BRAND CATALOG SECTIONS ==================== */
/* For multi-product brand pages (Sato, Toshiba, Brother, etc.) */
.brand-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid #e5e7eb;
}
.brand-section:last-of-type {
  border-bottom: none;
}
.brand-section-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-section-img img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.brand-section-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--surjet-dark);
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.brand-section-text h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--surjet-dark);
  margin-bottom: 12px;
}
.brand-section-text p {
  color: #444;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.brand-section-text b, .brand-section-text strong {
  color: var(--surjet-dark);
}
.brand-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surjet-blue);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  margin-top: 16px;
  transition: all 0.3s ease;
}
.brand-pdf-btn:hover {
  background: #003a9e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 71, 186, 0.3);
}
.brand-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px 0;
}
.brand-image-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
/* Responsive brand sections */
@media (max-width: 768px) {
  .brand-section {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 0;
  }
  .brand-section-img {
    max-width: 300px;
    margin: 0 auto;
  }
  .brand-section-text h2 {
    font-size: 1.4rem;
  }
  .brand-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==================== GALLERY ARROWS ==================== */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  color: var(--surjet-dark);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
  opacity: 0;
  padding: 0;
}
.product-img-main:hover .gallery-arrow {
  opacity: 1;
}
.gallery-arrow:hover {
  background: var(--surjet-blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,71,186,0.3);
}
.gallery-arrow-prev { left: 12px; }
.gallery-arrow-next { right: 12px; }
.gallery-counter {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.2s;
}
.product-img-main:hover .gallery-counter {
  opacity: 1;
}
@media (max-width: 768px) {
  .gallery-arrow {
    opacity: 1;
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
  .gallery-counter {
    opacity: 1;
  }
}

/* ==================== BLOG / NOTICIAS ==================== */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding: 20px 0;
}
.blog-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 30px;
    background: #f0f2f5;
    color: var(--surjet-dark, #0a1628);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.2s;
}
.blog-filter-btn:hover { background: #e0e4ea; color: var(--surjet-dark); text-decoration: none; }
.blog-filter-btn.active { background: var(--surjet-blue, #0056b3); color: white; }
.blog-filter-btn .filter-count {
    font-size: 11px;
    background: rgba(0,0,0,0.1);
    padding: 2px 7px;
    border-radius: 12px;
}
.blog-filter-btn.active .filter-count { background: rgba(255,255,255,0.25); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    text-decoration: none;
    color: inherit;
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.blog-card:hover .blog-card-image img { transform: scale(1.06); }

.blog-card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--surjet-blue, #0056b3);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
}

.blog-card-body {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--surjet-dark, #0a1628);
    font-family: var(--font-heading);
}

.blog-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 12px;
}

.blog-card .card-link {
    color: var(--surjet-blue, #0056b3);
    font-weight: 600;
    font-size: 14px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.blog-pagination a, .blog-pagination span {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}
.blog-pagination a { background: #f0f2f5; color: var(--surjet-dark); }
.blog-pagination a:hover { background: var(--surjet-blue); color: white; }
.blog-pagination .current { background: var(--surjet-blue, #0056b3); color: white; }

@media (max-width: 960px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-filters { gap: 6px; }
    .blog-filter-btn { padding: 6px 14px; font-size: 12px; }
}
@media (max-width: 768px) {
    .widget-visible iframe[title="chat widget"][style*="min-width: 360px"] {
        display: none !important;
        visibility: hidden !important;
    }
}
.reviews-section {
  padding: 50px 0 60px;
  background: var(--surjet-light, #f5f7fa);
  overflow: hidden;
}

/* --- Header con badge Google + rating --- */
.reviews-header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.reviews-google-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--surjet-dark, #0a0a1a);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reviews-rating-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-rating-num {
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--surjet-dark, #0a0a1a);
  line-height: 1;
}

.reviews-rating-stars {
  display: flex;
  gap: 2px;
}

.reviews-rating-count {
  font-family: var(--font-body, 'Open Sans', sans-serif);
  font-size: 0.9rem;
  color: var(--surjet-steel, #64748b);
}

/* --- Carousel container --- */
.reviews-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}

/* --- Track --- */
.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviewsScroll 40s linear infinite;
}

.reviews-carousel:hover .reviews-track {
  animation-play-state: paused;
}

/* --- Card individual --- */
.review-card {
  flex-shrink: 0;
  width: 340px;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* --- Header: avatar + nombre + fecha --- */
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surjet-blue, #0047ba);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.review-nombre {
  font-family: var(--font-body, 'Open Sans', sans-serif);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--surjet-dark, #0a0a1a);
  line-height: 1.3;
}

.review-fecha {
  font-family: var(--font-body, 'Open Sans', sans-serif);
  font-size: 0.8rem;
  color: var(--surjet-steel, #64748b);
}

/* --- Estrellas --- */
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

/* --- Texto de la reseÃ±a --- */
.review-texto {
  font-family: var(--font-body, 'Open Sans', sans-serif);
  font-size: 0.92rem;
  line-height: 1.6;
  color: #374151;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- AnimaciÃ³n scroll infinito --- */
@keyframes reviewsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50%));
  }
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .reviews-section {
    padding: 35px 0 40px;
  }
  .reviews-header-row {
    gap: 20px;
    margin-bottom: 30px;
  }
  .reviews-google-badge {
    font-size: 1.3rem;
  }
  .reviews-rating-num {
    font-size: 1.6rem;
  }
  .review-card {
    width: 300px;
    padding: 22px;
  }
  .reviews-track {
    gap: 18px;
    animation-duration: 35s;
  }
}

@media (max-width: 600px) {
  .reviews-section {
    padding: 25px 0 30px;
  }
  .reviews-header-row {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }
  .reviews-google-badge {
    font-size: 1.1rem;
  }
  .reviews-rating-num {
    font-size: 1.4rem;
  }
  .review-card {
    width: 270px;
    padding: 18px;
  }
  .reviews-track {
    gap: 14px;
    animation-duration: 30s;
  }
  .review-avatar {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .review-texto {
    font-size: 0.85rem;
  }
}

/* ============================================
   LANDING PAGES - RESPONSIVE FIX
   Pegar al final de surjet.css
   ============================================ */

/* --- FEATURES GRID --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 960px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* --- INTRO GRID --- */
@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    .intro-imagen {
        order: -1;
    }
    .intro-texto {
        padding: 0 1rem;
    }
}
/* --- CIFRAS GRID --- */
@media (max-width: 768px) {
    .cifras-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.5rem !important;
    }
    .cifra-item {
        padding: 10px 2px !important;
    }
    .cifra-numero,
    .cifra-numero.cifra-text {
        font-size: 1.4rem !important;
    }
    .cifra-label {
        font-size: 0.5rem !important;
        letter-spacing: 0.3px !important;
    }
}

@media (max-width: 480px) {
    .cifras-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.25rem !important;
    }
    .cifra-numero,
    .cifra-numero.cifra-text {
        font-size: 1.2rem !important;
    }
    .cifra-label {
        font-size: 0.45rem !important;
    }
}

/* --- HERO RESPONSIVE --- */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 2rem 1rem;
    }
    .hero-content {
        padding: 0 1rem;
    }
    .hero-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }
    .hero-sub {
        font-size: 1rem !important;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* --- SOLUCIONES GRID --- */
@media (max-width: 600px) {
    .soluciones-grid {
        grid-template-columns: 1fr !important;
    }
    .solucion-card {
        padding: 1.5rem;
    }
}

/* --- CTA FINAL --- */
@media (max-width: 768px) {
    .cta-final {
        padding: 2.5rem 1.5rem !important;
    }
    .cta-final h2 {
        font-size: 1.5rem !important;
    }
    .cta-final .hero-buttons {
        flex-direction: column;
    }
}

/* --- SAT SECTION --- */
@media (max-width: 768px) {
    .sat-section .intro-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- GENERAL LANDING FIXES --- */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .section-tag,
    .titulo-seccion {
        padding: 0 1rem;
    }
    .titulo-seccion h2 {
        font-size: 1.5rem !important;
    }
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* --- HEADER WHATSAPP BUTTON (mobile) --- */
.header-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #25D366;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-left: 1rem;
}

.header-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: #25D366;
}

@media (max-width: 768px) {
    .header-whatsapp span {
        display: none;
    }
}

.clientes-section {
  padding: 30px 0 50px;
  background: var(--surjet-white, #ffffff);
  overflow: hidden;
}

.clientes-titulo {
  text-align: center;
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--surjet-dark, #0a0a1a);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.clientes-subtitulo {
  text-align: center;
  font-family: var(--font-body, 'Open Sans', sans-serif);
  font-size: 1.05rem;
  color: var(--surjet-steel, #64748b);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* --- Carousel Container --- */
.clientes-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

/* --- Track que se mueve --- */
.clientes-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: clientesScroll 30s linear infinite;
}

.clientes-carousel:hover .clientes-track {
  animation-play-state: paused;
}

/* --- Logo individual --- */
.cliente-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 220px;
  height: 110px;
  padding: 8px;
  transition: all 0.3s ease;
}

.cliente-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.85;
  transition: all 0.4s ease;
}

.cliente-logo:hover img {
  opacity: 1;
  transform: scale(1.08);
}

/* Logo mÃ¡s grande (para logos pequeÃ±os como Salsas de Salteras) */
.cliente-logo-big {
  width: 280px;
  height: 140px;
}
@media (max-width: 960px) { .cliente-logo-big { width: 220px; height: 110px; } }
@media (max-width: 600px) { .cliente-logo-big { width: 180px; height: 90px; } }

/* --- AnimaciÃ³n scroll infinito --- */
@keyframes clientesScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50%));
  }
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .clientes-section {
    padding: 25px 0 35px;
  }
  .clientes-titulo {
    font-size: 1.6rem;
  }
  .clientes-subtitulo {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .clientes-track {
    gap: 45px;
    animation-duration: 25s;
  }
  .cliente-logo {
    width: 170px;
    height: 85px;
  }
}

@media (max-width: 600px) {
  .clientes-section {
    padding: 20px 0 25px;
  }
  .clientes-titulo {
    font-size: 1.3rem;
  }
  .clientes-subtitulo {
    font-size: 0.88rem;
    margin-bottom: 20px;
    padding: 0 15px;
  }
  .clientes-track {
    gap: 35px;
    animation-duration: 20s;
  }
  .cliente-logo {
    width: 140px;
    height: 70px;
    padding: 6px;
  }
}
