/*
Theme Name: BlankSlate Child
Description: Child theme of BlankSlate
Template: blankslate
Version: 1.0.0
*/

/* Import parent theme styles */
@import url("../blankslate/style.css");

/* Import header and footer styles */
@import url("./header-styles.css");
@import url("./footer-styles.css");

/* ===========================
   MAIN CONTENT STYLES
   =========================== */

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family:
    Roboto,
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    Helvetica Neue,
    sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6em;
}

strong {
  font-weight: bold;
}

#menu-principal .current-menu-item a {
  color: #0170b9 !important;
}

.site-main {
  max-width: 100%;
  margin: 0 auto;
  /* padding: 40px 20px; */
  min-height: calc(100vh - 200px);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 0.75rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin: 20px 0 10px;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 15px 0;
}

a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #004a99;
  text-decoration: underline;
}

/* Buttons */
button,
.button,
input[type="button"],
input[type="submit"] {
  background: #0066cc;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease;
}

button:hover,
.button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  background: #004a99;
}

/* ===========================
   FLEXBOX UTILITIES (Tailwind-like)
   =========================== */

/* Display */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.hidden {
  display: none;
}

/* Flex Direction */
.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

/* Flex Wrap */
.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

/* Justify Content */
.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

/* Align Items */
.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

/* Align Content */
.content-start {
  align-content: flex-start;
}

.content-end {
  align-content: flex-end;
}

.content-center {
  align-content: center;
}

.content-between {
  align-content: space-between;
}

.content-around {
  align-content: space-around;
}

/* Flex Grow & Shrink */
.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-initial {
  flex: 0 1 auto;
}

.flex-none {
  flex: none;
}

.grow {
  flex-grow: 1;
}

.grow-0 {
  flex-grow: 0;
}

