/* =========================================================
   Design tokens
   ========================================================= */
:root {
  --color-navy: #083852;
  --color-blue: #12aee5;
  --color-blue-light: #bbe7ff;
  --color-orange: #f26522;
  --color-gray-text: #58595b;
  --color-bg-light: #f7fbfd;
  --color-bg-lighter: #e8f4fb;
  --color-white: #ffffff;
  --color-border: rgba(8, 56, 82, 0.1);
  --color-border-strong: rgba(8, 56, 82, 0.15);

  --font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container-max: 1180px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 16px;

  --space-section: 112px;
  --space-section-mobile: 64px;
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--color-navy);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 14px; }
h1, h2, h3, p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.icon { width: 14px; height: 14px; flex-shrink: 0; }
.icon--lg { width: 20px; height: 20px; }
.icon--sm { width: 16px; height: 16px; }
.icon--xs { width: 12px; height: 12px; }
.icon--rotate { transform: rotate(90deg); }

/* =========================================================
   Typography helpers
   ========================================================= */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 500;
}
.eyebrow--light { color: var(--color-blue-light); }
.eyebrow--center { justify-content: center; }
.eyebrow__line {
  width: 24px;
  height: 1px;
  background: var(--color-blue);
  flex-shrink: 0;
}
.eyebrow__line--light { background: var(--color-blue-light); }

.heading-2 {
  margin-top: 16px;
  font-size: 44.8px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.9px;
  color: var(--color-navy);
}
.heading-2--light { color: var(--color-white); }

.heading-3 {
  font-size: 36.9px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.74px;
  color: var(--color-navy);
}

.paragraph {
  margin-top: 24px;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-gray-text);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: none;
  white-space: nowrap;
  padding: 12px 24px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 8px 12px rgba(242, 101, 34, 0.28);
}
.btn--primary:disabled { opacity: 0.6; cursor: not-allowed; }

.btn--outline {
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-navy);
  border: 1px solid rgba(8, 56, 82, 0.2);
  padding: 13px 25px;
}

.btn--outline-dark {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 13px 25px;
  width: 100%;
  margin-top: 24px;
}

.btn--outline-light {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 13px 25px;
}

.btn--phone {
  border: 1px solid var(--color-border-strong);
  color: var(--color-navy);
  padding: 9px 17px;
}

/* =========================================================
   Header / Navbar
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px;
}

.site-header__inner { display: flex; justify-content: center; }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 1180px;
  padding: 11px 17px;
  background: rgba(247, 251, 253, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(8, 56, 82, 0.1);
}

.navbar__logo img { height: 36px; width: auto; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.navbar__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-text);
}
.navbar__links a:hover { color: var(--color-navy); }
.navbar__links a.is-active { color: var(--color-blue); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: none;
}
.navbar__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.navbar__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.is-open span:nth-child(2) { opacity: 0; }
.navbar__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 128px 0 80px;
  background:
    radial-gradient(ellipse 135px 135px at 15% 10%, rgba(18,174,229,0.18), rgba(9,87,115,0.09) 30%, transparent 60%),
    linear-gradient(146deg, #ffffff 0%, #f2f9fd 55%, #e2f3fb 100%);
  overflow: hidden;
}

.hero__whatsapp {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  z-index: 5;
}

.hero__container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 48px;
}

.hero__content {
  flex: 1 1 480px;
  min-width: 0;
  max-width: 605px;
}

.hero__title {
  margin-top: 16px;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1.6px;
  color: var(--color-navy);
}

.hero__paragraph {
  margin-top: 24px;
  max-width: 552px;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-gray-text);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}

.stat-card {
  flex: 1 1 150px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 21px 17px;
}
.stat-card__number {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.6px;
  color: var(--color-navy);
}
.stat-card__label {
  margin-top: 8px;
  font-size: 12px;
  line-height: 16.5px;
  color: var(--color-gray-text);
}

.hero__media {
  position: relative;
  flex: 1 1 420px;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-content: flex-start;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-white);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }

.hero-card--main {
  flex: 1 1 100%;
  aspect-ratio: 495 / 296;
  box-shadow: 0 24px 70px rgba(8, 56, 82, 0.14);
}

.hero-card--small {
  flex: 1 1 220px;
  aspect-ratio: 241 / 212;
}

.hero-card__overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(247, 251, 253, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  padding: 17px;
}
.hero-card__overlay-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy);
}
.hero-card__overlay-sub {
  margin-top: 4px;
  font-size: 12px;
  color: var(--color-gray-text);
}
.hero-card__badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--color-navy);
  color: var(--color-blue-light);
  font-size: 12px;
  font-weight: 500;
}

/* =========================================================
   Brand strip
   ========================================================= */
