* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #333333;
}

.site-header {
  background: #000000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 78px;
  padding: 8px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: #ffffff;
  text-decoration: none;
}

.logo img {
  display: block;
  width: auto;
  height: 50px;
}

.logo-text {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.logo-text span {
  color: #ffffff;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 0.9;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
}

.logo-text small {
  color: #d8d8d8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 5px;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a.active {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 5px;
}

.mobile-nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  background: #111111;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.28));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  min-height: 80vh;
  margin: 0 auto;
  padding: 72px 84px 88px;
  color: #ffffff;
}

.hero-heading {
  max-width: 820px;
}

.hero-label {
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-label-line {
  display: block;
  width: 86px;
  height: 4px;
  margin: 18px 0 28px;
  background: #f0f0f0;
}

.hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-features {
  position: relative;
  display: grid;
  gap: 22px;
  max-width: 680px;
  margin-top: 34px;
  padding-left: 0;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 22px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  color: #f2f2f2;
}

.feature-icon svg {
  width: 31px;
  height: 31px;
}

.feature-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-feature p {
  margin: 0;
  color: #f2f2f2;
  font-size: 18px;
  line-height: 1.42;
}

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

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hero-button.primary {
  background: #ffffff;
  color: #111111;
}

.hero-button.secondary {
  background: transparent;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
  color: #ffffff;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  transform: translateY(-50%);
}

.slide-arrow-left {
  left: 24px;
}

.slide-arrow-right {
  right: 24px;
}

.sct-badge {
  position: absolute;
  right: 84px;
  bottom: 72px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 156px;
  padding: 12px 12px 11px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  cursor: pointer;
  overflow: hidden;
}

.sct-badge img {
  display: block;
  width: 92px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.26);
}

.sct-badge span {
  color: #f2f2f2;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.slide-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.slide-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.slide-dot.active {
  background: #ffffff;
}

.certificate-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
}

.certificate-modal.open {
  display: flex;
}

.certificate-modal-content {
  position: relative;
  max-width: 680px;
  width: min(92vw, 680px);
}

.certificate-modal-content img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
}

.certificate-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  cursor: pointer;
  font-size: 28px;
  line-height: 34px;
}

.categories {
  background: #f6f6f6;
  padding: 44px 24px 78px;
}

.categories-header {
  max-width: 1200px;
  margin: 0 auto 28px;
}

.categories-header p {
  margin: 0;
  color: #111111;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 4px;
}

.categories-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: #161616;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}

.category-image {
  position: relative;
  overflow: hidden;
  background: #242424;
}

.category-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.category-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.36 / 1;
  object-fit: cover;
  transition: transform 220ms ease;
}

.category-card:hover .category-image img {
  transform: scale(1.03);
}

.category-card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 70px;
  height: 70px;
  padding: 14px 18px 14px 20px;
  background: linear-gradient(145deg, #151515, #242424);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.category-card h2 {
  flex: 1;
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.category-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  margin-left: 12px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  transition: background 180ms ease, border-color 180ms ease;
}

.category-card:hover .category-arrow {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1000px) {
  .categories-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 42px 24px 58px;
}

.trust-blueprint {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 58%;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, transparent 49.7%, rgba(0, 0, 0, 0.065) 50%, transparent 50.3%);
  background-size: 96px 96px, 96px 96px, 100% 100%;
  pointer-events: none;
}

.trust-blueprint::before,
.trust-blueprint::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 50%;
}

.trust-blueprint::before {
  right: 40px;
  top: 96px;
}

.trust-blueprint::after {
  right: 40px;
  top: 256px;
}

.trust-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.trust-label span {
  width: 36px;
  height: 1px;
  background: #111111;
}

.trust-label p {
  margin: 0;
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 5px;
}

.trust-section h2 {
  max-width: 820px;
  margin: 0;
  color: #000000;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.trust-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 252px;
  padding: 24px 22px 40px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9)),
    #ffffff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.11);
  text-align: center;
}

.trust-card::before,
.trust-card::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 6px;
  height: 6px;
  border: 1px solid #444444;
  border-radius: 50%;
  background: #f5f5f5;
}

.trust-card::before {
  left: 9px;
}

.trust-card::after {
  right: 9px;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  background: #ffffff;
  color: #050505;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.trust-icon svg {
  width: 50px;
  height: 50px;
}

.experience-card .trust-icon img {
  display: block;
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.trust-icon path,
.trust-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-icon text {
  fill: currentColor;
  font-size: 11px;
  font-weight: 800;
  font-family: Arial, Helvetica, sans-serif;
}

.trust-divider {
  width: 34px;
  height: 1px;
  margin: 18px 0 18px;
  background: #252525;
}

.trust-card h3 {
  margin: 0;
  color: #050505;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.trust-card p {
  margin: 12px 0 0;
  color: #3f3f3f;
  font-size: 15px;
  line-height: 1.45;
}

.trust-card-detail {
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 78px;
  height: 12px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, #3b3b3b, #151515);
  transform: translateX(-50%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.22), 0 3px 8px rgba(0, 0, 0, 0.18);
}

.equipment-hero {
  position: relative;
  min-height: 235px;
  background: url("../images/equipos-header-image.jpg") center 60% / cover;
  overflow: hidden;
}

.accessories-hero {
  background: url("../images/accesorios-equipos-header.png") center / cover;
}

.equipment-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0));
}

.accessories-hero .equipment-hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.06));
}

.equipment-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 24px 46px;
  color: #ffffff;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: #e8e8e8;
  font-size: 14px;
}

.breadcrumb a {
  color: #cfcfcf;
  text-decoration: none;
}

.equipment-hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.equipment-hero-line {
  display: block;
  width: 66px;
  height: 3px;
  margin: 16px 0 14px;
  background: #ffffff;
}

.equipment-hero-content > p:last-child {
  max-width: 520px;
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.equipment-page {
  background: #ffffff;
  padding: 28px 24px 42px;
}

.equipment-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 820px;
  margin: 0 auto 28px;
  border: 1px solid #d5d5d5;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.accessory-tabs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1120px;
  gap: 10px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.equipment-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  border: 0;
  border-right: 1px solid #d5d5d5;
  background: #f8f8f8;
  color: #161616;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}

.equipment-tab:last-child {
  border-right: 0;
}

.equipment-tab.active {
  background: #ffffff;
  box-shadow: inset 0 -4px #000000;
}

.accessory-tabs .equipment-tab {
  min-height: 58px;
  padding: 10px 18px;
  border: 1px solid #d5d5d5;
  border-radius: 7px;
  background: #f8f8f8;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.accessory-tabs .equipment-tab.active {
  background: #ffffff;
  border-color: #bdbdbd;
  box-shadow: inset 0 -4px #000000, 0 8px 18px rgba(0, 0, 0, 0.07);
}

.accessory-tabs .equipment-tab:focus {
  outline: none;
}

.accessory-tabs .equipment-tab:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 3px;
}

.tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: transparent;
}

.tab-icon img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1050px;
  margin: 0 auto;
}

.accessories-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  max-width: 1500px;
}

.accessories-grid .equipment-card > img {
  aspect-ratio: 1.25 / 1;
}

.accessories-grid .equipment-card h2 {
  font-size: 18px;
}

.equipment-card {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 8px;
  background: #111111;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.equipment-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.equipment-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
}

.equipment-card-body {
  padding: 16px;
  background: linear-gradient(145deg, #111111, #242424);
  color: #ffffff;
}

.equipment-card h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.18;
}

.equipment-card p {
  margin: 0;
  color: #f0f0f0;
  font-size: 13px;
  line-height: 1.42;
}

.equipment-card .equipment-capacity {
  margin-bottom: 4px;
  font-weight: 800;
}

.equipment-card a,
.equipment-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  margin-top: 14px;
  padding: 0 8px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 4px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.equipment-card a span,
.equipment-card-action span,
.featured-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.cta-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.cta-button span svg {
  width: 24px;
  height: 24px;
}

.cta-button span svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.featured-equipment {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr;
  max-width: 1050px;
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid #b8b8b8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.featured-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
}

.featured-content {
  position: relative;
  padding: 28px 34px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
}

.featured-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  color: #222222;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
}

.featured-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #222222;
}

.featured-content h2 {
  margin: 0 0 8px;
  color: #050505;
  font-size: 30px;
  line-height: 1.1;
}

.featured-content > p {
  margin: 0 0 18px;
  color: #333333;
  font-size: 14px;
}

.featured-content ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 26px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.featured-content li {
  color: #222222;
  font-size: 13px;
  line-height: 1.35;
}

.featured-content li::before {
  content: "◎";
  margin-right: 8px;
}

.featured-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  padding: 0 10px 0 18px;
  border-radius: 4px;
  background: #000000;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.equipment-cta {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 28px max(24px, calc((100vw - 1050px) / 2));
  background: linear-gradient(135deg, #141414, #2a2a2a);
  color: #ffffff;
}

.equipment-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #ffffff;
}

.equipment-cta-icon svg {
  width: 36px;
  height: 36px;
}

.equipment-cta-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.equipment-cta h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.1;
}

.equipment-cta p {
  max-width: 560px;
  margin: 0;
  color: #eeeeee;
  font-size: 15px;
  line-height: 1.45;
}

.equipment-cta-actions {
  display: flex;
  gap: 18px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 215px;
  min-height: 50px;
  padding: 0 12px 0 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.cta-button.primary {
  background: #ffffff;
  color: #111111;
}

.cta-button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.64);
  color: #ffffff;
}

.services-hero {
  background: url("../images/ACCESORIOS-IMAGE-HEADER.png") center / cover;
}

.services-hero .equipment-hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.06));
}

.services-page {
  background: #ffffff;
  padding: 34px 24px 22px;
}

.services-overview {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto 28px;
}

.services-intro {
  padding-top: 14px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  color: #111111;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 5px;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #111111;
}

.services-intro h2 {
  max-width: 560px;
  margin: 0 0 18px;
  color: #050505;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.12;
}

.services-intro > p:last-child {
  max-width: 600px;
  margin: 0;
  color: #505050;
  font-size: 16px;
  line-height: 1.65;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 178px;
  padding: 22px 20px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.service-card-icon,
.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111111;
}

.service-card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
}

.service-card-icon svg,
.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.service-card-icon path,
.benefit-icon path,
.benefit-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: #444444;
  font-size: 13px;
  line-height: 1.5;
}

.services-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1500px;
  margin: 0 auto;
  padding: 24px 28px;
  border-radius: 8px;
  background: linear-gradient(145deg, #f7f7f7, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05), 0 14px 34px rgba(0, 0, 0, 0.07);
}

.benefit-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 26px;
  border-right: 1px solid #d3d3d3;
}

.benefit-item:first-child {
  padding-left: 0;
}

