:root {
  --color-primary: #0f1f64;
  --color-secondary: #20bad6;
  --color-accent: #1a5eb0;
  --color-bg-soft: #ececf0;
  --color-text: #23242b;
  --color-muted: #586174;
  --color-footer: #2f2a76;
  --shadow-soft: 0 14px 36px rgba(14, 32, 85, 0.18);
  --radius-lg: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}

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

section[id] {
  scroll-margin-top: 112px;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #ffffff;
  border-bottom: 1px solid #d9deea;
}

.header-content {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.95rem;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 108px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.main-nav a {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  color: #1f2b53;
  padding: 0.6rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.42rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-secondary);
  border-radius: 50%;
  color: var(--color-secondary);
  font-size: 0.82rem;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-1px);
  background: var(--color-secondary);
  color: #ffffff;
}

.nav-toggle,
.nav-toggle-btn {
  display: none;
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #0f1f64;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  min-height: inherit;
  background: linear-gradient(110deg, rgba(12, 30, 90, 0.78), rgba(24, 67, 150, 0.54));
  display: flex;
  align-items: center;
}

.hero-content {
  padding: 2.5rem 0;
}

.hero-corner-logo {
  position: absolute;
  right: clamp(1rem, 3vw, 2.4rem);
  bottom: clamp(1rem, 2.2vw, 2rem);
  width: clamp(88px, 11.5vw, 140px);
  z-index: 2;
  opacity: 0.45;
  pointer-events: none;
}

.hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  max-width: 760px;
  line-height: 0.96;
}

.hero-line {
  display: block;
  font-size: clamp(1.875rem, 5.5vw, 4.675rem);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.hero-years {
  margin-bottom: 0.25rem;
}

.history {
  background: var(--color-bg-soft);
  padding: 4.1rem 0 3.4rem;
}

.history-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.78fr);
  gap: clamp(1.4rem, 2.2vw, 2.5rem);
  align-items: stretch;
}

.history-copy h2 {
  margin: 0 0 1.35rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.95rem, 3.2vw, 2.8rem);
  color: var(--color-primary);
}

.history-copy h2 span {
  color: var(--color-secondary);
}

.history-copy p {
  margin: 0 0 1.05rem;
  color: #2f3442;
  line-height: 1.62;
  font-size: 1.02rem;
  text-align: justify;
}

.history-image {
  margin: 0;
  width: 100%;
  position: relative;
  justify-self: end;
  align-self: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.history-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.mission-vision {
  background-image: linear-gradient(180deg, rgba(18, 61, 143, 0.84), rgba(20, 29, 105, 0.86)),
    url("assets/3.png");
  background-position: center;
  background-size: cover;
  color: #ffffff;
  padding: 4.3rem 0;
}

.mission-content {
  text-align: center;
  max-width: 980px;
}

.mission-content h2 {
  margin: 0 0 1.3rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.9rem, 3.7vw, 3.1rem);
}

.mission-content p {
  margin: 0;
}

.mission-title-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.mission-title-btn {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font: inherit;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s ease;
}

.mission-title-btn:hover,
.mission-title-btn:focus-visible,
.mission-title-btn.is-active {
  color: #ffffff;
}

.mission-title-separator {
  color: rgba(255, 255, 255, 0.64);
}

.mission-panels {
  max-width: 920px;
  margin: 0 auto;
}

.mission-panel p {
  margin: 0 auto;
  max-width: 850px;
  line-height: 1.62;
  font-size: 1.02rem;
}

.products-section {
  background: var(--color-bg-soft);
  padding: 3rem 0 1.9rem;
}

.products-layout {
  display: grid;
  grid-template-columns: minmax(190px, 235px) minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
}

.products-filters {
  padding-right: 0.4rem;
}

.products-filters h2 {
  margin: 0 0 0.72rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 3.3vw, 2.5rem);
  color: var(--color-primary);
  line-height: 0.95;
}

.filter-group + .filter-group {
  margin-top: 0.82rem;
}

.filter-group h3 {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  margin: 0 0 0.4rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.01rem;
  color: var(--color-primary);
}

.filter-group h3 i {
  color: var(--color-secondary);
  font-size: 0.82rem;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  margin: 0.12rem 0;
  color: #2c3554;
  font-size: 1.02rem;
  line-height: 1.25;
  cursor: pointer;
}

.filter-group input {
  width: 15px;
  height: 15px;
  accent-color: #0e95b0;
  margin: 0;
}

