:root {
  --bg: #080b0f;
  --bg2: #10151c;
  --panel: #10161d;
  --panel2: #161d26;
  --red: #e50914;
  --red2: #ff2530;
  --text: #f4f7fb;
  --muted: #aab4c0;
  --line: #28313d;
  --ok: #20c997;
  --warn: #f5b301;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #06080b, #10151c);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* ==============================
   NAVBAR GARAGE LABRIN
============================== */

.site-header {
  width: 100%;
  background: linear-gradient(90deg, #070a0f 0%, #0b0f14 55%, #111820 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow-x: clip;
}

.nav-inner {
  width: 100%;
  max-width: 1520px;
  min-height: 94px;
  margin: 0 auto;
  padding: 14px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-area {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.brand-card {
  width: 180px;
  height: 62px;
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: 16px;
  padding: 8px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-left: auto;
  min-width: 0;
}

.main-nav a {
  color: #f4f7fb;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.92;
  transition: all 0.2s ease;
}

.main-nav a:hover {
  color: var(--red);
  opacity: 1;
}

.main-nav .nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 14px;
  opacity: 1;
  box-shadow: 0 10px 24px rgba(229, 9, 20, 0.25);
}

.main-nav .nav-cta:hover {
  background: var(--red2);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: var(--red);
  color: var(--white);
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 22px;
  cursor: pointer;
}

/* ==============================
   NAVBAR CARRITO
============================== */

.cart-nav-link {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-nav-link:hover {
  background: rgba(229, 9, 20, 0.13);
  border-color: rgba(229, 9, 20, 0.35);
}

.cart-icon {
  font-size: 18px;
  line-height: 1;
}

.cart-text {
  font-size: 14px;
  font-weight: 800;
}

.cart-count {
  position: absolute;
  top: -9px;
  right: -9px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  border: 2px solid #080b10;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(229, 9, 20, 0.35);
}

/* ==============================
   BOTONES GENERALES
============================== */

.btn-primary,
.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), #9d0610);
  padding: 12px 16px;
  border-radius: 14px;
  border: 0;
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(229, 9, 20, 0.28);
  transition: all 0.2s ease;
}

.btn-primary:hover,
.btn-nav:hover {
  background: linear-gradient(135deg, var(--red2), var(--red));
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #202a35;
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 14px;
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--red);
  background: #263241;
}

/* ==============================
   HERO
============================== */

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: 70px 6%;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 11, 15, 0.96), rgba(8, 11, 15, 0.66)),
    url("../img/fachada-garage-labrin.webp") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 25px var(--red);
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--red2);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.96;
  margin: 15px 0;
  text-transform: uppercase;
}

.hero p {
  color: #d6dde5;
  font-size: 19px;
  line-height: 1.65;
}

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

/* ==============================
   SECCIONES Y GRIDS
============================== */

.section {
  padding: 70px 6%;
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 26px;
}

.section-title h2 {
  font-size: 36px;
  margin: 0;
}

