/* ═══════════════════════════════════════════════════════════════
   PCL Engates Rápidos — Shared Stylesheet
   Shared across all sub-pages. index.html has inline CSS for legacy.
════════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  color: #1C1C2E;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── DESIGN TOKENS ────────────────────────────────────────────────── */
:root {
  --navy:      #0D1B3E;
  --navy-mid:  #162852;
  --blue:      #1A4FA0;
  --blue-lt:   #2563C0;
  --orange:    #E85D04;
  --orange-dk: #C44D00;
  --steel:     #8CA3C4;
  --light:     #F4F6FA;
  --white:     #FFFFFF;
  --text:      #1C1C2E;
  --text-muted:#5A6A82;
  --border:    #DDE4EF;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(13,27,62,.10);
  --shadow-lg: 0 12px 48px rgba(13,27,62,.18);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ─── UTILITY ──────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-blue   { color: var(--blue); }
.text-white  { color: #fff; }

.tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,93,4,.10);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
h2.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
p.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,4,.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: #fff;
}
.btn-sm {
  padding: 10px 20px;
  font-size: .78rem;
}
.divider {
  width: 48px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 16px auto 32px;
}
.divider-left { margin-left: 0; }

/* ─── NAVIGATION ───────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 20px 0;
}
#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(13,27,62,.4);
  padding: 12px 0;
}
#navbar.solid {
  background: var(--navy);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img {
  height: 78px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: height var(--transition);
}
#navbar.scrolled .nav-logo img,
#navbar.solid .nav-logo img { height: 62px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,.1);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: 4px 10px;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}
.lang-switcher:hover {
  color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.35);
}
.nav-cta { display: none; }
@media(min-width:768px){ .nav-cta { display: inline-flex; } }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
@media(max-width:900px){
  .nav-links { display: none; }
  .nav-cta   { display: none !important; }
  .hamburger { display: flex; }
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .btn { margin-top: 12px; width: 100%; justify-content: center; }

/* ─── PAGE HEADER (sub-page hero) ──────────────────────────────────── */
.page-header {
  background: var(--navy);
  position: relative;
  padding: 130px 0 72px;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(26,79,160,.3) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(232,93,4,.10) 0%, transparent 60%);
  pointer-events: none;
}
.page-header-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-header-inner {
  position: relative;
  z-index: 2;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.breadcrumb span { color: rgba(255,255,255,.25); }
.page-header h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.05;
  max-width: 700px;
}
.page-header h1 em { color: var(--orange); font-style: normal; }
.page-header p {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.page-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,93,4,.15);
  border: 1px solid rgba(232,93,4,.35);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

/* ─── PRODUCT LINE CARDS ────────────────────────────────────────────── */
.product-lines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-line-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.product-line-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.product-line-thumb {
  height: 180px;
  overflow: hidden;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-line-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-line-card:hover .product-line-thumb img { transform: scale(1.05); }
.product-line-thumb-icon {
  width: 72px; height: 72px;
  background: rgba(26,79,160,.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.product-line-body {
  padding: 24px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-line-series {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.product-line-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.product-line-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}
.product-line-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 14px;
  text-decoration: none;
}
.product-line-link svg { transition: transform var(--transition); }
.product-line-card:hover .product-line-link svg { transform: translateX(4px); }

/* ─── SPECS TABLE ───────────────────────────────────────────────────── */
.specs-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 600px;
}
.specs-table th {
  background: var(--navy);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}
.specs-table td {
  padding: 12px 16px;
  font-size: .88rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:hover td { background: var(--light); }
.specs-table td strong { color: var(--navy); font-weight: 700; }

/* ─── FEATURE LIST ─────────────────────────────────────────────────── */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--text);
  line-height: 1.55;
}
.feature-list li::before {
  content: '';
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--orange);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 10L8 14L16 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}
.feature-list-light li { color: rgba(255,255,255,.8); }

/* ─── INFO GRID ────────────────────────────────────────────────────── */
.info-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.info-grid-2-center { align-items: center; }
@media(max-width:768px){ .info-grid-2 { grid-template-columns: 1fr; gap: 40px; } }