.shrink {
  flex-shrink: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

/* Gap (espaciado entre items) */
.gap-0 {
  gap: 0;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-20 {
  gap: 5rem;
}

.gap-x-1 {
  column-gap: 0.25rem;
}

.gap-x-2 {
  column-gap: 0.5rem;
}

.gap-x-3 {
  column-gap: 0.75rem;
}

.gap-x-4 {
  column-gap: 1rem;
}

.gap-x-6 {
  column-gap: 1.5rem;
}

.gap-x-8 {
  column-gap: 2rem;
}

.gap-x-10 {
  column-gap: 2.5rem;
}

.gap-y-1 {
  row-gap: 0.25rem;
}

.gap-y-2 {
  row-gap: 0.5rem;
}

.gap-y-3 {
  row-gap: 0.75rem;
}

.gap-y-4 {
  row-gap: 1rem;
}

.gap-y-6 {
  row-gap: 1.5rem;
}

.gap-y-8 {
  row-gap: 2rem;
}

.gap-y-10 {
  row-gap: 2.5rem;
}

/* Padding */
.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-10 {
  padding: 2.5rem;
}

.p-12 {
  padding: 3rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pb-14 {
  padding-bottom: 3.5rem;
}

/* Margin */
.m-0 {
  margin: 0;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 0.75rem;
}

.m-4 {
  margin: 1rem;
}

.m-6 {
  margin: 1.5rem;
}

.m-8 {
  margin: 2rem;
}

.m-auto {
  margin: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

/* Width */
.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.w-1\/2 {
  width: 50%;
}

.w-1\/3 {
  width: 33.333333%;
}

.w-2\/3 {
  width: 66.666667%;
}

.w-1\/4 {
  width: 25%;
}

.w-3\/4 {
  width: 75%;
}

.w-screen {
  width: 100vw;
}

/* Height */
.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.h-screen {
  height: 100vh;
}

/* Max Width */
.max-w-sm {
  max-width: 24rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-7xl {
  max-width: 80rem;
}

/* Text Alignment */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

/* Text Colors */
.text-white {
  color: #ffffff;
}

.text-gray-50 {
  color: #f9fafb;
}

.text-gray-100 {
  color: #f3f4f6;
}

.text-gray-200 {
  color: #e5e7eb;
}

.text-gray-300 {
  color: #d1d5db;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-gray-800 {
  color: #1f2937;
}

.text-gray-900 {
  color: #111827;
}

.text-blue-50 {
  color: #eff6ff;
}

.text-blue-500 {
  color: #3b82f6;
}

.text-blue-600 {
  color: #2563eb;
}

.text-blue-700 {
  color: #1d4ed8;
}

.text-blue-primary {
  color: #0170B9;
}

.text-red-500 {
  color: #ef4444;
}

.text-red-600 {
  color: #dc2626;
}

.text-green-500 {
  color: #10b981;
}

.text-green-600 {
  color: #059669;
}

/* Background Colors */
.bg-white {
  background-color: #ffffff;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.bg-gray-100 {
  background-color: #f3f4f6;
}

.bg-gray-200 {
  background-color: #e5e7eb;
}

.bg-gray-300 {
  background-color: #d1d5db;
}

.bg-gray-400 {
  background-color: #9ca3af;
}

.bg-gray-500 {
  background-color: #6b7280;
}

.bg-gray-600 {
  background-color: #4b5563;
}

.bg-gray-700 {
  background-color: #374151;
}

.bg-gray-800 {
  background-color: #1f2937;
}

.bg-gray-900 {
  background-color: #111827;
}

.bg-blue-50 {
  background-color: #eff6ff;
}

.bg-blue-500 {
  background-color: #3b82f6;
}

.bg-blue-600 {
  background-color: #2563eb;
}

.bg-red-500 {
  background-color: #ef4444;
}

.bg-green-500 {
  background-color: #10b981;
}

/* Border Radius */
.rounded-none {
  border-radius: 0;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* Border */
.border {
  border: 1px solid #e5e7eb;
}

.border-2 {
  border: 2px solid #e5e7eb;
}

.border-4 {
  border: 4px solid #e5e7eb;
}

.border-b {
  border-bottom: 1px solid #e5e7eb;
}

.border-t {
  border-top: 1px solid #e5e7eb;
}

.border-l {
  border-left: 1px solid #e5e7eb;
}

.border-r {
  border-right: 1px solid #e5e7eb;
}

/* Box Shadow */
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow {
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-md {
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-none {
  box-shadow: none;
}

/* Opacity */
.opacity-0 {
  opacity: 0;
}

.opacity-25 {
  opacity: 0.25;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  /* .site-main {
		padding: 20px 15px;
	} */

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }

  /* Responsive Flex */
  .md\:flex-col {
    flex-direction: column;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:gap-4 {
    gap: 1rem;
  }

  .md\:gap-6 {
    gap: 1.5rem;
  }

  .container:has(#garantia-content) {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/*catalogo*/
.catalogos-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
  justify-content: flex-start;
  padding-bottom: 3rem;
}

.catalogo-entry {
  display: flex;
  width: calc(50% - 20px);
  flex-direction: row;
  align-items: center;
}

.catalogo-image {
  width: 50%;
  flex-shrink: 0;
}

.catalogo-entry img {
  width: 225px !important;
  height: auto;
}

.catalogos-list a {
  text-decoration: none;
}

.catalogos-list h2,
.catalogos-list h2 a {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 1.2rem;
  margin: 0;
}

.catalogos-list h2 {
  margin-bottom: 10px;
}

.catalogo-content {
  padding-left: 20px;
  padding-right: 20px;
  width: 50%;
}

.catalogo-content p {
  margin: 0;
  padding: 0;
  line-height: 1.6rem;
}

.catalogo-content time {
  color: #0170b9;
  line-height: 24px;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 10px;
}

.catalogo-content time i {
  margin-right: 5px;
}

@media (max-width: 768px) {
  .catalogo-entry {
    width: calc(50% - 10px);
    flex-direction: column;
    align-items: flex-start;
  }

  .catalogo-image {
    width: 100%;
    margin-bottom: 10px;
  }

  .catalogo-entry img {
    width: 100% !important;
    height: auto;
  }

  .catalogo-content {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  .catalogos-list {
    gap: 20px;
    row-gap: 48px;
    padding: 15px;
    padding-bottom: 32px;
  }
}

/*catalogo*/

/*novedades*/
.news-container {
  padding: 60px 0;
}

.news-side-bar {
  padding: 20px;
  background-color: #ededed;
  font-family: "Roboto", sans-serif;
  color: #000000;
  border-radius: 10px;
  width: 220px;
}

.news-side-bar h2 {
  font-size: 20px;
  font-weight: 600;
}

.news-side-bar a {
  color: #54595f;
  text-decoration: underline;
  font-size: 15px;
  font-weight: 600;
}

.news-side-bar h1 {
  line-height: 18px;
  padding: 0;
}

.news-side-bar p {
  font-size: 12px;
  line-height: 15.6px;
  font-weight: 400;
  color: #adadad;
  padding: 0;
  margin: 0;
}

.news-entry {
  margin-bottom: 40px;
}

.news-side-bar .news-entry {
  margin-bottom: 0;
}

.news-image {
  display: inline-flex;
  width: 336px;
}

.news-image-wrapper {
  margin-right: 60px;
}

figure.news-image img {
  max-width: 356px !important;
  max-height: 280px !important;
  width: 356px;
  height: 280px;
  object-fit: cover;
}

.news-content {
  padding-right: 60px;
  max-width: 80%;
}

.news-content a {
  color: #000000;
  text-decoration: none;
  font-size: 26px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}

.btn-news-ver-mas {
  display: inline-flex;
  background-color: #0170b9;
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 3px;
  font-family: "Roboto", sans-serif;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-decoration: none;
  margin-top: 20px;
}

.share-links .share {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.share-links .share i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
  color: #ffffff;
}

.share-links .share:hover,
.share-links .share:focus-visible {
  filter: brightness(0.95);
  text-decoration: none;
}

.share-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.share-facebook {
  background-color: #3b5998 !important;
}

.share-facebook i {
  background-color: #2d4373;
}

.share-linkedin {
  background-color: #0077b5 !important;
}

.share-linkedin i {
  background-color: #005983;
}

.share-whatsapp {
  background-color: #25d366 !important;
}

.share-whatsapp i {
  background-color: #1fa855;
}

.share-email {
  background-color: #ea4335 !important;
}

.share-email i {
  background-color: #c8372c;
}

.share-links ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.share-links .share {
  width: 100%;
}

@media (min-width: 768px) {
  .share-links ul {
    grid-template-columns: repeat(4, max-content);
    justify-content: start;
  }

  .share-links .share {
    width: auto;
  }
}

@media (max-width: 768px) {
  .news-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .news-list {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .news-image {
    margin-right: 0;
  }

  .news-image-wrapper {
    margin-right: 0;
  }

  figure.news-image a {
    width: 100%;
  }

  figure.news-image img {
    max-height: 270px !important;
    width: 100%;
    height: 270px;
    object-fit: cover;
  }

  .news-entry {
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .news-side-bar {
    width: calc(100% - 40px);
    justify-content: flex-start;
  }

  .news-side-bar .news-entry {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }
}

/*novedades*/
/*empresa*/
.empresa-content {
  font-family: "Roboto", sans-serif;
}

.empresa-content h2 {
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 20px;
}

.empresa-content p {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: #000000;
  padding: 0;
  margin: 0;
  margin-bottom: 20px !important;
  text-align: center;
}

.mision-vision {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: #000000;
  padding: 0;
  margin: 0;
  margin-bottom: 20px !important;
  text-align: left;
}

.btn-descarga-aqui {
  display: inline-flex;
  background-color: #0170b9;
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 3px;
  font-family: "Roboto", sans-serif;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-decoration: none;
  margin-top: 20px;
  width: fit-content;
}

/* servicios */
.servicios-content {
  font-family: "Roboto", sans-serif;
}

.servicios-gallery .owl-carousel {
  position: relative;
}

.servicios-gallery .servicios-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .servicios-gallery .servicios-gallery-item img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    margin: 0 auto;
  }
}

.servicios-gallery .owl-nav {
  position: absolute;
  top: 50%;
  left: -20px;
  right: -20px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.servicios-gallery .owl-nav button {
  pointer-events: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #666666;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.servicios-gallery .owl-nav button:hover {
  background: #cfcfcf;
}

.servicios-gallery .owl-dots {
  margin-top: 12px;
}

.servicios-gallery .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
}

.services-campo {
  background-color: #f3f3f3;
}

.container-servicios {
  padding: 40px 0;
}

.form-servicios-container {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 30px 30px 30px 30px;
  border-radius: 10px;
  font-family: "Roboto", sans-serif;
}

.form-servicios-container .flex>.form-field {
  width: calc(50% - 10px);
}

.footer-servicios-container {
  margin: 0 auto;
  max-width: 50%;
}

.texto-azul {
  color: #336db4;
}

.footer-services-campo {
  padding: 40px 0;
}

.btn-cotizar {
  display: inline-flex;
  background-color: #0170b9;
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 3px;
  font-family: "Roboto", sans-serif;
  font-size: 20px !important;
  font-weight: 500 !important;
  margin-top: 20px;
  width: fit-content;
  text-decoration: none !important;
}

#inicio-form #crmWebToEntityForm {
  margin-top: 20px;
}

#crmWebToEntityForm .row {
  --hdi-gutter-x: 1.5rem;
  --hdi-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--hdi-gutter-y));
  margin-right: calc(-0.5 * var(--hdi-gutter-x));
  margin-left: calc(-0.5 * var(--hdi-gutter-x));
}

#crmWebToEntityForm .row>* {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(0.5 * var(--hdi-gutter-x));
  padding-left: calc(0.5 * var(--hdi-gutter-x));
  margin-top: var(--hdi-gutter-y);
}

#crmWebToEntityForm .g-3 {
  --hdi-gutter-x: 1rem;
  --hdi-gutter-y: 1rem;
}

#crmWebToEntityForm .row.g-3 {
  gap: var(--hdi-gutter-y) var(--hdi-gutter-x);
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
}

#crmWebToEntityForm .row.g-3>* {
  padding-right: 0;
  padding-left: 0;
  margin-top: 0;
}

#crmWebToEntityForm .col-12 {
  flex: 0 0 auto;
  width: 100%;
}

#crmWebToEntityForm .col-md-6 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  #crmWebToEntityForm .col-md-6 {
    width: calc(50% - (var(--hdi-gutter-x) / 2));
  }
}

