/* ============================================================
   A500 SAFETY — Premium Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,800&family=Open+Sans:wght@300;400;500;600&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --orange:         #f27a40;
  --orange-dark:    #d9622a;
  --orange-light:   #f9a07a;
  --orange-glow:    rgba(242,122,64,0.35);
  --orange-subtle:  rgba(242,122,64,0.08);
  --black:          #000000;
  --dark:           #0d0d0d;
  --dark-2:         #141414;
  --dark-3:         #1c1c1c;
  --dark-gray:      #2a2a2a;
  --mid-gray:       #888888;
  --light-gray:     #f6f6f6;
  --border:         #e8e8e8;
  --border-dark:    rgba(255,255,255,0.07);
  --white:          #ffffff;

  --font-heading:   'Montserrat', sans-serif;
  --font-body:      'Open Sans', sans-serif;

  --radius:         10px;
  --radius-lg:      18px;
  --radius-xl:      28px;

  --shadow-sm:      0 1px 3px rgba(0,0,0,0.05), 0 4px 14px rgba(0,0,0,0.06);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.08), 0 20px 56px rgba(0,0,0,0.1);
  --shadow-lg:      0 8px 32px rgba(0,0,0,0.1), 0 40px 96px rgba(0,0,0,0.15);
  --shadow-orange:  0 8px 32px rgba(242,122,64,0.45);

  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --container:      1240px;
  --section-pad:    100px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Minimum touch target for interactive elements */
a, button, [role="button"] { touch-action: manipulation; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}

/* Prevent grid blowout — all direct grid/flex children */
.hero-split > *,
.featured-grid > *,
.about-dark-grid > *,
.why-list > *,
.categories-grid > *,
.products-grid > *,
.mv-grid > *,
.values-grid-new > *,
.team-grid-new > *,
.contact-grid > *,
.about-two-col > *,
.footer-grid > * {
  min-width: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--mid-gray);
  max-width: 540px;
  width: 100%;
  margin-bottom: 56px;
  line-height: 1.75;
}

.section-header { text-align: center; }
.section-header .section-subtitle { margin-inline: auto; }

.accent { color: var(--orange); }

/* ---------- Divider ---------- */
.divider {
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  border-radius: 2px;
  margin-bottom: 24px;
}
.divider-center { margin-inline: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Sheen effect */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn:hover::after { left: 160%; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(242,122,64,0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242,122,64,0.3);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark-gray);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding-block: var(--section-pad); }
.section-light { background: var(--light-gray); }
.section-dark  { background: var(--dark); color: var(--white); }
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--white); }

/* Generic Card */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: #000000;
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 4px 32px rgba(0,0,0,0.7);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img { height: 42px; width: auto; }

.logo-text-fallback {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
}
.logo-text-fallback .logo-accent { color: var(--orange); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 8px 18px;
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 18px; right: 18px;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
  border-radius: 2px;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }

/* CTA in nav */
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  box-shadow: 0 4px 16px rgba(242,122,64,0.4) !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; box-shadow: var(--shadow-orange) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  gap: 5px;
  background: none; border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(5,5,5,0.98);
  backdrop-filter: blur(20px);
  padding: 20px 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 999;
  flex-direction: column;
  gap: 2px;
}
.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 14px 16px;
  border-radius: var(--radius);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all var(--transition);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--orange);
  background: rgba(242,122,64,0.06);
  padding-left: 22px;
}

/* ============================================================
   PAGE HERO BANNER (inner pages)
   ============================================================ */
.page-hero {
  margin-top: 70px;
  background: var(--dark);
  padding: 100px 24px 84px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Grid + glow overlay */
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    radial-gradient(ellipse at 30% 60%, rgba(242,122,64,0.12) 0%, transparent 55%);
  background-size: 56px 56px, 56px 56px, 100% 100%;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  border-radius: 2px;
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.45);
  max-width: 460px;
  margin-inline: auto;
  font-weight: 300;
  line-height: 1.75;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--orange); opacity: 0.4; }
.breadcrumb .current { color: var(--orange); }

/* ============================================================
   HERO SECTION (index only)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(0,0,0,0.93) 0%, rgba(13,13,13,0.76) 50%, rgba(0,0,0,0.96) 100%),
    url('../img/hero-bg.jpg') center/cover no-repeat;
  background-color: var(--dark);
}

/* Animated grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridDrift 25s linear infinite;
  pointer-events: none;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 64px 64px; }
}

/* Ambient glow */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 12% 58%, rgba(242,122,64,0.16) 0%, transparent 52%),
    radial-gradient(ellipse at 88% 18%, rgba(242,122,64,0.07) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 36px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--orange));
  border-radius: 2px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -2.5px;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 30px;
}

.hero h1 span { color: var(--orange); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
  max-width: 500px;
  line-height: 1.85;
  font-weight: 300;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 100px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.28);
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
  animation: bounceScroll 2.5s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }

@keyframes bounceScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.35; }
  50%       { transform: translateX(-50%) translateY(9px); opacity: 0.7; }
}

