/* =============================================
   SERVIFIJACIONES A.Z. S.A.S. — Main Stylesheet
   Paleta: Azul #2160B0 | Navy #132E5C | Rojo #CC2B2B | Blanco
   ============================================= */

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

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #2160B0;
  --blue-dark:  #1A4D8F;
  --blue-nav:   #132E5C;
  --blue-light: #E8EFF8;
  --blue-mid:   #9BB8D8;
  --red:        #CC2B2B;
  --red-dark:   #A82222;
  --white:      #FFFFFF;
  --off:        #F5F7FA;
  --gray:       #6B7A90;
  --text:       #1A2A40;
  --border:     #D0DCF0;
  --shadow:     0 4px 24px rgba(19,46,92,0.12);
  --shadow-sm:  0 2px 8px rgba(19,46,92,0.08);
  --radius:     8px;
  --radius-lg:  12px;
  --transition: 0.25s ease;
  --font-main:  'Barlow', sans-serif;
  --font-cond:  'Barlow Condensed', sans-serif;
  --wa-number:  '573154960357'; /* sin + ni espacios */
}

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

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-main); }

/* ---- UTILIDADES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--blue); flex-shrink: 0; }
.section-label span { color: var(--blue); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.section-label.light::before { background: var(--red); }
.section-label.light span { color: var(--red); }
.section-title { font-family: var(--font-cond); font-size: 32px; font-weight: 700; color: var(--text); line-height: 1.15; margin-bottom: 6px; }
.section-title em { color: var(--red); font-style: normal; }
.section-title b  { color: var(--blue); }
.section-sub { font-size: 14px; color: var(--gray); margin-bottom: 20px; }
.section-sub.light { color: rgba(255,255,255,0.5); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: var(--radius); font-size: 13px; font-weight: 600; border: none; transition: var(--transition); letter-spacing: 0.3px; }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(204,43,43,0.35); }
.btn-secondary { background: rgba(255,255,255,0.12); color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-secondary:hover { background: rgba(255,255,255,0.2); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-wa { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: var(--blue-nav);
  padding: 7px 0;
  position: relative;
  z-index: 100;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-info { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.72); font-size: 12px; }
.topbar-item i { font-size: 13px; color: rgba(255,255,255,0.9); }
.topbar-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }
.topbar-social { display: flex; gap: 6px; align-items: center; }
.topbar-social a {
  width: 26px; height: 26px; border-radius: 5px;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; transition: var(--transition);
}
.topbar-social a:hover { background: var(--blue-dark); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar-logo img { height: 52px; object-fit: contain; }
.navbar-links { display: flex; align-items: stretch; }
.navbar-links a {
  color: var(--gray);
  font-size: 12px;
  font-weight: 500;
  padding: 0 12px;
  height: 68px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: var(--transition);
  white-space: nowrap;
}
.navbar-links a:hover,
.navbar-links a.active { color: var(--blue); border-bottom-color: var(--blue); }
.navbar-cta { background: var(--red); color: #fff; font-size: 12px; font-weight: 600; padding: 9px 18px; border-radius: var(--radius); border: none; transition: var(--transition); white-space: nowrap; }
.navbar-cta:hover { background: var(--red-dark); }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--blue); border-radius: 2px; transition: var(--transition); display: block; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--blue);
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.04) 0%, transparent 60%),
                    radial-gradient(circle at 20% 80%, rgba(19,46,92,0.5) 0%, transparent 50%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
.hero-content {
  padding: 36px 40px 36px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: rgba(255,255,255,0.45); }
.hero-eyebrow span { color: rgba(255,255,255,0.75); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }
.hero-title {
  font-family: var(--font-cond);
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero-title span { color: rgba(255,255,255,0.65); }
.hero-desc { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.75; margin-bottom: 20px; max-width: 440px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 6px; padding: 8px 14px;
}
.hero-badge i { font-size: 16px; color: rgba(255,255,255,0.6); }
.hero-badge span { color: rgba(255,255,255,0.75); font-size: 12px; font-weight: 500; }
.hero-image {
  background: rgba(0,0,0,0.18);
  border-left: 2px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  height: 440px;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.hero-image-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-image-placeholder i { font-size: 56px; color: rgba(255,255,255,0.15); }
.hero-image-placeholder span { font-size: 11px; color: rgba(255,255,255,0.2); }

/* Stats bar */
.hero-stats { background: var(--blue-nav); border-top: 1px solid rgba(255,255,255,0.07); }
.hero-stats .container { display: flex; }
.stat-item { flex: 1; padding: 12px 20px; text-align: center; border-right: 0.5px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-cond); color: var(--white); font-size: 22px; font-weight: 700; display: block; line-height: 1; }
.stat-label { color: rgba(255,255,255,0.45); font-size: 11px; margin-top: 3px; }