.brand-strip {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 33px 0;
}
.brand-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.brand-strip__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-text);
  margin-right: 12px;
}
.brand-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}
.brand-strip__list li {
  padding: 13px 9px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.12px;
  color: var(--color-gray-text);
}

@media (min-width: 901px) {
  .brand-strip__list { flex-wrap: nowrap; }
  .brand-strip__list li {
    flex: 1 1 0;
    text-align: center;
    white-space: nowrap;
  }
}

/* =========================================================
   Nosotros
   ========================================================= */
.nosotros {
  background: var(--color-bg-light);
  padding: var(--space-section) 0;
}
.nosotros__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
.nosotros__intro {
  flex: 1 1 480px;
  min-width: 0;
}
.nosotros__cards {
  flex: 1 1 400px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card {
  display: flex;
  gap: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 21px;
}
.feature-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ddf0fa;
  border-radius: var(--radius-sm);
  font-size: 18px;
}
.feature-card__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy);
}
.feature-card__text {
  margin-top: 4px;
  font-size: 14px;
  line-height: 19.25px;
  color: var(--color-gray-text);
}

/* =========================================================
   Section head (shared: Servicios / Proyectos)
   ========================================================= */
.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
.section-head__paragraph {
  flex: 0 1 320px;
  margin-top: 8px;
  font-size: 14px;
  line-height: 22.75px;
  color: var(--color-gray-text);
  align-self: flex-end;
}
.section-head__paragraph--light { color: rgba(255, 255, 255, 0.6); }

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* =========================================================
   Servicios
   ========================================================= */
.servicios { background: var(--color-white); padding: var(--space-section) 0; }

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 360px;
  padding: 29px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 16px rgba(8, 56, 82, 0.06);
}
.service-card--dark {
  color: var(--color-white);
  background: linear-gradient(137deg, rgba(18,174,229,0.22) 6%, rgba(0,0,0,0) 45%), var(--color-navy);
  border-color: rgba(255, 255, 255, 0.1);
}
.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-card__index {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-blue);
}
.service-card--dark .service-card__index { color: var(--color-blue-light); }
.service-card__title {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.16px;
  line-height: 22px;
  color: var(--color-navy);
}
.service-card--dark .service-card__title { color: var(--color-white); }
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card__list li {
  position: relative;
  padding-left: 16px;
  font-size: 12px;
  line-height: 16.5px;
  color: var(--color-gray-text);
}
.service-card__list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--color-blue);
}
.service-card--dark .service-card__list li { color: rgba(255, 255, 255, 0.65); }
.service-card--dark .service-card__list li::before { color: var(--color-blue-light); }

/* =========================================================
   Divisiones
   ========================================================= */
.divisiones { background: var(--color-bg-light); padding: var(--space-section) 0; }

.divisiones-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 48px;
}