.filter-reset {
  margin-top: 0.95rem;
  border: 1px solid rgba(15, 31, 100, 0.24);
  background: #ffffff;
  color: #23325f;
  border-radius: 7px;
  min-height: 37px;
  padding: 0.46rem 0.66rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.filter-reset:hover,
.filter-reset:focus-visible {
  background: #edf4ff;
}

.products-table-frame {
  border: 6px solid #2e2c78;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

.products-table-scroll {
  max-height: 520px;
  overflow: auto;
}

.products-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.products-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  text-align: left;
  background: #2e2c78;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.58rem 0.62rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.products-table tbody th,
.products-table tbody td {
  padding: 0.4rem 0.62rem;
  border-bottom: 1px solid #d8ddea;
  color: #2c3350;
  line-height: 1.2;
  vertical-align: top;
}

.products-table tbody tr:nth-child(even) {
  background: #eef0f5;
}

.products-table tbody tr:hover {
  background: #e6f6fb;
}

.products-table tbody th {
  min-width: 240px;
  font-weight: 700;
}

.product-quote-link {
  color: #1f2a67;
  font-family: "Montserrat", sans-serif;
}

.product-quote-link:hover,
.product-quote-link:focus-visible {
  color: #0e95b0;
}

.products-empty-row td {
  padding: 1rem 0.85rem;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  color: #1f2b55;
  background: #eef2fb;
}

.facturas-section {
  background: linear-gradient(180deg, #f4f7fd 0%, #eef3fb 100%);
  border-top: 1px solid #d8dfef;
  padding: 1rem 0;
}

.facturas-card {
  margin: 0 auto;
  max-width: 980px;
  border-radius: 14px;
  border-top: 5px solid var(--color-secondary);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(16, 44, 108, 0.12);
  padding: 1.5rem 1.35rem;
}

.facturas-card h2 {
  margin: 0 0 0.58rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.42rem;
  color: var(--color-primary);
}

.facturas-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
  font-size: 0.98rem;
}

.facturas-card a {
  display: inline-block;
  margin-top: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--color-accent);
}

.facturas-card a:hover,
.facturas-card a:focus-visible {
  color: #0e95b0;
}

.contact-section {
  background: #21205f;
  color: #ffffff;
  padding: 4.8rem 0 3.2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
  gap: clamp(1.6rem, 4vw, 3.6rem);
  align-items: start;
}

.contact-intro h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  line-height: 0.98;
}

.contact-intro h2 span {
  color: var(--color-secondary);
  display: block;
}

.contact-intro > p {
  max-width: 430px;
  margin: 1.6rem 0 2rem;
  color: #b6bdd9;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
}

.contact-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.contact-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
}

.contact-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.09);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 1rem;
}

.contact-points small {
  display: block;
  margin-bottom: 0.2rem;
  color: #7f89b5;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.contact-points a,
.contact-points p {
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  font-weight: 700;
  line-height: 1.45;
}

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.65rem;
  display: grid;
  gap: 1.08rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.46rem;
}

.contact-form span {
  color: #8d96bf;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.contact-form input:not([type="hidden"]),
.contact-form textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  background: rgba(129, 135, 175, 0.38);
  color: #ffffff;
  padding: 0.85rem 0.9rem;
  min-height: 44px;
  font-size: 1rem;
  line-height: 1.45;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8f97bf;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  width: 100%;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: rgba(129, 135, 175, 0.38);
  color: #ffffff;
  padding: 0.85rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font: inherit;
  font-size: 1rem;
  line-height: 1.45;
  cursor: pointer;
}

.custom-select-trigger i {
  font-size: 0.88rem;
  color: #d7ddf0;
  transition: transform 0.2s ease;
}

.custom-select.is-open .custom-select-trigger {
  border-color: var(--color-secondary);
}

.custom-select.is-open .custom-select-trigger i {
  transform: rotate(180deg);
}

.custom-select-options {
  list-style: none;
  margin: 0;
  padding: 0.34rem;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.32rem);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #2d2c72;
  box-shadow: 0 14px 30px rgba(10, 16, 56, 0.45);
  opacity: 0;
  transform: translateY(-5px);
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 150;
}

.custom-select.is-open .custom-select-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.custom-select-options button {
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #d8ddf2;
  text-align: left;
  padding: 0.52rem 0.65rem;
  font: inherit;
  font-size: 0.96rem;
  line-height: 1.3;
  cursor: pointer;
}

.custom-select-options button:hover,
.custom-select-options button:focus-visible,
.custom-select-options button.is-selected {
  background: rgba(32, 186, 214, 0.18);
  color: #ffffff;
}

.contact-submit {
  border: 0;
  border-radius: 6px;
  min-height: 48px;
  padding: 0.92rem 1rem;
  background: #0c90a8;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #08a7c1;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-form-status {
  margin: 0.05rem 0 0;
  min-height: 1.35rem;
  font-size: 0.9rem;
  color: #aeb7dd;
}

.contact-form-status.is-loading {
  color: #aeb7dd;
}

.contact-form-status.is-success {
  color: #7ef2c3;
}

.contact-form-status.is-error {
  color: #ffc0c0;
}

.offices-directory {
  margin-top: 2.3rem;
}