#crmWebToEntityForm .mb-3 {
  margin-bottom: 1rem !important;
}

#crmWebToEntityForm .mb-4 {
  margin-bottom: 1.5rem !important;
}

#crmWebToEntityForm .mt-3 {
  margin-top: 1rem !important;
}

#crmWebToEntityForm .mb-md-0 {
  margin-bottom: 1rem !important;
}

@media (min-width: 768px) {
  #crmWebToEntityForm .mb-md-0 {
    margin-bottom: 0 !important;
  }
}

#crmWebToEntityForm .position-relative {
  position: relative !important;
}

#crmWebToEntityForm .text-center {
  text-align: center !important;
}

#crmWebToEntityForm .text-start {
  text-align: left !important;
}

#crmWebToEntityForm .fw-bold {
  font-weight: 700 !important;
}

#crmWebToEntityForm .form-control,
#crmWebToEntityForm .form-select {
  display: block;
  width: 100%;
}

#crmWebToEntityForm .form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}

#crmWebToEntityForm .form-check-input {
  float: left;
  margin-left: -1.5em;
  margin-top: 0.25em;
}

#crmWebToEntityForm .form-check-label {
  margin-bottom: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0 10px;
  height: 40px;
  border-radius: 0 !important;
}

.equipment-gallery {
  padding-top: 20px;
}

