/* ================================
   JEGASA · Soluciones Industriales
   Static HTML/CSS landing
   Color tokens en HSL
   ================================ */

:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(218, 60%, 12%);
  --card: hsl(0, 0%, 100%);
  --muted: hsl(215, 25%, 95%);
  --muted-foreground: hsl(215, 16%, 40%);
  --secondary: hsl(215, 30%, 96%);
  --border: hsl(214, 25%, 88%);

  --primary: #083884;
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-glow: #2697fd;
  --primary-deep: #081f3c;

  --sany: hsl(358, 78%, 50%);
  --sany-foreground: hsl(0, 0%, 100%);

  --industrial: hsl(42, 95%, 55%);
  --industrial-foreground: hsl(218, 88%, 22%);

  --gradient-hero: linear-gradient(135deg, hsl(220, 90%, 14%) 0%, hsl(218, 88%, 22%) 60%, hsl(217, 80%, 30%) 100%);
  --gradient-band: linear-gradient(90deg, hsl(218, 88%, 22%) 0%, hsl(217, 92%, 32%) 100%);

  --shadow-card: 0 10px 30px -10px hsla(218, 60%, 12%, 0.18);
  --shadow-soft: 0 4px 20px -6px hsla(218, 60%, 12%, 0.12);
  --shadow-strong: 0 20px 50px -20px hsla(218, 88%, 22%, 0.45);

  --radius: 0.5rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  color:#083884 !important;
  
}

body p,
body li,
body ul,
body ol,
body label,
body small,
body span,
body figcaption,
body address,
body blockquote,
body .contact-info,
body .detail-card p,
body .spec-card p,
body .product-card ul,
body .footer-grid p,
body .footer-grid ul,
body .welcome-grid p,
body .hero-copy p {
  font-size: 1.3rem !important;
}

.section-spacing {
  margin: clamp(2rem, 5vw, 50px) 0;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}

.mb-3 {
    margin-bottom: .5rem !important;
}

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

/* ===== Logo ===== */
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: hsla(0, 0%, 100%, 0.1);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 6px;
}
.logo-icon svg { width: 24px; height: 24px; fill: currentColor; }
.logo-text-main {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}
.logo-text-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.8;
}
.logo--dark { color: var(--primary); }
.logo--dark .logo-icon {
  background: hsla(218, 88%, 22%, 0.08);
  border-color: hsla(218, 88%, 22%, 0.2);
}

.bgpatin{
  background-image: url('assets/handle-detail.jpg');
  background-position: center;
  background-repeat: no-repeat;
  height: clamp(300px, 45vh, 642px);
}

/* ===== Sany Badge ===== */
.sany-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  padding: 0.4rem 0.85rem;
}
.sany-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.9);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary-deep);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: clamp(64px, 10vh, 90px);
  padding: 0.5rem 0;
}

.header-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo-img {
  width: clamp(100px, 18vw, 150px);
  height: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0.5rem;
  border: 2px solid hsla(0, 0%, 100%, 0.35);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-foreground);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.site-nav .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
}

body.nav-open {
  overflow: hidden;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.nav-links a { opacity: 0.85; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }

.btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s, background 0.2s;
  border: none;
  border-radius: 0 !important;
}
.btn-glow { background: var(--primary-glow); color: var(--primary-foreground); }
.btn-glow2 { background: var(--primary-deep); color: var(--primary-foreground); border: white 2px solid; }
.btn-glow:hover { filter: brightness(1.1); }
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 100%, 0.2);
}
.btn-primary:hover { background: var(--primary-glow); }
.btn-sany {
  background: var(--sany);
  color: var(--sany-foreground);
  padding: 0.85rem 2rem;
  font-size: 1rem;
  box-shadow: var(--shadow-strong);
}
.btn-sany:hover { filter: brightness(1.1); }