.benefit-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.benefit-icon {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.benefit-icon svg {
  width: 34px;
  height: 34px;
}

.benefit-item h3 {
  margin: 0 0 7px;
  color: #111111;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.benefit-item p {
  margin: 0;
  color: #454545;
  font-size: 13px;
  line-height: 1.42;
}

.contact-hero {
  position: relative;
  min-height: 435px;
  overflow: hidden;
  background: url("../images/contacto-hero.png") center / cover;
  color: #ffffff;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0.24) 68%, rgba(0, 0, 0, 0.08) 100%);
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px 64px;
}

.contact-hero h1 {
  margin: 0 0 8px;
  font-size: 76px;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.contact-hero-subtitle {
  margin: 0 0 18px;
  color: #d8d8d8;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.05;
}

.contact-hero-content > p:not(.contact-hero-subtitle) {
  max-width: 480px;
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

.contact-hero-features {
  display: flex;
  align-items: stretch;
  gap: 26px;
  margin-top: 28px;
}

.contact-hero-feature {
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 14px;
  max-width: 240px;
}

.contact-hero-feature + .contact-hero-feature {
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.65);
}

.contact-hero-feature > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  color: #ffffff;
}

.contact-hero-feature svg {
  width: 34px;
  height: 34px;
}

.contact-hero-feature path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-hero-feature h2 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
}

.contact-hero-feature p {
  margin: 0;
  color: #eeeeee;
  font-size: 13px;
  line-height: 1.35;
}

.contact-page {
  background: #ffffff;
  padding: 46px 24px 42px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.18fr 0.82fr;
  gap: 34px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info-panel h2,
.contact-form-card h2,
.contact-social-panel h2 {
  margin: 0;
  color: #080808;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.14;
}

.contact-panel-line {
  display: block;
  width: 48px;
  height: 2px;
  margin: 14px 0 22px;
  background: #111111;
}

.contact-info-list {
  display: grid;
  gap: 22px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}

.contact-info-item > span,
.contact-social-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #080808;
  color: #ffffff;
}

.contact-info-item svg,
.contact-social-list svg,
.whatsapp-mark svg {
  width: 27px;
  height: 27px;
}

.contact-info-item path,
.contact-info-item circle,
.contact-social-list path,
.contact-social-list rect,
.contact-social-list circle,
.whatsapp-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-item h3 {
  margin: 4px 0 7px;
  color: #151515;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.contact-info-item p,
.contact-info-item a {
  margin: 0;
  color: #151515;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.contact-map-card {
  display: block;
  overflow: hidden;
  margin-top: 26px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.map-preview {
  position: relative;
  min-height: 175px;
  background:
    linear-gradient(35deg, transparent 49%, rgba(0, 0, 0, 0.16) 50%, transparent 51%),
    linear-gradient(120deg, transparent 48%, rgba(0, 0, 0, 0.12) 49%, transparent 50%),
    linear-gradient(#e9e9e9 1px, transparent 1px),
    linear-gradient(90deg, #dedede 1px, transparent 1px),
    #f6f6f6;
  background-size: 100% 100%, 100% 100%, 58px 58px, 58px 58px;
}

.map-preview::before,
.map-preview::after {
  content: "";
  position: absolute;
  height: 2px;
  background: rgba(0, 0, 0, 0.15);
  transform: rotate(18deg);
}

.map-preview::before {
  left: -20px;
  top: 78px;
  width: 210px;
}

.map-preview::after {
  right: -18px;
  bottom: 50px;
  width: 190px;
  transform: rotate(-24deg);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50% 50% 50% 0;
  background: #101010;
  color: #ffffff;
  transform: translate(-50%, -55%) rotate(-45deg);
}

.map-pin svg {
  width: 34px;
  height: 34px;
  transform: rotate(45deg);
}

.map-pin path,
.map-pin circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: #080808;
  font-size: 13px;
  font-weight: 900;
}

.contact-form-card,
.contact-whatsapp-card {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.contact-form-card {
  padding: 36px 30px 26px;
  text-align: center;
}

.contact-form-card .contact-panel-line {
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  display: grid;
  gap: 22px;
  text-align: left;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #191919;
  font-size: 12px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  background: #ffffff;
  color: #111111;
  font: inherit;
  font-size: 15px;
}

.contact-form input {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 170px;
  padding: 16px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(0, 0, 0, 0.18);
  border-color: #111111;
}

.contact-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 56px;
  border: 0;
  border-radius: 6px;
  background: #050505;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-trust,
.form-status {
  margin: 0;
  text-align: center;
  color: #8a8a8a;
  font-size: 13px;
  line-height: 1.4;
}

.form-status {
  min-height: 18px;
  color: #111111;
  font-weight: 800;
}

.contact-social-panel {
  padding-top: 12px;
}

.contact-social-list {
  display: grid;
  gap: 22px;
  margin-bottom: 38px;
}

.contact-social-list a {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 18px;
  color: #111111;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.contact-whatsapp-card {
  padding: 28px 22px 24px;
  text-align: center;
}

.whatsapp-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  border: 1px solid #d7d7d7;
  border-radius: 50%;
  color: #050505;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-whatsapp-card h3 {
  margin: 0 0 14px;
  color: #050505;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.12;
}

.contact-whatsapp-card p {
  margin: 0 auto 22px;
  max-width: 260px;
  color: #222222;
  font-size: 14px;
  line-height: 1.45;
}

.contact-whatsapp-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 6px;
  background: #111111;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.admin-page {
  min-height: 100vh;
  background: radial-gradient(circle at top, #222222, #050505 58%);
  color: #111111;
}

.admin-shell {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px;
}

.admin-login-view {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0;
  place-items: center;
  min-height: calc(100vh - 96px);
}

.admin-login-brand {
  width: min(100%, 420px);
  margin-bottom: 22px;
  text-align: center;
  color: #ffffff;
}

.admin-login-brand .admin-logo {
  margin: 0 auto 22px;
}

.admin-login-brand p {
  margin: 0;
  color: #d0d0d0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.admin-login-brand h1 {
  margin: 6px 0 10px;
  color: #ffffff;
  font-size: 36px;
  line-height: 1.05;
}

.admin-login-brand span {
  color: #bdbdbd;
  font-size: 14px;
  font-weight: 700;
}

.admin-login-view[hidden],
.admin-panel[hidden],
.admin-login[hidden] {
  display: none !important;
}

.admin-dashboard-header,
.admin-section-card,
.admin-login {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.admin-header {
  display: flex;
  align-items: center;
  gap: 22px;
}

.admin-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  padding: 10px;
  border-radius: 8px;
  background: #000000;
}

.admin-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.admin-header p,
.admin-note,
.admin-panel-heading p,
.admin-section-heading p {
  margin: 0;
  color: #555555;
  font-size: 14px;
  line-height: 1.45;
}

.admin-header h1 {
  margin: 4px 0 0;
  font-size: 34px;
  line-height: 1.05;
}

.admin-note {
  max-width: 820px;
  margin: 0;
  color: #d7d7d7;
}

.admin-status {
  min-height: 22px;
  margin: 0 0 18px;
  color: #ffffff;
  font-weight: 800;
  text-align: center;
}

.admin-status[data-type="error"] {
  color: #ffb7b7;
}

.admin-status[data-type="success"] {
  color: #b9f7c8;
}

.admin-dashboard-status {
  min-height: 20px;
  margin: -6px 0 0;
  color: #e7e7e7;
  font-weight: 800;
}

.admin-dashboard-status[data-type="error"] {
  color: #ffb7b7;
}

.admin-dashboard-status[data-type="success"] {
  color: #b9f7c8;
}

.admin-login {
  display: grid;
  gap: 16px;
  width: min(100%, 420px);
  padding: 28px;
}

.admin-upload h3,
.admin-panel-heading h2,
.admin-section-heading h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.admin-login label,
.admin-upload label {
  display: grid;
  gap: 8px;
  color: #191919;
  font-size: 13px;
  font-weight: 900;
}

.admin-login input,
.admin-upload input,
.admin-table input {
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  background: #ffffff;
  color: #111111;
  font: inherit;
}

.admin-login input,
.admin-upload input {
  min-height: 44px;
  padding: 0 12px;
}

.admin-page input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
}

.admin-file-control {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 44px;
  overflow: hidden;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
}

.admin-file-button {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  padding: 0 14px;
  background: #111111;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.admin-file-name {
  min-width: 0;
  overflow: hidden;
  padding: 0 14px;
  color: #555555;
  font-size: 14px;
  font-weight: 700;
  line-height: 44px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-login button,
.admin-upload button,
.homepage-admin-row button,
.admin-table button,
.admin-secondary-button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: #050505;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
}

.admin-secondary-button {
  padding: 0 18px;
  border: 1px solid #111111;
  background: #ffffff;
  color: #111111;
}

.admin-panel {
  display: grid;
  gap: 22px;
}

.admin-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
}

.admin-panel-heading {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  text-align: right;
}

.admin-section-card {
  padding: 26px 28px;
}

.admin-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-upload {
  display: grid;
  gap: 18px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 0.7fr 0.5fr;
  gap: 14px;
}

.admin-checkbox {
  align-content: end;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.admin-checkbox input {
  width: 18px;
  height: 18px;
  min-height: 0;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid #dddddd;
  border-radius: 10px;
}

.admin-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px;
  border-bottom: 1px solid #e2e2e2;
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
}

.admin-table th {
  background: #f2f2f2;
  color: #111111;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-table img {
  display: block;
  width: 120px;
  height: 70px;
  border-radius: 6px;
  object-fit: cover;
}

.admin-table input[type="text"],
.admin-table input[type="number"] {
  width: 100%;
  min-height: 38px;
  padding: 0 10px;
}

.admin-table input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.admin-table button {
  min-height: 34px;
  margin: 2px;
  padding: 0 10px;
  font-size: 12px;
}

.admin-table button[data-action="delete"] {
  background: #6f1515;
}

.homepage-admin-list {
  display: grid;
  overflow: hidden;
  border: 1px solid #dddddd;
  border-radius: 10px;
  background: #ffffff;
}

.homepage-admin-row {
  display: grid;
  grid-template-columns: 96px minmax(150px, 0.9fr) minmax(170px, 1fr) 88px minmax(230px, 1.25fr) 88px;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid #e5e5e5;
}

.homepage-admin-row:last-child {
  border-bottom: 0;
}

.homepage-admin-preview {
  display: block;
  width: 90px;
  height: 58px;
  border-radius: 6px;
  object-fit: cover;
  background: #e9e9e9;
}

.homepage-admin-title h3 {
  margin: 0 0 4px;
  color: #111111;
  font-size: 15px;
  line-height: 1.15;
}

.homepage-admin-title p {
  margin: 0;
  color: #666666;
  font-size: 12px;
  font-weight: 800;
}

.homepage-admin-row label {
  display: grid;
  gap: 6px;
  color: #191919;
  font-size: 12px;
  font-weight: 900;
}

.homepage-admin-row input[type="text"] {
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  background: #ffffff;
  color: #555555;
  font: inherit;
}

.homepage-admin-active {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.homepage-admin-file .admin-file-control {
  min-height: 38px;
}

.homepage-admin-file .admin-file-button {
  padding: 0 12px;
  font-size: 12px;
}

.homepage-admin-file .admin-file-name {
  font-size: 12px;
  line-height: 38px;
}

.homepage-admin-row button {
  min-height: 36px;
  padding: 0 14px;
  font-size: 12px;
}

.about-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111111 url("../images/hero-servicios.png") center 55% / cover no-repeat;
  color: #ffffff;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.12));
}

.about-hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 900;
  line-height: 1;
}

