@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ===== Variables ===== */
:root {
  --primary:        #E8852D;
  --primary-dark:   #D4741F;
  --primary-light:  #FFF3E8;
  --secondary:      #5BBFB5;
  --secondary-dark: #4AA8A0;
  --secondary-light:#E8F8F7;
  --dark:           #333333;
  --gray:           #666666;
  --light-gray:     #F5F5F5;
  --border:         #E0E0E0;
  --white:          #FFFFFF;
  --footer-bg:      #1A1A1A;
  --whatsapp:       #25D366;
  --font:           'Inter', sans-serif;
  --font-title:     'Poppins', sans-serif;
  --radius:         12px;
  --radius-sm:      8px;
  --radius-lg:      20px;
  --shadow-sm:      0 1px 4px rgba(0,0,0,0.06);
  --shadow:         0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:      0 8px 30px rgba(0,0,0,0.14);
  --transition:     0.3s ease;
  --max-width:      1380px;
  --header-height:  68px;
}

/* ===== Reset ===== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
ul,ol { list-style: none; }
input,select,textarea { font-family: var(--font); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-title); }

/* ===== Layout ===== */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section    { padding: 56px 0; }
.section--gray    { background: var(--light-gray); }
.section--dark    { background: var(--dark); color: var(--white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== Typography ===== */
.section-title    { font-family: var(--font-title); font-size: 1.75rem; font-weight: 800; margin-bottom: 8px; color: var(--dark); }
.section-subtitle { font-size: 0.9375rem; color: var(--gray); margin-bottom: 32px; }
.section-header   { margin-bottom: 32px; }
.section-header--center { text-align: center; }

/* ===========================
   HEADER
=========================== */
#site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 12px rgba(232,133,45,0.3);
}

.header {
  height: var(--header-height);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}

.header__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header__logo img { height: 44px; width: auto; }
.header__logo-text { font-family: var(--font-title); font-size: 1.1rem; font-weight: 900; color: var(--white); line-height: 1.2; }
.header__logo-text small { display: block; font-size: 0.65rem; font-weight: 600; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.06em; }

/* Nav desktop */
.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link {
  padding: 7px 12px; border-radius: var(--radius-sm);
  font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,0.92);
  transition: var(--transition); white-space: nowrap;
}
.nav__link:hover, .nav__link.active {
  color: var(--white); background: rgba(255,255,255,0.18);
}

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px; border-radius: var(--radius-sm); padding: 8px;
  transition: var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.15); }
.hamburger__line { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open .hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed;
  top: var(--header-height); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; overflow-y: auto; padding: 12px 16px 32px;
}
.mobile-nav.open { display: block; }
.mobile-nav__item {
  display: flex; align-items: center; gap: 14px; padding: 13px 14px;
  border-radius: var(--radius); font-size: 0.9375rem; font-weight: 600;
  color: var(--dark); transition: var(--transition);
}
.mobile-nav__item:hover, .mobile-nav__item.active {
  background: var(--primary-light); color: var(--primary);
}
.mobile-nav__icon { font-size: 1.3rem; width: 30px; text-align: center; }
.mobile-nav__divider { height: 1px; background: var(--border); margin: 8px 0; }