.division-card {
  flex: 1 1 400px;
  position: relative;
  min-height: 288px;
  padding: 33px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  overflow: hidden;
}
.division-card--cold {
  background: linear-gradient(150deg, rgba(18,174,229,0.28) 6%, rgba(0,0,0,0) 50%), var(--color-navy);
}
.division-card--heat {
  background: linear-gradient(150deg, rgba(242,101,34,0.22) 6%, rgba(0,0,0,0) 50%), #1a1a1a;
}
.division-card--support {
  width: 100%;
  margin-top: 20px;
  background: linear-gradient(169deg, #f26522 6%, rgba(0,0,0,0) 50%), var(--color-orange);
}

.division-card__icon-badge {
  position: absolute;
  top: 24px;
  right: 33px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(18, 174, 229, 0.2);
  border: 1px solid rgba(18, 174, 229, 0.3);
}
.division-card__icon-badge img { width: 28px; height: 28px; }
.division-card__icon-badge--heat {
  background: rgba(242, 101, 34, 0.2);
  border-color: rgba(242, 101, 34, 0.3);
}
.division-card__icon-badge--support {
  background: rgba(18, 174, 229, 0.2);
  border-color: rgba(17, 17, 17, 0.2);
}

.division-card__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-blue-light);
  padding-right: 90px;
}
.division-card__label--heat { color: #ffb38a; }
.division-card__label--support { color: #111111; }

.division-card__title {
  margin-top: 8px;
  max-width: 410px;
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
  letter-spacing: -0.48px;
  color: var(--color-white);
}

.division-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-bottom: 24px;
  max-width: 410px;
  font-size: 14px;
  line-height: 22.75px;
  color: rgba(255, 255, 255, 0.68);
}

.division-card__paragraph {
  margin-top: 16px;
  padding-bottom: 24px;
  max-width: 630px;
  font-size: 14px;
  line-height: 22.75px;
  color: rgba(255, 255, 255, 0.68);
}

/* =========================================================
   Proyectos
   ========================================================= */
.proyectos { background: var(--color-navy); padding: var(--space-section) 0; }

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 48px;
}
.project-card {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 288px;
  padding: 25px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(164deg, rgba(18,174,229,0.16) 8%, rgba(0,0,0,0) 45%), rgba(255, 255, 255, 0.05);
}
.project-card__date {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-blue-light);
}
.project-card__title {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.16px;
  line-height: 22px;
  color: var(--color-white);
}
.project-card__text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 19.25px;
  color: rgba(255, 255, 255, 0.6);
}
.project-card__tag {
  align-self: flex-start;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

/* =========================================================
   Guia gratuita
   ========================================================= */
.guia-gratuita { background: var(--color-bg-lighter); padding: var(--space-section) 0; }

.guia-card {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 56px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background:
    radial-gradient(ellipse 90px 90px at 90% 15%, rgba(18,174,229,0.18), rgba(9,87,115,0.09) 30%, transparent 60%),
    var(--color-white);
  box-shadow: 0 24px 35px rgba(8, 56, 82, 0.1);
}
.guia-card__intro { flex: 1 1 400px; min-width: 0; }

.guia-form {
  flex: 1 1 400px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: center;
}

/* =========================================================
   Forms (shared)
   ========================================================= */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-navy);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 17px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-strong);
  background: var(--color-bg-light);
  color: var(--color-navy);
}
.form-field textarea { resize: vertical; min-height: 106px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(8, 56, 82, 0.5); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-blue);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.form-row .form-field { flex: 1 1 200px; }

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  line-height: 16.5px;
  color: var(--color-gray-text);
  font-weight: 500;
  cursor: pointer;
}
.checkbox-field input { margin-top: 2px; width: 14px; height: 14px; flex-shrink: 0; }

/* =========================================================
   Contacto
   ========================================================= */
.contacto { background: var(--color-bg-light); padding: var(--space-section) 0; }

.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 28px 57px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background:
    radial-gradient(ellipse 110px 130px at 12% 20%, rgba(18,174,229,0.16), rgba(9,87,115,0.08) 25%, transparent 55%),
    var(--color-white);
  box-shadow: 0 24px 35px rgba(8, 56, 82, 0.1);
}
.contact-card__info { flex: 1 1 400px; min-width: 0; }

.contact-list {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}
.contact-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 0 17px;
  border-bottom: 1px solid rgba(8, 56, 82, 0.08);
}
.contact-list__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-gray-text);
}
.contact-list li a,
.contact-list li > span:last-child {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy);
  text-align: right;
}

.contact-form {
  flex: 1 1 420px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--color-navy); padding: 48px 0; }

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-about {
  flex: 1 1 300px;
  max-width: 400px;
}
.footer-about p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 22.75px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-col { flex: 0 1 160px; }
.footer-col__title {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-blue-light);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-col a:hover { color: var(--color-white); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.social-link img { width: 16px; height: 16px; }

/* =========================================================
   Responsive — tablet
   ========================================================= */
@media (max-width: 960px) {
  .site-header { padding: 12px; }
  .navbar { padding: 10px 14px; flex-wrap: wrap; }
  .navbar__toggle { display: flex; }

  .navbar__links,
  .navbar__actions {
    flex-basis: 100%;
    display: none;
  }
  .navbar.is-open .navbar__links,
  .navbar.is-open .navbar__actions {
    display: flex;
  }
  .navbar__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    margin-top: 12px;
  }
  .navbar__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 16px;
  }
  .navbar__actions .btn { width: 100%; }
}

