/* ============================================
   VARIABLES
   ============================================ */
:root {
  --color-primary: #ee7421;
  --color-secondary: #EE7623;
  --color-black: #1a1a1a;
  --color-dark: #2a2a2a;
  --color-white: #ffffff;
  --color-gray-light: #e5e5e5;
  --color-gray: #cccccc;
  --color-text: #333333;
  --breakpoint: 800px;
}
/* ============================================
   FONTS
   ============================================ */
@font-face {
  font-family: 'Market';
  src: url('../fonts/Market_W03_Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* "Gotham Book" no incluida — usamos Light como sustituto para texto regular */
@font-face {
  font-family: 'Gotham Book';
  src: url('../fonts/Gotham-Light.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* ============================================
   RESET / BASE
   ============================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  color: var(--color-text);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* ============================================
   PAGE LOADER (FOUT prevention)
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: all;
}
.page-loader__spinner {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 4px solid var(--color-gray-light);
  border-top-color: var(--color-primary);
  animation: page-loader-spin 0.8s linear infinite;
}
@keyframes page-loader-spin {
  to {
    transform: rotate(360deg);
  }
}
/* Hide page content under loader until fonts are ready */
body.is-loading > *:not(.page-loader) {
  visibility: hidden;
}
body.is-loaded .page-loader {
  opacity: 0;
  pointer-events: none;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
input,
textarea {
  font-family: inherit;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  background: var(--color-black);
  padding: 8px 0;
}
.topbar__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.topbar__social {
  display: flex;
  gap: 8px;
}
.topbar__icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
}
.topbar__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* ============================================
   HEADER
   ============================================ */
.header {
  background: var(--color-black);
  padding: 18px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.header__logo {
  display: inline-flex;
  align-items: center;
}
.header__logo img {
  height: 56px;
  width: auto;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__menu {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header__menu img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #ee7421 0%, #f16a0d 100%);
  color: var(--color-white);
  padding: 6px 22px 6px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: filter 0.2s;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.btn-phone__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--color-white);
  border-radius: 999px;
  flex-shrink: 0;
}
.btn-phone__icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0);
}
.btn-phone:hover {
  filter: brightness(1.08);
}
/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--color-primary);
  overflow: hidden;
  min-height: 640px;
  margin-top: 92px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../assets/back_2.png') center / cover no-repeat;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 60px 24px 80px;
}
.hero__left {
  max-width: 630px;
}
.hero__title {
  font-family: 'Market', cursive;
  font-style: italic;
  font-weight: bold;
  font-size: 52px;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 24px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.hero__subtitle {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
  letter-spacing: 1px;
  margin-bottom: 32px;
}
/* ============================================
   QUOTE FORM
   ============================================ */
.quote-form {
  background: var(--color-white);
  border-radius: 18px;
  color: var(--color-text);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.quote-form__title {
  background: var(--color-black);
  color: var(--color-white);
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  padding: 22px 24px;
  letter-spacing: 1px;
}
.quote-form__body {
  padding: 26px 30px 24px;
}
.quote-form__input,
.quote-form__file {
  display: block;
  width: 100%;
  background: var(--color-gray-light);
  border: none;
  border-radius: 4px;
  padding: 14px 18px;
  margin-bottom: 12px;
  font-size: 13px;
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.5px;
  outline: none;
}
.quote-form__input::placeholder,
.quote-form__file::placeholder {
  color: #777;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.quote-form__input:focus,
.quote-form__file:focus {
  background: #f5f5f5;
}
.quote-form__file {
  cursor: pointer;
}
.quote-form__file input {
  display: none;
}
.quote-form .btn-primary {
  display: block;
  margin: 18px auto 14px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 38px;
  border-radius: 999px;
  border: 2px solid var(--color-white);
  letter-spacing: 0.5px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, box-shadow 0.2s;
}
.quote-form .btn-primary:hover {
  background: var(--color-secondary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.18);
}
.quote-form__note {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 12px;
  color: var(--color-text);
  letter-spacing: 1px;
  text-align: left;
}
.quote-form__note strong {
  color: var(--color-primary);
}
/* ============================================
   FEATURES BAR
   ============================================ */
.features {
  background: var(--color-primary);
  padding: 28px 0;
}
.features__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}
.features__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  position: relative;
}
.features__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0) 100%);
  box-shadow: 1px 0 0 rgba(255, 255, 255, 0.18);
}
.features__item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.features__item span {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
}
.features__label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.features__label-thin {
  font-weight: 300;
}
.features__label-bold {
  font-weight: 900;
}
/* ============================================
   MATERIALES EN STOCK
   ============================================ */