/* ===========================
   FOOTER
=========================== */
#site-footer { background: var(--footer-bg); color: var(--white); }
.footer { padding: 56px 0 24px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 40px; }
.footer__col-title {
  font-family: var(--font-title); font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 14px;
}
.footer__text { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer__link {
  display: flex; align-items: center; gap: 8px; font-size: 0.875rem;
  color: rgba(255,255,255,0.6); padding: 4px 0; transition: var(--transition);
}
.footer__link:hover { color: var(--primary); }
.footer__brands { display: flex; flex-wrap: wrap; gap: 8px; }
.footer__brand {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; padding: 5px 14px; font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.04em;
  transition: var(--transition);
}
.footer__brand:hover { background: rgba(232,133,45,0.2); border-color: var(--primary); color: var(--primary); }
.footer__payments { display: flex; flex-wrap: wrap; gap: 8px; }
.footer__pay-badge {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 7px 13px; font-size: 0.75rem;
  font-weight: 700; text-align: center; line-height: 1.3; color: rgba(255,255,255,0.8);
}
.footer__pay-badge--green {
  background: rgba(91,191,181,0.15); border-color: var(--secondary); color: var(--secondary);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
  display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center;
}
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer__ig {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.875rem;
  font-weight: 700; color: rgba(255,255,255,0.65); transition: var(--transition);
}
.footer__ig:hover { color: var(--primary); }

/* ===========================
   WHATSAPP FLOATING BUTTON
=========================== */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 20px; z-index: 900;
  width: 60px; height: 60px; background: var(--whatsapp);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); cursor: pointer; transition: var(--transition);
  overflow: visible;
}
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }
.whatsapp-fab svg { width: 30px; height: 30px; fill: white; }
.whatsapp-fab__pulse {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: wapulse 2.2s ease infinite;
  pointer-events: none;
}
@keyframes wapulse {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.4); }
}

/* ===========================
   WHATSAPP MODAL
=========================== */
.wa-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 2000;
  align-items: flex-end; justify-content: center;
}
.wa-overlay.open { display: flex; }