@media (max-width: 900px) {
  :root { --space-section: 80px; }

  .hero { padding-top: 112px; }
  .hero__title { font-size: 40px; letter-spacing: -1px; }
  .heading-2 { font-size: 34px; }
  .heading-3 { font-size: 28px; }

  .guia-card,
  .contact-card { padding: 32px; }
}

/* =========================================================
   Responsive — mobile
   ========================================================= */
@media (max-width: 640px) {
  :root { --space-section: var(--space-section-mobile); }

  .hero { padding: 96px 0 56px; }
  .hero__whatsapp { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .hero__title { font-size: 32px; line-height: 1.15; letter-spacing: -0.8px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__stats { flex-direction: column; }
  .hero__stats .stat-card { flex-basis: auto; }

  .heading-2 { font-size: 28px; letter-spacing: -0.5px; }
  .heading-3 { font-size: 24px; }

  .section-head { flex-direction: column; }
  .section-head__paragraph { flex-basis: auto; align-self: flex-start; }

  .services-grid,
  .divisiones-grid,
  .projects-grid { flex-direction: column; }
  .service-card,
  .division-card,
  .project-card { flex: 1 1 auto; min-height: 0; }

  .division-card__icon-badge {
    position: static;
    margin-bottom: 16px;
  }
  .division-card__label { padding-right: 0; }

  .brand-strip__inner { flex-direction: column; align-items: flex-start; }

  .guia-card,
  .contact-card { padding: 24px; flex-direction: column; }
  .guia-card__intro,
  .guia-form,
  .contact-card__info,
  .contact-form { flex-basis: auto; align-self: stretch; }

  .form-row { flex-direction: column; gap: 12px; }
  .form-row .form-field { flex: 1 1 auto; }
  .guia-form,
  .contact-form { gap: 12px; }

  .footer-top { flex-direction: column; gap: 32px; }
  .footer-about,
  .footer-col { flex-basis: auto; max-width: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   Breadcrumb (catalog pages)
   ========================================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.breadcrumb__link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb__current {
  font-size: 12px;
  color: var(--color-blue-light);
}
.breadcrumb__current--hot { color: #ffb38a; }

/* =========================================================
   Catalog hero
   ========================================================= */
.catalog-hero {
  padding: 80px 0 64px;
  background:
    radial-gradient(ellipse 110px 110px at 85% 15%, rgba(18,174,229,0.3), rgba(9,87,115,0.15) 30%, transparent 60%),
    linear-gradient(162deg, var(--color-navy) 0%, #0a4a6b 100%);
}
.catalog-hero__body {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.catalog-hero__intro { flex: 1 1 500px; max-width: 720px; }
.catalog-hero__badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.catalog-hero__badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(18, 174, 229, 0.2);
  border: 1px solid rgba(18, 174, 229, 0.35);
}
.catalog-hero__badge img { width: 20px; height: 20px; }
.catalog-hero__badge-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-blue-light);
}
.catalog-hero__title {
  margin-top: 16px;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: var(--color-white);
}
.catalog-hero__desc {
  margin-top: 16px;
  max-width: 576px;
  font-size: 14px;
  line-height: 22.75px;
  color: rgba(255, 255, 255, 0.65);
}
.catalog-hero__cta { flex-shrink: 0; }

/* =========================================================
   Filter pills
   ========================================================= */
.catalog-filters {
  background: rgba(247, 251, 253, 0.95);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0 13px;
}
.filter-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.filter-pill {
  flex-shrink: 0;
  padding: 9px 17px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-strong);
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-gray-text);
  white-space: nowrap;
}
.filter-pill.is-active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}

/* =========================================================
   Catalog products
   ========================================================= */
.catalog-products {
  background: var(--color-white);
  padding: 64px 0;
}
.catalog-category { padding-bottom: 64px; }
.catalog-category:last-child { padding-bottom: 0; }

.catalog-category__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 17px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}
.catalog-category__badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--color-navy);
  color: var(--color-blue-light);
  font-size: 12px;
  font-weight: 500;
}
.catalog-category__meta { flex-shrink: 0; }
.catalog-category__title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.16px;
  color: var(--color-navy);
}
.catalog-category__count {
  margin-top: 0;
  font-size: 12px;
  color: var(--color-gray-text);
}
.catalog-category__divider {
  flex: 1;
  height: 1px;
  margin-left: 8px;
  background: var(--color-border);
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.product-card {
  flex: 1 1 300px;
  max-width: calc(33.333% - 14px);
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(8, 56, 82, 0.06);
  overflow: hidden;
}
.product-card__image {
  width: 100%;
  aspect-ratio: 367 / 275;
  object-fit: cover;
  background: var(--color-bg-light);
}
.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.product-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 8px;
}
.product-card__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 19.25px;
  letter-spacing: -0.14px;
  color: var(--color-navy);
}
.product-card__tag {
  flex-shrink: 0;
  padding: 2px 8px;
  border-radius: 8px;
  background: var(--color-bg-lighter);
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 500;
}
.product-card__desc {
  flex: 1;
  font-size: 12px;
  line-height: 19.5px;
  color: var(--color-gray-text);
}
.product-card__link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-blue);
}