.stock {
  background: url('../assets/fondo_1.jpg') center / cover no-repeat;
  padding: 60px 0 160px;
  text-align: center;
}
.stock__title {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.stock__title strong {
  font-weight: 700;
  color: var(--color-primary);
}
.stock__divider {
  width: 80px;
  height: 3px;
  background: var(--color-primary);
  border: none;
  margin: 0 auto 40px;
}
.stock__products {
  margin-bottom: 36px;
}
.stock__products img {
  max-width: 100%;
  max-height: 280px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}
.stock__upcoming {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.stock__upcoming strong {
  font-weight: 700;
  color: var(--color-primary);
}
.stock__cta {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 38px;
  border-radius: 999px;
  border: 2px solid var(--color-white);
  letter-spacing: 0.5px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, box-shadow 0.2s;
}
.stock__cta:hover {
  background: var(--color-secondary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.18);
}
/* ============================================
   POR QUÉ ELEGIRNOS
   ============================================ */
.why {
  background: transparent;
  padding: 0 0 60px;
  position: relative;
  z-index: 2;
}
.why__box {
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 18px;
  padding: 50px 60px;
  margin-top: -100px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}
.why__title {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.why__title strong {
  color: var(--color-primary);
  font-weight: 700;
}
.why__divider {
  width: 80px;
  height: 3px;
  background: var(--color-primary);
  border: none;
  margin: 0 auto 40px;
}
.why__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.why__icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 24px;
}
.why__icon {
  background: var(--color-white);
  border-radius: 10px;
  padding: 22px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.why__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  /* tint white PNG → primary orange #F24103 */
  filter: brightness(0) saturate(100%) invert(28%) sepia(98%) saturate(3789%) hue-rotate(7deg) brightness(100%) contrast(100%);
}
.why__icon span {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.3;
  color: var(--color-text);
}
.why__icon span strong {
  font-weight: 900;
}
.why__text {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
}
.why__text p {
  margin-bottom: 16px;
}
.why__cta {
  margin-top: 8px;
  align-self: flex-start;
}
/* ============================================
   MÉTODOS DE PAGO
   ============================================ */
.payments {
  background: var(--color-white);
  padding: 60px 0;
  text-align: center;
}
.payments__title {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--color-text);
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.payments__title strong {
  color: var(--color-primary);
  font-weight: 700;
}
.payments__divider {
  width: 80px;
  height: 3px;
  background: var(--color-primary);
  border: none;
  margin: 0 auto 50px;
}
.payments__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  /* hide cloned items in desktop (JS duplicates the list for the mobile carousel) */
}
.payments__grid > .payments__item:nth-child(n+8) {
  display: none;
}
.payments__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 20px 10px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.payments__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}
.payments__item span {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-text);
  letter-spacing: 0.5px;
}
.payments__item span strong {
  font-weight: 900;
}
.payments__icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.payments__icon svg {
  width: 32px;
  height: 32px;
}
.payments__icon--text {
  border-radius: 8px;
  padding: 0 8px;
  width: auto;
  min-width: 80px;
  background: var(--color-primary);
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-align: center;
}
.payments__icon--img img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.payments__icon--logo {
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
}
.payments__icon--logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
/* ============================================
   BESTSELLERS (Lo más vendido)
   ============================================ */