.about-hero-content > p:not(.breadcrumb) {
  max-width: 520px;
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.about-hero .breadcrumb {
  margin-top: 34px;
}

.about-page {
  background: #ffffff;
  color: #111111;
}

.about-story,
.about-value-strip,
.about-section,
.about-why {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  gap: 42px;
  align-items: center;
  padding: 34px 0 26px;
}

.about-story-image,
.about-why-image {
  overflow: hidden;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  background: #111111;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.about-story-image img,
.about-why-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: grayscale(0.1);
}

.about-story-content h2,
.about-section h2 {
  margin: 0 0 20px;
  color: #050505;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.05;
}

.about-story-content p:not(.section-label) {
  margin: 0 0 18px;
  color: #222222;
  font-size: 16px;
  line-height: 1.65;
}

.about-dark-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-top: 6px;
  padding: 0 18px;
  border-radius: 4px;
  background: #111111;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.about-dark-button:hover,
.about-dark-button:focus-visible {
  background: #2a2a2a;
  outline: none;
  transform: translateY(-2px);
}

.about-value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 6px;
  margin-bottom: 34px;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.about-value-item {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 188px;
  padding: 24px 22px;
  text-align: center;
  border-right: 1px solid #dedede;
}

.about-value-item:last-child {
  border-right: 0;
}

.about-icon,
.about-small-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111111;
}

.about-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
}

.about-small-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
}

.about-icon svg,
.about-small-icon svg,
.about-cta svg {
  width: 100%;
  height: 100%;
}

.about-icon path,
.about-icon circle,
.about-small-icon path,
.about-small-icon circle,
.about-cta path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-value-item h3,
.about-info-card h3 {
  margin: 0 0 10px;
  color: #111111;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
}

.about-value-item p,
.about-info-card p {
  margin: 0;
  color: #333333;
  font-size: 14px;
  line-height: 1.5;
}

.about-section {
  padding: 10px 0 24px;
}

.about-section.compact {
  padding-top: 2px;
}

.about-card-grid {
  display: grid;
  gap: 16px;
}

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

.about-card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.about-info-card {
  min-height: 174px;
  padding: 22px;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.about-info-card.horizontal {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  min-height: 132px;
  align-items: start;
}

.about-info-card.horizontal .about-small-icon {
  margin-bottom: 0;
}

.about-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin-top: 18px;
  border: 1px solid #dedede;
  border-radius: 8px;
  overflow: hidden;
  background: #f7f7f7;
}

.about-why-image {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-why-image img {
  min-height: 330px;
}

.about-why-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 48px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.04) 0 1px, transparent 1px) 0 0 / 72px 72px,
    #f7f7f7;
}

.about-why-content ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-why-content li {
  position: relative;
  padding-left: 34px;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.45;
}

.about-why-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.about-cta {
  margin-top: 34px;
  padding: 34px 24px 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px) 0 0 / 72px 72px,
    #101010;
  color: #ffffff;
  text-align: center;
}

.about-cta h2 {
  margin: 0 0 22px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
}

.about-cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.about-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 260px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  background: #ffffff;
  color: #111111;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.about-cta-actions a.outline {
  background: transparent;
  color: #ffffff;
}

.about-cta-actions svg {
  width: 22px;
  height: 22px;
}

.site-footer {
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  border-bottom: 10px solid #777777;
}