/* Hero Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.05);
  z-index: 3;
}

.hero-stats-inner {
  display: flex;
  justify-content: center;
}

.hero-stat {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: background var(--transition);
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: rgba(242,122,64,0.05); }

.hero-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 2px;
  background: var(--orange);
  opacity: 0;
  transition: opacity var(--transition);
}
.hero-stat:hover::before { opacity: 1; }

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -1px;
}

.hero-stat-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-family: var(--font-heading);
  font-weight: 600;
}

/* ============================================================
   HERO SPLIT LAYOUT (index)
   ============================================================ */
.hero-split {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 92vh;
  position: relative;
  margin-top: 70px;
  overflow: hidden;
}

/* Left: dark text panel */
.hero-split-text {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 160px 56px;
  position: relative;
  z-index: 2;
}

/* No grid — gradient alone is cleaner */
.hero-split-text::before { display: none; }

/* Orange glow top-left */
.hero-split-text::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%; height: 60%;
  background: radial-gradient(ellipse at 0% 0%, rgba(242,122,64,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.hero-split-text .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.hero-split-text .hero-eyebrow::before {
  content: '';
  width: 32px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--orange));
}

.hero-split-text h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  line-height: 0.97;
  color: var(--white);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.hero-split-text .hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 44px;
  max-width: 440px;
  line-height: 1.85;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.hero-split-text .hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Ghost button for hero (dark bg) */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(242,122,64,0.06);
  transform: translateY(-2px);
}

/* Ghost light for dark sections */
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-ghost-light:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* Right: image panel */
.hero-split-visual {
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
}

.hero-split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 8s ease;
}
.hero-split-visual:hover img { transform: scale(1.04); }

/* Dark overlay on image */
.hero-split-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(13,13,13,0.65) 0%, rgba(0,0,0,0.25) 50%, transparent 100%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
}

/* Vertical orange border between panels */
.hero-split-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--orange) 30%, var(--orange) 70%, transparent 100%);
  z-index: 2;
}

/* Floating badge */
.hero-badge {
  position: absolute;
  bottom: 40px; right: 32px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  color: var(--white);
}

.hero-badge-icon {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(242,122,64,0.5);
  color: var(--white);
}

.hero-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-badge span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Stats bar — spans full width at bottom */
.hero-split .hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.05);
  z-index: 10;
}

.hero-split .hero-stats-inner {
  display: flex;
  justify-content: center;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}

/* ============================================================
   FEATURED DARK SECTION
   ============================================================ */
.featured-dark {
  background: #0f0f12;
  padding-block: var(--section-pad);
  position: relative;
  overflow: hidden;
}

/* Glow de profundidad lateral */
.featured-dark::before {
  content: '';
  position: absolute;
  top: 0; left: -10%;
  width: 55%; height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(242,122,64,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.featured-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}

.featured-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

/* Image side */
.featured-visual { position: relative; }

.featured-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.featured-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.featured-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg, transparent 40%,
    rgba(0,0,0,0.7) 100%
  );
}

/* Counter badge on image */
.featured-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--orange);
  border-radius: var(--radius);
  padding: 12px 18px;
  text-align: center;
  z-index: 2;
  box-shadow: var(--shadow-orange);
}
.featured-img-badge span {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}
.featured-img-badge small {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 3px;
}

/* Thumbnail strip */
.featured-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.feat-thumb {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 10px 6px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.feat-thumb:hover {
  background: rgba(242,122,64,0.12);
  border-color: rgba(242,122,64,0.3);
  transform: translateY(-3px);
}
.feat-thumb span { display: block; font-size: 1.4rem; margin-bottom: 4px; }
.feat-thumb p {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1.3;
}

/* Info side */
.featured-info {}

.featured-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.featured-label::before {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--orange);
  border-radius: 2px;
}

.featured-info h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.08;
  margin-bottom: 20px;
}

.featured-info > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 460px;
}

/* Feature list */
.featured-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.featured-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.featured-list li svg {
  width: 16px; height: 16px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(242,122,64,0.12);
  border-radius: 50%;
  padding: 2px;
  box-sizing: content-box;
}

/* ============================================================
   ABOUT DARK SECTION (index)
   ============================================================ */
.about-dark {
  background: var(--dark);
  padding-block: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.about-dark::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(242,122,64,0.09) 0%, transparent 55%);
  pointer-events: none;
}

.about-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}

.about-dark-text .divider { margin-bottom: 20px; }

.tag-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242,122,64,0.1);
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
  border: 1px solid rgba(242,122,64,0.2);
}

.about-dark-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.about-dark-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  margin-bottom: 18px;
}

/* Visual side */
.about-dark-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-dark-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}
.about-dark-visual:hover img { transform: scale(1.04); }

.about-dark-visual-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(242,122,64,0.18) 0%, transparent 50%),
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
}

/* Orange frame accent */
.about-dark-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(242,122,64,0.2);
  pointer-events: none;
}

/* ============================================================
   WHY CHOOSE US — Horizontal Ejecutivo
   ============================================================ */
.why-list {
  display: flex;
  flex-direction: column;
  margin-top: 56px;
  border-top: 1px solid var(--border);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.why-card {
  display: grid;
  grid-template-columns: 90px 52px 1fr;
  gap: 28px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  border-radius: 0;
  text-align: left;
  transition: all 0.35s ease;
  position: relative;
}

.why-card:hover {
  background: rgba(242,122,64,0.02);
}

.why-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.35s ease;
  text-align: center;
}