.offices-directory h3 {
  margin: 0 0 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: #ffffff;
}

.offices-helper {
  margin: 0.45rem 0 1.2rem;
  color: #c4cbe6;
  font-size: 0.95rem;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: start;
}

.office-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.5rem 0.9rem;
  align-self: start;
}

.office-card summary {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.office-card summary::-webkit-details-marker {
  display: none;
}

.office-card summary::after {
  content: "+";
  font-size: 1rem;
  color: var(--color-secondary);
}

.office-card[open] summary::after {
  content: "-";
}

.office-body {
  padding: 0.25rem 0 0.45rem;
}

.office-contact {
  margin: 0 0 0.35rem;
  color: #d7def3;
  font-weight: 700;
}

.office-detail {
  margin: 0 0 0.28rem;
  color: #d7def3;
  line-height: 1.45;
  font-size: 0.93rem;
}

.office-detail a {
  color: #ffffff;
}

.office-map-link {
  display: inline-block;
  margin-top: 0.45rem;
  padding: 0.42rem 0.62rem;
  border-radius: 6px;
  background: rgba(32, 186, 214, 0.22);
  color: #ffffff;
  font-size: 0.84rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.site-footer {
  background: #21205f;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-top {
  padding: 2.9rem 0 2.3rem;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 1.7rem;
}

.footer-column h3 {
  margin: 0 0 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.65rem;
}

.footer-column h4 {
  margin: 0 0 1rem;
  color: var(--color-secondary);
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

.footer-column p,
.footer-column li,
.footer-column a {
  color: #aeb6d6;
  font-size: 0.96rem;
  line-height: 1.55;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li + li {
  margin-top: 0.34rem;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #ffffff;
}

.cert-badges {
  display: flex;
  gap: 0.7rem;
}

.cert-badges span {
  min-width: 72px;
  height: 52px;
  border-radius: 8px;
  background: rgba(227, 230, 244, 0.78);
  color: #1f2b5c;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.4rem 0 1.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: #9ca4cb;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.footer-social a {
  color: #d7ddf0;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.footer-social i {
  margin-right: 0.35rem;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: #ffffff;
}

@media (max-width: 1080px) {
  .site-header .social-links {
    display: none;
  }

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

  .history-image {
    height: clamp(300px, 52vw, 420px);
    justify-self: center;
  }

  .mission-panel p {
    max-width: 100%;
  }

  .products-layout {
    grid-template-columns: 1fr;
  }

  .products-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #d7dceb;
    border-radius: 12px;
    background: #ffffff;
  }

  .products-filters h2 {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 1.9rem;
  }

  .filter-group + .filter-group {
    margin-top: 0;
  }

  .filter-reset {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 0;
  }

  .contact-intro > p {
    font-size: 1.05rem;
  }

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

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

@media (max-width: 900px) {
  .header-content {
    position: relative;
    flex-wrap: nowrap;
    min-height: 84px;
    padding: 0.7rem 0;
  }

  .nav-toggle-btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 46px;
    height: 44px;
    border: 1px solid #d5dcec;
    border-radius: 8px;
    padding: 0 10px;
    cursor: pointer;
    margin-left: auto;
  }

  .nav-toggle-btn span {
    height: 2px;
    width: 100%;
    background: var(--color-primary);
    border-radius: 2px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: none;
    padding: 0.4rem;
    border: 1px solid #d7ddee;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 31, 100, 0.16);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 120;
  }

  .main-nav a {
    font-size: 0.82rem;
    padding: 0.65rem 0.75rem;
    border-bottom: 0;
    border-radius: 8px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: #eef3ff;
    color: var(--color-primary);
  }

  .nav-toggle:checked ~ .main-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  section[id] {
    scroll-margin-top: 128px;
  }

  .brand {
    font-size: 1.65rem;
  }

  .brand-logo {
    width: 118px;
  }

  .hero {
    min-height: 420px;
  }

  .hero-line {
    font-size: clamp(1.625rem, 9vw, 3.025rem);
  }

  .hero-corner-logo {
    width: 82px;
    bottom: 0.8rem;
    right: 0.8rem;
  }

  .history-image {
    width: 100%;
    justify-self: center;
    height: 260px;
  }

  .history,
  .mission-vision,
  .products-section,
  .facturas-section,
  .contact-section {
    padding-top: 3.6rem;
    padding-bottom: 3.7rem;
  }

  .products-filters {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .products-filters h2 {
    font-size: 1.75rem;
  }

  .products-table {
    min-width: 760px;
    font-size: 0.9rem;
  }

  .products-table thead th {
    font-size: 0.75rem;
  }

  .facturas-card {
    padding: 1.2rem 1.1rem;
  }

  .contact-form {
    padding: 1.2rem;
  }

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

  .contact-form input,
  .custom-select-trigger,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-points a,
  .contact-points p {
    font-size: 1rem;
  }

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