.catalog-empty {
  padding: 48px 0;
  text-align: center;
  font-size: 14px;
  color: var(--color-gray-text);
}

/* =========================================================
   Quote CTA banner (catalog pages)
   ========================================================= */
.catalog-cta { background: var(--color-white); padding: var(--space-section) 0; }
.quote-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 56px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse 100px 100px at 90% 20%, rgba(18,174,229,0.14), rgba(9,87,115,0.07) 30%, transparent 60%),
    var(--color-navy);
}
.quote-banner__intro { flex: 1 1 400px; }
.quote-banner__desc { color: rgba(255, 255, 255, 0.65); }
.quote-banner__actions {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.quote-banner__contact {
  display: flex;
  gap: 12px;
}
.quote-banner__link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 21px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
}

/* =========================================================
   Catalog pages — responsive
   ========================================================= */
@media (max-width: 900px) {
  .catalog-hero__title { font-size: 34px; }
  .product-card { max-width: calc(50% - 10px); }
  .quote-banner { padding: 32px; }
}

@media (max-width: 640px) {
  .catalog-hero { padding: 48px 0; }
  .catalog-hero__body { flex-direction: column; align-items: stretch; }
  .catalog-hero__title { font-size: 26px; letter-spacing: -0.6px; }
  .catalog-hero__cta .btn { width: 100%; }

  .catalog-category__head { flex-wrap: wrap; }
  .catalog-category__divider { display: none; }

  .products-grid { flex-direction: column; }
  .product-card { max-width: none; }

  .quote-banner { flex-direction: column; padding: 24px; }
  .quote-banner__intro,
  .quote-banner__actions { flex-basis: auto; }
  .quote-banner__contact { flex-direction: column; }
}

/* =========================================================
   Hero stat chips (trabajos page)
   ========================================================= */
.hero-stats {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.stat-chip {
  min-width: 159px;
  padding: 17px 21px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-chip__number {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.48px;
  color: var(--color-white);
}
.stat-chip__label {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================================
   Work list (trabajos page)
   ========================================================= */
.work-section { background: var(--color-bg-light); padding: 64px 0; }
.work-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.work-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 10px rgba(8, 56, 82, 0.06);
}
.work-item__body { flex: 1; min-width: 0; }
.work-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.work-item__tag {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
}
.work-item__tag--cold { background: rgba(18, 174, 229, 0.09); color: var(--color-blue); }
.work-item__tag--hot { background: rgba(242, 101, 34, 0.09); color: var(--color-orange); }
.work-item__date { font-size: 12px; color: var(--color-gray-text); }
.work-item__title {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: var(--color-navy);
}
.work-item__desc {
  margin-top: 8px;
  font-size: 14px;
  line-height: 19.25px;
  color: var(--color-gray-text);
}
.work-item__aside {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.work-item__index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-lighter);
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 500;
}
.work-item__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-navy);
}