.equipment-gallery .gallery-item {
  max-width: 50%;
  width: 100%;
}

.equipment-gallery .gallery-image {
  width: 100%;
  height: auto;
  display: block;
}

.equipment-content {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.equipment-content-item {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}

.equipment-content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.tipos-equipamiento {
  padding: 60px 0;
}

.tipos-equipamiento .equipment-content-item img {
  width: 100%;
}

.boton-ver-mas {
  display: inline-flex;
  background-color: #0170b9;
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 3px;
  font-family: "Roboto", sans-serif;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  margin-top: 20px;
  width: fit-content;
}

.items-hartridge-content {
  padding: 40px 0;
  background-color: #efefef;
}

.hartridge-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.5em;
  color: #767676;
  box-shadow: 0px 0px 10px -3px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.hartridge-item h3 {
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: #006380;
}

/* Jaltest Item Styles */
.jaltest-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  line-height: 1.5em;
  color: #767676;
  border: 1px solid #000;
  border-radius: 10px;
}

.jaltest-item h3 {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  width: 50%;
  margin-top: 10px;
}

.que-es-hartridge {
  padding: 40px 0;
  background-color: #006380;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
}

.que-es-hartridge h2 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 800;
}

.hartridge-about-text {
  font-size: 15px;
  line-height: 1.6em;
  font-weight: 400;
  color: #ffffff;
  padding: 20px 0;
  text-align: left;
  padding-right: 10%;
}

.nuestros-productos-hartridge {
  padding: 60px 0;
  font-family: "Roboto", sans-serif;
}

.nuestros-productos-hartridge h2 {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #006380;
}

.hartridge-products {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .hartridge-products {
    flex-direction: column;
  }

  .form-servicios-container {
    padding: 0;
  }
}

.fondo-plomo {
  background-color: #e3edee;
}

#equipos-hartridge {
  padding: 60px 0;
}

#equipos-hartridge h2 {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #006380;
}

#equipos-hartridge .productos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

#equipos-hartridge .producto-item {
  background-color: #e3edee;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #9b9b9b;
}

#equipos-hartridge .producto-image {
  background-color: #016380;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#equipos-hartridge .producto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#equipos-hartridge .producto-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#equipos-hartridge .producto-title {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin: 0;
  text-align: left;
}

#equipos-hartridge .btn-ver-mas {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: transparent;
  border: 2px solid #016380;
  border-radius: 5px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #016380;
  font-size: 14px;
}

#equipos-hartridge .btn-ver-mas:hover {
  background-color: #016380;
  color: #fff;
}

#equipos-hartridge .btn-ver-mas svg {
  width: 27px;
  height: 27px;
  fill: #016380;
  transition: fill 0.3s ease;
}

#equipos-hartridge .btn-ver-mas:hover svg {
  fill: #fff;
}

