
/* Botón to-top — branding */
#ast-scroll-top {
  bottom: 100px !important;
  background-color: var(--accent) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
}
#ast-scroll-top:hover {
  background-color: var(--accent-dark) !important;
}

/* Menú mobile */
.salcedo-mobile-menu {
  background: var(--white);
  border-top: 3px solid var(--accent);
}
.salcedo-mobile-menu a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* Ícono Misión en tarjeta primaria — forzar blanco */
.about-mvv-card--primary .about-mvv-icon,
.about-mvv-card--primary .about-mvv-icon svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

/* Logo grande en hero */
.home-hero__logo {
  width: 120px;
  height: auto;
  max-width: 100%;
  margin-bottom: 8px;
  display: block;
  filter: brightness(0) invert(1); /* blanco sobre el fondo oscuro del hero */
}
@media (max-width: 600px) {
  .home-hero__logo { width: 120px; }
}

/* Hero — reducir alto 30px */
.home-hero {
  min-height: calc(88vh - 50px) !important;
}


/* SVG icons — tamaños por contexto */
.btn-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  flex-shrink: 0;
}
.btn-icon:first-child {
  margin-left: 0;
  margin-right: 6px;
}
.spec-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 3px;
  opacity: 0.7;
}
.wa-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}
.icon-xs {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}
.label-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}
.placeholder-icon {
  width: 48px;
  height: 48px;
  opacity: 0.35;
}
.star-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  color: #f59e0b;
}
.home-why-icon svg {
  width: 36px;
  height: 36px;
}

/* ── Banner Promoción Gasolina ───────────────────────────────── */
.promo-gas-banner {
  background: #111;
  border-radius: 16px;
  padding: 28px 32px;
  margin: 0 0 40px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.promo-gas-banner::before {
  content: '';
  position: absolute;
  right: 120px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255,120,0,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.promo-gas-banner::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,80,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.promo-gas__badge {
  position: absolute;
  top: 16px;
  right: 20px;
  background: #f97316;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.02em;
  z-index: 1;
}
.promo-gas__badge svg {
  width: 13px;
  height: 13px;
  color: #fff;
  flex-shrink: 0;
}
.promo-gas__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: rgba(255,255,255,0.75);
  z-index: 1;
}
.promo-gas__body {
  flex: 1;
  z-index: 1;
}
.promo-gas__title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 6px 0;
}
.promo-gas__title span {
  color: #60a5fa;
}
.promo-gas__desc {
  color: #a3a3a3;
  font-size: 14px;
  margin: 0 0 14px 0;
  line-height: 1.5;
}
.promo-gas__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.promo-gas__tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #e5e5e5;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.promo-gas__tag svg {
  width: 13px;
  height: 13px;
  opacity: 0.8;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .promo-gas-banner { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
  .promo-gas__title { font-size: 17px; }
  .promo-gas__badge { top: 12px; right: 12px; }
}

/* Promo banner — separación inferior */
.promo-banner-section {
  padding-bottom: 40px;
}

/* Mapas de contacto — altura forzada */
.contact-map iframe {
  height: 450px !important;
  min-height: 450px !important;
}

/* Footer — horario */
.footer-schedule {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: inherit;
}
.footer-schedule__rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-schedule__row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.footer-schedule__day {
  color: rgba(255,255,255,0.55);
  min-width: 72px;
  font-size: 12px;
}
.footer-schedule__time {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 12px;
}