.wa-modal {
  background: var(--white); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  width: 100%; max-width: 480px; padding: 24px 20px 36px;
  animation: slideUp 0.25s ease; position: relative;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

.wa-modal__handle { width: 40px; height: 4px; background: var(--border); border-radius: 4px; margin: 0 auto 20px; }
.wa-modal__title { font-family: var(--font-title); font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.wa-modal__subtitle { font-size: 0.875rem; color: var(--gray); margin-bottom: 20px; }
.wa-modal__options { display: flex; flex-direction: column; gap: 12px; }

.wa-option {
  display: flex; align-items: center; gap: 14px; padding: 16px;
  border: 2px solid var(--border); border-radius: var(--radius);
  cursor: pointer; transition: var(--transition); text-align: left; width: 100%;
  background: var(--white);
}
.wa-option:hover { border-color: var(--whatsapp); background: #F0FFF6; transform: translateY(-1px); box-shadow: var(--shadow); }
.wa-option__icon {
  width: 44px; height: 44px; background: var(--whatsapp); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wa-option__icon svg { width: 22px; height: 22px; fill: white; }
.wa-option__name { display: block; font-size: 0.9375rem; font-weight: 700; color: var(--dark); font-family: var(--font-title); }
.wa-option__addr { display: block; font-size: 0.8125rem; color: var(--gray); margin-top: 2px; }

.wa-modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%; background: var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gray); cursor: pointer; transition: var(--transition);
}
.wa-modal__close:hover { background: var(--border); }

/* ===========================
   HERO (Home)
=========================== */
.hero {
  background: #ef8b35;
  color: var(--white); padding: 56px 0 96px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 500px; height: 500px; background: rgba(255,255,255,0.05); border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(247,179,119,0) 0%, var(--bg) 100%);
  pointer-events: none; z-index: 0;
}
.hero__content { position: relative; z-index: 1; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px; padding: 6px 16px; font-size: 0.8125rem; font-weight: 600;
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-title); font-size: 2.25rem; font-weight: 900;
  line-height: 1.15; margin-bottom: 16px;
}
.hero__title span { color: #FFD280; }
.hero__sub { font-size: 1rem; opacity: 0.9; margin-bottom: 32px; line-height: 1.7; }
.hero__actions { display: flex; flex-direction: column; gap: 12px; }
.hero__trust { display: flex; flex-direction: column; gap: 8px; margin-top: 32px; }
.hero__trust-item { display: flex; align-items: center; gap: 9px; font-size: 1rem; font-weight: 500; opacity: 0.95; }

/* ===========================
   HERO LOGO
=========================== */
.hero__image {
  display: flex; align-items: center; justify-content: center;
  padding: 24px 0 0;
}
.hero__logo-img {
  width: 100%; max-width: 340px; height: auto; display: block;
}

@media (min-width: 1024px) {
  .hero__image { padding: 0; }
  .hero__logo-img { max-width: 320px; }
}

/* ===========================
   QUICK NAV GRID
=========================== */
.quick-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.quick-nav__card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 22px 12px; background: var(--white);
  border: 2px solid var(--border); border-radius: var(--radius);
  cursor: pointer; transition: var(--transition); text-align: center;
}
.quick-nav__card:hover {
  border-color: var(--primary); background: var(--primary-light);
  transform: translateY(-3px); box-shadow: var(--shadow);
}
.quick-nav__icon { font-size: 3rem; line-height: 1; }
.quick-nav__label { font-family: var(--font-title); font-size: 0.875rem; font-weight: 700; color: var(--dark); line-height: 1.25; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 24px; border-radius: 6px; font-family: var(--font-title);
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer; border: 1.5px solid transparent; line-height: 1.3; white-space: nowrap;
}
.btn--primary   { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); box-shadow: 0 2px 10px rgba(232,133,45,.3); }
.btn--white     { background: var(--white); color: var(--primary); border-color: rgba(255,255,255,.9); font-weight: 700; }
.btn--white:hover { background: rgba(255,255,255,.9); box-shadow: 0 2px 10px rgba(0,0,0,.12); }
.btn--outline   { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }
.btn--secondary { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.btn--secondary:hover { background: var(--secondary-dark); box-shadow: 0 2px 10px rgba(91,191,181,.3); }
.btn--whatsapp  { background: #1DA851; color: var(--white); border-color: #1DA851; }
.btn--whatsapp:hover { background: #178A43; border-color: #178A43; box-shadow: 0 2px 10px rgba(29,168,81,.3); }
.btn--full { width: 100%; }
.btn--sm { padding: 8px 14px; font-size: 0.8125rem; }
.btn--lg { padding: 14px 30px; font-size: 0.9375rem; }

/* ===========================
   FEATURE CARDS (por qué elegirnos)
=========================== */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--primary); }
.feature-card__icon { font-size: 2rem; flex-shrink: 0; }
.feature-card__title { font-family: var(--font-title); font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.feature-card__text { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }

/* ===========================
   PRODUCT CARDS
=========================== */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.product-grid  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

.product-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.product-card:hover { box-shadow: var(--shadow); border-color: #ccc; }

.product-card__badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--primary); color: var(--white);
  font-size: 0.65rem; font-weight: 700; padding: 3px 8px;
  border-radius: 4px; text-transform: uppercase; letter-spacing: .03em;
}

.product-card__body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.product-card__cat  { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--secondary); }
.product-card__name { font-family: var(--font-title); font-size: 0.875rem; font-weight: 700; color: var(--dark); line-height: 1.35; }
.product-card__desc {
  font-size: 0.775rem; color: var(--gray); line-height: 1.55; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card__footer { padding: 0 16px 14px; }

/* ===========================
   SERVICE / RENTAL CARDS
=========================== */
.service-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow); border-color: #d0d0d0; }
.service-card__img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--light-gray);
  display: block;
}
.service-card__img-placeholder {
  width: 100%; height: 180px; background: linear-gradient(135deg, #fff3e8 0%, #ffe0b2 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; font-size: 3.5rem;
}
.service-card__img-placeholder span {
  font-size: 0.75rem; font-weight: 600; color: var(--primary); letter-spacing: 0.04em; text-transform: uppercase;
}
.service-card__img-placeholder--teal {
  background: linear-gradient(135deg, #e8f8f7 0%, #b2e8e4 100%);
}
.service-card__img-placeholder--teal span {
  color: var(--secondary-dark);
}
.service-card__img-placeholder--blue {
  background: linear-gradient(135deg, #e8f0ff 0%, #c7d8ff 100%);
}
.service-card__img-placeholder--blue span {
  color: #3b5bdb;
}
.service-card__img-placeholder--name-only {
  font-size: 0rem;
}
.service-card__img-placeholder--name-only span {
  font-size: 1.15rem; font-weight: 700; color: var(--primary); letter-spacing: 0.01em; text-transform: none;
}
.service-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.service-card__name { font-family: var(--font-title); font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.service-card__desc { font-size: 0.875rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; flex: 1; }

/* ===========================
   CATEGORY FILTERS
=========================== */
.filters-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
.filters-wrap::-webkit-scrollbar { display: none; }
.filters { display: flex; gap: 8px; width: max-content; }
.filter-pill {
  flex-shrink: 0; padding: 8px 18px; border-radius: 100px; font-size: 0.8125rem; font-weight: 600;
  border: 2px solid var(--border); background: var(--white); color: var(--gray);
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.filter-pill:hover    { border-color: var(--primary); color: var(--primary); }
.filter-pill.active   { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* ===========================
   SEARCH
=========================== */
.search-wrap { position: relative; }
.search-input {
  width: 100%; padding: 13px 16px 13px 46px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-size: 0.9375rem; color: var(--dark); outline: none; transition: var(--transition);
  background: var(--white);
}
.search-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,133,45,0.12); }
.search-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--gray); font-size: 1.125rem; pointer-events: none; }

/* ===========================
   PAGE HEADER (interior pages)
=========================== */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white); padding: 56px 0; position: relative; overflow: hidden;
}
.page-header--img {
  background-size: cover; background-position: center;
}
.page-header--img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,116,31,0.88) 0%, rgba(180,90,10,0.82) 100%);
}
.page-header--img .container { position: relative; z-index: 1; }
.page-header__icon { font-size: 2.25rem; margin-bottom: 10px; }
.page-header__title { font-family: var(--font-title); font-size: 2rem; font-weight: 900; margin-bottom: 8px; }
.page-header__desc { font-size: 0.9375rem; opacity: .9; max-width: 540px; line-height: 1.65; }
@media (min-width: 1024px) {
  .page-header { padding: 72px 0; }
  .page-header__title { font-size: 2.5rem; }
}

