* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #d3d3d3;
  color: #565656;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

.site-shell {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

.topbar {
  height: 37px;
  background: #8b8b89;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.topbar .inner {
  height: 100%;
  width: 1020px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand {
  height: 130px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid #e9e9e9;
}

.brand img {
  display: block;
  width: 408px;
  height: 72px;
}

.main-nav {
  height: 44px;
  display: flex;
  justify-content: center;
  gap: 44px;
  border-bottom: 1px solid #e6e6e6;
  color: #333;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
}

.main-nav .active {
  color: #47637f;
}

.main-nav .active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #47637f;
}

.content {
  padding-top: 50px;
}

.section-inner {
  width: 1030px;
  max-width: calc(100% - 64px);
  margin: 0 auto;
}

.hero-slider {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .6s ease;
}

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

.hero-slide span {
  width: 100%;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: rgba(0, 0, 0, .78);
  color: #fff;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.intro h1 {
  width: 100%;
  max-width: 980px;
  margin: 18px auto 38px;
  color: #545454;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
}

hr {
  height: 1px;
  margin: 0 0 39px;
  border: 0;
  background: #b2b2b3;
}

.intro h2 {
  margin: 0 0 20px;
  color: #4f4f4f;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  text-align: center;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.feature {
  position: relative;
  min-height: 132px;
  padding: 46px 18px 20px;
  background: #f2f2f2;
  text-align: center;
  overflow: hidden;
}

.feature h3 {
  margin: 10px 0 0;
  color: #4f4f4f;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}

.feature p {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 24px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #47637f;
  color: #fff;
  font-size: 13px;
  line-height: 19px;
  opacity: 0;
  transform: rotateY(90deg);
  transition: opacity .2s ease, transform .2s ease;
}

.feature:hover p,
.feature:focus-within p {
  opacity: 1;
  transform: rotateY(0);
}

.gear,
.feature .gear {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #303030;
}

.gear::before {
  content: "⚙";
  color: #f2f2f2;
  font-size: 20px;
  line-height: 1;
}

.video-line {
  margin-bottom: 31px;
  background: #999797;
}

.video-wrap {
  width: 600px;
  height: 360px;
  margin: 0 auto;
  background: #111;
}

.video-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-sep {
  height: 3px;
  margin: 20px 0;
  background: #e0dede;
}

.video-wrap.second {
  margin-bottom: 50px;
}

.button-row {
  text-align: center;
  margin-bottom: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 42px;
  padding: 0 23px;
  background: #47637f;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
}

.professional {
  margin-top: 0;
  padding: 0 0 40px;
  background: #f4f4f4;
}

.market {
  margin: 0;
  padding: 12px 0 40px;
  color: #555;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 68px;
}

.title-row h2 {
  margin: 0;
  color: #414141;
  font-size: 34px;
  line-height: 40px;
  font-weight: 400;
}

.title-row span {
  flex: 1;
  min-width: 120px;
  height: 6px;
  border-top: 1px solid #e0dede;
  border-bottom: 1px solid #e0dede;
}

.professional-grid {
  display: grid;
  grid-template-columns: 65.333% 30.667%;
  gap: 4%;
}

.showcase {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}

.showcase-slide.is-active {
  opacity: 1;
}

.showcase img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 63px;
  height: 63px;
  border: 0;
  background: rgba(0, 0, 0, .28);
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-arrow::before {
  content: "";
  position: absolute;
  top: 17px;
  width: 28px;
  height: 28px;
  border-top: 4px solid #fff;
  border-left: 4px solid #fff;
}

.slider-arrow.prev {
  left: 0;
}

.slider-arrow.prev::before {
  left: 23px;
  transform: rotate(-45deg);
}

.slider-arrow.next {
  right: 0;
}

.slider-arrow.next::before {
  right: 23px;
  transform: rotate(135deg);
}

.caption {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
}

.caption strong {
  min-width: 430px;
  padding: 4px 14px;
  background: rgba(0, 0, 0, .4);
  color: #fff;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 38px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
}

.caption .button {
  margin-top: 16px;
  min-width: 220px;
  min-height: 64px;
  font-size: 20px;
}

.side-copy {
  padding-top: 4px;
  color: #6d6d6d;
  font-size: 14px;
  line-height: 20px;
}

.side-copy p {
  margin: 0 0 34px;
}

.side-copy hr {
  height: 7px;
  margin: 0 0 18px;
  background: transparent;
  border-top: 1px solid #e0dede;
  border-bottom: 1px solid #e0dede;
}

.side-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-copy li {
  display: flex;
  align-items: center;
  margin: 0 0 12px;
  color: #4d4d4d;
  font-size: 16px;
  line-height: 27px;
  font-weight: 700;
}

.side-copy li span {
  width: 27px;
  height: 27px;
  margin-right: 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #47637f;
}

.side-copy li span::before {
  content: "☆";
  color: #fff;
  font-size: 18px;
}

.site-footer {
  color: #fff;
  text-align: center;
}

.footer-top {
  min-height: 152px;
  padding: 30px 40px 24px;
  background: #383838;
}

.footer-top img {
  display: block;
  margin: 0 auto 22px;
}

.footer-top p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom {
  min-height: 91px;
  padding: 21px 20px;
  background: #000;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 21px;
  z-index: 5;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2bd44b;
  color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
}

.whatsapp svg {
  width: 31px;
  height: 31px;
  display: block;
  fill: #fff;
}

.to-top {
  position: fixed;
  right: 72px;
  bottom: 0;
  z-index: 5;
  width: 48px;
  height: 39px;
  display: grid;
  place-items: center;
  background: #333;
  color: #fff;
  font-size: 20px;
}

.page-titlebar {
  background: #f1f1f1;
  border-top: 1px solid #eee;
}

.page-titlebar .section-inner {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-titlebar h1 {
  margin: 0;
  color: #333;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}

.page-titlebar p {
  margin: 0;
  color: #333;
  font-size: 11px;
  font-weight: 700;
}

.empresa-page {
  background: #fff;
}

.company-content {
  padding: 60px 0 70px;
}

.company-row {
  display: grid;
  grid-template-columns: calc(50% - 20px) calc(50% - 20px);
  gap: 40px;
  align-items: start;
}

.first-row {
  margin-bottom: 24px;
}

.last-row {
  margin-bottom: 45px;
}

.company-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.company-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}

.company-slide.is-active {
  opacity: 1;
}

.company-slide img,
.company-photo {
  width: 100%;
  height: auto;
  display: block;
}

.company-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-slider .caption strong {
  min-width: 0;
  font-size: 24px;
  line-height: 38px;
  padding: 0 12px;
}

.company-slider .caption .button {
  min-width: 154px;
  min-height: 54px;
  font-size: 14px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 3px 0 38px;
}

.section-title h2 {
  margin: 0;
  color: #000;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
}

.section-title span {
  flex: 1;
  height: 6px;
  border-top: 1px solid #b9b9b9;
  border-bottom: 1px solid #b9b9b9;
}

.company-copy {
  color: #747474;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.company-copy p {
  margin: 0 0 23px;
}

.company-features {
  gap: 29px;
  margin: 0 0 39px;
}

.company-features .feature {
  min-height: 176px;
  padding-top: 63px;
}

.company-separator {
  margin: 0 0 25px;
  background: #e0dede;
}

.company-separator + .company-row {
  margin-top: 25px;
}

.products-page {
  padding: 55px 0 72px;
}

.products-intro {
  margin: 0 0 28px;
  color: #7b7b7b;
  font-size: 13px;
  font-weight: 700;
}

.product-filters {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-bottom: 50px;
  border-top: 1px solid #e0dede;
  border-bottom: 1px solid #e0dede;
}

.product-filters button {
  position: relative;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #555;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.product-filters button.active {
  color: #47637f;
}

.product-filters button.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #47637f;
}

.product-grid {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.masonry-col {
  flex: 1;
  min-width: 0;
}

.product-card {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 20px;
  overflow: hidden;
  background: #f2f2f2;
}

.product-card[hidden] {
  display: none;
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
}

.product-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  background: rgba(71, 99, 127, .95);
  color: #252525;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  cursor: pointer;
  transition: opacity .22s ease;
}

.product-card:hover .product-overlay,
.product-card:focus-within .product-overlay {
  opacity: 1;
}

.zoom-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #303030;
}

.zoom-icon::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 9px;
  width: 9px;
  height: 9px;
  border: 3px solid #f2f2f2;
  border-radius: 50%;
}