@media (max-width: 1024px) {
  #equipos-hartridge .productos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  #equipos-hartridge .productos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

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

@media (max-width: 480px) {
  #equipos-hartridge {
    padding: 60px 20px;
  }

  #equipos-hartridge .productos-grid {
    grid-template-columns: 1fr;
  }

  #equipos-hartridge .producto-title {
    font-size: 14px;
  }

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

/* Equipos Scanner Styles */
#equipos-scanner {
  padding: 0 0 60px 0;
}

#equipos-scanner h2 {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #006380;
}

#equipos-scanner .productos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 40px;
}

#equipos-scanner .producto-item {
  /* background-color: #E3EDEE; */
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #9b9b9b;
}

#equipos-scanner .producto-image {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#equipos-scanner .producto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#equipos-scanner .producto-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#equipos-scanner .producto-title {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #027dba;
  margin: 0;
  text-align: left;
}

#equipos-scanner .btn-ver-mas {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #027dba;
  color: #ffffff !important;
  border-radius: 5px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #016380;
  font-size: 14px;
}

.btn-ver-mas.btn-ver-todos {
  display: block;
  width: fit-content;
  margin: 60px 0 0 0;
}

#equipos-scanner .btn-ver-mas:hover {
  color: #fff;
}

#equipos-scanner .btn-ver-mas svg {
  width: 27px;
  height: 27px;
  fill: #016380;
  transition: fill 0.3s ease;
}

#equipos-scanner .btn-ver-mas:hover svg {
  fill: #fff;
}

@media (max-width: 1024px) {
  #equipos-scanner .productos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  #equipos-scanner .productos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  #equipos-scanner {
    padding: 60px 20px;
    padding-top: 0.25rem;
  }

  #equipos-scanner .productos-grid {
    grid-template-columns: 1fr;
  }

  #equipos-scanner .producto-title {
    font-size: 14px;
  }
}

/* Novedades Hartridge */
#novedades-hartridge {
  padding: 60px 0 60px 0;
}

#novedades-hartridge .novedades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

#novedades-hartridge .novedad-item {
  position: relative;
}

#novedades-hartridge .novedad-item-image-wrapper {
  display: block;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
}

#novedades-hartridge .novedad-item-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

#novedades-hartridge .novedad-item-image-wrapper:hover .novedad-item-image {
  transform: scale(1.05);
}

#novedades-hartridge h2 {
  color: #006380;
  font-family: "Roboto", Sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-top: 0;
  padding-top: 0;
}

#novedades-hartridge .novedad-item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  padding: 20px;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  line-height: 1.4;
}

.fondo-verde {
  background-color: #016380;
  padding: 20px 0;
  font-family: "Roboto", Sans-serif;
  font-size: 30px;
  font-weight: 900;
}

@media (max-width: 1024px) {
  #novedades-hartridge .novedades-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #novedades-hartridge .novedades-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  #novedades-hartridge {
    padding: 60px 20px;
  }
}

/* Novedades Jaltest */
#novedades-jaltest {
  padding: 60px 0 60px 0;
}

#novedades-jaltest .novedades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

#novedades-jaltest .novedades-grid.cols-1 {
  grid-template-columns: 1fr;
}

#novedades-jaltest .novedades-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

#novedades-jaltest .novedades-grid.cols-1,
#novedades-jaltest .novedades-grid.cols-2 {
  justify-items: center;
}

#novedades-jaltest .novedad-item {
  position: relative;
  width: 100%;
  max-width: calc((100% - 40px) / 3);
}

#novedades-jaltest .novedad-item-image-wrapper {
  display: block;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
}

#novedades-jaltest .novedad-item-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

#novedades-jaltest .novedad-item-image-wrapper:hover .novedad-item-image {
  transform: scale(1.05);
}

#novedades-jaltest h2 {
  color: #000000;
  font-family: "Roboto", Sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 0;
  padding-top: 0;
}

#novedades-jaltest .novedad-item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  padding: 20px;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  line-height: 1.4;
}

.equipamiento-content {
  padding-bottom: 3rem;
}