.footer-top {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 28px 42px 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-brand img {
  display: block;
  width: 138px;
  height: auto;
}

.footer-info {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 1.55fr 1.55fr;
}

.footer-column {
  min-width: 0;
  padding: 0 24px;
  border-left: 3px solid rgba(255, 255, 255, 0.76);
}

.footer-column h2 {
  margin: 0 0 8px;
  color: #cfcfcf;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 1px;
}

.footer-column h2:not(:first-child) {
  margin-top: 14px;
}

.footer-column p,
.footer-column a {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.32;
  text-decoration: none;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr minmax(520px, 680px);
  align-items: stretch;
  max-width: 1480px;
  margin: 0 auto;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 22px 32px 22px 42px;
}

.footer-social h2 {
  margin: 0;
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 2px solid #9d9d9d;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
}

.social-links svg {
  width: 23px;
  height: 23px;
}

.social-links path,
.social-links rect,
.social-links circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-legal {
  position: relative;
  padding: 24px 38px 22px 96px;
  background: linear-gradient(135deg, #585858, #2a2a2a);
  clip-path: polygon(62px 0, 100% 0, 100% 100%, 0 100%);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-legal-links a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.footer-legal-links span {
  width: 3px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
}

.footer-legal p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.legal-page {
  min-height: 100vh;
  background: #111111;
  color: #ffffff;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px;
}

.legal-logo {
  display: inline-flex;
  margin-bottom: 42px;
}

.legal-logo img {
  width: 140px;
  height: auto;
}

.legal-content h1 {
  margin: 0 0 24px;
  font-size: 42px;
  line-height: 1.1;
}

.legal-content p {
  color: #dddddd;
  font-size: 18px;
  line-height: 1.7;
}

.legal-content a {
  color: #ffffff;
}

.legal-back {
  display: inline-flex;
  margin-top: 24px;
  font-weight: 800;
}

@media (max-width: 1000px) {
  .admin-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .homepage-admin-row {
    grid-template-columns: 96px 1fr;
    align-items: start;
  }

  .homepage-admin-link,
  .homepage-admin-active,
  .homepage-admin-file,
  .homepage-admin-row button {
    grid-column: 2;
  }

  .contact-hero-content {
    padding: 60px 24px 56px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .contact-info-panel,
  .contact-social-panel {
    padding: 0;
  }

  .services-overview {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .services-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 0;
  }

  .benefit-item:nth-child(2) {
    border-right: 0;
    padding-right: 0;
  }

  .benefit-item:nth-child(3) {
    padding-left: 0;
  }

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

  .accessory-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .accessories-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1050px;
  }

  .featured-equipment {
    grid-template-columns: 1fr;
  }

  .equipment-cta {
    grid-template-columns: 74px 1fr;
  }

  .equipment-cta-actions {
    grid-column: 2;
    flex-wrap: wrap;
  }

  .about-story,
  .about-why {
    grid-template-columns: 1fr;
  }

  .about-value-strip,
  .about-card-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-value-item:nth-child(2) {
    border-right: 0;
  }

  .about-value-item:nth-child(-n + 2) {
    border-bottom: 1px solid #dedede;
  }

  .about-card-grid.three {
    grid-template-columns: 1fr;
  }

  .about-why-content {
    padding: 34px;
  }

  .trust-section h2 {
    font-size: 42px;
  }

  .trust-cards {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 38px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding: 30px 28px 22px;
  }

  .footer-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

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

  .footer-social {
    justify-content: flex-start;
  }

  .footer-legal {
    clip-path: none;
    padding: 24px 28px;
  }
}

@media (max-width: 700px) {
  .admin-shell {
    padding: 24px 16px;
  }

  .admin-login-view {
    min-height: calc(100vh - 48px);
  }

  .admin-login-brand h1 {
    font-size: 30px;
  }

  .admin-dashboard-header,
  .admin-section-card {
    padding: 22px 16px;
  }

  .admin-dashboard-header,
  .admin-header,
  .admin-section-heading,
  .admin-panel-heading {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }

  .admin-logo {
    width: 112px;
  }

  .admin-header h1 {
    font-size: 28px;
  }

  .admin-login {
    width: 100%;
    padding: 18px;
  }

  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .homepage-admin-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .homepage-admin-preview {
    width: 100%;
    height: 120px;
  }

  .homepage-admin-link,
  .homepage-admin-active,
  .homepage-admin-file,
  .homepage-admin-row button {
    grid-column: auto;
  }

  .admin-file-control {
    grid-template-columns: 1fr;
  }

  .admin-file-button,
  .admin-file-name {
    min-height: 42px;
    justify-content: center;
    line-height: 42px;
    text-align: center;
  }

  .navbar {
    align-items: center;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
    padding: 10px 20px;
  }

  .logo img {
    height: 46px;
  }

  .logo-text span {
    font-size: 24px;
  }

  .logo-text small {
    font-size: 8px;
    letter-spacing: 4px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px 16px;
    justify-content: center;
  }

  .nav-links a {
    font-size: 15px;
  }

  .nav-links a.active {
    padding-bottom: 3px;
  }

  .hero {
    min-height: 78vh;
  }

  .contact-hero {
    min-height: 0;
  }

  .contact-hero-overlay {
    background: rgba(0, 0, 0, 0.72);
  }

  .contact-hero-content {
    padding: 48px 20px 44px;
  }

  .contact-hero h1 {
    font-size: 50px;
  }

  .contact-hero-subtitle {
    font-size: 26px;
  }

  .contact-hero-content > p:not(.contact-hero-subtitle) {
    font-size: 15px;
  }

  .contact-hero-features {
    flex-direction: column;
    gap: 16px;
  }

  .contact-hero-feature + .contact-hero-feature {
    padding-left: 0;
    border-left: 0;
  }

  .contact-page {
    padding: 34px 20px;
  }

  .contact-grid {
    gap: 28px;
  }

  .contact-form-card,
  .contact-whatsapp-card {
    border-radius: 10px;
  }

  .contact-form-card {
    padding: 30px 20px 24px;
  }

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

  .contact-info-item,
  .contact-social-list a {
    grid-template-columns: 48px 1fr;
  }

  .map-preview {
    min-height: 150px;
  }

  .about-hero {
    min-height: 360px;
  }

  .about-hero-overlay {
    background: rgba(0, 0, 0, 0.5);
  }

  .about-hero-content {
    width: calc(100% - 40px);
  }

  .about-hero-content > p:not(.breadcrumb) {
    font-size: 17px;
  }

  .about-story,
  .about-value-strip,
  .about-section,
  .about-why {
    width: calc(100% - 40px);
  }

  .about-story {
    gap: 24px;
    padding: 28px 0 22px;
  }

  .about-story-image img,
  .about-why-image img {
    min-height: 230px;
  }

  .about-value-strip,
  .about-card-grid.four {
    grid-template-columns: 1fr;
  }

  .about-value-item,
  .about-value-item:nth-child(2),
  .about-value-item:nth-child(-n + 2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #dedede;
  }

  .about-value-item:last-child {
    border-bottom: 0;
  }

  .about-info-card,
  .about-info-card.horizontal {
    min-height: 0;
  }

  .about-info-card.horizontal {
    grid-template-columns: 52px 1fr;
  }

  .about-why-content {
    padding: 28px 22px;
  }

  .about-cta {
    margin-top: 28px;
    padding: 30px 20px 34px;
  }

  .about-cta-actions a {
    width: 100%;
    min-width: 0;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.66);
  }

  .hero-content {
    min-height: 78vh;
    padding: 56px 24px 86px;
    text-align: left;
  }

  .hero-label {
    font-size: 28px;
  }

  .hero-label-line {
    width: 76px;
    height: 3px;
    margin: 14px 0 22px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.14;
  }

  .hero-features {
    gap: 18px;
    margin-top: 28px;
    padding-left: 0;
  }

  .hero-feature {
    align-items: flex-start;
    gap: 14px;
  }

  .feature-icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .feature-icon svg {
    width: 25px;
    height: 25px;
  }

  .hero-feature p {
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-feature br {
    display: none;
  }

  .slide-arrow {
    top: auto;
    bottom: 22px;
    width: 38px;
    height: 38px;
    font-size: 22px;
    transform: none;
  }

  .slide-arrow-left {
    left: 24px;
  }

  .slide-arrow-right {
    right: 24px;
  }

  .sct-badge {
    right: 20px;
    bottom: 70px;
    width: 118px;
    padding: 9px;
    border-radius: 12px;
  }

  .sct-badge img {
    width: 72px;
  }

  .sct-badge span {
    font-size: 10px;
  }

  .certificate-close {
    top: -12px;
    right: -8px;
  }

  .categories {
    padding: 52px 20px;
  }

  .categories-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
  }

  .category-card {
    width: 100%;
    min-width: 0;
  }

  .category-image img {
    height: 110px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .category-card-content {
    min-height: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    gap: 8px;
    overflow: visible;
  }

  .category-card h2 {
    font-size: 14px;
    line-height: 1.08;
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 38px);
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .category-arrow {
    position: static;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-left: 0;
    font-size: 15px;
  }

  .equipment-hero {
    min-height: 250px;
  }

  .equipment-hero-content {
    padding: 44px 20px 40px;
  }

  .equipment-hero h1 {
    font-size: 38px;
  }

  .services-page {
    padding: 28px 20px 18px;
  }

  .services-intro {
    padding-top: 0;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .services-intro h2 {
    font-size: 29px;
  }

  .service-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    min-height: 0;
  }

  .services-benefits {
    grid-template-columns: 1fr;
    padding: 22px 20px;
  }

  .benefit-item,
  .benefit-item:first-child,
  .benefit-item:nth-child(2),
  .benefit-item:nth-child(3),
  .benefit-item:last-child {
    grid-template-columns: 58px 1fr;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid #d3d3d3;
  }

  .benefit-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .benefit-icon {
    width: 52px;
    height: 52px;
  }

  .benefit-icon svg {
    width: 30px;
    height: 30px;
  }

  .equipment-page {
    padding: 22px 20px 34px;
  }

  .equipment-tabs {
    grid-template-columns: 1fr;
  }

  .accessory-tabs {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .equipment-tab {
    border-right: 0;
    border-bottom: 1px solid #d5d5d5;
  }

  .accessory-tabs .equipment-tab {
    min-height: 54px;
    border: 1px solid #d5d5d5;
    border-radius: 7px;
    border-bottom: 1px solid #d5d5d5;
  }

  .equipment-tab:last-child {
    border-bottom: 0;
  }

  .accessory-tabs .equipment-tab:last-child {
    border-bottom: 1px solid #d5d5d5;
  }

  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .featured-content {
    padding: 24px 20px;
  }

  .featured-content h2 {
    font-size: 25px;
  }

  .featured-content ul {
    grid-template-columns: 1fr;
  }

  .equipment-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 20px;
  }

  .equipment-cta-actions {
    grid-column: auto;
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
    min-width: 0;
  }

  .trust-section {
    padding: 20px 14px 24px;
  }

  .trust-blueprint {
    width: 80%;
    height: 34%;
    opacity: 0.34;
  }

  .trust-label {
    gap: 8px;
    margin-bottom: 8px;
  }

  .trust-label span {
    width: 22px;
  }

  .trust-label p {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .trust-section h2 {
    font-size: 20px !important;
    line-height: 1.04 !important;
  }

  .trust-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .trust-card {
    min-height: 0;
    padding: 10px 7px 12px;
    align-items: center;
  }

  .trust-card::before,
  .trust-card::after {
    display: none;
  }

  .trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    margin: 0 auto;
    border-color: rgba(0, 0, 0, 0.13);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  }

  .trust-icon svg {
    display: block;
    width: 29px;
    height: 29px;
  }

  .experience-card .trust-icon img {
    width: 72%;
    height: 72%;
    object-fit: contain;
    object-position: center;
  }

  .trust-divider {
    width: 20px;
    margin: 6px auto 6px;
  }

  .trust-card h3 {
    font-size: 12px;
    line-height: 1.08;
    text-align: center;
  }

  .trust-card p {
    max-width: 280px;
    margin: 4px auto 0;
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
  }

  .trust-card-detail {
    display: none;
  }

  .footer-top {
    padding: 28px 20px 20px;
  }

  .footer-brand img {
    width: 120px;
  }

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

  .footer-column {
    padding: 0 0 18px 16px;
    border-left-width: 2px;
  }

  .footer-social {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 22px 20px;
  }

  .footer-social h2 {
    font-size: 24px;
  }

  .social-links a {
    width: 44px;
    height: 44px;
  }

  .footer-legal-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-legal-links span {
    display: none;
  }

  .footer-legal p {
    font-size: 14px;
    line-height: 1.5;
  }

  .legal-content h1 {
    font-size: 34px;
  }
}

/* Compact admin tool UI */
.admin-page {
  background: #111111;
}

.admin-shell {
  max-width: 1180px;
  padding: 24px;
}

.admin-login-view {
  min-height: calc(100vh - 48px);
}

.admin-login-brand {
  margin-bottom: 16px;
}

.admin-login-brand .admin-logo,
.admin-dashboard-header .admin-logo {
  width: 88px;
  padding: 7px;
  border-radius: 5px;
}

.admin-login-brand p {
  font-size: 12px;
  letter-spacing: 1px;
}

.admin-login-brand h1 {
  margin: 4px 0 6px;
  font-size: 28px;
}

.admin-login {
  width: min(100%, 360px);
  gap: 12px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.admin-login input,
.admin-upload input,
.admin-table input,
.homepage-admin-row input[type="text"] {
  min-height: 34px;
  border-radius: 4px;
  font-size: 13px;
}

.admin-login button,
.admin-upload button,
.homepage-admin-row button,
.admin-table button,
.admin-secondary-button {
  min-height: 34px;
  border-radius: 4px;
  font-size: 12px;
}

.admin-panel {
  gap: 14px;
}

.admin-dashboard-header {
  padding: 14px 16px;
  border-radius: 8px;
  box-shadow: none;
}

.admin-header {
  gap: 12px;
}

.admin-header h1 {
  margin: 0;
  font-size: 22px;
}

.admin-header p,
.admin-panel-heading p {
  font-size: 12px;
}

.admin-panel-heading {
  gap: 10px;
}

.admin-dashboard-status {
  min-height: 18px;
  margin: 0;
  font-size: 13px;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  padding: 4px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #ffffff;
}

.admin-tab {
  min-height: 34px;
  padding: 0 16px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #222222;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.admin-tab.active {
  background: #111111;
  color: #ffffff;
}

.admin-section[hidden] {
  display: none !important;
}

.admin-section {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #ffffff;
}

.admin-section-heading {
  align-items: center;
  margin-bottom: 0;
}

.admin-section-heading h2 {
  font-size: 20px;
}

.admin-section-heading p {
  font-size: 12px;
}

.admin-upload {
  gap: 10px;
  padding: 12px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  background: #f7f7f7;
}

.admin-form-grid {
  grid-template-columns: minmax(220px, 1.4fr) minmax(160px, 1fr) 86px 78px auto;
  align-items: end;
  gap: 10px;
}

.admin-upload label,
.homepage-admin-row label,
.admin-login label {
  gap: 5px;
  font-size: 11px;
}

.admin-file-control {
  min-height: 34px;
  border-radius: 4px;
}

.admin-file-button {
  padding: 0 10px;
  font-size: 11px;
}

.admin-file-name {
  padding: 0 10px;
  font-size: 12px;
  line-height: 34px;
}

.admin-table-wrap {
  border-radius: 6px;
}

.admin-table {
  min-width: 760px;
}

.admin-table th,
.admin-table td {
  padding: 9px 10px;
  font-size: 12px;
}

.admin-table th {
  font-size: 11px;
  letter-spacing: 0;
}

.admin-table img {
  width: 90px;
  height: 52px;
  border-radius: 4px;
}

.admin-table input[type="text"],
.admin-table input[type="number"] {
  min-height: 32px;
}

.admin-table input[type="checkbox"],
.homepage-admin-active input {
  width: 16px;
  height: 16px;
}

.admin-table button {
  min-height: 30px;
  padding: 0 9px;
}

.homepage-admin-list {
  border-radius: 6px;
}

.homepage-admin-row {
  grid-template-columns: 92px minmax(140px, 0.9fr) minmax(170px, 1fr) 76px minmax(220px, 1.2fr) 76px;
  gap: 12px;
  padding: 10px 12px;
}

.homepage-admin-preview {
  width: 86px;
  height: 50px;
  border-radius: 4px;
}

.homepage-admin-title h3 {
  font-size: 14px;
}

.homepage-admin-title p {
  font-size: 11px;
}

.homepage-admin-file .admin-file-control {
  min-height: 34px;
}

.homepage-admin-file .admin-file-name {
  line-height: 34px;
}

.homepage-admin-row button {
  min-height: 32px;
  padding: 0 10px;
}

.equipment-empty,
.equipment-detail-loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #ffffff;
  color: #222222;
  font-weight: 800;
  text-align: center;
}

.equipment-empty p {
  margin: 0 0 14px;
}

.equipment-empty a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 4px;
  background: #111111;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.equipment-detail-page {
  padding: 54px max(24px, calc((100vw - 1160px) / 2));
  background: #f6f6f6;
}

.equipment-detail-hero {
  display: grid;
  gap: 28px;
}

.equipment-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  background: #111111;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
}

.equipment-detail-media {
  min-height: 430px;
  background: #202020;
}

.equipment-detail-main-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipment-detail-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  color: #ffffff;
}

.equipment-detail-kicker {
  margin: 0 0 12px;
  color: #cfcfcf;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.equipment-detail-content h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.equipment-detail-capacity {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 900;
}

.equipment-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.equipment-detail-actions .cta-button.secondary {
  background: transparent;
}

.equipment-detail-info {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  margin-top: 26px;
}

.equipment-detail-info > div {
  padding: 24px;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.equipment-detail-info h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.equipment-detail-info ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: #222222;
  line-height: 1.45;
}

.technical-sheet-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin-top: 22px;
  padding: 0 18px;
  border-radius: 4px;
  background: #111111;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.technical-sheet-button:hover,
.technical-sheet-button:focus-visible {
  background: #2a2a2a;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  outline: none;
  transform: translateY(-2px);
}

.technical-sheet-button svg {
  width: 18px;
  height: 18px;
}

.technical-sheet-button path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.equipment-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.equipment-gallery-thumb {
  display: block;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: #111111;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.equipment-gallery-thumb:hover,
.equipment-gallery-thumb:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
  outline: none;
}

.equipment-gallery-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.equipment-gallery-thumb:hover img,
.equipment-gallery-thumb:focus-visible img {
  opacity: 0.82;
  transform: scale(1.03);
}

body.lightbox-open {
  overflow: hidden;
}

.equipment-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px 88px;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(6px);
}

.equipment-lightbox.open {
  display: flex;
}

.equipment-lightbox-frame {
  position: relative;
  max-width: min(1040px, 100%);
  max-height: 86vh;
  margin: 0;
}

.equipment-lightbox-frame img {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
}

.equipment-lightbox-frame figcaption {
  margin-top: 12px;
  color: #d8d8d8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
}

.equipment-lightbox-close,
.equipment-lightbox-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.72);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.equipment-lightbox-close:hover,
.equipment-lightbox-arrow:hover,
.equipment-lightbox-close:focus-visible,
.equipment-lightbox-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.72);
  outline: none;
  transform: scale(1.04);
}

.equipment-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  font-size: 34px;
  line-height: 1;
}

.equipment-lightbox-arrow {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
}

.equipment-lightbox-arrow:hover,
.equipment-lightbox-arrow:focus-visible {
  transform: translateY(-50%) scale(1.04);
}

.equipment-lightbox-prev {
  left: 24px;
}