.why-card:hover .why-num {
  opacity: 1;
}

.why-icon {
  width: 44px; height: 44px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  flex-shrink: 0;
}

.why-card:hover .why-icon {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(242,122,64,0.25);
}

.why-icon svg {
  width: 20px; height: 20px;
  color: var(--orange);
  transition: color 0.35s ease;
}

.why-card:hover .why-icon svg { color: var(--white); }

.why-body h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
  color: var(--dark);
}

.why-body p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.65;
  max-width: 520px;
}

/* ============================================================
   CATEGORIES GRID — diseño vivo con acentos de color
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.category-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 16px 8px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: visible;
}

.category-card:hover {
  transform: translateY(-8px);
}

/* Big circle with gradient */
.cat-icon-wrap {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, #f5f5f5, #e8e8e8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.cat-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover .cat-icon-wrap {
  background: linear-gradient(145deg, #fff5ef, #ffe8da);
  box-shadow: 0 12px 35px rgba(242,122,64,0.25);
  transform: scale(1.06);
}

.category-card:hover .cat-icon-wrap::after {
  border-color: var(--orange);
}

.cat-emoji {
  font-size: 48px;
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12));
}

.category-card:hover .cat-emoji {
  transform: scale(1.18) rotate(-5deg);
  filter: drop-shadow(0 6px 12px rgba(242,122,64,0.3));
}

.cat-icon-wrap svg {
  width: 44px;
  height: 44px;
  stroke: var(--orange);
  stroke-width: 1.6;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover .cat-icon-wrap svg {
  stroke: var(--orange-dark);
  transform: scale(1.12);
}

/* Title with accent underline */
.category-card h3 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 8px;
}

.category-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2.5px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover h3 { color: var(--orange); }

.category-card:hover h3::after {
  width: 40px;
}

.category-card p {
  font-size: 0.78rem;
  color: var(--mid-gray);
  margin: 0;
  line-height: 1.55;
  max-width: 155px;
  transition: color 0.3s;
}

.category-card:hover p { color: #555; }

/* ============================================================
   ABOUT MINI SECTION (index)
   ============================================================ */
.about-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-mini-text .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-subtle);
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(242,122,64,0.15);
}

.about-mini-text p {
  font-size: 1rem;
  color: var(--mid-gray);
  line-height: 1.85;
  margin-bottom: 24px;
}

.about-mini-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-mini-image::before { content: '📦'; font-size: 6rem; opacity: 0.12; }
.about-mini-image .img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(242,122,64,0.16) 0%, transparent 60%);
}

/* ============================================================
   CLIENTS
   ============================================================ */
/* Carousel wrapper */
.clients-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.clients-track {
  display: flex;
  gap: 56px;
  align-items: center;
  width: max-content;
  animation: scrollLogos 28s linear infinite;
}

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

@keyframes scrollLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  color: #000;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.client-logo:hover {
  opacity: 0.7;
}

.client-logo svg {
  width: 180px;
  height: 48px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #c85a1e 100%);
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% -20%, rgba(255,255,255,0.12) 0%, transparent 55%),
    repeating-linear-gradient(
      -45deg,
      transparent, transparent 36px,
      rgba(255,255,255,0.03) 36px,
      rgba(255,255,255,0.03) 72px
    );
}

/* Top glowing line */
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 2px;
  background: rgba(255,255,255,0.4);
  border-radius: 0 0 2px 2px;
}

.cta-banner-content { position: relative; z-index: 1; }

.cta-banner h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 460px;
  margin-inline: auto;
  line-height: 1.75;
}

.cta-banner .btn { margin: 8px; }
.cta-banner .btn-secondary { border-color: rgba(255,255,255,0.45); }

/* ============================================================
   NOSOTROS PAGE
   ============================================================ */

/* --- Page Hero enhancements --- */
.page-hero .breadcrumb { margin-bottom: 24px; }
.page-hero h1 .accent { color: var(--orange); }

/* --- About Intro (Quiénes Somos) --- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

.about-intro-header {
  position: sticky;
  top: 100px;
}

.about-intro-lead {}

.lead-text {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.9;
  border-left: 3px solid var(--orange);
  padding-left: 24px;
}

/* About features (numbered) */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

.about-feature {
  padding: 36px 32px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.35s ease;
}

.about-feature:nth-child(2n) { border-right: none; }

.about-feature:hover { background: rgba(242,122,64,0.02); }

.about-feature-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.6;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}

.about-feature:hover .about-feature-num { opacity: 1; }

.about-feature h3 {
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 10px;
}

.about-feature p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
}

/* --- Mission / Vision Dark --- */
.section-mv-dark {
  background: var(--dark);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}

.section-mv-dark::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(242,122,64,0.08) 0%, transparent 60%);
}

.text-white { color: var(--white); }
.text-muted-light { color: rgba(255,255,255,0.5); }
.divider-light { background: rgba(255,255,255,0.2); }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.mv-card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 44px 36px;
  transition: all 0.35s ease;
}