@media (max-width: 1024px) {
  #novedades-jaltest .novedades-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #novedades-jaltest .novedades-grid.cols-1 {
    grid-template-columns: 1fr;
  }

  #novedades-jaltest .novedad-item {
    max-width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 768px) {
  #novedades-jaltest .novedades-grid {
    grid-template-columns: 1fr;
  }

  #novedades-jaltest .novedad-item {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  #novedades-jaltest {
    padding: 60px 20px;
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  .equipamiento-content .container {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }

  .equipment-gallery {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .equipamiento-content .equipment-gallery>.gallery-item {
    max-width: 100%;
  }

  .equipment-gallery img {
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .equipment-content-item {
    width: 100%;
  }

  .footer-servicios-container {
    max-width: calc(100% - 40px);
    padding: 20px;
  }

  .form-field {
    display: flex;
    flex-direction: row !important;
    width: 100% !important;
  }

  .form-field p {
    width: 100%;
    display: flex;
  }

  .wpcf7-form-control-wrap,
  .wpcf7-form-control {
    display: flex;
    width: 100% !important;
  }

  .container-servicios {
    padding-left: 20px;
    padding-right: 20px;
  }

  .servicios-content .w-1\/4,
  .servicios-content .w-3\/4 {
    width: 100%;
  }

  .servicios-content .w-3\/4 {
    padding: 20px 0;
  }

  .servicios-gallery .owl-nav button {
    width: 32px;
    height: 32px;
  }

  .servicios-gallery .owl-nav {
    left: 0;
    right: 0;
  }

  .servicios-gallery .servicios-gallery-item img {
    max-width: 80%;
    width: auto;
    height: auto;
    margin: 0 auto;
  }

  /* Mobile layout: carousels first, text below with alternating alignment */
  .servicios-row {
    flex-wrap: wrap;
  }

  .servicios-row .gallery-container,
  .servicios-row .servicios-text {
    width: 100% !important;
  }

  .servicios-row .gallery-container {
    order: 1;
  }

  .servicios-row .servicios-text {
    order: 2;
    padding: 20px 0 !important;
  }

  /* Alternating text alignment */
  .servicios-text-1 {
    text-align: left;
  }

  .servicios-text-2 {
    text-align: right;
  }

  .servicios-text-3 {
    text-align: left;
  }
}

/* Videos Grid Hartridge */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.video-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-item iframe {
  border-radius: 8px;
  width: 350px;
  height: 200px;
}

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

@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .video-item iframe {
    width: 280px;
    height: 160px;
  }
}

/* Hartridge Demo Section */
.hartridge-demo-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
}

.hartridge-demo-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  height: 100%;
}

.hartridge-demo-title {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #016380;
  margin: 0;
  line-height: 1.2;
}

.hartridge-demo-contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.hartridge-demo-contact-item i {
  font-size: 24px;
  color: #016380;
  width: 30px;
  text-align: center;
  flex-shrink: 0;
}

.hartridge-demo-contact-value {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin: 0 0 5px 0;
}

.hartridge-demo-contact-label {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: #666;
  margin: 0;
}

.hartridge-demo-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hartridge-demo-form-title {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #016380;
  margin: 0;
  line-height: 1.4;
}

.footer-hartridge a {
  color: #fff !important;
}

/*formulario cliente*/
#crmWebToEntityForm {
  max-width: 500px;
  margin: 30px auto;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  font-family: sans-serif;
}

.form-inicio-container #crmWebToEntityForm {
  padding: 32px;
}

.hartridge-demo-right #crmWebToEntityForm {
  margin: unset;
}


.zcwf_title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.form-control {
  background-color: #f2f2f2 !important;
  border: 1px solid transparent !important;
  border-radius: 10px !important;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  background-color: #fff !important;
  border-color: #0076b6 !important;
  box-shadow: 0 0 0 0.25rem rgba(0, 118, 182, 0.1);
}

.error-tooltip {
  position: absolute;
  z-index: 1000;
  display: none;
  align-items: center;
  background: white;
  border: 1px solid #ced4da;
  padding: 8px 15px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  margin-top: 8px;
  left: 15px;
}

/* Triángulo del globo */
.error-tooltip::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 15px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

.error-icon {
  background-color: #ff9800;
  color: white;
  font-weight: bold;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  font-size: 14px;
}

/* Botón redondeado azul */
.btn-send {
  background-color: #0076b6 !important;
  border: none;
  border-radius: 50px;
  padding: 10px 40px;
  font-weight: bold;
  float: right;
}

/* Clase para resaltar campo con error */
.is-invalid-custom {
  border: 1px solid #dc3545 !important;
  background-color: #fff5f5 !important;
}

/*formulario cliente*/

/*formulario servicios*/
.form-servicios-container #crmWebToEntityForm {
  max-width: 650px;
  margin: 30px auto;
  padding: 45px;
  border-radius: 15px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
}

.form_header_title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #000;
}

.form_header_subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 25px;
}

.form-servicios-container .form-control,
.form-servicios-container .form-select {
  background-color: #ffffff !important;
  border: 1px solid #ced4da !important;
  border-radius: 4px !important;
  padding: 10px 15px;
  font-size: 15px;
  font-family: inherit;
}

.form-servicios-container .form-control:focus,
.form-servicios-container .form-select:focus {
  outline: none;
  border-color: #0071b1 !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 113, 177, 0.15);
}