.btn-contact {
  border: 2px solid white;
  color: var(--sany-foreground);
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.btn-ctc{
  padding-bottom: 2rem;
}

.header-actions { display: flex; gap: 0.5rem; }
.btn-cert {
  display: inline-block;
  background: var(--primary);
  color: var(--sany-foreground);
  padding: 0.85rem 2rem;
  font-size: 1rem;
  box-shadow: var(--shadow-strong);
  border-radius: 40px !important;
  text-align: center;
  line-height: 1.3;
  max-width: 100%;
}
/* ===== Hero band ===== */
.hero-band {
  position: relative;
  background: var(--primary-deep);
  overflow: hidden;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: clamp(150px, 35vh, 280px);
}

.hero-carousel .carousel-item {
  background: var(--primary-deep);
}

.hero-band-image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-band::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, hsla(220, 90%, 14%, 0.4), transparent, var(--primary-deep));
  pointer-events: none;
}

.hero-carousel-control {
  z-index: 3;
  width: clamp(40px, 8vw, 52px);
  opacity: 1;
}

.hero-carousel-control.carousel-control-prev {
  left: clamp(0.25rem, 2vw, 1rem);
}

.hero-carousel-control.carousel-control-next {
  right: clamp(0.25rem, 2vw, 1rem);
}

.hero-carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 7vw, 48px);
  height: clamp(36px, 7vw, 48px);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1;
  color: #fff;
  background: rgba(8, 31, 60, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  transition: background 0.2s, border-color 0.2s;
}

.hero-carousel-control:hover .hero-carousel-arrow,
.hero-carousel-control:focus .hero-carousel-arrow {
  background: rgba(38, 151, 253, 0.85);
  border-color: #fff;
}

.hero-carousel-control:focus {
  box-shadow: none;
}

/* ===== Welcome ===== */
.welcome {
  background: var(--primary-deep);
  color: var(--primary-foreground);
  /* padding: 4rem 0; */
}
.welcome-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.welcome-header .divider {
  width: 96px; height: 1px;
  background: hsla(0, 0%, 100%, 0.3);
  margin-top: 0.5rem;
}
.welcome-header h1 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
}
.welcome-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr 1fr;
}
.welcome-grid h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.welcome-grid p { color: hsla(0, 0%, 100%, 0.85); line-height: 1.7; }
.welcome-cta { margin-top: 2.5rem; display: flex; justify-content: center; }

/* ===== Productos ===== */
.products { background: var(--background); padding: 4rem 0; }
.products-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.products-eyebrow .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted-foreground);
}

.tblack{
  font-weight: bolder;
}