.mv-card-dark:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(242,122,64,0.3);
  transform: translateY(-4px);
}

.mv-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid rgba(242,122,64,0.3);
  border-radius: 4px;
}

.mv-card-dark h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.4;
}

.mv-card-dark h3 .accent { color: var(--orange); }

.mv-card-dark p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* --- Values New --- */
.values-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 32px 28px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.35s ease;
}

.value-item:hover { background: rgba(242,122,64,0.02); }

.value-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.value-item:hover .value-icon-wrap {
  background: var(--orange);
  border-color: var(--orange);
}

.value-icon-wrap svg {
  width: 20px; height: 20px;
  color: var(--orange);
  transition: color 0.35s ease;
}

.value-item:hover .value-icon-wrap svg { color: var(--white); }

.value-body h3 {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 6px;
}

.value-body p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.65;
}

/* --- Team New --- */
.team-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}

/* Card pro — estilo referencia con foto grande */
.team-card-pro {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.team-card-pro:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

/* Zona de foto */
.team-photo-pro {
  position: relative;
  height: 280px;
  background: #f0f0f0;
  overflow: hidden;
}

.team-photo-pro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Placeholder elegante cuando no hay foto */
.team-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}

.team-photo-placeholder svg {
  width: 160px;
  height: 160px;
  color: rgba(242,122,64,0.18);
  margin-bottom: -20px;
}

/* Overlay naranja sutil en hover */
.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(242,122,64,0.08) 100%
  );
  transition: opacity 0.35s ease;
  opacity: 0;
}

.team-card-pro:hover .team-photo-overlay { opacity: 1; }

/* Acento naranja inferior en la foto */
.team-photo-pro::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.team-card-pro:hover .team-photo-pro::after { transform: scaleX(1); }

/* Iconos sociales */
.team-card-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 18px 16px 10px;
  border-bottom: 1px solid var(--border);
}

.team-social-link {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  transition: all 0.3s ease;
}

.team-social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(242,122,64,0.06);
}

.team-social-link svg {
  width: 14px;
  height: 14px;
}

/* Info nombre y rol */
.team-card-info {
  padding: 20px 20px 26px;
}

.team-card-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.team-member-info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.team-member-info .role,
.team-card-info .role {
  font-size: 0.72rem;
  color: var(--mid-gray);
  font-weight: 400;
  font-family: var(--font-body);
  letter-spacing: 0;
}

/* ============================================================
   CATALOG PAGE
   ============================================================ */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 56px;
}

.filter-tab {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--mid-gray);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab:hover { border-color: var(--orange); color: var(--orange); }
.filter-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(242,122,64,0.38);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(242,122,64,0.2);
}
.product-card.hidden { display: none; }

.product-thumb {
  height: 210px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 16px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-thumb img {
  transform: scale(1.06);
}

.product-info { padding: 22px 20px; flex: 1; display: flex; flex-direction: column; }

.product-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.badge-escritura  { background: rgba(242,122,64,0.1);  color: var(--orange); }
.badge-tecnologia { background: rgba(41,98,255,0.1);   color: #2962ff; }
.badge-ecologico  { background: rgba(46,125,50,0.1);   color: #2e7d32; }
.badge-seguridad  { background: rgba(230,81,0,0.1);    color: #e65100; }
.badge-ejecutivo  { background: rgba(74,20,140,0.1);   color: #4a148c; }

.product-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
  color: var(--dark);
}
.product-code {
  font-size: 0.72rem;
  color: #bbb;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.product-card .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  padding: 11px 20px;
}

/* ============================================================
   CONTACTO PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
}
.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.contact-form .sub {
  font-size: 0.92rem;
  color: var(--mid-gray);
  margin-bottom: 32px;
  line-height: 1.65;
}

.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem; /* ≥16px prevents iOS auto-zoom */
  color: var(--dark);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242,122,64,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #166534;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  margin-top: 16px;
}

/* Contact Info Panel */
.contact-info-panel { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  border: 1.5px solid var(--border);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all var(--transition);
}
.contact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(242,122,64,0.25);
}

.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--orange-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.contact-card:hover .contact-card-icon {
  background: var(--orange);
  box-shadow: 0 4px 14px rgba(242,122,64,0.4);
}
.contact-card-icon svg { width: 20px; height: 20px; color: var(--orange); transition: color var(--transition); }
.contact-card:hover .contact-card-icon svg { color: var(--white); }

.contact-card-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-card-text span { font-size: 0.92rem; color: var(--mid-gray); line-height: 1.5; }

/* Map Placeholder */
.map-placeholder {
  margin-top: 24px;
  height: 220px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
}
.map-placeholder::before { content: '📍'; font-size: 3rem; opacity: 0.2; }
.map-placeholder span {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: #bbb;
  letter-spacing: 2px;
  text-transform: uppercase;
  bottom: 18px;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 900;
  transition: all var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.3); }
  60%       { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0); }
}
.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
  animation: none;
}
.whatsapp-float svg { width: 28px; height: 28px; color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #080808;
  color: rgba(255,255,255,0.45);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo img { height: 38px; width: auto; }

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
}
.footer-logo-text .accent { color: var(--orange); }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.85;
  max-width: 270px;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.38);
}

