﻿:root {
  --primary: #e32619;
  --primary-dark: #b51b11;
  --primary-soft: rgba(227, 38, 25, 0.12);
  --secondary: #2b308b;
  --secondary-dark: #1d2265;
  --secondary-soft: rgba(43, 48, 139, 0.12);
  --ink: #1f2328;
  --muted: #66707a;
  --bg: #f6f4f2;
  --surface: #ffffff;
  --surface-alt: #f1f3fb;
  --line: rgba(31, 35, 40, 0.1);
  --dark: #15181b;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --radius: 1.25rem;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--ink);
  background: var(--bg);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(31, 35, 40, 0.08);
  box-shadow: none;
}

.site-header.is-scrolled,
.site-header.site-header-solid {
  position: sticky;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(31, 35, 40, 0.08);
  box-shadow: none;
}

.header-topbar {
  background: linear-gradient(135deg, rgba(38, 42, 49, 0.025), rgba(227, 38, 25, 0.035));
  border-bottom: 1px solid rgba(31, 35, 40, 0.06);
}

@media (min-width: 992px) {
  .header-topbar {
    max-height: 4rem;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, border-color 0.25s ease;
  }

  .site-header.is-scrolled .header-topbar {
    max-height: 0;
    opacity: 0;
    border-bottom-color: transparent;
  }

  .site-header.is-scrolled .navbar .container::before {
    opacity: 0;
  }
}

.header-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 1.15fr) auto;
  gap: 0.55rem;
  padding: 0.32rem 0;
  align-items: center;
}

.meta-item {
  min-height: 2.15rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 0.65rem;
  color: #262a31;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 35, 40, 0.05);
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(17, 20, 23, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.meta-item:hover {
  color: var(--primary);
  border-color: rgba(227, 38, 25, 0.18);
  box-shadow: 0 12px 22px rgba(43, 48, 139, 0.08);
  transform: translateY(-1px);
}

.meta-item-static:hover {
  color: #262a31;
  transform: none;
}

.meta-icon {
  width: 1.08rem;
  height: 1.08rem;
  flex: 0 0 1.08rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.meta-icon svg {
  width: 1.08rem;
  height: 1.08rem;
}

.meta-item span:last-child {
  font-size: 0.82rem;
  line-height: 1.15;
}

.navbar {
  padding: 0.9rem 0;
}

.site-header .navbar .container {
  position: relative;
}

.navbar-brand img {
  height: 62px;
}

.nav-link {
  position: relative;
  color: #262a31;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.55rem 0.9rem !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.2rem;
  height: 1px;
  background: rgba(227, 38, 25, 0.16);
  transform: scaleX(1);
  transform-origin: center;
  transition: background-color 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  background: rgba(227, 38, 25, 0.34);
}

.navbar-toggler {
  border-color: rgba(38, 42, 49, 0.18);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: none;
}

.btn-brand {
  color: #fff;
  background: var(--primary);
  border: 0;
}

.btn-brand:hover {
  color: #fff;
  background: var(--primary-dark);
}

.btn-outline-dark {
  border-color: rgba(31, 35, 40, 0.16);
}

.btn-outline-dark:hover {
  color: #fff;
  background: var(--secondary);
  border-color: var(--secondary);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-media img {
  width: 100%;
  min-height: 100vh;
  object-fit: cover;
}

.hero-media,
.hero-overlay,
.hero-content {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 18, 20, 0.92) 0%, rgba(15, 18, 20, 0.74) 44%, rgba(15, 18, 20, 0.28) 100%),
    linear-gradient(135deg, rgba(227, 38, 25, 0.24), rgba(43, 48, 139, 0.24));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.text-brand {
  color: var(--primary);
}

.hero-section h1,
.hero-section p,
.hero-contact,
.section-dark h2,
.section-dark p,
.section-dark .eyebrow,
.inner-hero,
.inner-hero .eyebrow {
  color: #fff;
}

.hero-section h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  max-width: 11ch;
}

.hero-text {
  max-width: 42rem;
  margin: 1.5rem 0;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-contact {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.84);
}

.metrics-section {
  position: relative;
  z-index: 3;
  margin-top: -4rem;
  padding-bottom: 2rem;
}

.metrics-section-static {
  margin-top: 0;
  padding: 2.5rem 0 0;
}

.metric-card {
  position: relative;
  height: 100%;
  padding: 1.85rem 1.55rem 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 247, 251, 0.99));
  border: 1px solid rgba(31, 35, 40, 0.08);
  border-radius: 1.35rem;
  box-shadow: 0 22px 44px rgba(18, 24, 32, 0.1);
  overflow: hidden;
}

.metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(227, 38, 25, 0.9), rgba(43, 48, 139, 0.75));
}

.metric-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(227, 38, 25, 0.18), rgba(43, 48, 139, 0.12));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.metric-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #1f245f;
  font-size: 2.35rem;
  line-height: 0.95;
  letter-spacing: -0.03em;
  transition: transform 0.45s ease, text-shadow 0.45s ease, color 0.45s ease;
}

.metric-card.is-active strong {
  transform: translateY(-2px) scale(1.03);
  color: #e32619;
  text-shadow: 0 10px 24px rgba(227, 38, 25, 0.16);
}

.metric-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 0.7rem;
  color: #4f5661;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-block {
  padding: 6rem 0;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.section-split h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.feature-card,
.service-card,
.cta-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card {
  height: 100%;
  border-width: 0;
  color: #fff;
}

.feature-card-rental,
.feature-card-service,
.feature-card-sales {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(227, 38, 25, 0.14), rgba(43, 48, 139, 0.36)),
    linear-gradient(135deg, #141726, #20255f);
}

.feature-card-minimal {
  min-height: 17.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.feature-card-minimal::before,
.feature-card-minimal::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.feature-card-minimal::before {
  width: 9rem;
  height: 9rem;
  top: -3rem;
  right: -1.5rem;
}

.feature-card-minimal::after {
  width: 5.5rem;
  height: 5.5rem;
  left: -1rem;
  bottom: 1rem;
}

.feature-symbol {
  width: 7.8rem;
  height: 7.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.feature-symbol svg {
  width: 3.6rem;
  height: 3.6rem;
}

.feature-label {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.feature-card-minimal h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 0.95;
  color: #fff;
}

.image-stack {
  position: relative;
  min-height: 38rem;
}

.image-main,
.image-accent {
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-main {
  width: 80%;
  height: 100%;
}

.image-accent {
  position: absolute;
  right: 0;
  bottom: 2rem;
  width: 48%;
  border: 0.5rem solid var(--bg);
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(227, 38, 25, 0.16), rgba(43, 48, 139, 0.4)),
    linear-gradient(135deg, #141726, #20255f);
}

.project-grid img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  border-radius: 1rem;
}

.service-card {
  overflow: hidden;
  height: 100%;
}

.service-card img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.service-card-body {
  padding: 1.5rem;
}

.service-card span {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.section-surface {
  background: var(--surface-alt);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.client-logo {
  min-height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background:
    radial-gradient(circle at top left, rgba(227, 38, 25, 0.18), transparent 55%),
    linear-gradient(135deg, #1f245f, #12162f);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(43, 48, 139, 0.16);
}

.client-logo img {
  width: 100%;
  height: 5rem;
  object-fit: contain;
  filter: saturate(1.02) drop-shadow(0 0 18px rgba(255, 255, 255, 0.08));
}

.service-brand-logo {
  min-height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(31, 35, 40, 0.08);
  overflow: hidden;
}

.service-brand-logo img {
  width: 100%;
  height: 8rem;
  object-fit: cover;
}

.section-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-panel {
  padding: 2.15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.75rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(227, 38, 25, 0.16), rgba(43, 48, 139, 0.32)),
    linear-gradient(135deg, #161924, #1d2244);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.cta-panel .eyebrow,
.cta-panel h2,
.cta-panel p {
  color: #fff;
}

.cta-copy {
  width: 100%;
  max-width: none;
}

.cta-panel h2 {
  margin-bottom: 1.1rem;
}

.cta-contact-list {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  width: 100%;
}

.cta-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.cta-contact-pill:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.cta-contact-pill-action {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  font-weight: 600;
}

.cta-contact-pill-action:hover {
  background: rgba(255, 255, 255, 0.18);
}
.cta-contact-pill-whatsapp {
  background: rgba(227, 38, 25, 0.14);
  border-color: rgba(227, 38, 25, 0.3);
}

.cta-contact-icon {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.cta-contact-icon svg {
  width: 1.22rem;
  height: 1.22rem;
}


.site-footer {
  padding: 4rem 0;
  background:
    linear-gradient(135deg, rgba(227, 38, 25, 0.18), rgba(43, 48, 139, 0.4)),
    #111417;
}

.site-footer,
.site-footer h3,
.footer-list li {
  color: #fff;
}

.footer-logo {
  max-height: 60px;
  margin-bottom: 1rem;
}

.site-footer p,
.footer-list li {
  color: rgba(255, 255, 255, 0.76);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social-link {
  width: 2.65rem;
  height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  color: #fff;
  background: rgba(227, 38, 25, 0.18);
  border-color: rgba(227, 38, 25, 0.3);
}

.footer-social-link svg {
  width: 1.15rem;
  height: 1.15rem;
}

.footer-list-contact li,
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-list-contact li + li {
  margin-top: 0.75rem;
}

.footer-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  flex-shrink: 0;
  margin-top: 0.18rem;
}

.footer-icon svg {
  width: 100%;
  height: 100%;
}



.site-footer {
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 3rem, 72rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(227, 38, 25, 0.4), rgba(255,255,255,0));
}

.site-footer .row > [class*="col-"] {
  position: relative;
}

@media (min-width: 992px) {
  .site-footer .row > [class*="col-"] + [class*="col-"]::before {
    content: "";
    position: absolute;
    left: calc(var(--bs-gutter-x) * -0.5);
    top: 0.35rem;
    bottom: 0.35rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.13), rgba(255,255,255,0));
  }
}

@media (max-width: 767.98px) {
  .site-footer::before {
    width: calc(100% - 2rem);
  }

  .footer-socials {
    margin-top: 1rem;
  }
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 7.35rem 0 1.85rem;
  background:
    linear-gradient(120deg, rgba(18, 20, 32, 0.82), rgba(43, 48, 139, 0.68)),
    linear-gradient(135deg, rgba(227, 38, 25, 0.3), rgba(43, 48, 139, 0.18)),
    url("../img/banners/obras-capa.jpg") center 30% / cover no-repeat;
  box-shadow: inset 0 -28px 48px rgba(9, 11, 18, 0.16);
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(9, 11, 18, 0.02), rgba(9, 11, 18, 0.18));
  pointer-events: none;
}

.inner-hero .container {
  position: relative;
  z-index: 1;
}

.inner-hero h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.02;
  max-width: 14ch;
  margin-bottom: 0.75rem;
}

.inner-hero p {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .meta-item span:last-child {
    font-size: 0.84rem;
  }
}

@media (max-width: 1199.98px) {
  .header-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-socials {
    justify-content: start;
  }
}

@media (min-width: 992px) {
  .col-lg-2-4 {
    width: 20%;
  }

  .client-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .client-grid-full {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 991.98px) {
  .header-meta {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0.5rem 0;
  }

  .header-socials {
    justify-content: start;
  }

  .meta-item {
    border-radius: 0.9rem;
    padding: 0.5rem 0.7rem;
  }


  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid rgba(31, 35, 40, 0.08);
    box-shadow: 0 14px 34px rgba(17, 20, 23, 0.08);
  }

  .image-stack {
    min-height: auto;
  }

  .image-main {
    width: 100%;
    height: auto;
  }

  .image-accent {
    position: relative;
    width: 70%;
    margin: -3rem 0 0 auto;
  }

  .cta-panel {
  flex-direction: column;
  align-items: flex-start;
    flex-direction: column;
    align-items: flex-start;
  }

  }

@media (max-width: 767.98px) {
  .meta-item span:last-child {
    font-size: 0.8rem;
  }

  .inner-hero {
    padding: 6.65rem 0 1.6rem;
  }

  .section-block {
    padding: 4.5rem 0;
  }

  .hero-actions,
  .cta-actions,
  .section-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-contact-list {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-contact-pill {
    width: 100%;
    justify-content: flex-start;
  }

  .client-grid,
  .client-grid-full {
    grid-template-columns: 1fr;
  }
}

.meta-item-social {
  justify-content: center;
}


.meta-item-icon-only {
  width: 2.35rem;
  min-width: 2.35rem;
  justify-content: center;
  padding: 0.38rem;
}


.header-socials {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.4rem;
  justify-content: end;
  align-items: center;
}





.meta-item-whatsapp .meta-icon,
.meta-item-whatsapp .meta-icon svg {
  width: 1.24rem;
  height: 1.24rem;
}









@media (max-width: 991.98px) {
  .site-header .navbar .container::before {
    display: none;
  }
}


@media (max-width: 991.98px) {
  .header-topbar {
    display: block;
    order: 2;
    border-top: 1px solid rgba(31, 35, 40, 0.06);
    border-bottom: 0;
  }

  .site-header {
    display: flex;
    flex-direction: column;
  }

  .site-header .navbar {
    order: 1;
  }
}





@media (max-width: 991.98px) {
  .header-topbar {
    display: none;
  }

  .site-header:has(.navbar-collapse.show) .header-topbar,
  .site-header:has(.navbar-collapse.collapsing) .header-topbar {
    display: block;
  }
}










.hero-grid {
  position: relative;
}

.hero-kicker {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.hero-subline {
  margin: 1.1rem 0 1.8rem;
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero-carousel-shell {
  padding: 1.2rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.hero-product-carousel .carousel-inner {
  border-radius: 1.5rem;
  overflow: hidden;
}

.hero-product-carousel img {
  width: 100%;
  height: 31rem;
  object-fit: cover;
}

.hero-carousel-indicators {
  position: static;
  margin: 1rem 0 0;
}

.hero-carousel-indicators [data-bs-target] {
  width: 2.2rem;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.34);
}

.hero-carousel-indicators .active {
  background-color: #e32619;
}

@media (max-width: 991.98px) {
  .hero-product-carousel img {
    height: 22rem;
  }
}

@media (max-width: 767.98px) {
  .hero-kicker,
  .hero-subline {
    letter-spacing: 0.08em;
  }

  .hero-carousel-shell {
    padding: 0.85rem;
    border-radius: 1.4rem;
  }

  .hero-product-carousel img {
    height: 18rem;
  }
}


.hero-product-carousel {
  cursor: grab;
  user-select: none;
}

.hero-product-carousel.is-dragging {
  cursor: grabbing;
}

.hero-product-carousel .carousel-item {
  transition: transform 0.65s ease-in-out;
}

.hero-product-carousel img {
  -webkit-user-drag: none;
}


.hero-carousel-control {
  width: auto;
  opacity: 1;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.hero-carousel-control.carousel-control-prev {
  left: 1rem;
}

.hero-carousel-control.carousel-control-next {
  right: 1rem;
}

.hero-carousel-arrow {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(15, 18, 20, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-carousel-arrow svg {
  width: 1.15rem;
  height: 1.15rem;
}

.hero-carousel-control:hover .hero-carousel-arrow {
  background: rgba(227, 38, 25, 0.82);
  transform: scale(1.04);
}

@media (max-width: 767.98px) {
  .hero-carousel-control.carousel-control-prev {
    left: 0.55rem;
  }

  .hero-carousel-control.carousel-control-next {
    right: 0.55rem;
  }

  .hero-carousel-arrow {
    width: 2.35rem;
    height: 2.35rem;
  }
}












.feature-card-minimal {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.feature-card-minimal .feature-symbol,
.feature-card-minimal .feature-label,
.feature-card-minimal h3 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}







.footer-bottom {
  margin-top: 2.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
  letter-spacing: 0.03em;
}







.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.contact-panel,
.map-panel {
  background: #fff;
  border: 1px solid rgba(31, 35, 40, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-panel {
  padding: 2rem;
}

.contact-panel-info {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(227, 38, 25, 0.1), rgba(43, 48, 139, 0.22)),
    linear-gradient(135deg, #171b28, #20264e);
  color: #fff;
}

.contact-panel-info h2,
.contact-panel-info p,
.contact-panel-info .eyebrow {
  color: #fff;
}

.contact-panel-info p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-card-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.05rem;
  text-decoration: none;
  color: inherit;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-card-static:hover {
  transform: none;
}

.contact-card-icon {
  width: 2.8rem;
  height: 2.8rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.contact-card-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.contact-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.contact-card span:last-child {
  color: rgba(255, 255, 255, 0.8);
}

.contact-socials {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-social-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.contact-social-link svg {
  width: 1rem;
  height: 1rem;
}

.contact-form {
  margin-top: 1.5rem;
}

.form-alert {
  border-radius: 1rem;
  font-weight: 700;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
}

.form-alert-success {
  background: #ecfdf3;
  border: 1px solid rgba(22, 163, 74, 0.22);
  color: #166534;
}

.form-alert-error {
  background: #fff1f2;
  border: 1px solid rgba(225, 29, 72, 0.22);
  color: #9f1239;
}

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

.form-field {
  display: block;
  margin-bottom: 1rem;
}

.form-field span {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
  color: #1f2328;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(31, 35, 40, 0.12);
  background: #f8f8fa;
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  color: #1f2328;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(227, 38, 25, 0.4);
  box-shadow: 0 0 0 4px rgba(227, 38, 25, 0.08);
  background: #fff;
}

.form-field-trap {
  height: 0;
  left: -9999px;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.form-error {
  color: #b91c1c;
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 0.4rem;
}

.form-error-block {
  margin-top: 0.75rem;
}

.contact-captcha {
  margin-top: 0.35rem;
}

.contact-form-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.25rem;
  padding: 1.35rem;
}

.map-panel-copy {
  padding: 1rem 0.6rem 1rem 0.8rem;
}

.map-panel-copy p {
  margin: 1rem 0 1.4rem;
}

.map-embed-shell {
  min-height: 22rem;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(31, 35, 40, 0.08);
  background: #e9eaef;
}

.map-embed-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
}

@media (max-width: 991.98px) {
  .contact-grid,
  .map-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .contact-panel {
    padding: 1.35rem;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-socials {
    flex-direction: column;
  }

  .map-panel {
    padding: 1rem;
  }

  .map-panel-copy {
    padding: 0.4rem 0.2rem 0;
  }
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-card {
  height: 100%;
  padding: 1.55rem;
  background: #fff;
  border: 1px solid rgba(31, 35, 40, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-card-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(227, 38, 25, 0.95), rgba(43, 48, 139, 0.88));
  box-shadow: 0 12px 24px rgba(43, 48, 139, 0.18);
}

.about-card-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.about-card h3 {
  margin: 1rem 0 0.6rem;
  font-size: 1.25rem;
}

.about-card p {
  margin: 0;
  color: var(--muted);
}

.about-checks {
  display: grid;
  gap: 0.85rem;
}

.about-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-check-item span {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(227, 38, 25, 0.24);
}

.about-check-item span svg {
  width: 0.9rem;
  height: 0.9rem;
}

.about-check-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 991.98px) {
  .about-pillars {
    grid-template-columns: 1fr;
  }
}

.product-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-highlight-card {
  padding: 1.1rem 1.2rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 35, 40, 0.08);
  box-shadow: 0 14px 28px rgba(15, 19, 28, 0.05);
}

.product-highlight-card strong {
  display: block;
  font-size: 1rem;
  color: #1f2328;
}

.product-highlight-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
}

.product-grid-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  background: #fff;
  border: 1px solid rgba(31, 35, 40, 0.08);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
}

.product-card img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  background: #f3f4f7;
}

.product-card-body {
  padding: 1rem 1rem 1.1rem;
}

.product-card-body span {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.product-card-body h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
}

.product-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 1199.98px) {
  .product-grid-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .product-highlights {
    grid-template-columns: 1fr;
  }

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

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

  .product-card img {
    height: 13.5rem;
  }
}

.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.product-card-link:hover {
  color: inherit;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.5rem;
}

.product-detail-gallery,
.product-detail-copy {
  background: #fff;
  border: 1px solid rgba(31, 35, 40, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-detail-gallery {
  padding: 1rem;
}

.product-detail-main img {
  width: 100%;
  height: 26rem;
  object-fit: cover;
  border-radius: 1.2rem;
  background: #f3f4f7;
}

.product-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.product-detail-thumbs img {
  width: 100%;
  height: 6.5rem;
  object-fit: cover;
  border-radius: 0.9rem;
  background: #f3f4f7;
}

.product-detail-copy {
  padding: 2rem;
}

.rich-content {
  color: #555d66;
  font-size: 1rem;
  line-height: 1.7;
}

.rich-content > *:last-child {
  margin-bottom: 0;
}

.rich-content h2,
.rich-content h3 {
  color: var(--dark);
  font-weight: 800;
  line-height: 1.22;
  margin: 1.1rem 0 0.55rem;
}

.rich-content h2 {
  font-size: 1.35rem;
}

.rich-content h3 {
  font-size: 1.15rem;
}

.rich-content p,
.rich-content ul,
.rich-content ol,
.rich-content blockquote {
  margin-bottom: 0.9rem;
}

.rich-content ul,
.rich-content ol {
  padding-left: 1.25rem;
}

.rich-content a {
  color: var(--brand-red);
  font-weight: 700;
}

.rich-content blockquote {
  border-left: 4px solid var(--brand-red);
  color: #343a40;
  padding-left: 1rem;
}

.product-detail-info {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0;
}

.product-detail-info div {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: #f8f8fa;
  border: 1px solid rgba(31, 35, 40, 0.08);
}

.product-detail-info strong {
  display: block;
  margin-bottom: 0.2rem;
}

.product-detail-info span {
  color: var(--muted);
}

@media (max-width: 991.98px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .product-detail-main img {
    height: 18rem;
  }

  .product-detail-thumbs {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .product-detail-thumbs img {
    height: 5rem;
  }

  .product-detail-copy {
    padding: 1.35rem;
  }
}

.footer-hours {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-hours strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
}

.footer-hours p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-contact-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  transition: color 0.22s ease;
}

.footer-contact-link:hover {
  color: #fff;
}

.footer-icon-whatsapp,
.footer-icon-whatsapp svg {
  width: 1.22rem;
  height: 1.22rem;
}

.service-card-elevated {
  background: #fff;
  border: 1px solid rgba(31, 35, 40, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.services-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.services-info-card,
.works-summary-card,
.works-pillar,
.services-step {
  background: #fff;
  border: 1px solid rgba(31, 35, 40, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.services-info-card {
  padding: 1.5rem;
}

.services-info-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 1rem;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(227, 38, 25, 0.12), rgba(43, 48, 139, 0.14));
}

.services-info-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.services-info-card h3,
.works-summary-card strong,
.works-pillar strong,
.services-step strong {
  display: block;
  margin-bottom: 0.55rem;
  color: #1f2328;
}

.services-info-card p,
.works-summary-card span,
.works-pillar p,
.services-step p {
  margin: 0;
  color: var(--muted);
}

.services-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.services-step {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.92);
}

.works-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.works-summary-card {
  padding: 1.35rem;
}

.works-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.works-gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 1.2rem;
  border: 1px solid rgba(31, 35, 40, 0.08);
  box-shadow: var(--shadow);
  background: #fff;
}

.works-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 15rem;
  object-fit: cover;
  display: block;
}

.works-gallery-item-wide {
  grid-column: span 2;
}

.works-gallery-item-tall {
  grid-row: span 2;
}

.works-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.works-pillar {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
}

.section-heading-light h2,
.section-heading-light .eyebrow {
  color: #fff;
}

@media (max-width: 991.98px) {
  .services-info-grid,
  .services-steps,
  .works-pillars {
    grid-template-columns: 1fr;
  }

  .works-summary-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767.98px) {
  .works-gallery-grid {
    grid-template-columns: 1fr;
  }

  .works-gallery-item-wide,
  .works-gallery-item-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .works-gallery-item img {
    min-height: 13rem;
  }
}

.section-heading-left {
  margin-bottom: 1.5rem;
}

.service-bullet-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.service-bullet-list li + li {
  margin-top: 0.35rem;
}

.services-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.services-brand-card {
  padding: 1.45rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.services-brand-card strong {
  display: block;
  margin-bottom: 0.65rem;
  color: #1f2328;
}

.services-brand-card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 991.98px) {
  .services-brand-grid {
    grid-template-columns: 1fr;
  }
}

.services-logo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
}

.services-logo-title {
  margin-bottom: 1rem;
  color: #fff;
}

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

.services-logo-grid-two {
  grid-template-columns: repeat(2, 1fr);
}

.services-note-card {
  margin-top: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.services-note-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #1f2328;
}

.services-note-card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 991.98px) {
  .services-logo-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .services-logo-grid,
  .services-logo-grid-two {
    grid-template-columns: 1fr 1fr;
  }
}

.services-note-card-full {
  margin-top: 1.25rem;
  width: 100%;
}


.works-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.works-card-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(31, 35, 40, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.works-card-item img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  display: block;
  background: #f3f4f7;
}

.works-card-body {
  padding: 1.25rem;
}

.works-card-body h3 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
}

.works-card-body p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 991.98px) {
  .works-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .works-card-grid {
    grid-template-columns: 1fr;
  }

  .works-card-item img {
    height: 14rem;
  }
}

.works-intro-block {
  margin-bottom: 3rem;
}

.works-grid-heading {
  margin-top: 0;
}


.services-authorized-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: stretch;
}

.services-authorized-poster,
.services-authorized-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.services-authorized-poster {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-authorized-poster img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
  display: block;
}

.services-authorized-copy {
  display: grid;
  gap: 1rem;
}

.services-authorized-card {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.92);
}

.services-authorized-card strong {
  display: block;
  margin-bottom: 0.7rem;
  color: #1f2328;
}

.services-authorized-card p {
  margin: 0;
  color: var(--muted);
}

.services-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.services-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(227, 38, 25, 0.12), rgba(43, 48, 139, 0.16));
  border: 1px solid rgba(43, 48, 139, 0.12);
  color: #1f2328;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .services-authorized-layout {
    grid-template-columns: 1fr;
  }

  .services-authorized-poster img {
    min-height: 22rem;
  }
}