.equipment-lightbox-next {
  right: 24px;
}

.equipment-lightbox-arrow[hidden] {
  display: none;
}

.equipment-admin-form {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  background: #f7f7f7;
}

.equipment-admin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.equipment-admin-grid label,
.equipment-gallery-upload label {
  display: grid;
  gap: 5px;
  color: #222222;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.equipment-admin-grid input,
.equipment-admin-grid select,
.equipment-admin-grid textarea,
.equipment-gallery-upload input {
  width: 100%;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  background: #ffffff;
  color: #111111;
  font: inherit;
  font-size: 13px;
}

.equipment-admin-grid textarea {
  min-height: 72px;
  padding-top: 9px;
  resize: vertical;
}

.equipment-admin-grid .admin-checkbox {
  display: flex;
  align-items: center;
  min-height: 34px;
}

.equipment-admin-grid .admin-checkbox input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  padding: 0;
}

.equipment-current-file {
  justify-self: start;
  color: #111111;
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.equipment-current-file[hidden] {
  display: none;
}

.equipment-admin-wide {
  grid-column: span 2;
}

.equipment-admin-actions {
  display: flex;
  gap: 10px;
}

.equipment-admin-actions button,
.equipment-gallery-upload button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 4px;
  background: #111111;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.admin-secondary-button {
  border: 1px solid #bbbbbb !important;
  background: #ffffff !important;
  color: #111111 !important;
}

.equipment-gallery-admin {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  background: #ffffff;
}

.equipment-gallery-admin[hidden] {
  display: none;
}

.equipment-gallery-upload {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(160px, 1fr) 90px auto;
  gap: 10px;
  align-items: end;
}

.equipment-gallery-list {
  display: grid;
  gap: 8px;
}

.equipment-gallery-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  background: #fafafa;
}

.equipment-gallery-item img {
  width: 90px;
  height: 52px;
  border-radius: 4px;
  object-fit: cover;
}

.equipment-gallery-item div {
  display: grid;
  gap: 3px;
  font-size: 12px;
}

.equipment-gallery-item span {
  color: #666666;
}

.equipment-gallery-item button {
  min-height: 30px;
  padding: 0 9px;
  border: 0;
  border-radius: 4px;
  background: #8f1d1d;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

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

  .admin-upload button {
    grid-column: 1 / -1;
  }

  .homepage-admin-row {
    grid-template-columns: 92px 1fr;
  }

  .homepage-admin-link,
  .homepage-admin-active,
  .homepage-admin-file,
  .homepage-admin-row button {
    grid-column: 2;
  }

  .equipment-detail-layout,
  .equipment-detail-info,
  .equipment-admin-grid,
  .equipment-gallery-upload {
    grid-template-columns: 1fr;
  }

  .equipment-admin-wide {
    grid-column: auto;
  }

  .equipment-detail-media {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .admin-shell {
    padding: 14px;
  }

  .admin-dashboard-header,
  .admin-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-tabs {
    flex-direction: column;
  }

  .admin-form-grid,
  .homepage-admin-row {
    grid-template-columns: 1fr;
  }

  .homepage-admin-preview {
    width: 100%;
    height: 110px;
  }

  .homepage-admin-link,
  .homepage-admin-active,
  .homepage-admin-file,
  .homepage-admin-row button {
    grid-column: auto;
  }

  .equipment-detail-page {
    padding: 30px 18px;
  }

  .equipment-detail-content {
    padding: 26px;
  }

  .equipment-detail-gallery {
    grid-template-columns: 1fr;
  }

  .equipment-lightbox {
    padding: 72px 14px 28px;
  }

  .equipment-lightbox-frame img {
    max-height: 74vh;
    border-radius: 8px;
  }

  .equipment-lightbox-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .equipment-lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 34px;
  }

  .equipment-lightbox-prev {
    left: 10px;
  }

  .equipment-lightbox-next {
    right: 10px;
  }

  .equipment-admin-actions,
  .equipment-gallery-item {
    grid-template-columns: 1fr;
  }

  .equipment-admin-actions {
    display: grid;
  }

  .equipment-gallery-item img {
    width: 100%;
    height: 120px;
  }
}

/* Final interaction polish */
@keyframes softPageRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.equipment-hero-content,
.contact-hero-content,
.about-hero-content,
.categories,
.trust-section,
.experience-section,
.equipment-grid,
.accessories-grid,
.services-overview,
.services-benefits,
.contact-grid,
.about-story,
.about-value-strip,
.about-section,
.about-why,
.equipment-detail-page {
  animation: softPageRise 520ms ease both;
}

.nav-links a,
.logo,
.hero-button,
.cta-button,
.category-card,
.category-arrow,
.equipment-card,
.equipment-card > img,
.equipment-card-action,
.equipment-card-action span,
.service-card,
.contact-info-item,
.contact-map-card,
.contact-social-list a,
.contact-whatsapp-card,
.contact-whatsapp-card a,
.contact-form button,
.about-dark-button,
.about-value-item,
.about-info-card,
.about-cta-actions a,
.technical-sheet-button {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.nav-links a {
  position: relative;
  opacity: 0.9;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
  outline: none;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: 0.75;
  transform: scaleX(1);
}

.nav-links a.active::after {
  display: none;
}

.logo:hover,
.logo:focus-visible {
  opacity: 0.92;
  outline: none;
}

.hero-button:hover,
.hero-button:focus-visible,
.cta-button:hover,
.cta-button:focus-visible,
.contact-form button:hover:not(:disabled),
.contact-form button:focus-visible,
.contact-whatsapp-card a:hover,
.contact-whatsapp-card a:focus-visible,
.about-dark-button:hover,
.about-dark-button:focus-visible,
.about-cta-actions a:hover,
.about-cta-actions a:focus-visible,
.technical-sheet-button:hover,
.technical-sheet-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
  outline: none;
}

.hero-button span,
.cta-button span,
.equipment-card-action span,
.category-arrow,
.contact-form button span,
.about-dark-button span,
.about-cta-actions a span,
.technical-sheet-button svg {
  transition: transform 180ms ease;
}

.hero-button:hover span,
.hero-button:focus-visible span,
.cta-button:hover span,
.cta-button:focus-visible span,
.contact-form button:hover:not(:disabled) span,
.contact-form button:focus-visible span,
.about-dark-button:hover span,
.about-dark-button:focus-visible span,
.equipment-card:hover .equipment-card-action span,
.equipment-card:focus-visible .equipment-card-action span,
.category-card:hover .category-arrow,
.category-card:focus-visible .category-arrow,
.about-cta-actions a:hover span,
.about-cta-actions a:focus-visible span,
.technical-sheet-button:hover svg,
.technical-sheet-button:focus-visible svg {
  transform: translateX(3px);
}

.equipment-card {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.equipment-card > img {
  transition: transform 240ms ease, opacity 180ms ease;
}

.equipment-card-link:hover,
.equipment-card-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.46);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  outline: none;
}

.equipment-card-link:hover > img,
.equipment-card-link:focus-visible > img {
  transform: scale(1.025);
}

.equipment-card-link:hover .equipment-card-action,
.equipment-card-link:focus-visible .equipment-card-action {
  border-color: rgba(255, 255, 255, 0.82);
}

.category-card:focus-visible,
.equipment-card-link:focus-visible,
.contact-map-card:focus-visible,
.contact-social-list a:focus-visible,
.about-cta-actions a:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.68);
  outline-offset: 4px;
}

.category-card:focus-visible {
  outline-color: rgba(255, 255, 255, 0.72);
}

.service-card:hover {
  border-color: #c5c5c5;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.11);
}

.about-value-item:hover,
.about-info-card:hover,
.contact-info-item:hover,
.contact-whatsapp-card:hover {
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

.contact-map-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.32);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.contact-social-list a:hover,
.contact-social-list a:focus-visible {
  transform: translateX(3px);
  outline: none;
}

.contact-form input,
.contact-form textarea {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #111111;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
  outline: none;
}

.equipment-gallery-thumb {
  position: relative;
}