.footer-social { display: flex; gap: 8px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}
.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(242,122,64,0.4);
}
.social-link svg { width: 15px; height: 15px; }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 22px; height: 1.5px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.38);
  transition: all var(--transition);
}
.footer-links a:hover { color: var(--orange); padding-left: 8px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-item svg {
  width: 14px; height: 14px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item span { font-size: 0.85rem; color: rgba(255,255,255,0.38); line-height: 1.55; }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.18);
  font-family: var(--font-heading);
  font-weight: 600;
}
.footer-bottom p span { color: rgba(242,122,64,0.65); }

.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.18);
  font-family: var(--font-heading);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--orange); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-orange  { color: var(--orange); }
.mb-0  { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ============================================================
   RESPONSIVE — 1024px  ← punto de quiebre principal
   El layout "mobile" arranca aquí: hamburguesa, hero apilado,
   grids de 1 columna, tipografías reducidas.
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 64px; }
  .container { padding-inline: 24px; }

  /* ---- Navigation ---- */
  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }

  /* ---- Hero Split: stack vertically ---- */
  .hero-split {
    display: flex;
    flex-direction: column;
    min-height: auto;
    margin-top: 70px;
  }
  .hero-split-text {
    order: 1;
    padding: 56px 32px 48px;
    min-height: auto;
  }
  .hero-split-text::before,
  .hero-split-text::after { display: none; }
  .hero-split-text h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    letter-spacing: -1.5px;
    line-height: 1;
  }
  .hero-split-text .hero-sub {
    font-size: 1rem;
    margin-bottom: 36px;
    max-width: 560px;
  }
  .hero-split-text .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero-split-visual {
    order: 2;
    height: 380px;
  }
  .hero-split-visual::before { display: none; }
  .hero-badge {
    bottom: 20px; right: 20px;
    padding: 12px 16px;
  }

  /* Stats bar: leave absolute but relative to the stacked element */
  .hero-split .hero-stats {
    order: 3;
    position: relative;
    bottom: auto; left: auto; right: auto;
  }
  .hero-split .hero-stats-inner {
    padding-inline: 0;
    flex-wrap: wrap;
  }
  .hero-stat {
    flex: 0 0 25%;
    max-width: none;
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: none;
    padding: 20px 16px;
  }
  .hero-stat:last-child { border-right: none; }

  /* ---- Featured Dark ---- */
  .featured-grid         { grid-template-columns: 1fr; gap: 40px; }
  .featured-img-wrap     { aspect-ratio: 16/8; }
  .featured-thumbs       { justify-content: flex-start; }
  .featured-header h2    { font-size: clamp(1.6rem, 4vw, 2.2rem); }
  .featured-info h3      { font-size: clamp(1.6rem, 4vw, 2.2rem); }

  /* ---- About Dark ---- */
  .about-dark-grid       { grid-template-columns: 1fr; gap: 0; }
  .about-dark-visual     { display: none; }
  .about-dark-text h2    { font-size: clamp(1.8rem, 4vw, 2.6rem); }

  /* ---- About mini (nosotros) ---- */
  .about-mini            { grid-template-columns: 1fr; }
  .about-mini-image      { display: none; }

  /* ---- Why List ---- */
  .why-card { grid-template-columns: 70px 44px 1fr; gap: 20px; padding: 28px 0; }
  .why-num  { font-size: 2.2rem; }

  /* ---- Categories ---- */
  .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .category-card   { padding: 14px 8px 18px; gap: 12px; }
  .cat-icon-wrap   { width: 95px; height: 95px; }
  .cat-emoji       { font-size: 40px; }
  .cat-icon-wrap svg { width: 38px; height: 38px; }

  /* ---- Page Hero (inner pages) ---- */
  .page-hero   { padding: 80px 24px 64px; }
  .page-hero h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }

  /* ---- Products ---- */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .filter-tabs   { gap: 8px; }

  /* ---- Nosotros page ---- */
  .about-intro          { grid-template-columns: 1fr; gap: 24px; }
  .about-intro-header   { position: static; }
  .about-features       { grid-template-columns: 1fr 1fr; }
  .mv-grid              { grid-template-columns: 1fr 1fr; gap: 20px; }
  .values-grid-new      { grid-template-columns: repeat(2, 1fr); }
  .team-grid-new        { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .team-photo-pro       { height: 240px; }

  /* ---- Contact ---- */
  .contact-grid  { grid-template-columns: 1fr; gap: 36px; }
  .contact-form  { padding: 36px 28px; }

  /* ---- Clients ---- */
  .clients-track { gap: 40px; }
  .client-logo svg { width: 120px; height: 30px; }

  /* ---- CTA Banner ---- */
  .cta-banner    { padding: 72px 24px; }
  .cta-banner h2 { font-size: clamp(1.8rem, 5vw, 2.8rem); }

  /* ---- Footer ---- */
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .footer-legal  { justify-content: center; }

  /* ---- Section headers ---- */
  .section-title    { font-size: clamp(1.5rem, 4vw, 2.2rem); }
  .section-subtitle { font-size: 1rem; margin-bottom: 40px; }
}