.assistencia-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.5rem;
  align-items: stretch;
}

.assistencia-highlight-copy,
.assistencia-highlight-media {
  background: #fff;
  border: 1px solid rgba(31, 35, 40, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.assistencia-highlight-copy {
  padding: 1.8rem;
}

.assistencia-highlight-media {
  overflow: hidden;
}

.assistencia-highlight-media img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
  display: block;
}

.assistencia-highlight-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.assistencia-point {
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: #f8f8fa;
  border: 1px solid rgba(31, 35, 40, 0.08);
}

.assistencia-point strong {
  display: block;
  margin-bottom: 0.3rem;
}

.assistencia-point span {
  color: var(--muted);
}

@media (max-width: 991.98px) {
  .assistencia-highlight {
    grid-template-columns: 1fr;
  }
}

.assistencia-highlight-logos {
  padding: 1.25rem;
  display: flex;
  align-items: center;
}

.assistencia-highlight-logos .client-grid {
  width: 100%;
}

.assistencia-highlight-logos .client-logo {
  min-height: 7rem;
}

.assistencia-highlight-logos img {
  min-height: 0;
}

.assistencia-highlight-stacked {
  grid-template-columns: 1fr;
}

.assistencia-highlight-copy-full {
  order: 2;
}

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

.assistencia-products-block {
  order: 3;
}

.assistencia-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.9rem;
}