.equipment-gallery-thumb::after {
  content: "↗";
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.equipment-gallery-thumb:hover::after,
.equipment-gallery-thumb:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.equipment-lightbox {
  animation: none;
}

.equipment-lightbox.open {
  animation: softPageRise 180ms ease both;
}

@media (max-width: 768px) {
  .site-header {
    position: relative;
    z-index: 40;
  }

  .navbar {
    position: relative;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    padding: 8px 18px;
  }

  .logo {
    gap: 9px;
    min-width: 0;
  }

  .logo img {
    height: 38px;
  }

  .logo-text span {
    font-size: 20px;
    letter-spacing: 0.7px;
  }

  .logo-text small {
    font-size: 7px;
    letter-spacing: 3.1px;
  }

  .mobile-nav-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    cursor: pointer;
  }

  .mobile-nav-toggle span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(-6px);
  }

  .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(6px);
  }

  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg);
  }

  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .mobile-nav-toggle:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 3px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 8px 18px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #000000;
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.36);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  body.mobile-nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links a {
    justify-content: center;
    min-height: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 15px;
  }

  .nav-links li:last-child a {
    border-bottom: 0;
  }

  .nav-links a.active {
    padding-bottom: 0;
    border-bottom-color: rgba(255, 255, 255, 0.36);
  }

  .hero {
    min-height: 640px;
    min-height: max(640px, calc(100svh - 64px));
  }

  .hero-slide {
    background-position: center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.58));
  }

  .hero-content {
    justify-content: center;
    max-width: none;
    min-height: 640px;
    min-height: max(640px, calc(100svh - 64px));
    padding: 46px 24px 128px;
    text-align: left;
  }

  .hero-heading {
    max-width: 100%;
  }

  .hero-label {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1;
  }

  .hero-label-line {
    width: 64px;
    height: 3px;
    margin: 12px 0 18px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 8.8vw, 44px);
    line-height: 1.1;
  }

  .hero-features {
    gap: 14px;
    max-width: 100%;
    margin-top: 24px;
  }

  .hero-feature {
    align-items: flex-start;
    gap: 12px;
  }

  .hero-feature .feature-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-width: 1.5px;
  }

  .hero-feature .feature-icon svg {
    width: 23px;
    height: 23px;
  }

  .hero-feature p {
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.38;
  }

  .hero-feature br {
    display: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(100%, 340px);
    margin-top: 26px;
  }

  .hero-button {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }

  .slide-arrow {
    top: auto;
    bottom: 20px;
    width: 34px;
    height: 34px;
    font-size: 20px;
    transform: none;
  }

  .slide-arrow-left {
    left: 18px;
  }

  .slide-arrow-right {
    right: 18px;
  }

  .slide-dots {
    bottom: 32px;
    gap: 8px;
  }

  .slide-dot {
    width: 8px;
    height: 8px;
  }

  .sct-badge {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero-content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero h1 {
    font-size: clamp(30px, 8.4vw, 36px);
  }

  .hero-feature p {
    font-size: 14.5px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: clamp(220px, 58vw, 280px) !important;
    min-height: 220px !important;
    max-height: 280px !important;
    background: #000000;
    position: relative !important;
    overflow: hidden !important;
  }

  .hero-slide {
    background-color: #000000 !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    overflow: hidden !important;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.36) 48%, rgba(0, 0, 0, 0.66) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.04));
  }

  .hero-content {
    position: absolute !important;
    top: clamp(64px, 18vw, 86px) !important;
    right: 24px !important;
    bottom: auto !important;
    left: 24px !important;
    z-index: 5 !important;
    display: block;
    height: auto !important;
    min-height: 0 !important;
    max-width: none;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  .hero-label {
    font-size: 16px !important;
    line-height: 1.05 !important;
  }

  .hero-label-line {
    width: 40px;
    height: 2px;
    margin: 6px 0 8px;
  }

  .hero h1 {
    max-width: 92% !important;
    font-size: 24px !important;
    line-height: 1.05 !important;
  }

  .hero-features {
    display: none !important;
  }

  .hero-feature {
    gap: 9px;
  }

  .hero-feature .feature-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .hero-feature .feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .hero-feature p {
    font-size: clamp(14.5px, 3.8vw, 16.5px);
    line-height: 1.25;
  }

  .hero-actions {
    display: none !important;
  }

  .slide-arrow {
    position: absolute;
    top: auto !important;
    bottom: 10px;
    width: 28px;
    height: 28px;
    font-size: 17px;
    transform: none !important;
  }

  .slide-arrow-left {
    left: 16px;
  }

  .slide-arrow-right {
    right: 16px;
  }

  .slide-dots {
    position: absolute;
    bottom: 19px;
    gap: 7px;
  }

  .slide-dot {
    width: 7px;
    height: 7px;
  }

  .categories {
    padding: 34px 18px 44px;
  }

  .categories-header {
    margin-bottom: 20px;
  }

  .categories-header p {
    font-size: 17px;
    line-height: 1.25;
    letter-spacing: 4px;
  }

  body > .categories > .categories-inner {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    align-items: stretch;
  }

  body > .categories .category-card {
    width: 100% !important;
    min-width: 0 !important;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  }

  body > .categories .category-image img {
    width: 100% !important;
    height: 110px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
  }

  body > .categories .category-card-content {
    min-height: 70px !important;
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    padding: 12px !important;
    overflow: visible !important;
  }

  body > .categories .category-card h2 {
    font-size: 14px !important;
    line-height: 1.08 !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 38px) !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  body > .categories .category-arrow {
    position: static !important;
    flex: 0 0 30px !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    margin-left: 0 !important;
    font-size: 15px;
    box-sizing: border-box;
  }
}

@media (max-width: 390px) {
  .hero {
    height: clamp(210px, 58vw, 235px) !important;
    min-height: 210px !important;
    max-height: 235px !important;
  }

  .hero-content {
    top: clamp(58px, 17vw, 72px) !important;
    right: 20px !important;
    bottom: auto !important;
    left: 20px !important;
  }

  .hero h1 {
    font-size: 22px !important;
  }

  body > .categories .category-card h2 {
    font-size: 13px !important;
  }

  body > .categories > .categories-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body > .categories .category-arrow {
    flex-basis: 28px !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    font-size: 14px !important;
  }

  .slide-dots {
    bottom: 18px;
  }

  .slide-arrow {
    bottom: 9px;
  }
}

@media (max-width: 350px) {
  .categories {
    padding-right: 20px;
    padding-left: 20px;
  }

  body > .categories > .categories-inner {
    grid-template-columns: 1fr !important;
  }

  body > .categories .category-image img {
    height: 105px !important;
  }
}

@media (hover: none) {
  .category-card:hover,
  .equipment-card-link:hover,
  .service-card:hover,
  .about-value-item:hover,
  .about-info-card:hover,
  .contact-info-item:hover,
  .contact-map-card:hover,
  .contact-whatsapp-card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 768px) {
  .home-solutions-section {
    padding: 44px 18px !important;
  }

  body .categories .home-solutions-grid,
  body .home-solutions-grid,
  .home-solutions-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body .categories .home-solutions-grid > *,
  body .home-solutions-grid > *,
  .home-solution-card {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    flex: unset !important;
    margin: 0 !important;
    border-radius: 14px !important;
  }

  body .home-solutions-grid .category-image,
  body .home-solutions-grid .home-solution-image {
    height: 115px !important;
    min-height: 115px !important;
    max-height: 115px !important;
  }

  body .home-solutions-grid img,
  body .home-solutions-grid .category-card img,
  .home-solution-image img {
    width: 100% !important;
    height: 115px !important;
    min-height: 115px !important;
    max-height: 115px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
  }

  body .home-solutions-grid .category-card-content,
  .home-solution-card-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 70px !important;
    height: 70px !important;
    padding: 12px !important;
    gap: 8px !important;
  }

  body .home-solutions-grid h2,
  body .home-solutions-grid .home-solution-title,
  .home-solution-title {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 38px) !important;
    font-size: 14px !important;
    line-height: 1.1 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  body .home-solutions-grid .category-arrow,
  body .home-solutions-grid .home-solution-arrow,
  .home-solution-arrow {
    position: static !important;
    flex: 0 0 30px !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    margin-left: 0 !important;
    font-size: 15px !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 390px) {
  .home-solution-title {
    font-size: 13px !important;
  }

  .home-solution-arrow {
    flex-basis: 28px !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 768px) {
  .site-footer {
    border-bottom-width: 6px !important;
  }

  .footer-top {
    gap: 14px !important;
    padding: 18px 18px 12px !important;
  }

  .footer-brand img {
    width: 92px !important;
    max-width: 92px !important;
  }

  .footer-info {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .footer-column {
    padding: 0 0 10px 10px !important;
    border-left-width: 1px !important;
    border-left-color: rgba(255, 255, 255, 0.48) !important;
  }

  .footer-column h2 {
    margin-bottom: 4px !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
    letter-spacing: 0.06em !important;
  }

  .footer-column h2:not(:first-child) {
    margin-top: 8px !important;
  }

  .footer-column p,
  .footer-column a {
    font-size: 10px !important;
    line-height: 1.22 !important;
  }

  .footer-bottom {
    grid-template-columns: 1fr !important;
  }

  .footer-social {
    align-items: center !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 14px 18px !important;
  }

  .footer-social h2 {
    font-size: 17px !important;
    line-height: 1.05 !important;
  }

  .social-links {
    gap: 8px !important;
  }

  .social-links a {
    width: 34px !important;
    height: 34px !important;
    border-width: 1px !important;
  }

  .social-links svg {
    width: 16px !important;
    height: 16px !important;
  }

  .footer-legal {
    clip-path: none !important;
    padding: 14px 18px 16px !important;
  }

  .footer-legal-links {
    align-items: center !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px 12px !important;
    margin-bottom: 8px !important;
  }

  .footer-legal-links a {
    font-size: 10px !important;
    line-height: 1.2 !important;
  }

  .footer-legal-links span {
    display: none !important;
  }

  .footer-legal p {
    font-size: 10px !important;
    line-height: 1.25 !important;
  }
}

@media (max-width: 768px) {
  .equipos-page-body .equipment-hero {
    height: 360px !important;
    min-height: 360px !important;
    max-height: 360px !important;
    overflow: hidden !important;
  }

  .equipos-page-body .equipment-hero-content {
    padding: 50px 20px 32px !important;
  }

  .equipos-page-body .equipment-hero h1 {
    font-size: 40px !important;
    line-height: 1.05 !important;
  }

  .equipos-page-body .equipment-hero-content > p:last-child {
    max-width: 92% !important;
    font-size: 17px !important;
    line-height: 1.25 !important;
  }

  .equipos-page-body .equipment-page {
    padding: 18px 14px 30px !important;
  }

  .equipos-page-body .equipment-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    max-width: 100% !important;
    margin-bottom: 18px !important;
  }

  .equipos-page-body .equipment-tab {
    flex-direction: column !important;
    gap: 4px !important;
    min-height: 64px !important;
    padding: 8px 6px !important;
    border-right: 1px solid #d5d5d5 !important;
    border-bottom: 0 !important;
    font-size: 11px !important;
    line-height: 1.08 !important;
    text-align: center !important;
  }

  .equipos-page-body .equipment-tab:last-child {
    border-right: 0 !important;
  }

  .equipos-page-body .tab-icon,
  .equipos-page-body .tab-icon img {
    width: 30px !important;
    height: 30px !important;
  }

  .equipos-page-body .equipos-product-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .equipos-page-body .equipos-product-grid .equipment-card {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    border-radius: 12px !important;
  }

  .equipos-page-body .equipos-product-grid .equipment-card > img {
    width: 100% !important;
    height: 120px !important;
    min-height: 120px !important;
    max-height: 120px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
  }

  .equipos-page-body .equipos-product-grid .equipment-card-body {
    min-height: 106px !important;
    padding: 12px !important;
  }

  .equipos-page-body .equipos-product-grid .equipment-card h2 {
    margin-bottom: 7px !important;
    font-size: 15px !important;
    line-height: 1.1 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .equipos-page-body .equipos-product-grid .equipment-card p,
  .equipos-page-body .equipos-product-grid .equipment-capacity {
    margin-bottom: 8px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
  }

  .equipos-page-body .equipos-product-grid .equipment-card-action {
    min-height: 34px !important;
    margin-top: 8px !important;
    padding: 0 7px 0 9px !important;
    font-size: 12px !important;
  }

  .equipos-page-body .equipos-product-grid .equipment-card-action span {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
  }
}

@media (max-width: 768px) {
  .dynamic-detail-page .equipment-detail-page {
    padding: 22px 14px !important;
  }

  .dynamic-detail-page .equipment-detail-hero {
    gap: 14px !important;
  }

  .dynamic-detail-page .equipment-detail-hero > .breadcrumb {
    gap: 8px !important;
    margin-bottom: 0 !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
  }

  .dynamic-detail-page .equipment-detail-layout {
    grid-template-columns: 1fr !important;
    border-radius: 14px !important;
  }

  .dynamic-detail-page .equipment-detail-media {
    min-height: 0 !important;
    height: 260px !important;
  }

  .dynamic-detail-page .equipment-detail-main-image {
    width: 100% !important;
    height: 260px !important;
    min-height: 260px !important;
    max-height: 260px !important;
    object-fit: cover !important;
  }

  .dynamic-detail-page .equipment-detail-content {
    padding: 22px 20px !important;
  }

  .dynamic-detail-page .equipment-detail-kicker {
    margin-bottom: 9px !important;
    font-size: 10px !important;
    letter-spacing: 0.16em !important;
  }

  .dynamic-detail-page .equipment-detail-content h1 {
    margin-bottom: 10px !important;
    font-size: 28px !important;
    line-height: 1.04 !important;
  }

  .dynamic-detail-page .equipment-detail-capacity {
    margin-bottom: 10px !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
  }

  .dynamic-detail-page .equipment-detail-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 9px !important;
    margin-top: 16px !important;
  }

  .dynamic-detail-page .equipment-detail-actions .cta-button {
    width: 100% !important;
    min-height: 46px !important;
    padding: 10px 13px !important;
    font-size: 14px !important;
    border-radius: 6px !important;
  }

  .dynamic-detail-page .equipment-detail-actions .cta-button span {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
  }

  .dynamic-detail-page .equipment-detail-info {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-top: 16px !important;
  }

  .dynamic-detail-page .equipment-detail-info > div {
    padding: 18px !important;
    border-radius: 12px !important;
  }

  .dynamic-detail-page .equipment-detail-info h2 {
    margin-bottom: 12px !important;
    font-size: 22px !important;
    line-height: 1.1 !important;
  }

  .dynamic-detail-page .equipment-detail-info ul {
    gap: 6px !important;
    padding-left: 18px !important;
    font-size: 14px !important;
    line-height: 1.28 !important;
  }

  .dynamic-detail-page .equipment-detail-info li {
    margin-bottom: 4px !important;
  }

  .dynamic-detail-page .technical-sheet-button {
    min-height: 38px !important;
    margin-top: 14px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
  }

  .dynamic-detail-page .technical-sheet-button svg {
    width: 16px !important;
    height: 16px !important;
  }

  .dynamic-detail-page .equipment-detail-gallery {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .dynamic-detail-page .equipment-gallery-thumb {
    border-radius: 10px !important;
    cursor: pointer !important;
  }

  .dynamic-detail-page .equipment-gallery-thumb img {
    width: 100% !important;
    height: 118px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
  }

  .dynamic-detail-page .equipment-gallery-thumb:active {
    transform: scale(0.98) !important;
  }

  .dynamic-detail-page .equipment-lightbox {
    padding: 64px 12px 24px !important;
  }

  .dynamic-detail-page .equipment-lightbox-frame img {
    max-height: 72vh !important;
    border-radius: 8px !important;
  }

  .dynamic-detail-page .equipment-lightbox-close,
  .dynamic-detail-page .equipment-lightbox-arrow {
    width: 38px !important;
    height: 38px !important;
  }

  .dynamic-detail-page .equipment-lightbox-close {
    top: 14px !important;
    right: 14px !important;
    font-size: 30px !important;
  }

  .dynamic-detail-page .equipment-lightbox-prev {
    left: 8px !important;
  }

  .dynamic-detail-page .equipment-lightbox-next {
    right: 8px !important;
  }
}

@media (max-width: 340px) {
  .dynamic-detail-page .equipment-detail-gallery {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .accesorios-page-body .accessories-hero {
    height: 360px !important;
    min-height: 360px !important;
    max-height: 360px !important;
    overflow: hidden !important;
  }

  .accesorios-page-body .equipment-hero-content {
    padding: 50px 20px 32px !important;
  }

  .accesorios-page-body .equipment-hero h1 {
    font-size: 40px !important;
    line-height: 1.05 !important;
  }

  .accesorios-page-body .equipment-hero-content > p:last-child {
    max-width: 92% !important;
    font-size: 17px !important;
    line-height: 1.25 !important;
  }

  .accesorios-page-body .accessories-page {
    padding: 18px 14px 30px !important;
  }

  .accesorios-page-body .accessory-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    max-width: 100% !important;
    margin: 0 auto 18px !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .accesorios-page-body .accessory-tab {
    min-height: 50px !important;
    padding: 9px 8px !important;
    border: 1px solid #d5d5d5 !important;
    border-radius: 9px !important;
    font-size: 12px !important;
    line-height: 1.12 !important;
    text-align: center !important;
  }

  .accesorios-page-body .accessory-tab:last-child {
    border-bottom: 1px solid #d5d5d5 !important;
  }

  .accesorios-page-body .accessory-tab.active {
    box-shadow: inset 0 -3px #000000, 0 6px 14px rgba(0, 0, 0, 0.07) !important;
  }

  .accesorios-page-body .accesorios-product-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .accesorios-page-body .accesorios-product-grid .accessory-card {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    overflow: hidden !important;
    border-radius: 12px !important;
  }

  .accesorios-page-body .accesorios-product-grid .accessory-card > img {
    width: 100% !important;
    height: 125px !important;
    min-height: 125px !important;
    max-height: 125px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
  }

  .accesorios-page-body .accesorios-product-grid .equipment-card-body {
    min-height: 102px !important;
    padding: 12px !important;
  }

  .accesorios-page-body .accesorios-product-grid .equipment-card h2 {
    margin-bottom: 8px !important;
    font-size: 14px !important;
    line-height: 1.1 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .accesorios-page-body .accesorios-product-grid .equipment-card-action {
    min-height: 34px !important;
    margin-top: 8px !important;
    padding: 0 7px 0 9px !important;
    font-size: 12px !important;
  }

  .accesorios-page-body .accesorios-product-grid .equipment-card-action span {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
  }
}

@media (max-width: 768px) {
  .nosotros-page-body .about-hero {
    height: 340px !important;
    min-height: 340px !important;
    max-height: 340px !important;
    align-items: center !important;
    background-size: cover !important;
    background-position: center center !important;
    overflow: hidden !important;
  }

  .nosotros-page-body .about-hero-content {
    width: calc(100% - 48px) !important;
    padding: 36px 0 24px !important;
  }

  .nosotros-page-body .about-hero h1 {
    margin-bottom: 0 !important;
    font-size: 42px !important;
    line-height: 1.02 !important;
  }

  .nosotros-page-body .about-hero .equipment-hero-line {
    width: 54px !important;
    height: 2px !important;
    margin: 12px 0 12px !important;
  }

  .nosotros-page-body .about-hero-content > p:not(.breadcrumb) {
    max-width: 92% !important;
    font-size: 16px !important;
    line-height: 1.28 !important;
  }

  .nosotros-page-body .about-hero .breadcrumb {
    display: none !important;
  }

  .nosotros-page-body .about-story,
  .nosotros-page-body .about-value-strip,
  .nosotros-page-body .about-section,
  .nosotros-page-body .about-why {
    width: calc(100% - 32px) !important;
  }

  .nosotros-page-body .about-story {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 26px 0 18px !important;
  }

  .nosotros-page-body .about-story-image img {
    height: 230px !important;
    min-height: 230px !important;
    max-height: 230px !important;
    object-fit: cover !important;
  }

  .nosotros-page-body .section-label {
    margin-bottom: 10px !important;
    font-size: 10px !important;
    letter-spacing: 0.18em !important;
  }

  .nosotros-page-body .about-story-content h2,
  .nosotros-page-body .about-section h2 {
    margin-bottom: 14px !important;
    font-size: 30px !important;
    line-height: 1.04 !important;
  }

  .nosotros-page-body .about-story-content p:not(.section-label) {
    margin-bottom: 12px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .nosotros-page-body .about-dark-button {
    min-height: 38px !important;
    margin-top: 2px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
  }

  .nosotros-page-body .about-value-strip,
  .nosotros-page-body .about-card-grid.four,
  .nosotros-page-body .about-card-grid.three {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .nosotros-page-body .about-value-strip {
    margin-top: 0 !important;
    margin-bottom: 22px !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .nosotros-page-body .about-value-item,
  .nosotros-page-body .about-info-card,
  .nosotros-page-body .about-info-card.horizontal {
    min-height: 0 !important;
    padding: 14px 10px !important;
    border: 1px solid #dedede !important;
    border-radius: 12px !important;
  }

  .nosotros-page-body .about-info-card.horizontal {
    grid-template-columns: 38px 1fr !important;
    gap: 10px !important;
  }

  .nosotros-page-body .about-icon,
  .nosotros-page-body .about-small-icon {
    width: 34px !important;
    height: 34px !important;
    margin-bottom: 8px !important;
  }

  .nosotros-page-body .about-info-card.horizontal .about-small-icon {
    margin-bottom: 0 !important;
  }

  .nosotros-page-body .about-value-item h3,
  .nosotros-page-body .about-info-card h3 {
    margin-bottom: 6px !important;
    font-size: 14px !important;
    line-height: 1.12 !important;
  }

  .nosotros-page-body .about-value-item p,
  .nosotros-page-body .about-info-card p {
    font-size: 11px !important;
    line-height: 1.28 !important;
  }

  .nosotros-page-body .about-section {
    padding: 0 0 18px !important;
  }

  .nosotros-page-body .about-section.compact {
    padding-top: 0 !important;
  }

  .nosotros-page-body .about-why {
    grid-template-columns: 1fr !important;
    margin-top: 6px !important;
  }

  .nosotros-page-body .about-why-image img {
    height: 210px !important;
    min-height: 210px !important;
    max-height: 210px !important;
    object-fit: cover !important;
  }

  .nosotros-page-body .about-why-content {
    padding: 22px 18px !important;
  }

  .nosotros-page-body .about-why-content ul {
    gap: 8px !important;
  }

  .nosotros-page-body .about-why-content li {
    padding-left: 26px !important;
    font-size: 13px !important;
    line-height: 1.28 !important;
  }

  .nosotros-page-body .about-why-content li::before {
    width: 17px !important;
    height: 17px !important;
    font-size: 11px !important;
  }

  .nosotros-page-body .about-cta {
    margin-top: 22px !important;
    padding: 26px 18px !important;
  }

  .nosotros-page-body .about-cta h2 {
    margin-bottom: 14px !important;
    font-size: 24px !important;
    line-height: 1.08 !important;
  }

  .nosotros-page-body .about-cta-actions {
    gap: 10px !important;
  }

  .nosotros-page-body .about-cta-actions a {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 42px !important;
    padding: 0 16px !important;
    font-size: 13px !important;
  }

  .nosotros-page-body .about-section.compact .about-card-grid.three {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .nosotros-page-body .about-section.compact .about-info-card.horizontal {
    display: grid !important;
    grid-template-columns: 42px 1fr !important;
    gap: 12px !important;
    align-items: start !important;
    min-height: 0 !important;
    padding: 16px !important;
  }

  .nosotros-page-body .about-section.compact .about-small-icon {
    width: 34px !important;
    height: 34px !important;
    margin: 0 !important;
  }

  .nosotros-page-body .about-section.compact .about-info-card h3 {
    margin: 0 0 6px !important;
    font-size: 18px !important;
    line-height: 1.15 !important;
  }

  .nosotros-page-body .about-section.compact .about-info-card p {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.38 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .nosotros-page-body .about-section.compact .about-info-card *,
  .nosotros-page-body .about-section.compact .about-info-card {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 768px) {
  .contacto-page-body .contact-hero {
    min-height: 480px !important;
    height: auto !important;
    max-height: none !important;
    background-position: center center !important;
  }

  .contacto-page-body .contact-hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.66) 48%, rgba(0, 0, 0, 0.22) 100%) !important;
  }

  .contacto-page-body .contact-hero-content {
    padding: 46px 22px 34px !important;
  }

  .contacto-page-body .contact-hero h1 {
    margin-bottom: 8px !important;
    font-size: 54px !important;
    line-height: 0.94 !important;
  }

  .contacto-page-body .contact-hero-subtitle {
    margin-bottom: 12px !important;
    font-size: 28px !important;
    line-height: 1.02 !important;
  }

  .contacto-page-body .contact-hero-content > p:not(.contact-hero-subtitle) {
    max-width: 92% !important;
    font-size: 16px !important;
    line-height: 1.38 !important;
  }

  .contacto-page-body .contact-hero-features {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 20px !important;
    max-width: 330px !important;
  }

  .contacto-page-body .contact-hero-feature {
    grid-template-columns: 54px 1fr !important;
    gap: 12px !important;
    max-width: none !important;
  }

  .contacto-page-body .contact-hero-feature + .contact-hero-feature {
    padding-left: 0 !important;
    border-left: 0 !important;
  }

  .contacto-page-body .contact-hero-feature > span {
    width: 52px !important;
    height: 52px !important;
    border-radius: 8px !important;
  }

  .contacto-page-body .contact-hero-feature svg {
    width: 28px !important;
    height: 28px !important;
  }

  .contacto-page-body .contact-hero-feature h2 {
    margin-bottom: 3px !important;
    font-size: 13px !important;
    line-height: 1.12 !important;
  }

  .contacto-page-body .contact-hero-feature p {
    font-size: 12px !important;
    line-height: 1.25 !important;
  }

  .contacto-page-body .contact-page {
    padding: 30px 16px 32px !important;
  }

  .contacto-page-body .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .contacto-page-body .contact-info-panel h2,
  .contacto-page-body .contact-form-card h2,
  .contacto-page-body .contact-social-panel h2 {
    font-size: 25px !important;
    line-height: 1.08 !important;
  }

  .contacto-page-body .contact-panel-line {
    width: 42px !important;
    height: 2px !important;
    margin: 10px 0 18px !important;
  }

  .contacto-page-body .contact-info-list {
    gap: 16px !important;
  }

  .contacto-page-body .contact-info-item {
    grid-template-columns: 48px 1fr !important;
    gap: 12px !important;
  }

  .contacto-page-body .contact-info-item > span,
  .contacto-page-body .contact-social-list span {
    width: 46px !important;
    height: 46px !important;
    border-radius: 8px !important;
  }

  .contacto-page-body .contact-info-item svg,
  .contacto-page-body .contact-social-list svg,
  .contacto-page-body .whatsapp-mark svg {
    width: 24px !important;
    height: 24px !important;
  }

  .contacto-page-body .contact-info-item h3 {
    margin: 2px 0 5px !important;
    font-size: 12px !important;
    line-height: 1.16 !important;
  }

  .contacto-page-body .contact-info-item p,
  .contacto-page-body .contact-info-item a {
    font-size: 13px !important;
    line-height: 1.34 !important;
  }

  .contacto-page-body .contact-map-card {
    margin-top: 20px !important;
    border-radius: 10px !important;
  }

  .contacto-page-body .map-preview {
    min-height: 220px !important;
  }

  .contacto-page-body .map-pin {
    width: 58px !important;
    height: 58px !important;
  }

  .contacto-page-body .map-pin svg {
    width: 28px !important;
    height: 28px !important;
  }

  .contacto-page-body .map-button {
    padding: 14px 16px !important;
    font-size: 12px !important;
  }

  .contacto-page-body .contact-form-card {
    padding: 26px 18px 22px !important;
    border-radius: 12px !important;
  }

  .contacto-page-body .contact-form-card .contact-panel-line {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .contacto-page-body .contact-form {
    gap: 16px !important;
  }

  .contacto-page-body .form-row {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .contacto-page-body .contact-form label {
    gap: 6px !important;
    font-size: 11px !important;
  }

  .contacto-page-body .contact-form input {
    height: 46px !important;
    padding: 0 12px !important;
    font-size: 14px !important;
  }

  .contacto-page-body .contact-form textarea {
    min-height: 142px !important;
    padding: 13px 12px !important;
    font-size: 14px !important;
  }

  .contacto-page-body .contact-form button {
    min-height: 50px !important;
    gap: 12px !important;
    font-size: 14px !important;
  }

  .contacto-page-body .form-trust,
  .contacto-page-body .form-status {
    font-size: 12px !important;
  }

  .contacto-page-body .contact-social-panel {
    padding-top: 2px !important;
  }

  .contacto-page-body .contact-social-list {
    gap: 14px !important;
    margin-bottom: 22px !important;
  }

  .contacto-page-body .contact-social-list a {
    grid-template-columns: 46px 1fr !important;
    gap: 12px !important;
    font-size: 14px !important;
  }

  .contacto-page-body .contact-whatsapp-card {
    padding: 22px 18px 20px !important;
    border-radius: 12px !important;
  }

  .contacto-page-body .whatsapp-mark {
    width: 54px !important;
    height: 54px !important;
    margin-bottom: 14px !important;
  }

  .contacto-page-body .contact-whatsapp-card h3 {
    margin-bottom: 10px !important;
    font-size: 21px !important;
    line-height: 1.08 !important;
  }

  .contacto-page-body .contact-whatsapp-card p {
    margin-bottom: 18px !important;
    font-size: 13px !important;
    line-height: 1.38 !important;
  }

  .contacto-page-body .contact-whatsapp-card a {
    min-height: 48px !important;
    font-size: 15px !important;
  }
}

@media (max-width: 768px) {
  .servicios-page-body .services-page {
    padding: 28px 14px 24px !important;
  }

  .servicios-page-body .services-overview {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    margin-bottom: 18px !important;
  }

  .servicios-page-body .services-intro {
    padding-top: 0 !important;
  }

  .servicios-page-body .services-intro .section-label {
    margin-bottom: 12px !important;
    font-size: 10px !important;
    letter-spacing: 0.18em !important;
  }

  .servicios-page-body .services-intro h2 {
    max-width: 100% !important;
    margin-bottom: 12px !important;
    font-size: 30px !important;
    line-height: 1.06 !important;
  }

  .servicios-page-body .services-intro > p:last-child {
    max-width: 100% !important;
    margin-bottom: 0 !important;
    font-size: 14px !important;
    line-height: 1.42 !important;
  }

  .servicios-page-body .service-card-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .servicios-page-body .service-card {
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 16px 12px !important;
    border-radius: 12px !important;
  }

  .servicios-page-body .service-card-icon {
    width: 34px !important;
    height: 34px !important;
    margin-bottom: 12px !important;
  }

  .servicios-page-body .service-card h3 {
    margin-bottom: 8px !important;
    font-size: 15px !important;
    line-height: 1.12 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .servicios-page-body .service-card p {
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.32 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .servicios-page-body .service-card *,
  .servicios-page-body .benefit-item * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .servicios-page-body .services-benefits {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    padding: 14px !important;
    border-radius: 12px !important;
  }

  .servicios-page-body .benefit-item,
  .servicios-page-body .benefit-item:first-child,
  .servicios-page-body .benefit-item:nth-child(2),
  .servicios-page-body .benefit-item:nth-child(3),
  .servicios-page-body .benefit-item:last-child {
    grid-template-columns: 44px 1fr !important;
    gap: 10px !important;
    padding: 0 !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
  }

  .servicios-page-body .benefit-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .servicios-page-body .benefit-icon svg {
    width: 24px !important;
    height: 24px !important;
  }

  .servicios-page-body .benefit-item h3 {
    margin-bottom: 5px !important;
    font-size: 13px !important;
    line-height: 1.12 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .servicios-page-body .benefit-item p {
    font-size: 11px !important;
    line-height: 1.3 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }
}

@media (max-width: 340px) {
  .servicios-page-body .service-card-grid,
  .servicios-page-body .services-benefits {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .contacto-page-body .contact-hero {
    min-height: 400px !important;
    height: auto !important;
    overflow: hidden !important;
  }

  .contacto-page-body .contact-hero-content {
    padding: 34px 22px 28px !important;
  }

  .contacto-page-body .contact-hero h1 {
    margin-bottom: 8px !important;
    font-size: 44px !important;
    line-height: 0.95 !important;
    letter-spacing: 0.02em !important;
  }

  .contacto-page-body .contact-hero-subtitle {
    margin-bottom: 10px !important;
    font-size: 22px !important;
    line-height: 1.04 !important;
  }

  .contacto-page-body .contact-hero-content > p:not(.contact-hero-subtitle) {
    max-width: 94% !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
  }

  .contacto-page-body .contact-hero-features {
    gap: 9px !important;
    margin-top: 16px !important;
    max-width: 310px !important;
  }

  .contacto-page-body .contact-hero-feature {
    grid-template-columns: 46px 1fr !important;
    gap: 10px !important;
  }

  .contacto-page-body .contact-hero-feature > span {
    width: 44px !important;
    height: 44px !important;
    border-radius: 8px !important;
  }

  .contacto-page-body .contact-hero-feature svg {
    width: 23px !important;
    height: 23px !important;
  }

  .contacto-page-body .contact-hero-feature h2 {
    margin-bottom: 2px !important;
    font-size: 11px !important;
    line-height: 1.08 !important;
  }

  .contacto-page-body .contact-hero-feature p {
    font-size: 11px !important;
    line-height: 1.2 !important;
  }

  .contacto-page-body .contact-page {
    padding: 24px 14px 28px !important;
  }

  .contacto-page-body .contact-grid {
    gap: 18px !important;
  }

  .contacto-page-body .contact-info-panel h2,
  .contacto-page-body .contact-form-card h2,
  .contacto-page-body .contact-social-panel h2 {
    font-size: 22px !important;
    line-height: 1.05 !important;
  }

  .contacto-page-body .contact-panel-line {
    margin: 8px 0 14px !important;
  }

  .contacto-page-body .contact-info-list {
    gap: 13px !important;
  }

  .contacto-page-body .contact-info-item {
    grid-template-columns: 42px 1fr !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .contacto-page-body .contact-info-item > span,
  .contacto-page-body .contact-social-list span {
    width: 40px !important;
    height: 40px !important;
    border-radius: 8px !important;
  }

  .contacto-page-body .contact-info-item svg,
  .contacto-page-body .contact-social-list svg,
  .contacto-page-body .whatsapp-mark svg {
    width: 21px !important;
    height: 21px !important;
  }

  .contacto-page-body .contact-info-item h3 {
    margin: 0 0 4px !important;
    font-size: 11px !important;
    line-height: 1.12 !important;
  }

  .contacto-page-body .contact-info-item p,
  .contacto-page-body .contact-info-item a {
    font-size: 12px !important;
    line-height: 1.28 !important;
  }

  .contacto-page-body .contact-map-card {
    margin-top: 16px !important;
    border-radius: 10px !important;
  }

  .contacto-page-body .map-preview {
    min-height: 190px !important;
  }

  .contacto-page-body .map-pin {
    width: 50px !important;
    height: 50px !important;
  }

  .contacto-page-body .map-pin svg {
    width: 24px !important;
    height: 24px !important;
  }

  .contacto-page-body .map-button {
    padding: 12px 14px !important;
    font-size: 11px !important;
  }

  .contacto-page-body .contact-form-card {
    padding: 22px 16px 18px !important;
    border-radius: 12px !important;
  }

  .contacto-page-body .contact-form {
    gap: 13px !important;
  }

  .contacto-page-body .contact-form input {
    height: 42px !important;
    min-height: 42px !important;
    font-size: 13px !important;
  }

  .contacto-page-body .contact-form textarea {
    min-height: 122px !important;
    font-size: 13px !important;
  }

  .contacto-page-body .contact-form button {
    min-height: 46px !important;
    font-size: 13px !important;
  }

  .contacto-page-body .contact-social-list {
    gap: 11px !important;
    margin-bottom: 18px !important;
  }

  .contacto-page-body .contact-social-list a {
    grid-template-columns: 40px 1fr !important;
    gap: 10px !important;
    font-size: 13px !important;
  }

  .contacto-page-body .contact-whatsapp-card {
    padding: 18px 16px !important;
  }

  .contacto-page-body .whatsapp-mark {
    width: 46px !important;
    height: 46px !important;
    margin-bottom: 10px !important;
  }

  .contacto-page-body .contact-whatsapp-card h3 {
    font-size: 18px !important;
  }

  .contacto-page-body .contact-whatsapp-card p {
    margin-bottom: 14px !important;
    font-size: 12px !important;
  }

  .contacto-page-body .contact-whatsapp-card a {
    min-height: 44px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 390px) {
  .contacto-page-body .contact-hero h1 {
    font-size: 38px !important;
  }

  .contacto-page-body .contact-hero-subtitle {
    font-size: 20px !important;
  }
}