/* ============================================================
   RESPONSIVE — 768px (tablet portrait / mobile grande)
   Refinamientos adicionales sobre el punto de quiebre 1024px
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-pad: 52px; }
  .container { padding-inline: 20px; }

  /* Hero */
  .hero-split-text     { padding: 48px 20px 40px; }
  .hero-split-text h1  { font-size: clamp(1.9rem, 6vw, 2.8rem); letter-spacing: -1px; }
  .hero-split-visual   { height: 300px; }
  .hero-split-text .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-split-text .hero-buttons .btn,
  .hero-split-text .hero-buttons .btn-ghost { width: 100%; justify-content: center; }
  .hero-stat           { flex: 0 0 50%; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .hero-stat:nth-child(3),
  .hero-stat:nth-child(4) { border-bottom: none; }
  .hero-badge          { display: none; }
  .hero-stat-num       { font-size: 1.5rem; }

  /* Featured */
  .featured-grid       { gap: 28px; }
  .featured-img-wrap   { aspect-ratio: 16/9; }
  .featured-thumbs     { gap: 8px; }
  .feat-thumb          { padding: 8px 4px; }
  .feat-thumb span     { font-size: 1.2rem; }
  .featured-info > p   { font-size: 0.95rem; }
  .featured-list li    { font-size: 0.9rem; }

  /* About dark */
  .about-dark-text h2  { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Categories */
  .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .category-card   { padding: 12px 6px 16px; gap: 10px; }
  .cat-icon-wrap   { width: 82px; height: 82px; }
  .cat-emoji       { font-size: 36px; }
  .cat-icon-wrap svg { width: 32px; height: 32px; }

  /* Why */
  .why-card            { grid-template-columns: 50px 40px 1fr; gap: 14px; padding: 24px 0; }
  .why-num             { font-size: 1.8rem; }
  .why-icon            { width: 40px; height: 40px; }
  .why-icon svg        { width: 18px; height: 18px; }
  .why-body h3         { font-size: 0.82rem; }
  .why-body p          { font-size: 0.82rem; }

  /* Products */
  .products-grid       { grid-template-columns: 1fr 1fr; gap: 16px; }
  .filter-tab          { padding: 8px 16px; font-size: 0.7rem; }

  /* Nosotros */
  .about-features      { grid-template-columns: 1fr; }
  .about-feature       { border-right: none; }
  .mv-grid             { grid-template-columns: 1fr; gap: 16px; }
  .mv-card-dark        { padding: 32px 24px; }
  .values-grid-new     { grid-template-columns: repeat(2, 1fr); }
  .team-grid-new       { grid-template-columns: 1fr 1fr; gap: 16px; }
  .team-photo-pro      { height: 200px; }

  /* Contact */
  .contact-form        { padding: 28px 20px; }
  .form-row            { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* CTA */
  .cta-banner h2       { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .cta-banner p        { font-size: 0.95rem; }

  /* Section headers */
  .section-title       { font-size: clamp(1.4rem, 5vw, 2rem); }
  .section-subtitle    { font-size: 0.95rem; margin-bottom: 32px; }

  /* Page Hero */
  .page-hero           { padding: 68px 20px 56px; }
  .page-hero h1        { font-size: clamp(1.9rem, 7vw, 3rem); }
}

/* ============================================================
   RESPONSIVE — 480px (mobile pequeño)
   ============================================================ */
@media (max-width: 480px) {
  :root { --section-pad: 44px; }
  .container { padding-inline: 16px; }

  /* Hero */
  .hero-split-text      { padding: 40px 16px 32px; }
  .hero-split-text .hero-eyebrow { font-size: 0.6rem; }
  .hero-split-text h1   { font-size: clamp(1.7rem, 8vw, 2.2rem); letter-spacing: -0.5px; }
  .hero-split-visual    { height: 240px; }
  .hero-stat-num        { font-size: 1.4rem; }
  .hero-stat-label      { font-size: 0.58rem; }

  /* Featured */
  .featured-header h2   { font-size: 1.3rem; }
  .featured-img-wrap    { aspect-ratio: 4/3; }
  .featured-thumbs      { display: none; }
  .featured-info h3     { font-size: 1.3rem; }
  .featured-list        { gap: 10px; }
  .featured-list li     { font-size: 0.88rem; }
  .featured-info .btn,
  .featured-info .btn-ghost-light { width: 100%; justify-content: center; }

  /* Categories */
  .categories-grid  { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .category-card    { padding: 10px 4px 14px; gap: 8px; }
  .cat-icon-wrap    { width: 70px; height: 70px; }
  .cat-emoji        { font-size: 30px; }
  .cat-icon-wrap svg { width: 28px; height: 28px; }
  .category-card h3 { font-size: 0.7rem; }
  .category-card p  { font-size: 0.7rem; max-width: 110px; }

  /* Why */
  .why-card         { grid-template-columns: 40px 36px 1fr; gap: 12px; padding: 20px 0; }
  .why-num          { font-size: 1.5rem; }
  .why-icon         { width: 36px; height: 36px; border-radius: 8px; }
  .why-icon svg     { width: 16px; height: 16px; }
  .why-body h3      { font-size: 0.78rem; margin-bottom: 4px; }
  .why-body p       { font-size: 0.78rem; }

  /* Page Hero */
  .page-hero        { padding: 56px 16px 44px; }
  .page-hero h1     { font-size: clamp(1.7rem, 8vw, 2.4rem); letter-spacing: -0.5px; }
  .breadcrumb       { display: none; }

  /* Products */
  .products-grid    { grid-template-columns: 1fr; gap: 14px; }
  .filter-tab       { padding: 8px 12px; font-size: 0.65rem; }

  /* Nosotros */
  .values-grid-new  { grid-template-columns: 1fr; }
  .value-item       { padding: 24px 18px; }
  .team-grid-new    { grid-template-columns: 1fr 1fr; gap: 12px; }
  .team-photo-pro   { height: 180px; }
  .team-photo-placeholder svg { width: 120px; height: 120px; }
  .section-mv-dark  { padding: 64px 16px; }
  .mv-card-dark     { padding: 28px 20px; }
  .about-feature    { padding: 28px 20px; }

  /* Contact */
  .contact-form     { padding: 24px 16px; }
  .contact-form h3  { font-size: 1.15rem; }
  .map-placeholder  { height: 180px; }

  /* CTA */
  .cta-banner       { padding: 48px 16px; }
  .cta-banner .btn  { width: 100%; justify-content: center; margin: 6px 0; }

  /* Footer */
  .footer-grid      { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand p   { max-width: 100%; }
  .site-footer      { padding-top: 48px; }
  .clients-track    { gap: 32px; animation-duration: 20s; }
  .client-logo svg  { width: 100px; height: 26px; }

  /* Misc */
  .section-title    { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  .section-subtitle { font-size: 0.9rem; margin-bottom: 26px; }
  .divider          { margin-bottom: 16px; }
  .btn              { padding: 13px 22px; font-size: 0.72rem; }
}

/* ============================================================
   RESPONSIVE — 360px (mobile muy pequeño)
   ============================================================ */
@media (max-width: 360px) {
  .hero-split-text h1     { font-size: 1.6rem; }
  .categories-grid        { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .category-card          { padding: 10px 6px 14px; }
  .cat-icon-wrap          { width: 68px; height: 68px; }
  .cat-emoji              { font-size: 28px; }
  .cat-icon-wrap svg      { width: 26px; height: 26px; }
  .filter-tab             { padding: 7px 10px; font-size: 0.62rem; }
  .nav-wrap               { height: 60px; }
  .hero-split             { margin-top: 60px; }
  .page-hero              { margin-top: 60px; }
  .featured-header h2     { font-size: 1.2rem; }
  .why-card               { grid-template-columns: 34px 1fr; gap: 10px; padding: 18px 0; }
  .why-icon               { display: none; }
  .why-num                { font-size: 1.3rem; }
  .why-body h3            { font-size: 0.75rem; }
  .why-body p             { font-size: 0.75rem; }
}

/* ============================================================
   QUOTE CART BUTTON (all pages header)
   ============================================================ */
.quote-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
  margin-left: 8px;
}
.quote-cart-btn:hover,
.quote-cart-btn.active { background: var(--primary); border-color: var(--primary); }

.quote-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--primary);
  color: #000;
  font-size: 0.6rem;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid #000;
}
.quote-cart-btn.active .quote-badge { background: #fff; color: #000; }

/* ============================================================
   PRODUCT CARD — thumb link wrapper
   ============================================================ */
.product-thumb-link { display: block; text-decoration: none; }
.product-thumb-link:hover .product-thumb img { transform: scale(1.05); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: #fff; }

/* ============================================================
   PRODUCTO BREADCRUMB STRIP
   ============================================================ */
.producto-breadcrumb {
  background: #111;
  padding: 14px 0;
  margin-top: 72px;
}
.producto-breadcrumb .breadcrumb { color: rgba(255,255,255,.55); margin-bottom: 0; }

/* ============================================================
   PRODUCTO DETALLE PAGE
   ============================================================ */
.producto-detalle-section { padding-top: 56px; padding-bottom: 72px; }

.producto-detalle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Image panel */
.producto-img-panel { position: sticky; top: 90px; }
.producto-img-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e5e5;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.producto-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Info panel */
.producto-info-panel { padding-top: 8px; }

.producto-info-panel h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #0f0f0f;
  margin: 10px 0 6px;
  line-height: 1.15;
}

.producto-codigo {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #999;
  margin-bottom: 20px;
}

.producto-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
  border-left: 3px solid var(--primary);
  padding-left: 16px;
}

.producto-minimo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff8f0;
  border: 1px solid #ffe0c0;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 0.82rem;
  color: #b35f00;
  margin-bottom: 28px;
}
.producto-minimo svg { flex-shrink: 0; }
.producto-minimo strong { font-weight: 700; }

/* Qty control */
.producto-cantidad-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.cantidad-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #888;
  text-transform: uppercase;
}
.cantidad-control {
  display: flex;
  align-items: center;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
.qty-btn {
  width: 40px; height: 44px;
  background: #f5f5f5;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #333;
  transition: background .15s;
  touch-action: manipulation;
}
.qty-btn:hover { background: #e8e8e8; }
.qty-input {
  width: 72px;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  padding: 0 8px;
  height: 44px;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cantidad-hint { font-size: 0.82rem; color: #999; }

/* Action buttons */
.producto-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btn-add-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

/* Confirm message */
.producto-confirm {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2a7a2a;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  background: #edfbee;
  border: 1px solid #b8e6bb;
  border-radius: 8px;
  padding: 10px 14px;
}

/* Why personaliza list */
.producto-personaliza {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 8px;
}
.producto-personaliza h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 12px;
}
.producto-personaliza ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.producto-personaliza li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #333;
}
.producto-personaliza li svg { color: var(--primary); flex-shrink: 0; }

/* ============================================================
   COTIZACION PAGE
   ============================================================ */
.cot-hero {
  background: #000;
  padding: 100px 0 40px;
}
.cot-hero .breadcrumb { color: rgba(255,255,255,.5); margin-bottom: 12px; }
.cot-hero .breadcrumb a { color: rgba(255,255,255,.6); }
.cot-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
}
.cot-hero p { color: rgba(255,255,255,.65); font-size: 0.95rem; }

.cot-section { padding-top: 56px; padding-bottom: 80px; }

.cot-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* Items column */
.cot-items-col { display: flex; flex-direction: column; gap: 0; }

.cot-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: box-shadow .2s;
}
.cot-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }

.cot-item-img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.cot-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cot-item-body { flex: 1; min-width: 0; }

.cot-item-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.cot-item-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--primary);
  color: #000;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}