.assistencia-product-card {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(31, 35, 40, 0.08);
  box-shadow: var(--shadow);
  background: #fff;
}

.assistencia-product-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  display: block;
  background: #f3f4f7;
}

@media (max-width: 991.98px) {
  .assistencia-highlight-points-inline,
  .assistencia-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .assistencia-highlight-points-inline,
  .assistencia-products-grid {
    grid-template-columns: 1fr;
  }
}

.assistencia-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.assistencia-quadrant {
  background: #fff;
  border: 1px solid rgba(31, 35, 40, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.assistencia-text-primary,
.assistencia-text-secondary {
  padding: 1.8rem;
}

.assistencia-logos-panel {
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
}

.assistencia-products-panel {
  padding: 1.25rem;
}

.assistencia-text-secondary {
  display: grid;
  gap: 0.9rem;
}

@media (max-width: 991.98px) {
  .assistencia-grid-2x2 {
    grid-template-columns: 1fr;
  }
}

.testimonial-carousel {
  position: relative;
}

.testimonial-card {
  position: relative;
  min-height: 22rem;
  padding: 2.5rem 5.4rem 2.35rem;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at top left, rgba(227, 38, 25, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(43, 48, 139, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 252, 0.98));
  border: 1px solid rgba(31, 35, 40, 0.08);
  box-shadow: 0 24px 50px rgba(17, 24, 39, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 1.5rem;
  width: 4rem;
  height: 4rem;
  border-radius: 1.2rem;
  background:
    linear-gradient(135deg, rgba(227, 38, 25, 0.88), rgba(43, 48, 139, 0.88));
  opacity: 0.12;
}

.testimonial-card::after {
  content: "''";
  position: absolute;
  top: 1.1rem;
  left: 1.95rem;
  font-size: 4.4rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(43, 48, 139, 0.18);
  letter-spacing: -0.08em;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.78;
  color: #1f2328;
}

.testimonial-card strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: center;
  margin-top: 1.55rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(43, 48, 139, 0.08);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.testimonial-carousel .section-heading {
  margin-bottom: 1.5rem;
}

.testimonial-indicators {
  position: static;
  margin: 1.25rem 0 0;
}

.testimonial-indicators [data-bs-target] {
  width: 2.35rem;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 35, 40, 0.18);
}

.testimonial-indicators .active {
  background: #e32619;
}

.testimonial-control {
  width: auto;
  opacity: 1;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.testimonial-control.carousel-control-prev {
  left: 1rem;
}

.testimonial-control.carousel-control-next {
  right: 1rem;
}

.testimonial-arrow {
  width: 2.85rem;
  height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(31, 35, 40, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.testimonial-arrow svg {
  width: 1.15rem;
  height: 1.15rem;
}

@media (max-width: 767.98px) {
  .testimonial-card {
    min-height: auto;
    padding: 1.6rem 1.3rem 1.8rem;
  }

  .testimonial-card p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .testimonial-control {
    display: none;
  }
}



.testimonials-section {
  position: relative;
  overflow: hidden;
  background: #f5f7fb;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(227, 38, 25, 0.05), transparent 22%),
    radial-gradient(circle at bottom right, rgba(43, 48, 139, 0.06), transparent 26%);
  pointer-events: none;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

.testimonial-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-heading h2 {
  margin-bottom: 0.8rem;
}

.testimonial-heading p {
  max-width: 44rem;
  margin: 0 auto;
  color: #5b6168;
}

.testimonial-card {
  box-shadow: 0 28px 54px rgba(17, 24, 39, 0.12);
}

.page-clientes .inner-hero {
  background:
    linear-gradient(120deg, rgba(18, 20, 32, 0.82), rgba(43, 48, 139, 0.68)),
    linear-gradient(135deg, rgba(227, 38, 25, 0.24), rgba(43, 48, 139, 0.16)),
    url("../img/novas-fotos/WhatsApp Image 2026-02-27 at 15.50.42.jpeg") center 40% / cover no-repeat;
}

.page-contato .inner-hero {
  background:
    linear-gradient(120deg, rgba(18, 20, 32, 0.82), rgba(43, 48, 139, 0.68)),
    linear-gradient(135deg, rgba(227, 38, 25, 0.22), rgba(43, 48, 139, 0.14)),
    url("../img/novas-fotos/WhatsApp Image 2026-02-27 at 15.50.21-.jpeg") center 40% / cover no-repeat;
}

.page-sobre .inner-hero {
  background:
    linear-gradient(120deg, rgba(18, 20, 32, 0.82), rgba(43, 48, 139, 0.68)),
    linear-gradient(135deg, rgba(227, 38, 25, 0.22), rgba(43, 48, 139, 0.16)),
    url("../img/institucional/quem-somos-1.jpg") center 32% / cover no-repeat;
}

.page-servicos .inner-hero {
  background:
    linear-gradient(120deg, rgba(18, 20, 32, 0.82), rgba(43, 48, 139, 0.68)),
    linear-gradient(135deg, rgba(227, 38, 25, 0.22), rgba(43, 48, 139, 0.16)),
    url("../img/novas-fotos/WhatsApp Image 2026-02-27 at 15.50.43 (1).jpeg") center 42% / cover no-repeat;
}

.page-obras .inner-hero {
  background:
    linear-gradient(120deg, rgba(18, 20, 32, 0.82), rgba(43, 48, 139, 0.68)),
    linear-gradient(135deg, rgba(227, 38, 25, 0.22), rgba(43, 48, 139, 0.16)),
    url("../img/novas-fotos/WhatsApp Image 2026-02-27 at 15.50.42 (4).jpeg") center 42% / cover no-repeat;
}

.page-locacao .inner-hero {
  background:
    linear-gradient(120deg, rgba(18, 20, 32, 0.82), rgba(43, 48, 139, 0.68)),
    linear-gradient(135deg, rgba(227, 38, 25, 0.22), rgba(43, 48, 139, 0.16)),
    url("../img/novas-fotos/WhatsApp Image 2026-02-27 at 15.50.21.jpeg") center 40% / cover no-repeat;
}

.page-venda .inner-hero {
  background:
    linear-gradient(120deg, rgba(18, 20, 32, 0.82), rgba(43, 48, 139, 0.68)),
    linear-gradient(135deg, rgba(227, 38, 25, 0.22), rgba(43, 48, 139, 0.16)),
    url("https://jequipamentos.com.br/wp-content/uploads/2019/02/about-us-img-01.jpg") center 42% / cover no-repeat;
}

.page-produto .inner-hero {
  background:
    linear-gradient(120deg, rgba(18, 20, 32, 0.82), rgba(43, 48, 139, 0.68)),
    linear-gradient(135deg, rgba(227, 38, 25, 0.22), rgba(43, 48, 139, 0.16)),
    url("../img/produtos-venda/Carrinho-de-mao.jpg") center 46% / cover no-repeat;
}