/* =============================================
   BRANDS BAR
   ============================================= */
.brands-bar { background: var(--off); border-bottom: 1px solid var(--border); padding: 14px 0; }
.brands-bar .container { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.brands-label { font-size: 10px; color: var(--gray); letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; font-weight: 600; }
.brands-sep { width: 1px; height: 18px; background: var(--border); flex-shrink: 0; }
.brands-list { display: flex; gap: 8px; flex-wrap: wrap; }
.brand-chip {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: 4px; padding: 5px 14px;
  font-size: 12px; font-weight: 600; color: var(--blue);
  transition: var(--transition);
}
.brand-chip:hover { border-color: var(--blue); }

/* =============================================
   SECTIONS GENERIC
   ============================================= */
.section { padding: 56px 0; }
.section-alt { background: var(--off); }
.section-dark { background: var(--blue-nav); }
.section-blue { background: var(--blue); }

/* =============================================
   SERVICIOS
   ============================================= */
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.services-link { color: var(--red); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 5px; transition: var(--transition); }
.services-link:hover { gap: 8px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  border: 0.5px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--white);
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.service-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-img {
  height: 140px; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px; position: relative; overflow: hidden;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(33,96,176,0.8) 0%, rgba(33,96,176,0.2) 60%);
}
.service-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--red); }
.service-img-ph { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.service-img-ph i { font-size: 40px; color: rgba(255,255,255,0.25); }
.service-img-ph span { font-size: 10px; color: rgba(255,255,255,0.2); }
.service-body { padding: 20px; }
.service-num { color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.service-body h3 { font-family: var(--font-cond); font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.service-body p { font-size: 13px; color: var(--gray); line-height: 1.65; }
.service-cta { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: var(--red); margin-top: 14px; transition: var(--transition); }
.service-cta:hover { gap: 8px; }

/* =============================================
   QUIÉNES SOMOS
   ============================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; height: 360px; }
.about-img-ph {
  background: rgba(255,255,255,0.06); border-radius: var(--radius-lg);
  border: 0.5px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  overflow: hidden;
  position: relative;
}
.about-img-ph.main { grid-row: span 2; }
.about-img-ph img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.about-img-ph i { font-size: 28px; color: rgba(255,255,255,0.15); }
.about-img-ph span { font-size: 10px; color: rgba(255,255,255,0.15); }

/* About sliders */
.about-slider { padding: 0 !important; }
.ab-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease-in-out; z-index: 1; }
.ab-slide.active { opacity: 1; z-index: 2; }
.ab-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.ab-dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; }
.ab-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: 1.5px solid rgba(255,255,255,0.8);
  cursor: pointer; transition: background 0.3s, transform 0.3s;
}
.ab-dot.active { background: #fff; transform: scale(1.3); }
.about-text .section-title { color: var(--white); }
.about-text p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.8; margin-bottom: 16px; }
.about-checks { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.about-check { display: flex; gap: 10px; align-items: flex-start; }
.check-dot {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background: rgba(204,43,43,0.2); border: 1.5px solid rgba(204,43,43,0.5);
  display: flex; align-items: center; justify-content: center;
}
.check-dot i { font-size: 10px; color: var(--red); }
.about-check span { color: rgba(255,255,255,0.65); font-size: 13px; line-height: 1.55; }

/* =============================================
   PRODUCTOS / CATÁLOGO
   ============================================= */
.catalog-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.catalog-tab {
  padding: 7px 16px; border-radius: 5px; font-size: 12px; font-weight: 500;
  border: 0.5px solid var(--border); background: var(--white); color: var(--gray);
  cursor: pointer; transition: var(--transition);
}
.catalog-tab:hover { border-color: var(--blue); color: var(--blue); }
.catalog-tab.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.product-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow); }
.product-img {
  height: 120px; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 2px solid var(--blue); position: relative; overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.product-img i { font-size: 40px; color: var(--blue); opacity: 0.25; }
.product-info { padding: 14px 16px; }
.product-cat { font-size: 10px; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.product-name { font-family: var(--font-cond); font-size: 16px; font-weight: 600; color: var(--text); margin: 4px 0 2px; line-height: 1.25; }
.product-brand { font-size: 11px; color: var(--gray); }
.product-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 12px; padding-top: 12px; border-top: 0.5px solid var(--border);
}
.product-price { font-size: 11px; color: #bbb; }
.product-btn { background: var(--blue); color: var(--white); font-size: 11px; font-weight: 600; padding: 6px 14px; border-radius: 5px; border: none; transition: var(--transition); }
.product-btn:hover { background: var(--blue-dark); }

/* =============================================
   PROCESO
   ============================================= */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
.process-grid::before {
  content: ''; position: absolute;
  top: 28px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px; background: rgba(255,255,255,0.12);
}
.process-step { text-align: center; padding: 18px 12px; }
.process-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.28);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  font-family: var(--font-cond); font-size: 18px; font-weight: 700; color: var(--white);
  position: relative; z-index: 1;
}
.process-step h4 { font-family: var(--font-cond); font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.process-step p { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.6; }

/* =============================================
   TESTIMONIOS
   ============================================= */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  border-top: 3px solid var(--blue); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.testimonial-stars { color: var(--blue); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; gap: 12px; align-items: center; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-cond); font-size: 14px; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.testimonial-name { font-size: 13px; font-weight: 600; color: var(--text); }
.testimonial-company { font-size: 11px; color: var(--gray); }

/* =============================================
   CONTACTO
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info .section-title { color: var(--white); }
.contact-info > p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.75; margin-bottom: 24px; }
.advisors { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.advisor {
  display: flex; gap: 12px; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.09);
  border-radius: var(--radius); padding: 12px 16px;
  transition: var(--transition);
}
.advisor:hover { background: rgba(255,255,255,0.07); }
.advisor-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-cond); font-size: 13px; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.advisor-name { color: var(--white); font-size: 13px; font-weight: 600; }
.advisor-phone { color: rgba(255,255,255,0.45); font-size: 12px; }
.contact-meta { display: flex; flex-direction: column; gap: 10px; }
.contact-meta-row { display: flex; gap: 10px; align-items: center; }
.contact-meta-row i { font-size: 16px; color: var(--red); flex-shrink: 0; }
.contact-meta-row span { font-size: 13px; color: rgba(255,255,255,0.5); }
.contact-wa { margin-top: 20px; }

/* Formulario */
.contact-form {
  background: var(--white); border-radius: var(--radius-lg); padding: 20px 22px 16px;
  box-shadow: 0 8px 40px rgba(19,46,92,0.25);
}
.contact-form h3 { font-family: var(--font-cond); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.contact-form > p { font-size: 13px; color: var(--gray); margin-bottom: 14px; }
.form-group { margin-bottom: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label { font-size: 12px; color: var(--gray); font-weight: 500; margin-bottom: 6px; display: block; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--off); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px 14px;
  color: var(--text); font-size: 13px; font-family: var(--font-main);
  transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(33,96,176,0.1);
}
.form-textarea { height: 82px; resize: vertical; }
.form-submit {
  width: 100%; background: var(--red); color: var(--white);
  font-size: 14px; font-weight: 700; padding: 11px;
  border-radius: var(--radius); border: none;
  transition: var(--transition); letter-spacing: 0.5px;
  font-family: var(--font-cond);
}
.form-submit:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(204,43,43,0.3); }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--blue-nav); padding: 36px 0 16px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 24px; }
.footer-logo img {
  height: 38px; object-fit: contain; margin-bottom: 10px;
  background: #fff; padding: 6px 10px; border-radius: 6px;
}
.footer-desc { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-bottom: 16px; }
.footer-contact-item { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.footer-contact-item i { font-size: 13px; color: var(--red); flex-shrink: 0; }
.footer-contact-item span { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-cta { margin-top: 16px; }
.footer-col h4 {
  color: var(--red); font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; margin-bottom: 10px;
  padding-bottom: 6px; border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.4); font-size: 12px; transition: var(--transition);
}
.footer-col ul li a i { font-size: 10px; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.75); padding-left: 4px; }
.footer-hours span { color: rgba(255,255,255,0.45); font-size: 12px; display: block; margin-bottom: 4px; }
.footer-hours span.day { font-weight: 600; color: rgba(255,255,255,0.6); margin-top: 8px; }
.footer-bottom {
  border-top: 0.5px solid rgba(255,255,255,0.07);
  padding-top: 20px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom span { font-size: 11px; color: rgba(255,255,255,0.25); }

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
}
.wa-fab a {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; background: #25D366;
  border-radius: 50%; color: white; font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
}
.wa-fab a:hover { background: #1ebe5d; transform: scale(1.1); }
.wa-fab-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--text); color: white; font-size: 12px; font-weight: 500;
  padding: 7px 14px; border-radius: 6px; white-space: nowrap; pointer-events: none;
  opacity: 0; transition: var(--transition);
}
.wa-fab-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-left-color: var(--text);
}
.wa-fab:hover .wa-fab-tooltip { opacity: 1; }