.cot-item-code {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #aaa;
  margin: 2px 0;
}
.cot-item-nombre {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.cot-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #bbb;
  padding: 4px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  flex-shrink: 0;
}
.cot-remove:hover { color: #e53935; background: #fff0f0; }

.cot-item-qty {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cot-qty-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #aaa;
  text-transform: uppercase;
}
.cot-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
.cot-qty-val { width: 64px; }
.cot-qty-unit {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #aaa;
  text-transform: uppercase;
}

/* Total bar */
.cot-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: #f5f5f5;
  border-radius: 10px;
  margin-top: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #555;
}
.cot-total-bar strong { font-size: 0.95rem; color: #111; }

.cot-seguir {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap .2s;
}
.cot-seguir:hover { gap: 10px; }

/* Form column */
.cot-form-col { position: sticky; top: 90px; }
.cot-form-box {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 32px;
}
.cot-form-box h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #111;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f0f0;
}

.cot-field { margin-bottom: 16px; }
.cot-field label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}
.req { color: var(--primary); }
.cot-field input,
.cot-field textarea,
.cot-field select {
  width: 100%;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 1rem;
  color: #111;
  background: #fafafa;
  transition: border-color .2s, background .2s;
  font-family: var(--font-body);
}
.cot-field input:focus,
.cot-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.cot-field textarea { resize: vertical; }