.product-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  grid-template-columns: repeat(3, 1fr);
}
.product-card {
  background: var(--card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card2 {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card .card-image { height: 224px; width: 100%; object-fit: cover; }
.product-card .card-image-contain {
  height: 224px; width: 100%; object-fit: contain;
  background: var(--secondary);
  padding: 1rem;
}
.product-card .card-body { padding: 1.5rem; }
.product-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.product-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}
.product-card ul { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.875rem; }
.product-card ul li { display: flex; align-items: center; gap: 0.5rem; }
.product-card ul li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  /* background: var(--sany); */
}

.imglat{
  max-width: 60% !important;
}

.imglatf{
  max-width: 30% !important;
}

.imglat-list{
  max-width: 20% !important;
}

.cert-bar {
  margin-top: 2.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cert-bar p { font-weight: 600; }
.cert-bar .accent { color: var(--industrial); }
.cert-bar .btn-sany { padding: 0.5rem 1.5rem; font-size: 0.875rem; box-shadow: none; }

/* ===== Gallery strip ===== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
}
.gallery-strip img { height: 256px; width: 100%; object-fit: cover; }

/* ===== Jegasa & SANY hero section ===== */
.jegasa-sany { background: var(--background); padding: 5rem 0; }
.brand-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.brand-header .sep {
  font-size: 1.875rem;
  font-weight: 300;
  color: var(--muted-foreground);
}
.section-title {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  font-weight: 700;
  color: var(--primary);
}

.feature-row {
  display: grid;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: 260px 1fr 280px;
}
.states-list { display: flex; flex-direction: column; gap: 1.25rem; }
.state-item { display: flex; align-items: center; gap: 0.75rem; font-weight: 600; }
.flag-tag {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 36px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 10px;
  font-weight: 700;
  border-radius: 3px;
}
.feature-image {
  position: relative;
  text-align: center;
}
.feature-image img { max-width: 420px; margin: 0 auto; }
.info-card {
  background: var(--secondary);
  border-left: 4px solid var(--sany);
  padding: 1.25rem;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.7;
}

.spec-grid {
  display: grid;
  gap: clamp(0.75rem, 2vw, 1rem);
  grid-template-columns: 1fr 1fr;
  margin-top: 3rem;
}
.spec-card {
  padding: 1.5rem;
  border-radius: 12px;
  color: var(--primary-foreground);
  box-shadow: var(--shadow-card);
}
.spec-card.is-primary { background: var(--primary); }
.spec-card.is-glow { background: var(--primary-glow); }
.spec-pill {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}
.spec-pill.is-sany { background: var(--sany); color: var(--sany-foreground); }
.spec-pill.is-industrial { background: var(--industrial); color: var(--industrial-foreground); }
.spec-card h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.spec-card p { font-size: 0.875rem; opacity: 0.85; }

/* ===== Patín eléctrico ===== */
.pallet { background: var(--secondary); padding: 5rem 0; }
.pallet-row {
  display: grid;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: 1fr 1fr;
}
.pallet h2 {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.pallet h2 .accent { color: var(--primary-glow); }
.spec-list { display: flex; flex-direction: column; gap: 0.75rem; }
.spec-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-weight: 500; }
.spec-list li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sany);
  margin-top: 0.5rem;
  flex-shrink: 0;
}
.detail-grid {
  margin-top: 3rem;
  display: grid;
  gap: clamp(1rem, 3vw, 1.5rem);
  grid-template-columns: 1fr 1fr;
}
.detail-card {
  display: flex;
  gap: 1.25rem;
  background: var(--card);
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}
.detail-card img {
  width: 128px; height: 128px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 8px;
}
.detail-card h4 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.detail-card p { font-size: 0.875rem; color: var(--muted-foreground); }

/* ===== Mantenimiento ===== */
.maintenance { background: var(--background); padding: 5rem 0; }
.maintenance .container {
  display: grid;
  align-items: center;
  gap: 2.5rem;
  grid-template-columns: 1fr 1fr;
}
.maintenance .brand-header { justify-content: flex-start; margin-bottom: 1.5rem; }
.maintenance h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.maintenance p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.maintenance img { border-radius: 12px; box-shadow: var(--shadow-card); }

/* ===== Por qué elegir Jegasa ===== */
.why { background: var(--secondary); padding: 5rem 0; overflow: hidden; }
.why .container {
  display: grid;
  align-items: center;
  gap: 3rem;
  grid-template-columns: 1fr 1fr;
}
.why h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.why h2 .sany-text { color: var(--sany); }
.why-content { display: flex; flex-direction: column; gap: 1rem; line-height: 1.7; }
.why img { border-radius: 16px; box-shadow: var(--shadow-strong); }

/* ===== Quote strip ===== */
.quote-strip {
  position: relative;
  height: clamp(180px, 40vh, 288px);
  overflow: hidden;
}
.quote-strip img { height: 100%; width: 100%; object-fit: cover; }
.quote-strip::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, hsla(220, 90%, 14%, 0.85), hsla(220, 90%, 14%, 0.4), transparent);
}
.quote-strip .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 1;
}
.quote-strip p {
  max-width: 460px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  color: var(--primary-foreground);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--primary-deep);
  color: var(--primary-foreground);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
  padding: 3.5rem 0;
}
.footer-grid p { font-size: 0.875rem; color: hsla(0, 0%, 100%, 0.7); margin-top: 1rem; max-width: 280px; }
.footer-grid h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.footer-grid ul { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.footer-grid ul a { color: hsla(0, 0%, 100%, 0.8); }
.footer-grid ul a:hover { color: hsla(0, 0%, 100%, 1); }
.footer-mail {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--industrial);
}
.footer-phone { font-size: 0.875rem; margin-top: 0.75rem; color: hsla(0, 0%, 100%, 0.8); }
.footer-phone strong { color: var(--primary-foreground); }
.footer-distrib {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsla(0, 0%, 100%, 0.6);
}
.footer-bottom {
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1.25rem 2rem;
  font-size: 0.75rem;
  color: hsla(0, 0%, 100%, 0.6);
}