/* ─── CERT CARDS ───────────────────────────────────────────────────── */
.cert-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.cert-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.cert-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.cert-card-logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.cert-card-logo img {
  max-height: 100px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  filter: grayscale(15%);
  transition: filter var(--transition);
}
.cert-card:hover .cert-card-logo img { filter: grayscale(0%); }
.cert-card-badge {
  width: 100px; height: 100px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--blue);
  box-shadow: 0 0 0 10px rgba(26,79,160,.07);
  margin: 0 auto 4px;
}
.cert-badge-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cert-badge-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
}
.cert-badge-year {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: var(--orange);
}
.cert-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.cert-card-desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── WHY PCL CARDS ────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.why-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
}
.why-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-text { font-size: .92rem; color: var(--text-muted); line-height: 1.65; }

/* ─── SERVICES ─────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-num {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.service-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-text { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }
.service-icon {
  width: 48px; height: 48px;
  background: rgba(232,93,4,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 16px;
}

/* ─── STAT CARDS ───────────────────────────────────────────────────── */
.stat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  flex: 1;
  min-width: 160px;
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--orange); }
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ─── CONTACT CTA ──────────────────────────────────────────────────── */
.contact-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1A3668 100%);
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,93,4,.15) 0%, transparent 60%);
  pointer-events: none;
}
.contact-cta::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,79,160,.2) 0%, transparent 60%);
  pointer-events: none;
}
.contact-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
@media(max-width:768px){ .contact-cta-inner { grid-template-columns: 1fr; } }
.contact-cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.contact-cta-sub { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.65; }
.contact-cta-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* ─── TRUST BAR ────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--orange);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  border-right: 1px solid rgba(255,255,255,.3);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #fff;
}
.trust-text {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}
@media(max-width:600px){
  .trust-item { border-right: none; padding: 8px 16px; width: 50%; }
}

/* ─── FOOTER ───────────────────────────────────────────────────────── */
footer {
  background: #060E20;
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media(max-width:900px){ .footer-top { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .footer-top { grid-template-columns: 1fr; } }
.footer-brand-logo { height: 70px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-phone {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-phone:hover { color: rgba(255,255,255,.9); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}
.footer-contact-item span:first-child { flex-shrink: 0; }
.footer-contact-item a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--orange); }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-copy a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  text-decoration: none;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ─── WHATSAPP FLOAT ───────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  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,.45);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
}

/* ─── SCROLL ANIMATIONS ────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="100"] { transition-delay: .1s; }
[data-reveal-delay="200"] { transition-delay: .2s; }
[data-reveal-delay="300"] { transition-delay: .3s; }
[data-reveal-delay="400"] { transition-delay: .4s; }
[data-reveal-delay="500"] { transition-delay: .5s; }

/* ─── MODAL ────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,14,32,.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 4px;
}
.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.modal-sub { color: var(--text-muted); font-size: .9rem; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}
.form-success-icon { display: flex; justify-content: center; margin-bottom: 12px; color: var(--orange); }
.form-success h3 { font-family: 'Montserrat', sans-serif; color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: .9rem; }

/* ─── DOWNLOAD CARD ────────────────────────────────────────────────── */
.download-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--light);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-decoration: none;
  transition: all var(--transition);
}
.download-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  background: #fff;
}
.download-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.download-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.download-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
}

/* ─── HIGHLIGHTED CALLOUT BOX ──────────────────────────────────────── */
.callout {
  background: rgba(26,79,160,.06);
  border: 1.5px solid rgba(26,79,160,.2);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.callout-orange {
  background: rgba(232,93,4,.06);
  border: 1.5px solid rgba(232,93,4,.2);
  border-left: 4px solid var(--orange);
}
.callout-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.callout-orange .callout-title { color: var(--orange); }
.callout p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ─── VIDEO EMBED ───────────────────────────────────────────────────── */
.video-embed-wrap {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-facade-pg {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.video-facade-pg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .85;
  transition: opacity .3s;
}
.video-facade-pg:hover img { opacity: 1; }
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-circle {
  width: 72px; height: 72px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.video-facade-pg:hover .play-circle {
  transform: scale(1.1);
  box-shadow: 0 12px 48px rgba(0,0,0,.5);
}
.play-circle svg { margin-left: 4px; }

/* ─── RESPONSIVE HELPERS ───────────────────────────────────────────── */
@media(max-width:768px){
  .section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .page-header { padding: 110px 0 56px; }
  .nav-logo img { height: 57px; }
  #navbar.scrolled .nav-logo img,
  #navbar.solid .nav-logo img { height: 47px; }
}
@media(max-width:480px){
  .section     { padding: 48px 0; }
  .section-sm  { padding: 32px 0; }
  .page-header { padding: 88px 0 40px; }
  .stat-item   { padding: 24px 16px; }
  .product-lines-grid { grid-template-columns: 1fr; }
}