.cot-form-note {
  font-size: 0.78rem;
  color: #888;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cot-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  cursor: pointer;
}
.cot-check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}
.cot-check-label span {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.5;
}
.cot-check-label a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.cot-check-label a:hover { text-decoration: underline; }

.cot-submit-btn {
  width: 100%;
  font-size: 0.82rem;
  letter-spacing: .08em;
  padding: 15px;
  justify-content: center;
}

.cot-secure {
  text-align: center;
  font-size: 0.68rem;
  color: #bbb;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Success state */
.cot-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}
.cot-success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #edfbee;
  border: 2px solid #b8e6bb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #2a7a2a;
}
.cot-success h3 { font-size: 1.2rem; margin-bottom: 8px; }
.cot-success p { font-size: 0.88rem; color: #666; }

/* Empty state */
.cot-empty {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
}
.cot-empty-icon {
  color: #ccc;
  margin-bottom: 24px;
}
.cot-empty h3 { font-size: 1.4rem; margin-bottom: 10px; }
.cot-empty p { color: #888; margin-bottom: 28px; }

/* ============================================================
   RESPONSIVE — Producto & Cotizacion
   ============================================================ */
@media (max-width: 1024px) {
  .cot-layout { grid-template-columns: 1fr; }
  .cot-form-col { position: static; }
  .producto-detalle-grid { grid-template-columns: 1fr; gap: 36px; }
  .producto-img-panel { position: static; }
}

@media (max-width: 768px) {
  .cot-hero { padding: 90px 0 32px; }
  .cot-hero h1 { font-size: 1.8rem; }
  .cot-form-box { padding: 24px 18px; }
  .cot-item { flex-direction: column; gap: 16px; }
  .cot-item-img { width: 100%; height: 200px; }
  .producto-info-panel h1 { font-size: 1.5rem; }
  .producto-detalle-section { padding-top: 32px; }
}

@media (max-width: 480px) {
  .producto-actions { flex-direction: column; }
  .producto-actions .btn { width: 100%; justify-content: center; }
  .cot-item-qty { gap: 8px; }
  .cot-total-bar { flex-direction: column; align-items: flex-start; gap: 4px; }
}