/* =========================================================
   Clients (trabajos page)
   ========================================================= */
.clients-section {
  background: var(--color-white);
  padding: 65px 0 64px;
  border-top: 1px solid var(--color-border);
}
.clients-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.clients-intro { flex: 0 1 280px; }
.clients-intro__title { font-size: 30.4px; line-height: 1.25; }
.clients-grid {
  flex: 1 1 600px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.client-chip {
  flex: 1 1 220px;
  max-width: calc(33.333% - 14px);
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.client-chip__dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-blue);
}
.client-chip span:last-child {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy);
}

/* =========================================================
   Centered CTA (trabajos page)
   ========================================================= */
.work-cta {
  background: var(--color-bg-light);
  padding: 65px 0 64px;
  border-top: 1px solid rgba(8, 56, 82, 0.07);
}
.cta-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.cta-centered__title { text-align: center; }
.cta-centered__desc { text-align: center; }
.cta-centered__actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

/* =========================================================
   Trabajos page — responsive
   ========================================================= */
@media (max-width: 900px) {
  .client-chip { max-width: calc(50% - 10px); }
}

@media (max-width: 640px) {
  .hero-stats { flex-direction: column; width: 100%; }
  .stat-chip { min-width: 0; }

  .work-item { flex-direction: column; align-items: flex-start; padding: 24px; }
  .work-item__aside { align-self: flex-start; }

  .clients-layout { flex-direction: column; }
  .client-chip { max-width: none; flex: 1 1 100%; }

  .cta-centered__actions { flex-direction: column; width: 100%; }
  .cta-centered__actions .btn { width: 100%; }
}

/* =========================================================
   Case detail hero (heat variant)
   ========================================================= */
.case-hero--heat {
  background:
    radial-gradient(ellipse 130px 130px at 78% 30%, rgba(242,101,34,0.32), rgba(121,51,17,0.16) 30%, transparent 60%),
    linear-gradient(166deg, #111111 0%, #1a1a1a 100%);
}
.case-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.case-tag {
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  background: rgba(242, 101, 34, 0.16);
  border: 1px solid rgba(242, 101, 34, 0.27);
  color: #ffb38a;
  font-size: 12px;
  font-weight: 500;
}
.case-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* =========================================================
   Case content layout
   ========================================================= */
.case-content { background: var(--color-bg-light); padding: 64px 0; }
.case-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}
.case-main {
  flex: 1 1 700px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.case-sidebar {
  flex: 1 1 320px;
  max-width: 340px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* =========================================================
   Case photo gallery / carousel
   ========================================================= */
.case-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 760 / 540;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-lighter);
}
.case-gallery__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.case-gallery__slide.is-active { opacity: 1; }
.case-gallery__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.case-gallery__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}
.case-gallery__dot.is-active {
  width: 20px;
  background: var(--color-white);
}

/* =========================================================
   Case narrative sections
   ========================================================= */
.case-section {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 33px;
}
.case-section--highlight {
  background: linear-gradient(168deg, rgba(242, 101, 34, 0.08) 0%, rgba(242, 101, 34, 0.03) 100%);
  border-color: rgba(242, 101, 34, 0.13);
}
.case-section__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.case-section__index {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(242, 101, 34, 0.09);
  color: var(--color-orange);
  font-size: 12px;
  font-weight: 500;
}
.case-section--highlight .case-section__index { background: rgba(242, 101, 34, 0.13); }
.case-section__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-navy);
}
.case-section__text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 22.75px;
  color: var(--color-gray-text);
}

/* =========================================================
   Case sidebar cards
   ========================================================= */
.sidebar-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 25px;
}
.sidebar-card__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-orange);
}
.sidebar-card--dark {
  background: linear-gradient(161deg, rgba(242, 101, 34, 0.18) 6%, rgba(0, 0, 0, 0) 59%), #111111;
  border-color: rgba(255, 255, 255, 0.08);
}
.sidebar-card__label--dark {
  font-size: 14px;
  color: var(--color-white);
}
.sidebar-cta__desc {
  margin-top: 8px;
  padding-bottom: 20px;
  font-size: 12px;
  line-height: 16.5px;
  color: rgba(255, 255, 255, 0.58);
}