/* ===========================
   SUCURSAL CARDS
=========================== */
.sucursal-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.sucursal-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.sucursal-card__header { background: var(--primary); padding: 18px 22px; color: var(--white); }
.sucursal-card__num  { font-size: 0.75rem; font-weight: 600; opacity: .85; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.sucursal-card__name { font-family: var(--font-title); font-size: 1.2rem; font-weight: 900; }
.sucursal-card__body { padding: 22px; display: flex; flex-direction: column; gap: 16px; }
.sucursal-card__row  { display: flex; gap: 12px; align-items: flex-start; }
.sucursal-card__icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.sucursal-card__info { font-size: 0.875rem; color: var(--gray); line-height: 1.55; }
.sucursal-card__info strong { display: block; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.sucursal-card__map  { width: 100%; height: 240px; border: none; display: block; }
.map-lazy {
  width: 100%; height: 200px; background: var(--light-gray);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; cursor: pointer; border: none; color: var(--gray);
  transition: background 0.2s;
}
.map-lazy:hover { background: #e2e8f0; }
.map-lazy__icon { font-size: 2rem; }
.map-lazy__text { font-size: 0.8rem; font-weight: 600; }
.service-card__img {
  width: 100%; height: 180px; object-fit: cover; display: block;
}

/* ===========================
   MEDIOS DE PAGO
=========================== */
.payment-grid {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: stretch;
}
.payment-badge {
  background: var(--white); border: 2px solid var(--border); border-radius: var(--radius);
  padding: 16px 22px; text-align: center; font-family: var(--font-title);
  font-weight: 700; font-size: 0.9rem; color: var(--dark); min-width: 130px;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.payment-badge:hover { border-color: var(--secondary); transform: translateY(-2px); box-shadow: var(--shadow); }
.payment-badge--highlight {
  border-color: var(--secondary); background: var(--secondary-light); color: var(--secondary-dark);
}
.payment-badge small { display: block; font-size: 0.75rem; font-weight: 600; margin-top: 3px; opacity: 0.85; }

/* ===========================
   BRANDS STRIP
=========================== */
.brands-strip { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; }
.brand-chip {
  padding: 8px 18px; background: var(--light-gray); border-radius: var(--radius-sm);
  font-family: var(--font-title); font-size: 0.8rem; font-weight: 700;
  color: var(--gray); text-transform: uppercase; letter-spacing: .05em;
  border: 2px solid var(--border); transition: var(--transition);
}
.brand-chip:hover { background: var(--white); color: var(--primary); border-color: var(--primary); box-shadow: var(--shadow-sm); }

.brands-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .brands-logo-grid { grid-template-columns: repeat(4, 1fr); }
}
.brand-logo-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.brand-logo-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--primary); }
.brand-logo-img {
  width: 100%;
  height: 80px;
  background-repeat: no-repeat;
  background-size: 80% 400%;
  background-position: center 0%;
}
.brand-verified {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.68rem; font-weight: 700; color: #16a34a;
  padding: 6px 10px; background: #f0fdf4;
  width: 100%; justify-content: center;
  border-top: 1px solid #bbf7d0;
}

/* ===========================
   EMPTY STATE
=========================== */
.empty-state { text-align: center; padding: 56px 16px; }
.empty-state__icon  { font-size: 3rem; opacity: .4; margin-bottom: 12px; }
.empty-state__title { font-family: var(--font-title); font-size: 1.125rem; font-weight: 800; margin-bottom: 6px; }
.empty-state__text  { font-size: 0.875rem; color: var(--gray); }

/* ===========================
   SKELETON LOADER
=========================== */
.skeleton {
  background: linear-gradient(90deg, var(--light-gray) 25%, #e8e8e8 50%, var(--light-gray) 75%);
  background-size: 200% 100%; animation: skel 1.4s infinite; border-radius: var(--radius-sm);
}
@keyframes skel { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ===========================
   INFO BOX / HIGHLIGHT
=========================== */
.info-box {
  background: var(--secondary-light); border-left: 4px solid var(--secondary);
  border-radius: var(--radius-sm); padding: 16px 18px;
}
.info-box__title { font-family: var(--font-title); font-size: 0.9375rem; font-weight: 700; color: var(--secondary-dark); margin-bottom: 4px; }
.info-box__text  { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }

/* ===========================
   INSUMOS LIST
=========================== */
.insumos-list { display: flex; flex-direction: column; gap: 0; }
.insumos-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9375rem; font-weight: 600; color: var(--dark);
}
.insumos-item:last-child { border-bottom: none; }
.insumos-item__icon { color: var(--secondary); font-size: 1.2rem; }

/* ===========================
   RESPONSIVE — TABLET 640px
=========================== */
@media (min-width: 640px) {
  .hero__title  { font-size: 2.75rem; }
  .hero__actions { flex-direction: row; }
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .product-grid  { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .quick-nav    { grid-template-columns: repeat(4, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .sucursal-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   RESPONSIVE — DESKTOP 1024px
=========================== */
@media (min-width: 1024px) {
  .container { padding: 0 40px; }
  .nav { display: block; }
  .hamburger { display: none; }
  .section { padding: 80px 0; }
  .hero { padding: 88px 0; }
  .hero__inner { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: center; }
  .hero__title { font-size: 3.25rem; }
  .hero__actions { flex-direction: row; }
  .products-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .product-grid  { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .quick-nav { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
@media (min-width: 1280px) {
  .container { padding: 0 48px; }
  .product-grid, .products-grid { grid-template-columns: repeat(5, 1fr); gap: 20px; }
}

/* ===========================
   UTILITIES
=========================== */
.text-center    { text-align: center; }
.text-primary   { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-gray      { color: var(--gray); }
.fw-700  { font-weight: 700; }
.fw-900  { font-weight: 900; }
.mt-2    { margin-top: 8px; }
.mt-4    { margin-top: 16px; }
.mt-6    { margin-top: 24px; }
.mb-4    { margin-bottom: 16px; }
.mb-6    { margin-bottom: 24px; }
.hidden  { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* Print */
@media print {
  #site-header,#site-footer,.whatsapp-fab,.wa-overlay,.mobile-nav { display: none !important; }
}
