/* ============================================
   JSS MAQUINARIA INDUSTRIAL - DOBLADORADETUBO.COM
   Stylesheet v1.0 | 2025
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Barlow:wght@400;500;600&display=swap');

:root {
  --navy: #1b3a5c;
  --navy-dark: #0f2236;
  --navy-light: #2a5080;
  --orange: #e07c1a;
  --orange-dark: #b85f0d;
  --orange-light: #f5a84a;
  --bg: #f0f4f8;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --text: #1a2a3a;
  --text-muted: #5a7080;
  --border: #d4dde6;
  --border-light: #e8eef4;
  --success: #1a7a4a;
  --shadow-sm: 0 1px 4px rgba(27,58,92,0.08);
  --shadow-md: 0 4px 20px rgba(27,58,92,0.12);
  --shadow-lg: 0 8px 40px rgba(27,58,92,0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.header-top {
  background: var(--navy-dark);
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
  padding: 5px 0;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.header-top a { color: var(--orange-light); }
.header-top a:hover { color: white; }

.header-top-items { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.header-top-item { display: flex; align-items: center; gap: 5px; }

.header-main { padding: 0; }

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-logo img {
  height: 52px;
  width: auto;
  border-radius: 50%;
  border: 2px solid var(--orange);
}

.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo .logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: white;
  letter-spacing: 0.5px;
}

.site-logo .logo-tagline {
  font-size: 11px;
  color: var(--orange-light);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 2px; }

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  color: rgba(255,255,255,0.9);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.nav-link:hover, .nav-link.active {
  color: white;
  background: rgba(255,255,255,0.1);
}

.nav-link .arrow {
  font-size: 10px;
  transition: transform var(--transition);
  opacity: 0.6;
}

.nav-item:hover .nav-link .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 999;
  overflow: hidden;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 16px;
  font-size: 13.5px;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.dropdown-link:last-child { border-bottom: none; }

.dropdown-link:hover {
  background: var(--bg);
  color: var(--navy);
  padding-left: 22px;
}

.dropdown-link:hover::before {
  content: '›';
  margin-right: 4px;
  color: var(--orange);
}

/* CTA button in nav */
.nav-cta {
  background: var(--orange);
  color: white !important;
  border-radius: 5px;
  padding: 8px 16px !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  color: white !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(11,22,34,0.6);
  backdrop-filter: blur(2px);
}

.mobile-nav.open { display: block; }

.mobile-nav-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: var(--navy-dark);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  padding-bottom: 40px;
}

.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.mobile-nav-section { border-bottom: 1px solid rgba(255,255,255,0.07); }

.mobile-nav-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  color: var(--orange-light);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.mobile-nav-cat .arrow { transition: transform var(--transition); font-size: 12px; }
.mobile-nav-cat.open .arrow { transform: rotate(180deg); }

.mobile-nav-sub {
  display: none;
  padding-bottom: 8px;
}

.mobile-nav-sub.open { display: block; }

.mobile-nav-sub a {
  display: block;
  padding: 9px 32px;
  color: rgba(255,255,255,0.8);
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}

.mobile-nav-sub a:hover {
  color: white;
  background: rgba(255,255,255,0.05);
}

.mobile-nav-link {
  display: block;
  padding: 14px 20px;
  color: var(--orange-light);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ===================== CONTAINER ===================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(11,22,34,0.97) 0%, rgba(27,58,92,0.88) 60%, rgba(224,124,26,0.15) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.012) 20px, rgba(255,255,255,0.012) 40px);
}

.hero-pattern {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 500px;
  height: 500px;
  opacity: 0.04;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,124,26,0.15);
  border: 1px solid rgba(224,124,26,0.35);
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  color: white;
  margin-bottom: 18px;
  max-width: 680px;
  line-height: 1.1;
}

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

.hero-desc {
  font-size: 16.5px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.hero-stat {}
.hero-stat .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.hero-stat .label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224,124,26,0.35);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.btn-navy {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

.btn-sm { padding: 8px 18px; font-size: 13.5px; }
.btn-lg { padding: 15px 32px; font-size: 17px; }

/* ===================== SECTIONS ===================== */
section { padding: 64px 0; }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(26px, 4vw, 40px);
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  font-size: 16px;
}

/* ===================== PRODUCT CARDS ===================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--bg);
}

.product-card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}

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

.product-card-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.product-card-title {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.product-card-footer {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
}

/* ===================== FEATURES STRIP ===================== */
.features-strip {
  background: var(--navy);
  padding: 40px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.feature-item {
  text-align: center;
  padding: 16px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(224,124,26,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 24px;
  border: 1px solid rgba(224,124,26,0.3);
}

.feature-item h3 {
  color: white;
  font-size: 16px;
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

/* ===================== CATEGORY SECTION (index) ===================== */
.cat-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.cat-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.cat-section-header h2 {
  font-size: 24px;
  color: var(--navy);
}

.cat-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(27,58,92,0.08);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 8px;
}

/* ===================== PRODUCT DETAIL PAGE ===================== */
.page-hero {
  background: var(--navy);
  padding: 40px 0;
  color: white;
}

.page-hero h1 {
  color: white;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 10px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--orange-light); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.3); }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
}

.product-img-wrap {
  position: sticky;
  top: 100px;
}

.product-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  background: var(--white);
}