.work-checklist {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.work-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.work-checklist__icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(242, 101, 34, 0.08);
}
.work-checklist__icon img { width: 10px; height: 10px; }
.work-checklist__text {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-gray-text);
}

.project-facts {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}
.project-facts__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0 13px;
  border-bottom: 1px solid rgba(8, 56, 82, 0.07);
}
.project-facts__row:last-child { border-bottom: none; }
.project-facts__label { font-size: 12px; color: var(--color-gray-text); }
.project-facts__value {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-navy);
  text-align: right;
}

.back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-text);
}
.back-link__icon { transform: rotate(180deg); }
.back-link:hover { color: var(--color-navy); }

/* =========================================================
   Case detail page — responsive
   ========================================================= */
@media (max-width: 640px) {
  .case-content { padding: 40px 0; }
  .case-layout { flex-direction: column; }
  .case-main,
  .case-sidebar { flex-basis: auto; }
  .case-sidebar { max-width: none; min-width: 0; }
  .case-section { padding: 24px; }
  .case-meta { margin-bottom: 16px; }
}

/* =========================================================
   WordPress: avisos de formularios y utilidades
   ========================================================= */
.form-notice {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-notice--ok {
  background: #e6f7ee;
  color: #0f7a3d;
  border: 1px solid rgba(15, 122, 61, 0.25);
}

.form-notice--error {
  background: #fdecec;
  color: #b42318;
  border: 1px solid rgba(180, 35, 24, 0.25);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* =========================================================
   Micro-interacciones de botones y enlaces
   ========================================================= */
body { overflow-x: clip; }

.btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.btn .icon { transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1); }

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn:hover .icon[src*="arrow"] { transform: translateX(4px); }
.btn:hover .icon--rotate[src*="arrow"] { transform: rotate(90deg) translateX(4px); }

.btn--primary:hover {
  background: #fb7434;
  box-shadow: 0 12px 22px rgba(242, 101, 34, 0.38);
}
.btn--primary:disabled:hover {
  transform: none;
  background: var(--color-orange);
  box-shadow: 0 8px 12px rgba(242, 101, 34, 0.28);
}
.btn--primary:disabled:hover .icon[src*="arrow"] { transform: none; }

.btn--outline:hover {
  background: var(--color-white);
  border-color: rgba(8, 56, 82, 0.35);
  box-shadow: 0 8px 16px rgba(8, 56, 82, 0.08);
}

.btn--outline-dark:hover,
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--phone:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
  background: var(--color-bg-lighter);
}

.product-card__link .icon,
.back-link__icon {
  transition: transform 0.25s ease;
}
.product-card__link:hover .icon { transform: translateX(4px); }
.back-link:hover .back-link__icon { transform: translateX(-4px); }