.container-fluid{
  max-height: 400px;
}

.blue-background{
  background-color: #083884;
  color: white;
  padding: 2rem;
}

.blue-background2{
  background-color: #2697fd;
  color: white;
  padding: 2rem;
}
.ftech-btn{
    display: flex;
    justify-content: flex-end;
    margin-top: -2rem;
    flex-direction: row;
    align-content: flex-start;
    align-items: flex-start;
}

.ftech-btnmont{
    display: flex;
    justify-content: flex-start;
    margin-top: -2rem;
    flex-direction: row;
    align-content: flex-start;
    align-items: flex-start;
}

.ftech-btnracks{
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    flex-direction: row;
    align-content: flex-start;
    align-items: flex-start;
}

.row-grey {
  background-color: #f2f2f2;
  padding: 2rem;
  margin-bottom: 1rem;
}

.row-blue{
  background-color: #e9f5ff;
  padding: 2rem;
}

.row-white {
  background-color: white;
  padding: 2rem;
  margin-bottom: 1rem;
}

.py-5{
  padding-top: 3rem !important;
  padding-bottom: 0 !important;
}

.pm{
  margin-bottom: 1rem;
}

.nav-links2 {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  align-items: stretch;
  min-height: clamp(88px, 14vh, 100px);
}

.nav-links2 .btn {
  flex: 1 1 0;
  min-width: 0;
  width: auto !important;
  min-height: clamp(88px, 14vh, 100px);
  text-align: center;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(0.5rem, 1.5vw, 1.25rem);
  font-size: clamp(0.9rem, 2.2vw, 1.125rem);
  line-height: 1.35;
  white-space: normal;
}
.nav-links-home {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-left: clamp(0.5rem, 8vw, 10rem);
}

.page-hero-spacing {
  margin: clamp(3rem, 12vh, 120px) 0;
}

.patin-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  /*gap: 0.5rem 1rem;*/
}

.patin-title h2 {
  font-size: 2rem;
  font-weight: 700;
}

.patin-title h2 span {
  font-size: inherit !important;
  font-weight: inherit !important;
}

.state-item-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.state-item-row img {
  max-height: clamp(60px, 12vw, 120px);
  width: auto;
}