.bestsellers {
  background: var(--color-white);
  padding: 60px 0;
}
.bestsellers__title {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--color-text);
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 16px;
}
.bestsellers__title strong {
  color: var(--color-primary);
  font-weight: 700;
}
.bestsellers__divider {
  width: 70px;
  height: 3px;
  background: var(--color-primary);
  border: none;
  margin: 0 auto 36px;
}
.bestsellers__carousel {
  overflow: hidden;
  container-type: inline-size;
  position: relative;
  /* edge fade for nicer loop visual */
  mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.bestsellers__track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: bestsellers-scroll 56s linear infinite;
}
.bestsellers__carousel:hover .bestsellers__track {
  animation-play-state: paused;
}
.bestsellers__item {
  flex: 0 0 calc((100cqw - 56px) / 5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 18px 8px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.bestsellers__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}
.bestsellers__item span {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 300;
  font-size: 11px;
  line-height: 1.3;
  color: var(--color-text);
  letter-spacing: 0.5px;
}
.bestsellers__item span strong {
  font-weight: 900;
}
.bestsellers__icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bestsellers__icon svg {
  width: 26px;
  height: 26px;
}
.bestsellers__placeholder {
  background: var(--color-gray-light);
  border: 2px dashed var(--color-gray);
  border-radius: 10px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  padding: 24px;
}
.bestsellers__map {
  width: 100%;
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--color-gray-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
@keyframes bestsellers-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}
/* ============================================
   PARA QUIÉN
   ============================================ */
.audience {
  background: var(--color-white);
  padding: 60px 0;
  text-align: center;
}
.audience__title {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--color-text);
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.audience__title strong {
  color: var(--color-primary);
  font-weight: 700;
}
.audience__divider {
  width: 80px;
  height: 3px;
  background: var(--color-primary);
  border: none;
  margin: 0 auto 50px;
}
.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.audience__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px 30px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.05);
}
.audience__icon {
  width: 110px;
  height: 150px;
  border-radius: 0 0 16px 16px;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.audience__icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.audience__name {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.audience__sub {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--color-text);
  margin-bottom: 14px;
}
.audience__sep {
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  border: none;
  margin: 0 auto 18px;
}
.audience__desc {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
}
/* ============================================
   PROCESO DE COTIZACIÓN
   ============================================ */
.process {
  background: var(--color-white);
  padding: 60px 0;
  text-align: center;
}
.process__title {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--color-text);
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.process__title strong {
  color: var(--color-primary);
  font-weight: 700;
}
.process__divider {
  width: 80px;
  height: 3px;
  background: var(--color-primary);
  border: none;
  margin: 0 auto 50px;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
  padding-top: 36px;
  margin-bottom: -100px;
}
.process__step {
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  position: relative;
  /* connector arcs: card 1↔2 and card 3↔4 over the top */
  /* connector arc card 2↔3 below */
}
.process__step:nth-child(1)::after,
.process__step:nth-child(3)::after {
  content: '';
  position: absolute;
  top: -22px;
  left: 50%;
  width: calc(100% + 20px);
  height: 22px;
  border-top: 2px dashed #c4c4c4;
  border-left: 2px dashed #c4c4c4;
  border-right: 2px dashed #c4c4c4;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  pointer-events: none;
}
.process__step:nth-child(2)::before {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 50%;
  width: calc(100% + 20px);
  height: 22px;
  border-bottom: 2px dashed #c4c4c4;
  border-left: 2px dashed #c4c4c4;
  border-right: 2px dashed #c4c4c4;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  pointer-events: none;
}
.process__num {
  background: var(--color-primary);
  color: var(--color-white);
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 2px;
  padding: 14px 8px;
  text-align: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.process__body {
  background: var(--color-white);
  padding: 26px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.process__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 22px;
}
.process__icon--invert {
  filter: brightness(0);
}
.process__name {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.3;
  color: var(--color-text);
}
.process__name strong {
  font-weight: 900;
  color: var(--color-text);
}
/* ============================================
   CTA BAND "MATERIALIZAMOS TU OBRA"
   ============================================ */
.cta-band {
  background: var(--color-primary);
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
.cta-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.cta-band__map-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-band__map-title {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--color-white);
  letter-spacing: 1px;
  text-align: center;
}
.cta-band__map-title strong {
  font-weight: 900;
}
.cta-band__map {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--color-white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.cta-band__quote {
  display: inline-block;
  background: transparent;
  color: var(--color-white);
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 12px 30px;
  border: 2px solid var(--color-white);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.cta-band__quote:hover {
  background: var(--color-white);
  color: var(--color-primary);
}
.cta-band__title {
  font-family: 'Market', cursive;
  font-style: italic;
  font-weight: bold;
  font-size: 64px;
  color: var(--color-white);
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.cta-band__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-black);
  padding: 40px 0 24px;
  color: var(--color-white);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer__logo img {
  height: 56px;
  width: auto;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
}
.footer__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__copy {
  font-family: 'Gotham', 'Gotham Book', Arial, sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-top: 8px;
}
/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #25D366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}
.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3), 0 3px 8px rgba(0, 0, 0, 0.18);
}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 800px) {
  .header {
    /* Hide phone text on small screens — leave only the menu */
  }
  .header__inner {
    flex-wrap: wrap;
  }
  .header .btn-phone {
    padding: 8px 14px;
    font-size: 13px;
  }
  .header .btn-phone span {
    display: none;
  }
  .header .btn-phone:nth-child(2) {
    display: none;
  }
  .hero {
    min-height: auto;
  }
  .hero__bg {
    background: url('../assets/back_2.png') center / cover no-repeat;
  }
  .hero__inner {
    padding: 40px 20px 50px;
  }
  .hero__title {
    font-size: 44px;
  }
  .hero__subtitle {
    font-size: 14px;
  }
  .quote-form {
    padding: 22px 20px;
  }
  .quote-form__title {
    font-size: 18px;
  }
  .features__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .features__item {
    flex: 0 0 calc(50% - 24px);
  }
  .features__item img {
    width: 42px;
    height: 42px;
  }
  .features__item span {
    font-size: 12px;
  }
  .features__item:not(:last-child)::after {
    display: none;
  }
  .payments {
    padding: 40px 0;
  }
  .payments__title {
    font-size: 24px;
  }
  .payments__carousel {
    overflow: hidden;
    container-type: inline-size;
    mask-image: linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
  }
  .payments__grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    width: max-content;
    animation: payments-scroll 32s linear infinite;
  }
  .payments__grid > .payments__item:nth-child(n+8) {
    display: flex;
  }
  .payments__carousel:hover .payments__grid {
    animation-play-state: paused;
  }
  .payments__item {
    flex: 0 0 calc((100cqw - 14px) / 2);
  }
  @keyframes payments-scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-50% - 7px));
    }
  }
  .bestsellers {
    padding: 40px 0;
    /* show 2 cards at a time in mobile */
  }
  .bestsellers__title {
    font-size: 22px;
  }
  .bestsellers__item {
    flex: 0 0 calc((100cqw - 14px) / 2);
  }
  .audience {
    padding: 40px 0;
  }
  .audience__title {
    font-size: 24px;
  }
  .audience__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .process {
    padding: 40px 0;
    /* Hide arc connectors in mobile (2x2 layout doesn't fit them) */
  }
  .process__title {
    font-size: 24px;
  }
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: -60px;
  }
  .process__step:nth-child(1)::after,
  .process__step:nth-child(2)::before,
  .process__step:nth-child(3)::after {
    display: none;
  }
  .cta-band {
    padding: 40px 0;
  }
  .cta-band__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cta-band__title {
    font-size: 32px;
  }
  .cta-band__map {
    height: 260px;
  }
  .why {
    padding: 0 0 40px;
  }
  .why__box {
    padding: 30px 22px;
    margin-top: 30px;
  }
  .why__title {
    font-size: 24px;
  }
  .why__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .why__icons {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .why__icon {
    width: 100%;
    padding: 18px 10px;
  }
  .why__icon img {
    width: 42px;
    height: 42px;
  }
  .stock {
    padding: 40px 0 50px;
  }
  .stock__title {
    font-size: 20px;
    margin-bottom: 28px;
  }
  .stock__products img {
    max-height: 180px;
  }
  .stock__upcoming {
    font-size: 14px;
  }
}