.form-servicios-container .btn-cotizar {
  background-color: #0071b1 !important;
  border: none;
  border-radius: 4px;
  padding: 12px 40px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-servicios-container .btn-cotizar:hover {
  background-color: #005a8f !important;
}

.error-tooltip-custom {
  position: absolute;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid #ccc;
  padding: 7px 12px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 5px;
  white-space: nowrap;
  left: 0;
  top: 100%;
}

.error-tooltip-custom::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 15px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

.form-servicios-container .error-icon {
  background-color: #ff9800;
  color: white;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  font-size: 12px;
}

.form-servicios-container .is-invalid-custom {
  border: 1px solid #dc3545 !important;
}

.form-servicios-container .form-check-label {
  font-size: 14px;
  color: #333;
  margin-left: 5px;
}

.form-servicios-container .form-check-input {
  width: 18px;
  height: 18px;
  border: 1px solid #ced4da;
  border-radius: 3px;
  cursor: pointer;
}

.form-servicios-container .form-check-input:checked {
  background-color: #0071b1;
  border-color: #0071b1;
}

.texto-azul {
  color: #336db4;
}

.form-servicios-container .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

.form-servicios-container .row.g-3 {
  gap: 1rem;
}

.form-servicios-container .col-md-6 {
  flex: 0 0 calc(50% - 0.5rem);
  min-width: 0;
}

.form-servicios-container .mb-3 {
  margin-bottom: 1rem;
}

.form-servicios-container .mb-4 {
  margin-bottom: 1.5rem;
}

.form-servicios-container .mb-md-0 {
  margin-bottom: 0;
}

.form-servicios-container .text-center {
  text-align: center;
}

.form-servicios-container .text-start {
  text-align: left;
}

.text-servicios-form {
  font-size: 1.2rem;
  color: #666;
  margin-top: 0;
}

@media (max-width: 768px) {
  .form-servicios-container #crmWebToEntityForm {
    padding: 30px 20px;
  }

  .col-md-6 {
    flex: 0 0 100%;
  }

  .form_header_title {
    font-size: 20px;
  }

  .form_header_subtitle {
    font-size: 16px;
  }

  .form-servicios-container .col-md-6 {
    flex: 0 0 100%;
  }
}

/*formulario servicios*/

/* ===========================
   FORMULARIO HARTRIDGE
   =========================== */

.hartridge-form-wrapper {
  margin-top: 20px;
}

.hartridge-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hartridge-form-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hartridge-form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.hartridge-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

input.hartridge-form-control,
textarea.hartridge-form-control {
  padding: 12px 16px;
  border-color: transparent !important;
  border-radius: 10px !important;
  background-color: #f0f0f0;
  color: #333;
  font-size: 14px;
  font-family: inherit;
  transition: background-color 0.3s ease;
}

.hartridge-form-control::placeholder {
  color: #999;
}

.hartridge-form-control:focus {
  outline: none;
  background-color: #e8e8e8;
}

.hartridge-form-control.hartridge-field-error {
  background-color: #ffe6e6;
  border-left: 3px solid #d32f2f;
}

textarea.hartridge-form-control {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.hartridge-error-tooltip {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  padding: 8px 12px;
  background-color: #d32f2f;
  color: white;
  font-size: 12px;
  border-radius: 3px;
  z-index: 10;
  white-space: nowrap;
}

.hartridge-error-tooltip::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #d32f2f;
}

.hartridge-error-text {
  font-weight: 500;
}

.hartridge-form-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.hartridge-btn-send {
  padding: 12px 40px;
  border: none;
  border-radius: 25px;
  background-color: #016380;
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  font-family: inherit;
}

.hartridge-btn-send:hover:not(:disabled) {
  background-color: #014d61;
  transform: translateY(-2px);
}

.hartridge-btn-send:active:not(:disabled) {
  transform: translateY(0);
}