.product-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
}

.product-info {}

.product-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(224,124,26,0.1);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.product-info h1 {
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 12px;
}

.product-info .brand {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.product-info .brand strong { color: var(--navy); }

.product-desc {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Características */
.features-list {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
  border: 1px solid var(--border-light);
}

.features-list h3 {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.features-list ul { display: flex; flex-direction: column; gap: 7px; }

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.features-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Specs table */
.specs-section {
  margin-bottom: 28px;
}

.specs-section h3 {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
}

.specs-table th {
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.specs-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
}

.specs-table tr:nth-child(even) td { background: var(--bg-light); }
.specs-table tr:last-child td { border-bottom: none; }

.specs-table td:first-child { color: var(--text-muted); font-weight: 500; }
.specs-table td:last-child { font-weight: 600; color: var(--navy); text-align: right; }

.product-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.product-note {
  background: rgba(27,58,92,0.06);
  border-left: 3px solid var(--orange);
  padding: 12px 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ===================== CONTACT SECTION ===================== */
.contact-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.contact-info {
  background: var(--navy);
  padding: 48px 40px;
  color: white;
}

.contact-info h2 {
  color: white;
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-info p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(224,124,26,0.15);
  border: 1px solid rgba(224,124,26,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail-text { font-size: 14px; line-height: 1.6; }
.contact-detail-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange-light);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-detail-value { color: rgba(255,255,255,0.9); }
.contact-detail-value a { color: rgba(255,255,255,0.9); }
.contact-detail-value a:hover { color: var(--orange-light); }

.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 16px;
  transition: var(--transition);
}

.social-btn:hover { background: var(--orange); }

.contact-form-wrap { padding: 48px 40px; }

.contact-form-wrap h2 {
  font-size: 24px;
  margin-bottom: 6px;
}

.contact-form-wrap p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,92,0.1);
}

textarea { resize: vertical; min-height: 110px; }

.form-submit { margin-top: 20px; }

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Google reCAPTCHA */
.g-recaptcha { margin-top: 16px; }

/* ===================== ABOUT STRIP ===================== */
.about-strip {
  background: var(--bg-light);
  padding: 60px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 { font-size: 32px; margin-bottom: 16px; }
.about-content p { color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }

.about-checks { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

.about-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.check-icon {
  width: 28px;
  height: 28px;
  background: rgba(224,124,26,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 14px;
  flex-shrink: 0;
}

.about-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.metric-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.metric-card .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.metric-card .label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 5px;
  line-height: 1.4;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 56px;
  width: auto;
  border-radius: 50%;
  border: 2px solid var(--orange);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 10px; }

.footer-col h4 {
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before { content: '›'; color: var(--orange); }
.footer-links a:hover { color: white; padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item span:first-child { color: var(--orange); flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: white; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: white; }

.footer-legal { display: flex; gap: 16px; }

/* ===================== WHATSAPP FLOAT ===================== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  background: #25d366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
}

.wa-float:hover {
  background: #1da851;
  transform: scale(1.08);
}

/* Pulse ring */
.wa-float::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===================== MISC ===================== */
.divider {
  height: 1px;
  background: var(--border-light);
  margin: 24px 0;
}

.text-orange { color: var(--orange); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }

.bg-white { background: var(--white); }
.bg-light { background: var(--bg); }
.bg-navy { background: var(--navy); }

.py-section { padding: 64px 0; }
.pt-0 { padding-top: 0; }

.tag {
  display: inline-block;
  background: rgba(27,58,92,0.08);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.tag-orange {
  background: rgba(224,124,26,0.1);
  color: var(--orange-dark);
}

.tag-new {
  background: #e7f5ec;
  color: #14522a;
}

/* Map placeholder */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: none;
}

/* Schema notice */
.schema-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.schema-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 5px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.schema-badge .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

/* Video embed */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 24px;
  box-shadow: var(--shadow-md);
}

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

/* ===================== PAGES ===================== */
.page-intro {
  background: var(--white);
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.page-intro h2 { font-size: 22px; margin-bottom: 10px; }
.page-intro p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* Policy pages */
.policy-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 20px;
  margin: 28px 0 10px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}

.policy-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy-content p, .policy-content li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.policy-content ul { padding-left: 20px; list-style: disc; }

/* Thank you / alert */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14.5px;
  margin-top: 16px;
  display: none;
}

.alert-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
}

.alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .nav-link { padding: 10px 10px; font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 48px 0; }
  
  .header-top { display: none; }
  
  .main-nav { display: none; }
  .hamburger { display: flex; }
  
  .hero { min-height: 400px; }
  .hero-content { padding: 60px 0; }
  .hero-stats { gap: 24px; }
  
  .products-grid { grid-template-columns: 1fr 1fr; }
  
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-img-wrap { position: static; }
  
  .contact-section { grid-template-columns: 1fr; }
  .contact-info { padding: 36px 24px; }
  .contact-form-wrap { padding: 36px 24px; }
  
  .form-grid { grid-template-columns: 1fr; }
  
  .about-grid { grid-template-columns: 1fr; }
  .about-metrics { grid-template-columns: 1fr 1fr; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  
  .cat-section { padding: 24px 20px; }
  
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  
  .policy-content { padding: 28px 20px; }
  
  .page-intro { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-metrics { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