.btn-glow3 { background: #121212; color:white; width: 100%; padding: clamp(0.6rem, 1.8vw, 1rem) clamp(1rem, 2.5vw, 1.5rem);}
.btn-glow4 { background: #ff4e00; color:white; width: 100%; padding: clamp(0.6rem, 1.8vw, 1rem) clamp(1rem, 2.5vw, 1.5rem);}
.btn-glow5 { background: #2697fd; color:white; width: 100%; padding: clamp(0.6rem, 1.8vw, 1rem) clamp(1rem, 2.5vw, 1.5rem);}
.btn-glow6 { background: #808080; color:white; width: 100%; padding: clamp(0.6rem, 1.8vw, 1rem) clamp(1rem, 2.5vw, 1.5rem);}
.btn-glow7 { background: #00b487; color:white; width: 100%; padding: clamp(0.6rem, 1.8vw, 1rem) clamp(1rem, 2.5vw, 1.5rem);}
.btn-glow8 { background: #ff0000; color:white; width: 100%; padding: clamp(0.6rem, 1.8vw, 1rem) clamp(1rem, 2.5vw, 1.5rem);}

.btn-glow2-h { background: var(--primary-deep); color: var(--primary-foreground); border: white 2px solid; padding: clamp(0.6rem, 1.8vw, 0.85rem) clamp(1rem, 2.5vw, 1.5rem); }
.btn-glow3-h { background: #121212; color:white; padding: clamp(0.6rem, 1.8vw, 0.85rem) clamp(1rem, 2.5vw, 1.5rem); }
.btn-glow4-h { background: #ff4e00; color:white; padding: clamp(0.6rem, 1.8vw, 0.85rem) clamp(1rem, 2.5vw, 1.5rem); }
.btn-glow5-h { background: #2697fd; color:white; padding: clamp(0.6rem, 1.8vw, 0.85rem) clamp(1rem, 2.5vw, 1.5rem); }
.btn-glow6-h { background: #808080; color:white; padding: clamp(0.6rem, 1.8vw, 0.85rem) clamp(1rem, 2.5vw, 1.5rem); }
.btn-glow7-h { background: #00b487; color:white; padding: clamp(0.6rem, 1.8vw, 0.85rem) clamp(1rem, 2.5vw, 1.5rem); }
.btn-glow8-h { background: #ff0000; color:white; padding: clamp(0.6rem, 1.8vw, 0.85rem) clamp(1rem, 2.5vw, 1.5rem); }







.bg-dark{
  background-color: #081f3c !important;
  background-image: url('assets/bg-footer.jpg');
  background-size: cover;
  background-position: center;
  min-height: clamp(350px, 50vh, 700px);
}

.bg-dark-sec{
  background-color: #081f3c !important;
}

.rec {
  border: solid 3px white;
  padding: 2rem;
  display: inline-block;
}

.footer {
  padding-top: clamp(60px, 15vw, 400px) !important;
}

.nosotros{
  background-image: url('assets/jegasawebheaders2.jpg');
  background-size: cover;
  background-position: top;
  min-height: clamp(400px, 60vh, 800px);
}

.montacargas{
  background-image: url('assets/jegasawebheaders6.jpg');
  background-size: cover;
  background-position: center;
  min-height: clamp(400px, 60vh, 800px);
}

.racks-industriales{
  background-image: url('assets/jegasawebheaders3.jpg');
  background-size: cover;
  background-position: center;
  min-height: clamp(400px, 60vh, 800px);
}

.patines{
  background-image: url('assets/jegasawebheaders4.jpg');
  background-size: cover;
  background-position: center;
  min-height: clamp(400px, 60vh, 800px);
}

.plataformas{
  background-image: url('assets/jegasawebheaders5.jpg');
  background-size: cover;
  background-position: center;
  min-height: clamp(400px, 60vh, 800px);
}

.text-col{
  color: #2697fd !important;
}

.text-coltit{
  color: #2697fd !important;

}


.txtb{
  color:#083884 !important;
}

.txt-f{
  font-size: 12px !important;
}

.handshake{
  padding: 3rem 0 !important;
}

.pad-logo{
  padding-top: 1.5rem;
}

.margtit{
  margin-top: 2rem;
}

.space-between{
  margin: 4rem 0;
}

ul li{
  list-style: disc;
  margin-left: 0 !important;
}

.fonts{
  font-size: 1.25rem;
}

ol, ul {
    padding-left: 0 !important;
}

.grey{
  background-color: #ededed;
  padding: 2rem;
}

.box-shadow{
  box-shadow: 0 0 10px 5px #d7d7d7;
    border-radius: 10px;
}


.bg-white{
  background-color: white;
  padding: 1rem;
} 

.mt{
  margin-top: 2rem;
}

.text-estados{
  font-size: 23px;
  font-weight: 700;
}

.list ul li{
  display: flex !important;
  flex-direction: column !important;
  gap: 0.4rem !important;
  font-size: 1.25rem !important;
}

/* ===== QUOTE ===== */
.quote-section {
  padding: clamp(2.5rem, 6vw, 5rem) 1.5rem;
  background: var(--background);
}

.quote-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.quote-inner img {
  width: clamp(120px, 20vw, 250px);
  height: auto;
  object-fit: contain;
}

.quote-text {
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.15rem, 3vw, 1.75rem) !important;
  font-weight: 600;
  font-style: italic;
  text-align: center;
  max-width: 420px;
  line-height: 1.4;
}

/* ===== QUOTE 2 ===== */
.quote-section2 {
  background: #e41b1b;
  width: 100%;
}

.quote-text2 {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  line-height: 1.5;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 1.5rem;
  font-size: clamp(0.8rem, 2.2vw, 1.05rem) !important;
  font-weight: 500;
}

/* ===== Responsive ===== */

/* Tablet grande: 992px - 1199px */
@media (max-width: 991px) {
  .nav-toggle {
    display: flex;
  }


  .site-nav {
    position: fixed;
    top: clamp(64px, 10vh, 90px);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--primary-deep);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav .nav-link {
    width: 100%;
    white-space: normal;
    padding: 0.85rem 1rem !important;
  }

  .product-grid,
  .gallery-strip,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-row,
  .spec-grid,
  .pallet-row,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .ftech-btn,
  .ftech-btnmont {
    justify-content: center;
    margin-top: 1rem;
  }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .welcome-grid,
  .product-grid,
  .gallery-strip,
  .feature-row,
  .spec-grid,
  .pallet-row,
  .detail-grid,
  .maintenance .container,
  .why .container,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .header-actions .btn { padding: 0.5rem 0.85rem; font-size: 0.75rem; }

}

/* Tablet pequeño: 576px - 767px */
@media (max-width: 767px) {
  .container { padding: 0 clamp(1rem, 3vw, 1.25rem); }
  .logo-text-main { font-size: 1.05rem; }
  .logo-text-sub { display: none; }
  .hero-band-image { height: 100%; }
  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item { height: clamp(120px, 30vh, 200px); }
  .welcome, .products, .jegasa-sany, .pallet, .maintenance, .why { padding: 2rem 0; }
  .nav-links-home { padding-left: 0; }

  .product-grid,
  .gallery-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-links2 {
    flex-wrap: wrap;
  }


  .nav-links2 .btn {
    flex: 1 1 50%;
    min-width: 50%;
    min-height: clamp(72px, 12vh, 88px);
    font-size: clamp(0.95rem, 2.8vw, 1.1rem);
    padding: clamp(1.1rem, 3.5vw, 1.75rem) clamp(0.75rem, 2vw, 1rem);
  }

  .rec {
    padding: 1.25rem;
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .footer {
    padding-top: clamp(40px, 10vw, 120px) !important;
  }

  .blue-background,
  .blue-background2 {
    padding: 1.25rem;
  }

  .row-white,
  .row-grey,
  .grey {
    padding: 1.25rem;
  }
}

/* Móvil: ≤575px */
@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .logo-text-main { font-size: 1.05rem; }
  .logo-text-sub { display: none; }
  .hero-band-image { height: 100%; }
  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item { height: 200px; }
  .welcome, .products, .jegasa-sany, .pallet, .maintenance, .why { padding: 3rem 0; }

  .bgpatin {
    height: auto;
    min-height: 280px;
    background-size: cover;
  }

  .space-between {
    margin: 2rem 0;
  }


}

@media (max-width: 480px) {
  .nav-links2 .btn {
    flex: 1 1 100%;
    min-width: 100%;
    min-height: clamp(64px, 11vh, 80px);
    font-size: 1.05rem;
    padding: clamp(1.15rem, 4vw, 1.75rem) 1rem;

  }
}

@media (min-width: 768px) {
  .patin-section {
    background-image: url('assets/handle-detail.jpg');
    background-repeat: no-repeat;
    background-position: center left;
    min-height: 670px;
  }
}