.work-item__link {
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.work-item__link:hover {
  transform: translateX(4px);
  background: var(--color-blue);
  box-shadow: 0 8px 16px rgba(18, 174, 229, 0.35);
}

.hero__whatsapp { transition: transform 0.25s ease; }
.hero__whatsapp:hover { transform: translateY(-4px) scale(1.04); }

.filter-pill { transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; }
.filter-pill:hover { transform: translateY(-1px); }

/* =========================================================
   Animaciones de aparición al hacer scroll
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
  }

  .reveal--left { transform: translateX(-36px); }
  .reveal--right { transform: translateX(36px); }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   Hot division badge / outline button variants
   ========================================================= */
.catalog-hero__badge--heat {
  background: rgba(242, 101, 34, 0.2);
  border-color: rgba(242, 101, 34, 0.35);
}
.catalog-hero__badge-label--heat { color: #ffb38a; }

.btn--outline-navy {
  background: transparent;
  color: var(--color-navy);
  border: 1px solid rgba(8, 56, 82, 0.18);
  padding: 13px 21px;
}

/* =========================================================
   Hot division product list (catalogo-caliente page)
   ========================================================= */
.hot-products { background: var(--color-white); padding: 64px 0; }
.hot-products-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hot-product {
  display: flex;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 28px rgba(8, 56, 82, 0.06);
  overflow: hidden;
}
.hot-product--reverse { flex-direction: row-reverse; }

.hot-product__media {
  position: relative;
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  padding: 32px;
  background: #f5f3f0;
}
.hot-product__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.hot-product__tag {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: #111111;
  color: #ffb38a;
  font-size: 12px;
  font-weight: 500;
}
.hot-product__number {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(242, 101, 34, 0.2);
  color: var(--color-orange);
  font-size: 18px;
  font-weight: 500;
}

.hot-product__body {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
}
.hot-product__title {
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.58px;
  color: var(--color-navy);
}
.hot-product__desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 22.75px;
  color: var(--color-gray-text);
  max-width: 483px;
}
.hot-product__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.hot-tag {
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  background: #fff3ec;
  border: 1px solid rgba(242, 101, 34, 0.15);
  color: var(--color-orange);
  font-size: 12px;
  font-weight: 500;
}
.hot-product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* =========================================================
   Quote banner — heat variant (catalogo-caliente page)
   ========================================================= */
.quote-banner--heat {
  background:
    radial-gradient(ellipse 100px 100px at 90% 20%, rgba(242,101,34,0.28), rgba(121,51,17,0.14) 30%, transparent 60%),
    #111111;
  border-color: rgba(255, 255, 255, 0.06);
}
.quote-banner__label {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote-banner__label span {
  font-size: 12px;
  font-weight: 500;
  color: #ffb38a;
}

/* =========================================================
   Catalogo-caliente — responsive
   ========================================================= */
@media (max-width: 900px) {
  .hot-product,
  .hot-product--reverse { flex-direction: column; }
  .hot-product__media { min-height: 300px; }
}

@media (max-width: 640px) {
  .hot-product__body { padding: 24px; }
  .hot-product__title { font-size: 24px; }
  .hot-product__actions { flex-direction: column; align-items: stretch; }
}

/* =========================================================
   Featured products — variante fría (catalogo-frio page)
   ========================================================= */
.btn--navy {
  background: var(--color-navy);
  color: var(--color-white);
}
.btn--navy:hover { background: #0a4a6b; }

.hot-products--cold .hot-product__number {
  color: var(--color-navy);
  border-color: rgba(8, 56, 82, 0.1);
}
.hot-products--cold .hot-tag {
  color: var(--color-navy);
  border-color: rgba(8, 56, 82, 0.08);
}

.hot-product__tags--stack {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
}

/* =========================================================
   Hero — variante BMS (fondo naranja)
   ========================================================= */
.catalog-hero--bms {
  background:
    linear-gradient(165.5deg, rgba(255, 255, 255, 0.06) 6%, rgba(0, 0, 0, 0) 50%),
    var(--color-orange);
}
.catalog-hero--bms .catalog-hero__body {
  flex-direction: column;
  align-items: flex-start;
}
.catalog-hero--bms .catalog-hero__intro { flex: 0 0 auto; }
.catalog-hero--bms .catalog-hero__badge {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}
.catalog-hero__badge-label--bms { color: var(--color-white); }

/* =========================================================
   Caso de estudio — variante fría
   ========================================================= */
.case-tag--cold {
  background: rgba(18, 174, 229, 0.16);
  border-color: rgba(18, 174, 229, 0.27);
  color: var(--color-blue-light);
}

.case-section--highlight--cold {
  background: linear-gradient(168deg, rgba(18, 174, 229, 0.08) 0%, rgba(18, 174, 229, 0.03) 100%);
  border-color: rgba(18, 174, 229, 0.13);
}

.case-section__index--cold { background: rgba(18, 174, 229, 0.09); color: var(--color-blue); }
.case-section--highlight--cold .case-section__index--cold { background: rgba(18, 174, 229, 0.13); }

.sidebar-card__label--cold { color: var(--color-blue); }

.sidebar-card--dark-cold {
  background: linear-gradient(161deg, rgba(18, 174, 229, 0.2) 6%, rgba(0, 0, 0, 0) 59%), var(--color-navy);
  border-color: rgba(255, 255, 255, 0.08);
}

.work-checklist__icon--cold { background: rgba(18, 174, 229, 0.08); }