.section-title p {
  color: var(--muted);
  max-width: 670px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ==============================
   TARJETAS
============================== */

.card {
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.55;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid rgba(229, 9, 20, 0.35);
  display: grid;
  place-items: center;
  color: var(--red2);
  font-weight: 900;
  margin-bottom: 15px;
}

.badge {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(229, 9, 20, 0.12);
  color: #ff6570;
  border: 1px solid rgba(229, 9, 20, 0.35);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==============================
   FORMULARIOS
============================== */

.form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field label {
  display: block;
  font-size: 13px;
  color: #d5dce5;
  margin-bottom: 8px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #0d1218;
  color: var(--white);
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.16);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.hint {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* ==============================
   CALENDARIO / HORAS
============================== */

.calendar-box {
  background: #0d1218;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
}

.slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.slot {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #151d27;
  color: var(--white);
  cursor: pointer;
  text-align: center;
}

.slot.available:hover,
.slot.selected {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.18);
}

.slot.busy {
  opacity: 0.38;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ==============================
   ALERTAS
============================== */

.alert {
  padding: 14px 16px;
  border-radius: 16px;
  margin: 15px 0;
}

.alert.ok {
  background: rgba(32, 201, 151, 0.13);
  border: 1px solid rgba(32, 201, 151, 0.35);
}

.alert.err {
  background: rgba(229, 9, 20, 0.13);
  border: 1px solid rgba(229, 9, 20, 0.35);
}

/* ==============================
   LOGIN
============================== */

.login-wrap {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 60px 6%;
}

.login-card {
  width: min(470px, 100%);
}

/* ==============================
   SEGUIMIENTO CLIENTE
============================== */

.seguimiento-search-card {
  margin-bottom: 24px;
}

.seguimiento-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.seguimiento-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 420px;
  gap: 24px;
  align-items: start;
}

.seguimiento-main-card,
.seguimiento-side-card {
  min-width: 0;
}

.seguimiento-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.seguimiento-header h2 {
  margin: 12px 0 0;
}

.seguimiento-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.seguimiento-info-grid div {
  background: #0d1218;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.seguimiento-info-grid strong {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.seguimiento-info-grid span {
  display: block;
  color: var(--white);
  font-weight: 800;
}

.seguimiento-box {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.seguimiento-box h3,
.seguimiento-side-card h3 {
  margin-top: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(229, 9, 20, 0.13);
  color: #ff6570;
  border: 1px solid rgba(229, 9, 20, 0.35);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.status-large {
  padding: 10px 14px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  position: relative;
  background: #0d1218;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.timeline-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.timeline-item p {
  margin: 0 0 8px;
  color: #d6dde5;
}

.timeline-item small {
  color: var(--muted);
}

.seguimiento-fotos {
  display: grid;
  gap: 14px;
}

.seguimiento-fotos img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  border: 1px solid var(--line);
}

/* ==============================
   FOOTER PROFESIONAL
============================== */

.site-footer-pro {
  background:
    radial-gradient(circle at top left, rgba(229, 9, 20, 0.16), transparent 34%),
    linear-gradient(180deg, #090d12 0%, #05070a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 70px;
}

.footer-pro-inner {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 54px 42px 38px;
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1fr;
  gap: 34px;
}

.footer-pro-brand {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.footer-pro-brand h3 {
  margin: 0;
  font-size: 26px;
  color: #ffffff;
}

.footer-pro-brand p {
  margin: 6px 0 10px;
  color: #ffffff;
  font-weight: 800;
}

.footer-pro-brand span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
  max-width: 430px;
}

.footer-logo-card {
  width: 135px;
  height: 54px;
  background: #ffffff;
  border: 2px solid var(--red);
  border-radius: 15px;
  padding: 7px 11px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-pro-col h4,
.footer-pro-actions h4 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 16px;
}

.footer-pro-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-pro-col a {
  color: var(--muted);
  font-weight: 700;
  transition: all 0.2s ease;
}

.footer-pro-col a:hover {
  color: var(--red2);
  transform: translateX(2px);
}

.footer-pro-actions p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 16px;
}

.footer-btn {
  width: 100%;
  min-height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 900;
  margin-bottom: 10px;
  transition: all 0.2s ease;
}

.footer-btn-primary {
  background: var(--red);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(229, 9, 20, 0.24);
}

.footer-btn-whatsapp {
  background: #128c7e;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.22);
}

.footer-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.footer-pro-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 1520px;
  margin: 0 auto;
  padding: 18px 42px 38px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-pro-bottom a {
  color: #ffffff;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 4px;
}

.footer-pro-bottom a:hover {
  color: var(--red2);
}

/* ==============================
   CHATBOT GARAGE LABRIN
============================== */

.gl-chatbot {
  position: fixed;
  right: 22px;
  bottom: 105px;
  z-index: 3000;
}

.gl-chatbot-toggle {
  min-width: 210px;
  height: 58px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--red), #9d0610);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(229, 9, 20, 0.32);
  padding: 0 20px;
  font-weight: 900;
  transition: all 0.2s ease;
}

.gl-chatbot-toggle:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.gl-chatbot-icon {
  font-size: 24px;
  line-height: 1;
}

.gl-chatbot-label {
  font-size: 15px;
  white-space: nowrap;
}

.gl-chatbot-window {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: 360px;
  max-width: calc(100vw - 34px);
  background: #0d1218;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  display: none;
}

.gl-chatbot-window.active {
  display: block;
}

.gl-chatbot-header {
  background: linear-gradient(135deg, #111820, #090d12);
  border-bottom: 1px solid var(--line);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.gl-chatbot-header strong {
  display: block;
  color: #ffffff;
}

.gl-chatbot-header small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.gl-chatbot-header button {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}

.gl-chatbot-body {
  padding: 16px;
  max-height: 390px;
  overflow-y: auto;
  display: grid;
  gap: 10px;
}

.bot-msg,
.user-msg {
  padding: 12px 13px;
  border-radius: 15px;
  line-height: 1.45;
  font-size: 14px;
}

.bot-msg {
  background: #151d27;
  color: #dce3ea;
  border: 1px solid var(--line);
  border-top-left-radius: 4px;
}

.user-msg {
  background: rgba(229, 9, 20, 0.14);
  color: #ffffff;
  border: 1px solid rgba(229, 9, 20, 0.34);
  border-top-right-radius: 4px;
  justify-self: end;
}

.gl-chatbot-options {
  display: grid;
  gap: 8px;
}

.gl-chatbot-options button {
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: #ffffff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 700;
}

.gl-chatbot-options button:hover {
  border-color: var(--red);
  background: rgba(229, 9, 20, 0.12);
}

.gl-chatbot-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 13px;
  border-top: 1px solid var(--line);
  background: #090d12;
}

.gl-chatbot-footer input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0d1218;
  color: #ffffff;
  padding: 11px 12px;
  outline: none;
}

.gl-chatbot-footer button {
  border: 0;
  border-radius: 12px;
  background: var(--red);
  color: #ffffff;
  padding: 0 14px;
  font-weight: 900;
  cursor: pointer;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1100px) {
  .seguimiento-layout {
    grid-template-columns: 1fr;
  }

  .seguimiento-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav-inner {
    min-height: 84px;
    padding: 12px 18px;
  }

  .brand-card {
    width: 150px;
    height: 54px;
    border-radius: 13px;
    padding: 7px 11px;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .brand-text small {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    width: 100%;
    background: #080b10;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 0;
    font-size: 15px;
  }

  .main-nav .nav-cta,
  .cart-nav-link {
    width: fit-content !important;
    padding: 12px 15px !important;
  }

  .hero {
    min-height: auto;
    padding: 70px 6%;
  }

  .section-title {
    display: block;
  }

  .grid-3,
  .grid-2,
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-pro-inner {
    grid-template-columns: 1fr 1fr;
    padding: 42px 20px 30px;
  }

  .footer-pro-bottom {
    padding: 18px 20px 38px;
  }
}

@media (max-width: 620px) {
  .seguimiento-form {
    grid-template-columns: 1fr;
  }

  .seguimiento-info-grid {
    grid-template-columns: 1fr;
  }

  .seguimiento-header {
    display: block;
  }

  .status-large {
    margin-top: 14px;
  }

  .footer-pro-inner {
    grid-template-columns: 1fr;
  }

  .footer-pro-brand {
    display: block;
  }

  .footer-logo-card {
    margin-bottom: 16px;
  }

  .gl-chatbot {
    right: 14px;
    bottom: 95px;
  }

  .gl-chatbot-toggle {
    min-width: auto;
    width: auto;
    height: 50px;
    padding: 0 14px;
    border-radius: 999px;
  }

  .gl-chatbot-icon {
    font-size: 23px;
  }

  .gl-chatbot-label {
    font-size: 13px;
  }

  .gl-chatbot-window {
    width: calc(100vw - 28px);
    right: 0;
    bottom: 64px;
  }
}

@media (max-width: 560px) {
  .brand-area {
    gap: 10px;
  }

  .brand-card {
    width: 118px;
    height: 44px;
    padding: 5px 8px;
    border-radius: 11px;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .brand-text small {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .nav-inner {
    min-height: 72px;
  }

  .main-nav {
    top: 72px;
  }

  .section {
    padding: 48px 5%;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 16px;
  }
}
/* ==============================
   FIX FOOTER MOBILE + CHATBOT
============================== */

@media (max-width: 620px) {
  .site-footer-pro {
    padding-bottom: 110px;
  }

  .footer-pro-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-pro-bottom > * {
    width: 100%;
    max-width: 100%;
  }

  .footer-pro-bottom a {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    display: inline;
  }

  .footer-pro-bottom strong,
  .footer-pro-bottom span,
  .footer-pro-bottom p,
  .footer-pro-bottom div {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .gl-chatbot {
    right: 14px;
    bottom: 120px; /* sube el botón para que no tape los créditos */
  }

  .gl-chatbot-toggle {
    min-width: 185px;
    max-width: calc(100vw - 28px);
    height: 52px;
    padding: 0 16px;
  }

  .gl-chatbot-label {
    font-size: 13px;
    white-space: nowrap;
  }

  .gl-chatbot-window {
    width: calc(100vw - 28px);
    right: 0;
    bottom: 66px;
  }
}
.footer-credit {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.6;
}
/* ==================================================
   FIX DEFINITIVO FOOTER MOVIL + CREDITO + CHATBOT
================================================== */

.footer-pro-bottom {
  position: relative;
  z-index: 1;
}

.footer-credit {
  display: block;
  max-width: 100%;
  line-height: 1.6;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

.footer-credit a {
  display: inline;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

/* Desktop: mantiene el chatbot flotante arriba del footer */
.gl-chatbot {
  position: fixed;
  right: 22px;
  bottom: 105px;
  z-index: 3000;
}

/* Mobile: el chatbot deja de flotar sobre el credito */
@media (max-width: 620px) {
  .site-footer-pro {
    padding-bottom: 0;
  }

  .footer-pro-bottom {
    padding: 22px 20px 34px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    line-height: 1.6;
  }

  .footer-pro-bottom > div {
    width: 100%;
    max-width: 100%;
  }

  .footer-credit {
    font-size: 14px;
    padding-right: 0;
  }

  .footer-credit a {
    display: inline;
    font-weight: 900;
    line-height: 1.6;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
  }

  .gl-chatbot {
    position: fixed;
    right: 14px;
    bottom: 18px;
    z-index: 3000;
  }

  .gl-chatbot-toggle {
    min-width: 0;
    width: auto;
    max-width: calc(100vw - 28px);
    height: 48px;
    padding: 0 14px;
    border-radius: 999px;
  }

  .gl-chatbot-label {
    font-size: 12px;
    white-space: nowrap;
  }

  .gl-chatbot-icon {
    font-size: 21px;
  }

  .gl-chatbot-window {
    width: calc(100vw - 28px);
    right: 0;
    bottom: 60px;
  }

  /* Le da espacio visual al final para que el boton no tape contenido */
  body {
    padding-bottom: 82px;
  }
}
/* ==================================================
   FIX FINAL MOBILE FOOTER + CREDITO + CHATBOT
   Evita que el nombre se corte o quede tapado
================================================== */

.footer-credit {
  display: block;
  width: 100%;
  max-width: 100%;
  line-height: 1.6;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

.footer-credit a {
  display: inline-block;
  max-width: 100%;
  color: #ffffff;
  font-weight: 900;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

/* Desktop mantiene chatbot flotante */
.gl-chatbot {
  position: fixed;
  right: 22px;
  bottom: 105px;
  z-index: 3000;
}

/* Mobile: chatbot deja de tapar el footer */
@media (max-width: 620px) {
  body {
    padding-bottom: 0;
  }

  .site-footer-pro {
    padding-bottom: 0;
  }

  .footer-pro-bottom {
    padding: 24px 20px 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    line-height: 1.6;
  }

  .footer-pro-bottom > div {
    width: 100%;
    max-width: 100%;
  }

  .footer-credit {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-credit a {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.5;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
  }

  .gl-chatbot {
    position: static;
    width: 100%;
    padding: 0 20px 28px;
    display: flex;
    justify-content: center;
    background: #05070a;
  }

  .gl-chatbot-toggle {
    width: 100%;
    max-width: 330px;
    min-width: 0;
    height: 52px;
    padding: 0 16px;
    border-radius: 999px;
  }

  .gl-chatbot-icon {
    font-size: 22px;
  }

  .gl-chatbot-label {
    font-size: 14px;
    white-space: nowrap;
  }

  .gl-chatbot-window {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 86px;
    width: auto;
    max-width: none;
  }
}
/* ==============================
   COLORES DE ESTADO RESERVA
============================== */

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border: 1px solid transparent;
}

.status-default {
  background: rgba(148, 163, 184, 0.14);
  color: #cbd5e1;
  border-color: rgba(148, 163, 184, 0.35);
}

.status-reservada {
  background: rgba(229, 9, 20, 0.13);
  color: #ff6570;
  border-color: rgba(229, 9, 20, 0.35);
}

.status-confirmada {
  background: rgba(59, 130, 246, 0.14);
  color: #93c5fd;
  border-color: rgba(59, 130, 246, 0.35);
}

.status-revision {
  background: rgba(14, 165, 233, 0.14);
  color: #7dd3fc;
  border-color: rgba(14, 165, 233, 0.35);
}

.status-diagnostico {
  background: rgba(245, 158, 11, 0.14);
  color: #fbbf24;
  border-color: rgba(245, 158, 11, 0.4);
}

.status-repuesto {
  background: rgba(168, 85, 247, 0.14);
  color: #c084fc;
  border-color: rgba(168, 85, 247, 0.4);
}

.status-reparacion {
  background: rgba(251, 146, 60, 0.14);
  color: #fdba74;
  border-color: rgba(251, 146, 60, 0.4);
}

.status-realizado,
.status-finalizada {
  background: rgba(34, 197, 94, 0.14);
  color: #86efac;
  border-color: rgba(34, 197, 94, 0.4);
}

.status-cancelada {
  background: rgba(100, 116, 139, 0.18);
  color: #cbd5e1;
  border-color: rgba(100, 116, 139, 0.45);
}