.hartridge-btn-send:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.fondo-negro {
  background-color: #000000;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}

.footer-hartridge {
  padding: 40px 0;
}

@media (max-width: 1024px) {
  .hartridge-demo-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

@media (max-width: 768px) {
  .hartridge-demo-title {
    font-size: 24px;
  }

  .hartridge-form-title {
    font-size: 16px;
  }

  .hartridge-form-control {
    font-size: 16px;
  }
}

/* ===========================
   MAPA HARTRIDGE
   =========================== */

.hartridge-map-section {
  padding: 0;
  margin: 0;
}

.hartridge-map-container {
  width: 100%;
  overflow: hidden;
  filter: grayscale(100%);
}

.hartridge-map-container iframe {
  width: 100%;
  height: 450px;
  border: none !important;
  display: block;
}

/* Footer Social Media */
.footer-social-media {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer-social-icon {
  color: #fff;
  font-size: 20px !important;
  transition: opacity 0.3s ease;
}

.footer-social-icon i {
  font-size: 20px !important;
}

.footer-social-icon:hover {
  opacity: 0.7;
}

.footer-text-hartridge {
  color: #ffffff;
  font-family: "Poppins", Sans-serif;
  font-weight: 400;
  line-height: 1.3em;
}

/* Hartridge Items - Mobile Responsive */
.hartridge-items {
  flex-wrap: nowrap;
}

.hartridge-items>* {
  flex: 1 1 0;
  min-width: 0;
}

@media (max-width: 1024px) {
  .hartridge-items>* {
    flex: 0 0 100%;
    width: 100%;
  }

  .hartridge-items {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

/* Jaltest Items - Mobile Responsive */
.jaltest-items {
  flex-wrap: nowrap;
  padding: 60px 0;
}

.jaltest-items>* {
  flex: 1 1 0;
  min-width: 0;
}

.relative {
  position: relative;
}

@media (max-width: 1024px) {
  .jaltest-items>* {
    flex: 0 0 100%;
    width: 100%;
  }

  .jaltest-items {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

/* Modelos Titulo */
.modelos-disponibles-container {
  margin: 40px 0;
}

.modelos-titulo {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  min-height: 200px;
}

.modelos-titulo * {
  color: #ffffff;
  font-family: "Roboto", Sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.5rem !important;
}

@media (max-width: 768px) {
  .hartridge-about {
    flex-direction: column;
  }

  .hartridge-about-text,
  .hartridge-about-image {
    width: 100% !important;
    padding-left: 20px;
    padding-right: 20px;
  }

  .nuestros-productos-hartridge {
    grid-template-columns: 1fr !important;
  }

  .hartridge-items {
    flex-direction: column;
  }

  .hartridge-item {
    width: 100%;
  }
}

/* Jaltest Template - Form Overlay */
.jaltest-banner-container {
  position: relative;
  min-height: 40rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.jaltest-form-overlay {
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  z-index: 10;
  max-width: 400px;
}

/* Jaltest Beneficios Overlay */
.jaltest-beneficios-overlay {
  position: relative;
  top: 0;
  left: 50%;
  width: 50%;
  height: fit-content;
  background-color: rgba(2, 125, 186, 0.89);
  padding: 60px;
  color: #ffffff;
}

.jaltest-beneficios-title {
  width: 50%;
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  font-weight: 400;
}

.jaltest-beneficios-item {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.jaltest-beneficios-item img {
  margin-top: 20px;
}

.jaltest-beneficios-section>img {
  width: 100% !important;
  max-height: 700px !important;
}

#todos-modelos h2 {
  color: #027dba;
  font-family: "Poppins", Sans-serif;
  font-size: 1.75rem !important;
  font-weight: 700;
}

#todos-modelos h2 span {
  font-weight: 300;
}

#todos-modelos p {
  font-family: "Poppins", Sans-serif;
  font-weight: 300;
}

@media (max-width: 768px) {
  .jaltest-beneficios-section {
    min-height: 100dvh;
    height: 100%;
  }

  .jaltest-beneficios-section img {
    height: 100% !important;
  }

  .jaltest-beneficios-item {
    display: flex;
    gap: unset;
    margin-top: 40px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .jaltest-beneficios-item img {
    width: 50px;
  }

  .jaltest-beneficios-overlay {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 125, 186, 0.89);
    padding: 20px;
    padding-top: 60px;
    padding-bottom: 60px;
    z-index: 2;
    color: #ffffff;
  }

  .jaltest-beneficios-title {
    width: 100%;
    font-family: "Roboto", sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    text-align: left;
    line-height: 2.25rem;
  }

  .jaltest-banner-container {
    max-height: 540px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .jaltest-banner-container .page-header-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
  }

  .jaltest-form-overlay {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 0;
    padding: 20px 0;
    max-width: 95%;
    z-index: 10;
    width: 100%;
  }

  #form-container .form-group div:has(input) {
    width: 100%;
  }

  .producto-image {
    height: auto !important;
  }

  .page-header-image[alt="Servicios"] {
    height: 200px;
    object-fit: cover;
    object-position: 25%;
  }
}

.modelos-image {
  height: 200px;
  object-fit: cover;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.font-poppins {
  font-family: "Poppins", sans-serif;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.e-fas-circle {
  width: 1rem;
  height: 1rem;
}

#menu-productos-1,
#menu-servicios,
#menu-legal {
  padding-left: 0;
}

@media screen and (max-width: 1024px) {
  #form-container .form-group {
    flex-direction: column;
  }
}