/* =============================================
   PAGE HERO (páginas internas)
   ============================================= */
.page-hero {
  background: var(--blue); padding: 60px 0;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(19,46,92,0.6) 0%, transparent 70%);
}
.page-hero-img {
  position: absolute; inset: 0;
}
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-cond); font-size: 48px; font-weight: 700;
  color: var(--white); line-height: 1.1; margin-bottom: 8px;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 16px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,0.5); font-size: 12px; }
.breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb span { color: rgba(255,255,255,0.3); font-size: 11px; }
.breadcrumb .current { color: rgba(255,255,255,0.75); font-size: 12px; }

/* =============================================
   TIENDA / PRODUCTOS PAGE
   ============================================= */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }
.shop-sidebar { background: var(--white); border-radius: var(--radius-lg); border: 0.5px solid var(--border); padding: 20px; position: sticky; top: 90px; }
.sidebar-title { font-family: var(--font-cond); font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--blue); }
.sidebar-cat { display: flex; flex-direction: column; gap: 2px; }
.sidebar-cat a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; border-radius: 5px; font-size: 13px;
  color: var(--gray); transition: var(--transition);
}
.sidebar-cat a:hover, .sidebar-cat a.active { background: var(--blue-light); color: var(--blue); font-weight: 500; }
.sidebar-cat a span { font-size: 11px; background: var(--border); color: var(--gray); padding: 1px 7px; border-radius: 10px; }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* =============================================
   MAPA EMBEBIDO
   ============================================= */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { display: block; width: 100%; height: 320px; border: none; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .shop-layout { grid-template-columns: 200px 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-content { padding: 48px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
}

@media (max-width: 768px) {
  .topbar-info { display: none; }
  .navbar-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 3px solid var(--blue); box-shadow: var(--shadow); padding: 8px 0; z-index: 300; }
  .navbar-links.open { display: flex; }
  .navbar-links a { height: auto; padding: 12px 24px; border-bottom: none; border-left: 3px solid transparent; margin-bottom: 0; }
  .navbar-links a.active, .navbar-links a:hover { border-left-color: var(--blue); background: var(--blue-light); }
  .navbar .container { position: relative; flex-wrap: wrap; }
  .navbar-cta { font-size: 11px; padding: 7px 13px; }
  .nav-toggle { display: flex; }
  .hero-title { font-size: 38px; }
  .section-title { font-size: 26px; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .about-images { height: 240px; }
  .section { padding: 40px 0; }
  .form-row { grid-template-columns: 1fr; }
  .stat-num { font-size: 22px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .hero-actions { flex-direction: column; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-stats .container { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-right: none; border-bottom: 0.5px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(odd) { border-right: 0.5px solid rgba(255,255,255,0.08); }
  .brands-sep { display: none; }
  .topbar-social { display: none; }
  .wa-fab { bottom: 16px; right: 16px; }
  .contact-form { padding: 16px; }
  .process-grid { grid-template-columns: 1fr; }
}

/* =============================================
   BRANDS BANNER — carrusel animado de logos
   ============================================= */
.brands-banner {
  background: var(--white);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.brands-banner-header {
  background: var(--blue-nav);
  padding: 8px 24px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.brands-banner-header::before,
.brands-banner-header::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.15);
}
.brands-banner-header span {
  color: rgba(255,255,255,0.65);
  font-size: 10px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  white-space: nowrap;
}
.brands-track-wrap {
  overflow: hidden; position: relative;
  background: var(--white);
}
.brands-track-wrap::before,
.brands-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2; pointer-events: none;
}
.brands-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.brands-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
.brands-track {
  display: flex; align-items: center;
  animation: scroll-brands 30s linear infinite;
  width: max-content;
}
.brands-track:hover { animation-play-state: paused; }
@keyframes scroll-brands {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-logo-item {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 28px;
  border-right: 0.5px solid var(--border);
  min-width: 150px;
  transition: background 0.25s;
}
.brand-logo-item:hover { background: var(--off); }
.brand-logo-item img {
  height: 32px; width: auto; max-width: 110px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.3s, opacity 0.3s;
}
.brand-logo-item:hover img { filter: grayscale(0%); opacity: 1; }
.brand-logo-text {
  font-size: 15px; font-weight: 700;
  color: var(--gray); letter-spacing: 0.5px;
  opacity: 0.5; transition: opacity 0.3s, color 0.3s;
  white-space: nowrap;
}
.brand-logo-item:hover .brand-logo-text { opacity: 1; color: var(--text); }
.brands-banner-footer {
  border-top: 0.5px solid var(--border);
  padding: 9px 20px;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
  background: var(--off);
}
.auth-badge-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: #EAF3DE; color: #27500A;
  font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: 20px;
}
.auth-badge-pill i { font-size: 12px; }
.brands-banner-footer .dist-note {
  font-size: 11px; color: var(--gray); margin-left: 4px;
}

/* ── BRANDS BANNER RESPONSIVE ── */
@media (max-width: 768px) {
  .brand-logo-item { padding: 14px 22px; min-width: 120px; }
  .brand-logo-item img { height: 28px; max-width: 90px; }
  .brand-logo-text { font-size: 13px; }
  .brands-banner-footer { gap: 6px; }
  .brands-track-wrap::before,
  .brands-track-wrap::after { width: 40px; }
}
@media (max-width: 480px) {
  .brand-logo-item { padding: 12px 16px; min-width: 100px; }
  .brand-logo-item img { height: 24px; max-width: 76px; }
  .brands-banner-header span { font-size: 9px; letter-spacing: 1.5px; }
  .auth-badge-pill { font-size: 10px; padding: 3px 9px; }
  .dist-note { display: none; }
}