.zoom-icon::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 21px;
  width: 8px;
  height: 3px;
  background: #f2f2f2;
  transform: rotate(45deg);
  transform-origin: left center;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 54px 80px;
  background: rgba(0, 0, 0, .9);
}

.lightbox.open {
  display: flex;
}

.modal-open {
  overflow: hidden;
}

.lightbox figure {
  margin: 0;
  max-width: min(100%, 1100px);
  max-height: 100%;
  text-align: center;
}

.lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  display: block;
  margin: 0 auto;
}

.lightbox figcaption {
  margin-top: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.lightbox-close {
  position: fixed;
  top: 15px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 42px;
  line-height: 42px;
  cursor: pointer;
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  width: 64px;
  height: 64px;
  border: 0;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox-arrow::before {
  content: "";
  position: absolute;
  top: 18px;
  width: 28px;
  height: 28px;
  border-top: 4px solid #fff;
  border-left: 4px solid #fff;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-prev::before {
  left: 24px;
  transform: rotate(-45deg);
}

.lightbox-next {
  right: 24px;
}

.lightbox-next::before {
  right: 24px;
  transform: rotate(135deg);
}

.novedad-page {
  padding: 54px 0 72px;
}

.novedad-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 54px;
}

.novedad-heading span {
  flex: 1;
  height: 6px;
  border-top: 1px solid #e0dede;
  border-bottom: 1px solid #e0dede;
}

.novedad-heading h1 {
  margin: 0;
  color: #424242;
  font-size: 34px;
  line-height: 42px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
}

.novedad-row {
  display: grid;
  grid-template-columns: calc(50% - 20px) calc(50% - 20px);
  gap: 40px;
  align-items: start;
}

.novedad-hero {
  margin-bottom: 34px;
}

.novedad-product {
  padding-top: 3px;
}

.novedad-product img,
.novedad-info img,
.novedad-benefits img {
  display: block;
  max-width: 100%;
  height: auto;
}

.novedad-tall {
  width: 236px;
  margin: 0 auto 27px;
}

.novedad-wide {
  width: 100%;
  margin-top: 38px;
}

.novedad-rule {
  margin: 0;
  background: #e0dede;
}

.novedad-videos h2 {
  margin: 0 0 17px;
  color: #333;
  font-size: 18px;
  line-height: 24px;
  font-weight: 800;
  text-align: center;
}

.novedad-video {
  width: 100%;
  aspect-ratio: 5 / 3;
  background: #111;
}

.novedad-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.novedad-video-sep {
  height: 2px;
  margin: 19px 0;
  background: #e0dede;
}

.novedad-info {
  margin-bottom: 24px;
}

.novedad-copy {
  color: #777;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
}

.novedad-copy .section-title {
  margin: 0 0 36px;
}

.novedad-copy .section-title h2 {
  font-size: 18px;
  line-height: 24px;
}

.novedad-copy p {
  margin: 0 0 16px;
}

.novedad-table {
  width: 100%;
  margin: 0 0 31px;
  border-collapse: collapse;
  color: #777;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.novedad-table th,
.novedad-table td {
  padding: 13px 20px;
  border: 1px solid #e0dede;
  text-align: left;
}

.novedad-table th {
  height: 62px;
  background: #fafafa;
  font-weight: 700;
}

.novedad-double {
  height: 6px;
  margin: 0 0 27px;
  border-top: 1px solid #e0dede;
  border-bottom: 1px solid #e0dede;
  background: transparent;
}

.novedad-benefits {
  margin-bottom: 34px;
}

.novedad-benefits .novedad-copy {
  padding-top: 2px;
}

.contact-page {
  background: #fff;
}

.contact-content {
  padding: 57px 0 63px;
}

.contact-map {
  width: 100%;
  height: 450px;
  margin: 0 0 50px;
  overflow: hidden;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-title {
  width: 760px;
  max-width: 100%;
  margin: 0 0 34px;
}

.contact-title h2 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
}

.contact-intro {
  width: 760px;
  max-width: 100%;
  margin: 0 0 36px;
  color: #777;
  font-size: 15px;
  line-height: 25px;
  font-weight: 700;
}

.contact-form {
  width: 760px;
  max-width: 100%;
}

.contact-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 11px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7d7d7;
  border-radius: 6px;
  background: #fff;
  color: #777;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .04);
}

.contact-form input {
  height: 32px;
  padding: 0 16px;
}

.contact-form textarea {
  height: 165px;
  margin-bottom: 13px;
  padding: 11px 16px;
  resize: vertical;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
  opacity: 1;
}

.math-captcha {
  width: 330px;
  min-height: 82px;
  margin: 0 0 21px;
  padding: 12px 12px;
  display: grid;
  grid-template-columns: 1fr auto 78px;
  align-items: center;
  gap: 12px;
  border: 1px solid #d7d7d7;
  border-radius: 3px;
  background: #fafafa;
}

.math-captcha strong,
.math-captcha span {
  display: block;
}

.math-captcha strong {
  color: #333;
  font-size: 15px;
  line-height: 20px;
}

.math-captcha span {
  color: #777;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
}

.math-captcha label {
  color: #333;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.math-captcha input {
  height: 34px;
  padding: 0 8px;
  text-align: center;
}

.form-status {
  min-height: 18px;
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.form-status.error {
  color: #d10000;
}

.form-status.success {
  color: #47637f;
}

.contact-submit {
  min-width: 147px;
  min-height: 46px;
  border: 0;
  font-size: 14px;
  cursor: pointer;
}

.contact-submit:disabled {
  opacity: .65;
  cursor: default;
}

@media (max-width: 800px) {
  .topbar {
    height: auto;
  }

  .topbar .inner {
    min-height: 37px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 8px 0;
    text-align: center;
  }

  .topbar span,
  .topbar a {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .brand {
    height: 112px;
  }

  .brand img {
    width: min(340px, 80vw);
    height: auto;
  }

  .main-nav {
    height: auto;
    flex-wrap: wrap;
    gap: 0;
  }

  .main-nav a {
    width: 100%;
    justify-content: center;
    border-top: 1px solid #eee;
  }

  .content {
    padding-top: 28px;
  }

  .section-inner {
    max-width: calc(100% - 32px);
  }

  .hero-slider {
    height: 210px;
  }

  .hero-slide span {
    min-height: 54px;
    font-size: 20px;
    white-space: normal;
  }

  .features,
  .professional-grid {
    grid-template-columns: 1fr;
  }

  .video-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 3;
  }

  .title-row {
    display: block;
    margin-bottom: 30px;
  }

  .title-row h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .title-row span {
    display: block;
    margin-top: 12px;
  }

  .showcase {
    height: auto;
    aspect-ratio: 678 / 500;
  }

  .caption strong {
    min-width: 0;
    max-width: calc(100vw - 92px);
    font-size: 18px;
    line-height: 26px;
    white-space: normal;
  }

  .caption .button {
    min-width: 150px;
    min-height: 44px;
    font-size: 13px;
  }

  .slider-arrow {
    width: 45px;
    height: 45px;
  }

  .slider-arrow::before {
    top: 13px;
    width: 18px;
    height: 18px;
    border-width: 3px;
  }

  .slider-arrow.prev::before {
    left: 17px;
  }

  .slider-arrow.next::before {
    right: 17px;
  }

  .page-titlebar .section-inner {
    height: auto;
    min-height: 82px;
    display: flex;
  }

  .company-content {
    padding: 34px 0 46px;
  }

  .company-row {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .company-slider {
    height: auto;
    aspect-ratio: 678 / 500;
  }

  .company-copy {
    font-size: 15px;
  }

  .section-title {
    margin-bottom: 22px;
  }

  .section-title h2 {
    font-size: 22px;
    white-space: normal;
  }

  .company-features .feature {
    min-height: 140px;
    padding-top: 48px;
  }

  .products-page {
    padding-top: 34px;
  }

  .product-filters {
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .product-grid {
    display: block;
  }

  .masonry-col {
    display: block;
  }

  .lightbox {
    padding: 50px 18px;
  }

  .lightbox-arrow {
    width: 44px;
    height: 44px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .novedad-page {
    padding: 34px 0 48px;
  }

  .novedad-heading {
    display: block;
    margin-bottom: 32px;
  }

  .novedad-heading h1 {
    font-size: 26px;
    line-height: 34px;
    white-space: normal;
  }

  .novedad-heading span {
    display: block;
    margin: 10px 0;
  }

  .novedad-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .novedad-wide {
    margin-top: 24px;
  }

  .novedad-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .contact-content {
    padding: 34px 0 48px;
  }

  .contact-map {
    height: 340px;
    margin-bottom: 34px;
  }

  .contact-title,
  .contact-intro,
  .contact-form {
    width: 100%;
  }

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

  .math-captcha {
    width: 100%;
    grid-template-columns: 1fr;
  }
}
