@charset "UTF-8";
/* _variables.scss */
:root {
  --altura-header: 82px;
}

/* Colors, fonts, and mixins can be added here */
.text-logista-sales-rcp {
  color: #3CB4E8 !important;
}

.text-verde-oscuro {
  color: #2E7A6D !important;
}

.text-farmacia {
  color: #2ECC71 !important;
}

.text-autopartes {
  color: #5DADE2 !important;
}

.text-retail {
  color: #F39C12 !important;
}

.noticias {
  max-width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 60px;
}

.noticia {
  max-width: 100%;
}

.noticia-foto {
  width: 100%;
}

.noticia-foto img {
  width: 100%;
  height: auto;
}

.noticia-titulo h2 {
  margin: 0px;
  padding: 0px;
  line-height: 1em;
}

.noticia-parrafo p {
  margin: 0px;
  padding: 0px;
  line-height: 1em;
  margin-top: 10px;
  text-align: justify;
}

.noticia-parrafo {
  margin-top: 25px;
  padding: 0px;
}

.noticia-link {
  margin-top: 25px;
  padding: 0px;
}

.noticia-link a {
  text-decoration: none;
  color: #2E7A6D;
  font-size: 1.2em;
}

.txt-erp {
  color: #05A3E8 !important;
}

.txt-b2b {
  color: #8B91D8 !important;
}

.txt-pos {
  color: #F5C542 !important;
}

.txt-whs {
  color: #F57C42 !important;
}

.txt-sales {
  color: #53BD99 !important;
}

/* _base.scss - Resets and Basic Typography */
/* .fredoka-<uniquifier> {
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
} */
.section-header-top-margin {
  /* margin-top: 64px; */
  /* margin-top: var(--altura-header); */
  margin-top: 64px;
}

.fredoka-light {
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.fredoka-regular {
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.fredoka-medium {
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.fredoka-semibold {
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
}

.section {
  width: 100%;
}

/* _header.scss */
header {
  background-color: rgba(255, 255, 255, 0.2);
  position: sticky;
  top: 0px;
  left: 0px;
  width: 100%;
  color: white;
  z-index: 1000;
  padding: 15px 15px;
  box-sizing: border-box;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.color-header {
  /* background-color: rgba(227, 246, 232, 0.8); */
  background-color: rgba(255, 255, 255, 0.7);
}

.header-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

.header-logo img {
  height: 30px;
  width: auto;
}

.menu {
  width: 25px;
  height: 25px;
  /* background-color: #46C98F; Removed to show SVG */
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu img {
  width: 100%;
  height: auto;
}

.header-desktop {
  display: none;
}

@media (min-width: 1200px) {
  .header-mobile {
    display: none;
  }
  .menu-container {
    display: none;
  }
  .header-desktop {
    display: block;
  }
  .header-menu-pc {
    flex-shrink: 0;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
  .header-menu-pc ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
  .header-menu-pc ul li a {
    text-decoration: none;
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: #2E7A6D;
  }
  /* Dropdown Caret Styles */
  .header-menu-pc ul li.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .header-menu-pc ul li.has-dropdown > a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid #2E7A6D;
    border-bottom: 1px solid #2E7A6D;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform 0.3s ease;
  }
  .header-menu-pc ul li.has-dropdown:hover > a::after {
    transform: rotate(225deg);
    margin-top: 4px;
  }
  /* Dropdown Menu Styles */
  .header-menu-pc ul li {
    position: relative;
  }
  .header-menu-pc ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: -20px;
    flex-direction: column;
    gap: 0px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    min-width: 240px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    border-radius: 16px;
    z-index: 1000;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-top: 15px;
  }
  /* Bridge the gap so the menu doesn't close */
  .header-menu-pc ul li ul::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
  }
  .header-menu-pc ul li:hover > ul {
    display: flex;
    animation: fadeInMenu 0.3s ease forwards;
  }
  .header-menu-pc ul li ul li {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .header-menu-pc ul li ul li a {
    display: block;
    padding: 12px 25px;
    font-size: 15px;
    color: #6C8184;
    transition: all 0.2s ease;
    font-weight: 400;
    width: 100%;
    box-sizing: border-box;
  }
  .header-menu-pc ul li ul li a:hover {
    background-color: #E7FFF6;
    color: #2E7A6D;
    padding-left: 30px;
  }
  @keyframes fadeInMenu {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .header-redes-pc {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
  .header-redes-pc a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    height: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .header-redes-pc a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0) saturate(100%) invert(86%) sepia(8%) saturate(191%) hue-rotate(127deg) brightness(89%) contrast(89%);
  }
}
/* _footer.scss */
/* Footer styles here */
/* For now, just a placeholder or minimal styles if extracted */
/* 
Legacy Styles 
TODO: Keep moving code from here to modules
*/
.nosotros-section-3-cta {
  display: none;
}

.footer-item .menu-link-parent {
  justify-content: center;
}

.footer-item .submenu {
  display: none;
  border-right: none;
  padding-right: 0 !important;
  margin-right: 0 !important;
}

.footer-item .has-submenu.open .submenu {
  display: flex;
  gap: 4px;
}

.footer-item .submenu {
  margin-top: 15px;
}

.footer-item .submenu li a {
  color: #fff !important;
  font-size: 20px !important;
  padding: 0px 0 !important;
  padding-bottom: 10px !important;
}

.barra-scroll {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  height: 5px;
  background-color: #F4F4F4;
}

.barra-scroll-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.barra-scroll-indicador {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #4FAC83;
  transition: width 0.1s linear;
}

.solucion {
  margin-top: 60px;
}

.testominos-content {
  margin: 0px !important;
  padding: 0px !important;
}

.testimonios-container {
  margin: 0px 0px;
  margin-bottom: 60px;
}

.hecho-container-img-pc {
  display: none;
}

.hecho-container-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.breadcrumb {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  padding-top: 50px;
}

.breadcrumb h4 {
  color: #6C8184;
  font-size: 24px;
  margin: 0px;
  padding: 0px;
  line-height: 1.2em;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 0px;
}

.solution-logo {
  width: 150px;
  height: auto;
  margin: auto;
}

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

.section {
  box-sizing: border-box;
  padding: 60px 0px;
  overflow: hidden;
}

.section > h1 {
  text-align: center;
  margin-top: 0px;
  box-sizing: border-box;
  padding: 0px 5%;
  color: #2E7A6D;
}

.section-ilustration {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  padding: 30px;
}

.section-ilustration img {
  width: 100%;
  height: auto;
  display: block;
}

.section > h2 {
  color: #2D403D;
  font-size: 30px;
  margin: 0px;
  line-height: 1em;
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 0.5em;
  padding: 0px 10px;
}

.section > h2.green-title {
  color: #ffffff;
  background-color: #33685F;
  font-size: 24px;
  width: 95%;
  margin: auto;
  line-height: 1em;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 10px;
}

.section > p {
  color: #6C8184;
  font-size: 23px;
  margin: 0px;
  padding: 0px;
  line-height: 1.2em;
  text-align: center;
  box-sizing: border-box;
  padding: 0px 30px;
}

.fnd-gris {
  background-color: #FAFAFA;
  overflow: hidden;
  max-width: 100%;
}

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

.separador-tiresia-content {
  height: 2px;
  background-color: rgb(231, 231, 231);
  width: 90%;
}

.section-just-text h2 {
  font-size: 26px;
  color: #2E7A6D;
}

.section-cards-1 {
  overflow: hidden;
  padding-bottom: 60px;
  width: 100%;
}

.section-cards-1-track {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: max-content;
  padding: 20px 0;
  cursor: grab;
  user-select: none;
  animation: carousel-slide 14s linear infinite;
}
.section-cards-1-track.is-paused {
  animation-play-state: paused;
  cursor: grabbing;
}

.section-cards-1-card {
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  min-width: 260px;
  width: 300px;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 14px 20px;
  text-decoration: none;
  color: #484848;
  font-size: 24px;
}

.section-cards-1-card img {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

@keyframes carousel-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.beneficios {
  overflow: hidden;
  padding-bottom: 60px;
  width: 100%;
}

.beneficios-track {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: max-content;
  padding: 20px 0;
  cursor: grab;
  user-select: none;
  animation: carousel-slide 28s linear infinite;
}
.beneficios-track.is-paused {
  animation-play-state: paused;
  cursor: grabbing;
}

.beneficio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  min-width: 230px;
  width: 230px;
  height: auto;
  box-sizing: border-box;
  padding: 20px 14px;
  text-decoration: none;
  color: #484848;
  font-size: 24px;
  flex-shrink: 0;
}

.modalidades {
  max-width: 100%;
  overflow: hidden;
}

.modalidades-content {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  padding: 20px 0;
  cursor: grab;
  user-select: none;
  will-change: transform;
}
.modalidades-content.is-dragging {
  cursor: grabbing;
}

.modalidad {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  min-width: 230px;
  width: 250px;
  box-sizing: border-box;
  text-decoration: none;
  color: #484848;
  font-size: 24px;
  flex-shrink: 0;
}

.modalidad img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0px;
  padding: 0px;
}

.modalidad h2,
.modalidad p {
  margin: 0px;
  padding: 0px;
}

.modalidad h2 {
  line-height: 0.8em;
  padding: 10px 10px;
  font-size: 30px;
}

.modalidad p {
  line-height: 1em;
  padding: 10px 10px;
  font-size: 20px;
  padding-bottom: 20px;
}

.beneficios h2 {
  text-align: center;
  padding: 0px;
  margin: 0px;
  color: #6C8184;
  font-size: 30px;
  margin-bottom: 40px;
  padding-top: 60px;
}

.sectores {
  padding: 60px 0px;
}

.sectores .sectores-title > h2 {
  text-align: center;
  padding: 0px;
  margin: 0px;
  color: #6C8184;
  font-size: 30px;
  margin-bottom: 40px;
  padding-top: 60px;
}

.sectores-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.sector {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 90%;
  text-decoration: none;
}

.sector-icon img {
  width: 150px;
  height: auto;
}

.sector-text h2 {
  margin: 0px;
  padding: 0px;
  text-align: center;
  color: #2D403D;
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.tipos-clientes-tarjetas {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  padding-bottom: 60px;
}

.tipos-clientes-tarjeta {
  position: relative;
  overflow: hidden;
  width: 300px;
  background-color: #ffffff;
}

.tipos-clientes-tarjeta-img img {
  width: 100%;
  height: auto;
  display: block;
}

.tipos-clientes-tarjeta-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.tipos-clientes-tarjeta-text h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  margin: 0px;
  padding: 0px;
  padding-left: 20px;
  box-sizing: border-box;
  width: 90%;
  font-size: 16px;
}

.tipos-clientes-tarjeta-text h2 strong {
  font-weight: 500;
}

.tipos-clientes-titulo > h2 {
  color: #2D403D;
  font-size: 30px;
  margin: 0px;
  line-height: 1em;
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 0.5em;
  padding: 0px 10px;
  margin-bottom: 40px;
}

.soluciones-bg .section {
  padding: 40px 0px;
  box-sizing: border-box;
}

.soluciones-bg .solucion-bottom {
  margin-bottom: 20px;
}

.form-error {
  color: red;
  font-size: 12px;
  margin-top: 2px;
}

.form-success p {
  color: green;
  font-size: 12px;
  margin-top: 2px;
}

/* .fredoka-<uniquifier> {


  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;


} */
:root {
  --altura-header: 82px;
}

.section-header-top-margin {
  margin-top: 64px;
}

.fredoka-light {
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.fredoka-regular {
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.fredoka-medium {
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.fredoka-semibold {
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
}

header {
  background-color: rgba(255, 255, 255, 0.2);
  position: sticky;
  top: 0px;
  left: 0px;
  width: 100%;
  color: white;
  z-index: 1000;
  padding: 15px 15px;
  box-sizing: border-box;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.color-header {
  /* background-color: rgba(227, 246, 232, 0.8); */
  background-color: rgba(255, 255, 255, 0.7);
}

header {
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.05);
}

.header-container {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

.header-logo img {
  height: 30px;
  width: auto;
}

.menu {
  width: 25px;
  height: 25px;
  /* background-color: #46C98F; Removed to show SVG */
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu img {
  width: 100%;
  height: auto;
}

.section {
  width: 100%;
}

.index-section-1 {
  background-color: #ffffff;
  width: 100%;
  max-width: 100%;
  flex-direction: column;
  padding: 0px 20px 20px 20px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.index-section-1-slides {
  height: 100%;
  width: 300%;
  /* 3 slides × 100% cada uno */
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.index-section-1-slide-1 {
  /* Slide */
  min-width: 33.33%;
  /* 1/3 del contenedor total */
  width: 33.33%;
  height: 100%;
  flex-shrink: 0;
}

.index-section-1-slide-bg {
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: relative;
  background-image: url(../img/fnd_inicio.avif);
}

.index-section-1-slide-1-bg-color {
  height: 100%;
  width: 100%;
  background-color: rgba(23, 86, 71, 0.8);
  mix-blend-mode: multiply;
  position: absolute;
  z-index: 10;
  top: 0px;
  left: 0px;
}

.index-section-1-slide-1-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  color: #ffffff;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 20;
  top: 0px;
  left: 0px;
  padding: 0px 25px;
  box-sizing: border-box;
}

.chat {
  position: fixed;
  bottom: 1%;
  right: 3%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.chat img {
  height: 100%;
  width: auto;
}

/* Slider Controls */
.slider-container {
  position: relative;
  border-radius: 35px;
  overflow: hidden;
  width: 100%;
  margin-top: 20px;
  height: 650px;
}

@media (min-width: 1024px) {
  .slider-container {
    margin-top: 0;
    height: 100%;
  }
}
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.slider-nav:hover {
  background: rgb(255, 255, 255);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 100;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dot.active {
  background: rgb(255, 255, 255);
}

/* Estilos específicos para cada slide */
.slide-0 .index-section-1-slide-bg {
  background-image: url(../img/banner.png);
}

.slide-1 .index-section-1-slide-bg {
  background-image: url(../img/banner.png);
  /* Puedes cambiar por otra imagen si tienes */
}

.slide-1 .index-section-1-slide-bg-color {
  background-color: rgba(86, 23, 71, 0.8);
  /* Color diferente para slide 2 */
}

.slide-2 .index-section-1-slide-bg {
  background-image: url(../img/banner.png);
  /* Puedes cambiar por otra imagen si tienes */
}

.slide-2 .index-section-1-slide-bg-color {
  background-color: rgba(23, 71, 86, 0.8);
  /* Color diferente para slide 3 */
}

.slider-nav {
  display: none;
}

.index-section-1-slide-1-content h2 {
  width: 226px;
  text-align: center;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
  font-size: 33px;
  line-height: 1em;
  margin: 0px;
  padding: 0px;
  padding-bottom: 30px;
}

.index-section-1-slide-1-content p {
  text-align: center;
  font-size: 20px;
  margin: 0px;
  padding: 0px;
  padding-bottom: 30px;
}

.index-section-1-slide-1-content .button-container p {
  margin: 0px;
  padding: 0px;
}

.index-section-1-slide-1-content .button-container p a {
  display: block;
  text-decoration: none;
  background-color: #E7FFF6;
  color: #2D403D;
  padding: 10px 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.index-section-1-slide-1-content .scroll {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 10px;
}

.index-section-1-slide-1-content .scroll span {
  font-size: 12px;
  color: #E7FFF6;
  opacity: 1;
  margin-bottom: 8px;
}

.index-section-1-slide-1-content .scroll img {
  height: 22px;
  width: auto;
}

.index-section-2 {
  background-color: #ffffff;
  min-height: 0;
  height: auto;
  padding: 100px 0px;
  width: 100%;
  max-width: 100%;
}

.goals {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 40px;
}

.goal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 90px;
}

.goal img {
  margin-bottom: 10px;
}

.goal h3 {
  text-align: center;
  margin: 0px;
  padding: 0px;
  line-height: 1em;
  color: #2E7A6D;
  font-size: 27px;
}

.goal p {
  text-align: center;
  margin: 0px;
  padding: 0px;
  line-height: 1em;
  color: #6C8184;
  font-size: 14px;
}

.index-section-3 {
  background-color: #ffffff;
  background-image: url(../img/fnd_inicio2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 40px 20px;
  box-sizing: border-box;
}

.index-section-3-border-ext {
  background-color: rgba(227, 246, 232, 0.1);
  backdrop-filter: blur(12px);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  border-radius: 25px;
  padding: 15px 15px;
  box-sizing: border-box;
}

.index-section-3-content {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: rgba(227, 246, 232, 0.1);
  backdrop-filter: blur(12px);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 60px 0px;
}

.index-section-3-content a {
  text-decoration: none;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 5px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  background-color: rgba(255, 255, 255, 0.05);
}

.index-section-3-content h3 {
  text-align: center;
  margin: 0px;
  padding: 0px;
  line-height: 1em;
  font-size: 28px;
  padding: 0px 40px;
  margin-bottom: 40px;
  color: #51E5AC;
}

.index-section-3-content p {
  text-align: center;
  margin: 0px;
  padding: 0px;
  line-height: 1em;
  font-size: 18px;
  line-height: 1.3em;
  padding: 0px 15px;
  margin-bottom: 60px;
  max-width: 400px;
}

.index-section-3-content p:last-of-type {
  margin-bottom: 0px;
}

.index-section-3-content p a {
  background-color: #E7FFF6;
  color: #2D403D;
  margin: 0px;
  padding: 0px;
  line-height: 1em;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 30px;
  border-radius: 15px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
}

.index-section-4 {
  background-color: #ffffff;
  padding: 0px 0;
  overflow: hidden;
  width: 100%;
}

.colaboradores-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 8px;
}

/* Fade Effect */
.colaboradores-slider-wrapper::before,
.colaboradores-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15%;
  /* Width of the fade */
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.colaboradores-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.colaboradores-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.colaboradores-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  /* El ancho total dependerá del número de items, pero aquí gestionamos el view */
}

.colaborador {
  flex-shrink: 0;
  width: 100%;
  /* Mobile first: 1 por vista */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 15px;
}

/* Desktop styles */
@media (min-width: 1024px) {
  .colaborador {
    width: 25%;
    /* 4 por vista */
  }
}
.colaborador-foto {
  width: 250px;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
}

.colaborador-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.colaborador-nombre {
  width: 250px;
  margin: 0px;
  padding: 0px;
  margin-top: 10px;
}

.colaborador-nombre p {
  color: #333;
  margin: 0px;
  padding: 0px;
  text-align: left;
  font-size: 18px;
  color: #8B91D8;
  line-height: 1em;
}

.colaborador-cargo {
  width: 250px;
  margin: 0px;
  padding: 0px;
  margin-top: 4px;
}

.colaborador-cargo p {
  margin: 0px;
  padding: 0px;
  text-align: left;
  font-size: 20px;
  color: #2D403D;
  line-height: 1em;
}

.colaborador-cta {
  width: 250px;
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  display: none;
}

.colaborador-cta a {
  /* text-decoration: none;
  color: #46C98F;
  border: 1px solid #46C98F;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.3s ease; */
  margin: 0px;
  padding: 0px;
  text-align: left;
  font-size: 18px;
  color: #2D403D;
  line-height: 1em;
  border: 1px solid #E7E7E7;
  /* border: 1px solid red; */
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 25px;
  color: #b7b7b7;
}

.colaborador-cta a:hover {
  background-color: #46C98F;
  color: white;
}

/* Slider Controls */
.colab-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.colab-prev {
  left: 0;
}

.colab-next {
  right: 0;
}

@media (max-width: 1024px) {
  .index-section-4-content-slider {
    width: 100%;
    max-width: 600px;
    /* Limit width on tablets so arrows are visible */
    margin: 0 auto;
    padding: 0 50px;
    /* Add padding for arrows */
    box-sizing: border-box;
  }
  .colab-nav {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 100 !important;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8) !important;
    color: #2D403D;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  .colab-prev {
    left: 0px !important;
    top: 50% !important;
    transform: translateY(-50%);
  }
  .colab-next {
    right: 0px !important;
    top: 50% !important;
    transform: translateY(-50%);
  }
}
@media (max-width: 600px) {
  .index-section-4-content-slider {
    padding: 0 10px;
    /* Less padding on small mobile */
    max-width: 100%;
  }
  .colab-nav {
    width: 35px;
    height: 35px;
  }
  .colab-prev {
    left: 10px !important;
  }
  .colab-next {
    right: 10px !important;
  }
}
@media (min-width: 1024px) {
  /* Ocultar flechas en desktop si hay 5 o menos (opcional, pero buena práctica) */
  /* .colab-nav { display: none; } Si quieres ocultarlas siempre en desktop */
}
.index-section-4-content {
  background-color: #ffffff;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 80px 0px;
}

.index-section-4-content > h3 {
  color: #6C8184;
  font-size: 28px;
  margin: 0px;
  padding: 0px;
  margin-bottom: 40px;
}

.index-section-4-content > a {
  text-decoration: none;
  color: #E7FFF6;
  background-color: #000000;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.15);
  padding: 5px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  margin-top: 40px;
  font-size: 22px;
  display: none;
}

.index-section-4-content-slider {
  /* 
  */
  max-width: 1200px;
  /* margin: 0 auto; */
  text-align: center;
  position: relative;
  padding: 0px 0px;
}

.bg-partnerts {
  background-color: #FAFAFA;
}

.index-section-5 {
  background-color: #FAFAFA;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
  height: auto;
  padding-top: 60px;
  padding-bottom: 0px;
}

.logos-partners {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 70px;
  padding: 40px 90px;
  border-radius: 25px;
  border: 1px solid #9096DA;
}

.logos-partners img {
  width: 150px;
  height: auto;
}

.index-section-6 {
  background-color: #FAFAFA;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: auto;
  padding-top: 60px;
}

.index-section-6-title h3 {
  color: green;
  margin: 0px;
  padding: 0px;
  font-size: 32px;
  margin-bottom: 30px;
}

.index-section-6-text {
  width: 320px;
  margin-bottom: 60px;
}

.index-section-6-text p {
  color: #6C8184;
  text-align: center;
  font-size: 23px;
}

.index-section-6-cta a {
  background-color: #000000;
  border: 1px solid #E7FFF6;
  color: #E7FFF6;
  font-size: 24px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  border-radius: 14px;
  box-shadow: rgba(0, 0, 0, 0.1);
}

/* Sección de certificación */
.index-section-7 {
  background-color: #FAFAFA;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 80px 0px;
}

.index-section-7-border-ext {
  /* background-color: rgba(227, 246, 232, 0.1);
  backdrop-filter: blur(12px);
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  border-radius: 25px;
  padding: 15px 15px;
  box-sizing: border-box; */
}

.index-section-7-content {
  width: 90%;
  height: 100%;
  border-radius: 25px;
  background-color: rgba(227, 246, 232, 0.1);
  background-color: #A7A5E0;
  backdrop-filter: blur(12px);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 60px 0px;
  border: 3px solid #8B91D8;
}

.index-section-7-content h3 {
  text-align: center;
  margin: 0px;
  padding: 0px;
  line-height: 1.2em;
  padding: 0px 0px;
  margin-bottom: 0px;
  font-size: 20px;
  margin-bottom: 25px;
}

.index-section-7-content h3 strong {
  font-size: 23px;
}

.index-section-7-content p {
  text-align: center;
  margin: 0px;
  padding: 0px;
  font-size: 20px;
  margin-bottom: 90px;
  line-height: 1.3em;
  max-width: 308px;
}

.index-section-7-foto {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
}

.index-section-7-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

/* Soluciones */
.index-section-8 {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.soluciones-titulo {
  max-width: 260px;
  margin-top: 80px;
}

.soluciones-titulo h3 {
  text-align: center;
  line-height: 1em;
  color: #6C8184;
  font-size: 24px;
  margin: 0px;
  padding: 0px;
}

.solucion {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.solucion-top-borde {
  background: linear-gradient(to bottom, #e0e0e0 0%, #f5f5f5 35%, #e0e0e0 100%);
  padding: 7px;
  box-sizing: border-box;
  margin: auto;
  border-radius: 25px;
  /* padding-bottom: 3px; */
}

.solucion-top-foto {
  width: 305px;
  height: 170px;
  border-radius: 25px;
  overflow: hidden;
}

.solucion-top-foto picture {
  width: 100%;
  height: 100%;
  display: block;
}

.solucion-top-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solucion-top-logo-container {
  width: 100%;
  height: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solucion-top-logo {
  background-color: #ffffff;
  padding: 10px 30px;
  border-radius: 10px;
}

.solucion-top-logo img {
  width: 90px;
  height: auto;
}

.solucion-bottom {
  width: 75%;
  margin-top: 40px;
  margin-bottom: 40px;
}

.solucion-bottom p {
  text-align: center;
  color: #6C8184;
  font-size: 18px;
  margin: 0px;
  padding: 0px;
}

.solucion-cta {
  width: 80%;
  margin: auto;
}

.solucion-cta a {
  color: #53BD99;
  text-align: center;
  display: block;
}

/* Servicios Slider Styles */
.sliders-servicios-integrales {
  width: 100%;
  max-width: 1200px;
}

.servicios-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.servicios-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slider-servicio-integral {
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1024px) {
  .slider-servicio-integral {
    width: 33.333%;
  }
}
.slider-servicio-integral-foto {
  width: 100%;
  max-width: 300px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.slider-servicio-integral-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-servicio-integral-title h3 {
  font-family: "Fredoka", sans-serif;
  font-size: 24px;
  color: #2D403D;
  margin: 0 0 15px 0;
  text-align: center;
}

.slider-servicio-integral-content p {
  font-family: "Fredoka", sans-serif;
  font-size: 16px;
  color: #6C8184;
  text-align: center;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.slider-servicio-integral-cta a {
  text-decoration: none;
  color: #b7b7b7;
  font-family: "Fredoka", sans-serif;
  border: 1px solid #E7E7E7;
  padding: 5px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 20px;
}

.slider-servicio-integral-cta a:hover {
  background-color: #46C98F;
  color: white !important;
  border-color: #46C98F;
  text-decoration: none !important;
}

/* Navigation Buttons */
.servicio-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 20px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.servicio-prev {
  left: 10px;
}

.servicio-next {
  right: 10px;
}

.index-section-9 {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 80px 0px;
}

.index-section-9 h3 {
  font-size: 28px;
  color: #6C8184;
}

.index-section-9 .slider-servicio-integral-foto {
  height: 190px;
  width: 190px;
  margin: 0px;
  padding: 0px;
  margin-bottom: 20px;
}

.index-section-9 .slider-servicio-integral-foto img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.index-section-9 .servicio-nav {
  top: 18%;
  transform: translateY(-18%);
}

.index-section-9 .slider-servicio-integral-title h3 {
  font-size: 24px;
  color: #6C8184;
  line-height: 1.2em;
}

.index-section-9 .slider-servicio-integral-content {
  padding: 0px 8px;
}

.index-section-9 .slider-servicio-integral-content p {
  color: #6C8184;
  text-align: center;
  line-height: 1.4;
  font-size: 19px;
}

.index-section-9 .slider-servicio-integral-cta a {
  border: none;
  color: #53BD99;
  text-decoration: underline;
}

.index-section-10 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #FAFAFA;
}

.index-section-10 .hecho-container {
  width: 90%;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 80px 0px;
}

.index-section-10 .hecho-container h3 {
  text-align: center;
  color: #2E7A6D;
  line-height: 1em;
  font-size: 32px;
  margin: 0px;
  padding: 0px;
}

.index-section-10 .hecho-container img {
  display: flex;
  margin: 50px 0px;
  width: 80%;
  height: auto;
}

.index-section-10 .hecho-container p {
  text-align: center;
  color: #90A0A2;
  font-size: 24px;
  margin: 0px;
  padding: 0px;
  margin-bottom: 30px;
}

.index-section-10 .span-1 {
  color: #AEB2E3;
}

.index-section-10 .span-2 {
  color: #56C1EF;
}

.index-section-10 .span-3 {
  color: #6FC8AA;
}

.index-section-10 .span-4 {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #6C8184;
  line-height: 1.1em;
}

.index-section-10 .cta {
  margin: 0px;
  padding: 0px;
}

.index-section-10 .cta a {
  text-decoration: none;
  background-color: #33DF96;
  color: #E7FFF6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 24px;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
}

/* Scroll Animation Classes */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  /* Faster animation */
  will-change: opacity, transform;
}

.footer-bottom-container.fade-in-section {
  transform: none;
  min-height: auto;
  padding: 0px !important;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

.index-section-11 {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.index-section-11 > h3 {
  color: #6C8184;
  font-size: 30px;
  margin: 60px 0px;
  padding: 0px;
}

.index-section-11 .clientes-container {
  width: 90%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0px 0px;
  margin: 0px;
  margin-top: 20px;
  margin-bottom: 60px;
}

.index-section-11 .clientes-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  white-space: nowrap;
  cursor: grab;
}

.index-section-11 .clientes-row::-webkit-scrollbar {
  display: none;
}

.index-section-11 .cliente img {
  width: auto;
  height: 80px;
}

.index-section-12 {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  margin-top: 40px;
  margin-bottom: 80px;
}

.index-section-12 .contacto-contenedor {
  width: 90%;
  box-sizing: border-box;
  overflow: hidden;
}

.index-section-12 .contacto-contenedor-header {
  height: 110px;
  background-image: url(../img/foto_form_contacto.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.index-section-12 .contacto-location {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: 15px;
  margin-bottom: 15px;
  /* margin-top: 40px;
  margin-bottom: 20px; */
}

.index-section-12 h3 {
  text-align: center;
  color: #2E7A6D;
  font-size: 26px;
  line-height: 1em;
  padding: 0px;
  margin: 0px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.index-section-12 .contacto-location-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: 5px;
}

.index-section-12 .contacto-span-2 {
  background-color: #ECECEC;
  color: #939393;
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 26px;
  line-height: 1em;
  text-align: center;
  padding: 4px 8px;
  margin-top: 5px;
}

/* Contact Form Styles */
.index-section-12 form {
  width: 90%;
  max-width: 400px;
  /* Prevent it from getting too wide on desktop */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: auto;
}

.contact-input-wrapper {
  position: relative;
  width: 100%;
}

.contact-input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
  /* Let clicks pass through to input */
}

.index-section-12 form input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  /* Space for icon */
  border-radius: 16px;
  border: 1px solid rgba(46, 122, 109, 0.2509803922);
  background-color: rgba(191, 200, 199, 0.0509803922);
  font-family: "Fredoka", sans-serif;
  font-size: 18px;
  color: #A7A5A5;
  box-sizing: border-box;
  outline: none;
  transition: all 0.3s ease;
  font-weight: 100;
}

.index-section-12 form input:focus {
  background-color: #ffffff;
  border-color: #46C98F;
  box-shadow: 0 4px 10px rgba(70, 201, 143, 0.1);
}

.index-section-12 form input::placeholder {
  color: #B0BCC0;
}

.index-section-12 form button {
  background-color: #32DC94;
  color: #E7FFF6;
  border: 1px solid #E7FFF6;
  padding: 14px;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.index-section-12 form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contacto-text {
  width: 90%;
  margin: auto;
  box-sizing: border-box;
}

.contacto-text p {
  color: #6C8184;
  text-align: center;
  font-size: 18px;
}

.fnd-redes {
  background-color: #51E5AC;
}

.index-section-13 {
  background-color: #51E5AC;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.index-section-13 .instagram-feed {
  width: 90%;
  height: 100%;
}

.index-section-13 .instagram-feed img {
  width: 100%;
  height: auto;
}

.index-section-14 {
  background-color: #51E5AC;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-redes-container-bg {
  background: linear-gradient(to bottom, #E8FFF6 30%, #ffffff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 90%;
  box-sizing: border-box;
  border-radius: 30px;
  padding: 10px;
  overflow: hidden;
  margin-top: 64px;
}

.hero-redes-container {
  background: linear-gradient(to bottom, #ffffff 30%, #E8FFF6 100%);
  border: 1px solid #9EF2D2;
  width: 100%;
  box-sizing: border-box;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  padding: 20px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.hero-redes-container h3 {
  text-align: center;
  color: #2E7A6D;
  font-size: 24px;
  line-height: 1em;
  padding: 0px;
  margin: 0px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.hero-redes-container p {
  text-align: center;
  color: #6C8184;
  font-size: 20px;
  line-height: 1.1em;
  padding: 0px;
  margin: 0px;
  margin-bottom: 20px;
}

.hero-redes-container p span {
  color: #8B91D8;
}

.redes-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  margin-top: 40px;
}

.redes-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.index-section-15 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

.section-header-top-margin {
  width: 100%;
  /* Ensure wrapper takes full width */
}

.testominos-content {
  width: 100%;
  max-width: 100%;
  /* Force constraint to container width, not viewport */
  overflow-x: auto;
  /* padding: 20px 0; */
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar completely while maintaining scroll functionality */
.testominos-content::-webkit-scrollbar {
  display: none;
}

.testominos-content {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.testominos-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: max-content;
  /* Ensure rows can expand horizontally */
  padding: 0px;
}

.testominos-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
}

.testominos-row-1 {
  /* padding-left handled by container */
  padding-left: 20px;
}

.testimonio {
  width: 540px;
  flex-shrink: 0;
  box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #BFC8C7;
  white-space: normal;
  margin: 5px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.testimonio-text p {
  color: #6C8184;
  font-size: 18px;
  line-height: 1.2em;
  padding: 0px;
  margin: 0px;
  margin-bottom: 10px;
  text-align: justify;
}

.testimonio-data {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  margin-top: 40px;
}

.testimonio-foto {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonio-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonio-user h3 {
  color: #4C4C4C;
  font-size: 18px;
  line-height: 1.2em;
  padding: 0px;
  margin: 0px;
}

.testimonio-user p {
  color: #4C4C4C;
  font-size: 18px;
  line-height: 1.2em;
  padding: 0px;
  margin: 0px;
}

.testimonios-container .testominos-content:first-of-type {
  margin-bottom: 10px;
}

/* Footer Styles */
.site-footer {
  position: relative;
  width: 100%;
  margin-top: 50px;
}

/* Ajuste para que la ola no se corte arriba */
.footer-wave {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  margin-bottom: -2px;
  /* Slight overlap to prevent gap */
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.footer-content-wrapper {
  background: linear-gradient(180deg, #46C98F 0%, #2E7A6D 100%);
  padding-bottom: 50px;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  /* padding-top: 20px; */
  /* Removed top padding as wave gives space */
  color: #fff;
  gap: 40px;
}

/* Logo column takes full width on mobile, auto on desktop */
.footer-container > .logo-col {
  flex: 1 1 100%;
}

.nosotros-section-1-container h4 {
  display: none;
}

@media (min-width: 1024px) {
  .footer-container > .logo-col {
    flex: 0 0 auto;
    margin-right: 50px;
  }
}
.footer-logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  /* Make logo white */
  margin-bottom: 20px;
}

.footer-divider {
  width: 100%;
  max-width: 200px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-top: 10px;
}

.footer-nav-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (min-width: 768px) {
  .footer-nav-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  margin-top: 0;
  color: #fff;
  opacity: 0.9;
}

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

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
  text-decoration: underline;
  opacity: 1;
}

.footer-bottom-action {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

.footer-btn {
  text-decoration: none;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background-color: #fff;
  color: #2E7A6D;
}

.footer-container-tiresia {
  height: 50px;
  background-color: #FFFFFF;
  background-size: 120% auto;
  background-image: url("../img/ondas_celular.png");
  background-repeat: no-repeat;
  background-position: top right;
  position: relative;
  z-index: 1;
}

.footer-container-tiresia-bg-color {
  background-color: #134A39;
  padding-top: 180px;
  overflow: hidden;
  position: relative;
  z-index: 10;
  top: -2px;
}

.footer-logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 70px;
  margin-bottom: 70px;
}

.footer-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 18px;
}

.footer-item h3 {
  color: #E7FFF6;
  margin: 0px;
  padding: 0px;
  line-height: 1em;
  font-size: 24px;
}

.footer-item ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.footer-item ul li a {
  margin: 0px;
  padding: 0px;
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  text-decoration: none;
  color: #fff;
  line-height: 1em;
  font-size: 20px;
}

.footer-item-6 {
  gap: 0px;
}

.footer-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.footer-cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #E7FFF6;
  text-decoration: none;
  border: 2px solid #E7FFF6;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 10px 30px;
  border-radius: 10px;
  font-size: 22px;
}

.footer-web {
  margin-bottom: 6px;
}

.footer-web a,
.footer-direccion a {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  text-decoration: none;
  gap: 4px;
  padding: 0px;
  margin: 0px;
  color: #fff;
}

.footer-link-icon {
  height: 25px;
}

.footer-link-icon img {
  height: 25px;
  width: auto;
  flex-shrink: 0px;
  margin-top: -2px;
}

.footer-link-text {
  line-height: 1em;
  font-size: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 0px;
  margin: 0px;
  text-align: center;
  line-height: 1.4em;
}

.footer-derechos {
  border-top: 1px solid #fff;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 90px;
}

.footer-derechos p {
  margin: 0px;
  padding: 0px;
  color: #fff;
  font-size: 19px;
  text-align: center;
}

/* Menu Styles */
.menu-panel {
  background-color: #E7FFF6;
  height: 100%;
  width: 80%;
  max-width: 270px;
  float: right;
  display: flex;
  flex-direction: column;
  padding: 20px 30px;
  box-sizing: border-box;
  overflow-y: auto;
  /* Animation props */
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 15px 0px 0px 15px;
}

.menu-container {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  /* Semi-transparent dark overlay */
  backdrop-filter: blur(5px);
  /* Native blur effect */
  -webkit-backdrop-filter: blur(5px);
  overflow: hidden;
  /* Initial state hidden */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Open state classes */
.menu-container.active {
  opacity: 1;
  visibility: visible;
}

.menu-container.active .menu-panel {
  transform: translateX(0);
}

.menu-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.menu-panel-top-logo img {
  height: 25px;
  width: auto;
}

.menu-panel-top-close img {
  height: 25px;
  width: auto;
}

.menu-panel-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-panel-menu ul li a {
  text-decoration: none;
  font-size: 20px;
  color: #2E7A6D;
  font-family: "Fredoka", sans-serif;
  font-weight: 300;
  display: block;
  padding: 8px 0;
  transition: color 0.3s ease;
}

/* Dropdown Styles */
.menu-link-parent {
  display: flex !important;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.caret {
  transition: transform 0.3s ease;
}

.has-submenu.open .caret {
  transform: rotate(180deg);
}

.submenu {
  display: none;
  padding-right: 20px !important;
  position: relative;
  border-right: 2px solid #B8C5C2;
  margin-right: 5px !important;
}

.has-submenu.open .submenu {
  display: block;
  animation: slideDown 0.3s ease-out;
}

.submenu li a {
  font-size: 20px !important;
  color: #2E7A6D !important;
  padding: 5px 0 !important;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu-panel-bottom {
  margin-top: auto;
  padding-top: 60px;
  margin-bottom: 50px;
  border-top: 1px solid #E2E3E2;
}

.menu-panel-bottom-social {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.menu-panel-bottom-social img {
  height: 22px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(86%) sepia(8%) saturate(191%) hue-rotate(127deg) brightness(89%) contrast(89%);
}

.menu-panel-menu ul li a {
  text-align: right;
}

.menu-panel-menu ul li.has-submenu.open > a {
  text-decoration: none;
  /* font-size: 24px; */
  font-family: "Fredoka", sans-serif;
  font-weight: 400;
  display: block;
  padding: 15px 0;
  transition: color 0.3s ease;
  color: #53BD99 !important;
}

.nosotros-page .footer-container-tiresia {
  /* background-color: #ffffff !important; */
}

.footer-bottom-container {
  background-color: transparent !important;
}

.footer-container-tiresia-bg-color-fnd {
  background-color: #134A39;
}

.nosotros-section-1 {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.nosotros-section-1-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0px 20px;
  box-sizing: border-box;
}

.nosotros-section-1-container p {
  margin: 0px;
  padding: 0px;
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  color: #6C8184;
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
}

.nosotros-section-1-container h3 {
  margin: 0px;
  padding: 0px;
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  text-align: center;
  line-height: 1.1em;
  font-size: 28px;
  color: rgb(46, 122, 109);
}

.nosotros-section-1-container h3 span {
  color: #ffffff;
  background-color: #2E7A6D;
  padding: 0px 8px;
  margin: 0px;
  border-radius: 8px;
  line-height: 1em;
}

.nosotros-section-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.nosotros-section-2-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 60px 0px;
}

.nosotros-section-2-container h3 {
  margin: 0px;
  padding: 0px;
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  text-align: center;
  line-height: 1.1em;
  font-size: 32px;
  color: rgb(46, 122, 109);
}

.soluciones-nosotros {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0px;
  padding: 0px 80px;
}

.solucion-nosotros {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.solucion-nosotros a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  text-decoration: none;
  padding: 60px 0px;
}

.solucion-nosotros a img {
  height: 40px;
  width: auto;
}

.nosotros-section-3 {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.nosotros-section-3-container {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 60px 0px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.nosotros-section-3-container > h3 {
  color: #6C8184;
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 26px;
  text-align: center;
  line-height: 1em;
  margin: 0px;
  padding: 0px;
  margin-bottom: 30px;
}

.nosotros-section-3-container > p {
  color: #6C8184;
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 20px;
  text-align: center;
  line-height: 1.2em;
  margin: 0px;
  padding: 0px 15px;
  margin-bottom: 40px;
}

.nosotros-section-3-soluciones {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 20px;
  width: 100%;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  /* Hide scrollbar */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.nosotros-section-3-soluciones::-webkit-scrollbar {
  display: none;
  /* WebKit */
}

.nosotros-section-3-solucion {
  flex: 0 0 auto;
  flex-direction: column;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #000000;
  border-radius: 15px;
  width: 152px;
  height: 318px;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.nosotros-section-3-solucion {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Background images for cards */
.nosotros-section-3-solucion-1 {
  background-image: url("../img/nosotros_service_01.png");
  background-size: cover;
}

.nosotros-section-3-solucion-2 {
  background-image: url("../img/nosotros_service_02.png");
  background-size: cover;
}

.nosotros-section-3-solucion-3 {
  background-image: url("../img/nosotros_service_03.png");
  background-size: cover;
}

.nosotros-section-3-solucion-4 {
  background-image: url("../img/nosotros_service_04.png");
  background-size: cover;
}

.nosotros-section-3-solucion-5 {
  background-image: url("../img/nosotros_service_05.png");
  background-size: cover;
}

.nosotros-section-3-solucion h3 {
  color: #ffffff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 18px;
  text-align: center;
  line-height: 1.1em;
}

.nosotros-section-3-solucion h4 {
  color: #46C98F;
  margin-top: 0;
  margin-bottom: 18px;
  z-index: 2;
  margin: 0px;
  padding: 0px;
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 20px;
  text-align: center;
  line-height: 1.1em;
}

.nosotros-section-3-soluciones-container {
  width: 100%;
  max-width: 100%;
}

.nosotros-section-4 {
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 500;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.mision-content {
  background-color: #E7FFF6;
  box-sizing: border-box;
  width: 90%;
  border-radius: 20px;
  margin-top: 200px;
}

.mision-foto-container {
  width: 100%;
  max-width: 100%;
  background-color: #F0F0F0;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 20px;
}

.mision-foto {
  width: 100%;
  max-width: 100%;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mision-foto img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.mision-texto {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.mision-texto h2 {
  color: #39504D;
  font-size: 28px;
  margin: 0px;
  padding: 0px;
  line-height: 1.2em;
}

.mision-texto p {
  text-align: center;
  color: #39504D;
  font-size: 18px;
  margin: 0px;
  padding: 0px;
  line-height: 1.2em;
}

.mision-pic-colums {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  gap: 20px;
  height: 230px;
}

.mision-pic-colum {
  width: 150px;
  border-radius: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.mision-pic-colum-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.mision-pic-colum img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mision-content {
  margin-bottom: 230px;
}

.nosotros-section-5 {
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.nosotros-section-5 .mision-content {
  background-color: #E7FFF6;
}

.vision-content {
  background-color: #E7FFF6;
  box-sizing: border-box;
  width: 90%;
  border-radius: 20px;
  margin-top: 0px;
}

.vision-foto-container {
  width: 100%;
  max-width: 100%;
  background-color: transparent;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 20px;
}

.vision-texto {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.vision-texto h2 {
  color: #2E7A6D;
  font-size: 28px;
  margin: 0px;
  padding: 0px;
  line-height: 1.2em;
}

.vision-texto p {
  text-align: center;
  color: #39504D;
  font-size: 21px;
  margin: 0px;
  padding: 0px;
  line-height: 1.2em;
}

.vision-objetivos {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0px;
  box-sizing: border-box;
  gap: 40px;
  padding-bottom: 50px;
}

.vision-objetivo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  box-sizing: border-box;
  gap: 0px;
}

.vision-objetivo img {
  height: 36px;
  width: auto;
}

.vision-objetivo span {
  color: #2E7A6D;
  font-size: 21px;
  padding-top: 10px;
}

.mision-vision-fnd {
  background: linear-gradient(to bottom, #4EDFA7 30%, #36AA82 100%);
  padding-bottom: 170px;
  overflow: hidden;
}

.section.nosotros-section-6.valores {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.valores-content {
  background-color: #E7FFF6;
  box-sizing: border-box;
  width: 90%;
  border-radius: 20px;
  margin-top: 0px;
}

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

.valores-item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url("../img/valor.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-bottom: 2px solid #36aa82;
  height: 180px;
}

.valores-item-1 {
  background-image: url("../img/valor_01.png ");
}

.valores-item-2 {
  background-image: url("../img/valor_02.png");
}

.valores-item-3 {
  background-image: url("../img/valor_03.png");
}

.valores-item-4 {
  background-image: url("../img/valor_04.png");
}

.valores-item h3 {
  color: #ffffff;
  font-size: 20px;
  margin: 0px;
  padding: 0px;
  line-height: 1em;
}

.section.nosotros-section-6.historia {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.section.nosotros-section-6.historia h2 {
  color: #6C8184;
  font-size: 28px;
  margin: 0px;
  padding: 0px;
  line-height: 1.2em;
  margin-bottom: 60px;
}

/* Historia Timeline Styles */
.historia {
  padding-top: 50px;
  padding-bottom: 150px;
}

.historia-container {
  box-sizing: border-box;
  width: 90%;
  max-width: 800px;
  /* Limit width for better readability */
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

/* Vertical line */
/* Vertical line removed from container */
.timeline-item {
  position: relative;
  padding-left: 40px;
  /* Space for marker */
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
}

/* Connective line attached to each item */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12.5px;
  /* Center of the 50px marker (25px) - 1px width = 24px */
  width: 1px;
  height: calc(100% + 50px);
  /* Height of item + margin below */
  background-color: #A9B5C1;
  z-index: 1;
}

/* Hide line for the last item prevents it from extending past */
.timeline-item:last-child::before {
  display: none;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #4edfa7;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  /* On top of the line */
  font-size: 18px;
}

/* content styles */
.timeline-content h4 {
  color: #2E7A6D;
  font-size: 24px;
  margin: 0 0 10px 0;
  line-height: 1.2em;
}

.timeline-content p {
  color: #6C8184;
  font-size: 16px;
  margin: 0;
  line-height: 1.5em;
}

.timeline-item.hoy .timeline-marker {
  background-color: #2E7A6D;
}

.timeline-item.hoy .timeline-content h4 {
  color: #2E7A6D;
}

.tiresia-erp-section-1 {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.tiresia-erp-section-1 h4 {
  color: #6C8184;
  font-size: 24px;
  margin: 0px;
  padding: 0px;
  line-height: 1.2em;
  margin-top: 50px;
  margin-bottom: 14px;
}

.tiresia-erp-section-1 h1 {
  color: #05A3E8;
  font-size: 36px;
  margin: 0px;
  padding: 0px;
  line-height: 1.2em;
  margin-bottom: 20px;
}

.tiresia-b2b .tiresia-erp-section-1 h1 {
  color: #8B91D8;
}

.tiresia-pos .tiresia-erp-section-1 h1 {
  color: #F5C542;
}

.tiresia-whs .tiresia-erp-section-1 h1 {
  color: #F57C42;
}

.tiresia-sales .tiresia-erp-section-1 h1 {
  color: #53BD99;
}

.tiresia-erp-section-1 h2 {
  color: #2D403D;
  font-size: 32px;
  margin: 0px;
  padding: 0px 20px;
  line-height: 1.2em;
  text-align: center;
}

.tiresia-erp-section-1 h2 span {
  background-color: #05A3E8;
  color: #ffffff;
  margin: 0px;
  padding: 0px;
  line-height: 1.2em;
  font-size: 32px;
  border-radius: 5px;
  padding: 0px 10px;
  line-height: 1em;
}

.tiresia-erp-section-1 p {
  color: #6C8184;
  font-size: 23px;
  margin: 0px;
  padding: 0px;
  line-height: 1.2em;
  text-align: center;
  padding: 0px 20px;
  margin-top: 80px;
  margin-bottom: 0px;
}

.tiresia-erp-section-2 {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(to bottom, #E0F3FC 30%, #ffffff 100%);
  box-sizing: border-box;
}

.tiresia-b2b .tiresia-erp-section-2 {
  background: linear-gradient(to bottom, #DDE0FF 30%, #ffffff 100%);
}

.tiresia-pos .tiresia-erp-section-2 {
  background: linear-gradient(to bottom, #FFF4D7 30%, #ffffff 100%);
}

.tiresia-whs .tiresia-erp-section-2 {
  background: linear-gradient(to bottom, #FFE1D3 30%, #ffffff 100%);
}

.tiresia-sales .tiresia-erp-section-2 {
  background: linear-gradient(to bottom, #C4FDEA 30%, #ffffff 100%);
  padding-top: 90px;
  margin-bottom: 140px;
}

.tiresia-erp-section-2 h2 {
  color: #000000;
  font-size: 26px;
  margin: 0px;
  padding: 0px;
  line-height: 1em;
  text-align: left;
  width: 100%;
  max-width: 100%;
  padding-left: 20px;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.tiresia-erp-section-2 p {
  color: #6C8184;
  font-size: 19px;
  margin: 0px;
  padding: 0px;
  line-height: 1.2em;
  text-align: left;
  padding-left: 20px;
  padding-right: 5cqb;
  box-sizing: border-box;
  margin-bottom: 60px;
}

.tiresia-erp-section-2 img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.tiresia-erp-section-3 {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  padding-bottom: 60px;
}

.tiresia-erp-section-3-text {
  width: 100%;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.tiresia-erp-section-3 h2 {
  color: #05A3E8;
  font-size: 26px;
  margin: 0px;
  padding: 0px;
  line-height: 1em;
  text-align: center;
  width: 100%;
  max-width: 100%;
  padding-left: 20px;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.tiresia-b2b .tiresia-erp-section-3 h2 {
  color: #8B91D8;
}

.tiresia-pos .tiresia-erp-section-3 h2 {
  color: #F5C542;
}

.tiresia-whs .tiresia-erp-section-3 h2 {
  color: #F57C42;
}

.tiresia-sales .tiresia-erp-section-3 h2 {
  color: #2E7A6D;
}

.tiresia-erp-section-3 p {
  color: #6C8184;
  font-size: 19px;
  margin: 0px;
  padding: 0px;
  line-height: 1.2em;
  padding-left: 20px;
  padding-right: 5cqb;
  box-sizing: border-box;
  margin-bottom: 60px;
  text-align: center;
}

.tiresia-sales .tiresia-erp-section-3 p {
  color: #2E7A6D;
}

.mosaico-container {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  overflow-x: auto;
  padding-left: 20px;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  /* Hide scrollbar for cleaner look if desired, though standard is safer */
  scrollbar-width: none;
  -ms-overflow-style: none;
  background-image: url("../img/bg_mosaico.avif");
  background-size: auto;
  background-position: left bottom;
  background-repeat: no-repeat;
}

.mosaico-container::-webkit-scrollbar {
  display: none;
}

.mosaico-container-slide {
  display: block;
  width: max-content;
}

.mosaico-container-slide img {
  max-width: none;
  /* Allows image to be wider than container */
  height: auto;
  display: block;
}

.tiresia-erp-section-4 {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  padding-bottom: 60px;
  padding-left: 30px;
  padding-right: 30px;
}

.tiresia-erp-section-4 h2 {
  color: #05A3E8;
  font-size: 26px;
  margin: 0px;
  padding: 0px;
  line-height: 1em;
  text-align: center;
  width: 100%;
  max-width: 100%;
  padding-left: 20px;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.tiresia-b2b .tiresia-erp-section-4 h2 {
  color: #8B91D8;
}

.tiresia-pos .tiresia-erp-section-4 h2 {
  color: #F5C542;
}

.tiresia-whs .tiresia-erp-section-4 h2 {
  color: #F57C42;
}

.tiresia-sales .tiresia-erp-section-4 h2 {
  color: #2E7A6D;
}

.tiresia-erp-section-4 p {
  color: #6C8184;
  font-size: 19px;
  margin: 0px;
  padding: 0px;
  line-height: 1.2em;
  padding-left: 20px;
  padding-right: 5cqb;
  box-sizing: border-box;
  margin-bottom: 60px;
  text-align: center;
}

.ventajas {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.ventaja {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  border-radius: 20px;
  height: 165px;
}

.ventaja h3 {
  color: #F0FBFA;
  width: 100%;
  font-size: 22px;
}

.ventaja-1 {
  background-image: url(../img/ventaja_1.png);
}

.ventaja-2 {
  background-image: url(../img/ventaja_2.png);
}

.ventaja-3 {
  background-image: url(../img/ventaja_3.png);
}

.tiresia-b2b .ventaja-1 {
  background-image: url(../img/ventaja_b2b_1.png);
}

.tiresia-b2b .ventaja-2 {
  background-image: url(../img/ventaja_b2b_2.png);
}

.tiresia-b2b .ventaja-3 {
  background-image: url(../img/ventaja_b2b_3.png);
}

.tiresia-pos .ventaja-1 {
  background-image: url(../img/ventaja_pos_1.png);
}

.tiresia-pos .ventaja-2 {
  background-image: url(../img/ventaja_pos_2.png);
}

.tiresia-pos .ventaja-3 {
  background-image: url(../img/ventaja_pos_3.png);
}

.tiresia-whs .ventaja-1 {
  background-image: url(../img/ventaja_whs_1.png);
}

.tiresia-whs .ventaja-2 {
  background-image: url(../img/ventaja_whs_2.png);
}

.tiresia-whs .ventaja-3 {
  background-image: url(../img/ventaja_whs_3.png);
}

.tiresia-sales .ventaja-1 {
  background-image: url(../img/ventaja_sales_1.png);
}

.tiresia-sales .ventaja-2 {
  background-image: url(../img/ventaja_sales_2.png);
}

.tiresia-sales .ventaja-3 {
  background-image: url(../img/ventaja_sales_3.png);
}

.tiresia-erp-section-5 {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding-bottom: 60px;
  /* padding-left: 30px;
  padding-right: 30px; */
}

.tiresia-erp-section-5 h2 {
  color: #6C8184;
  font-size: 26px;
  margin: 0px;
  padding: 0px;
  line-height: 1em;
  text-align: center;
  width: 100%;
  max-width: 100%;
  padding-left: 20px;
  box-sizing: border-box;
  margin-top: 90px;
  margin-bottom: 55px;
}

.beneficios {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-bottom: 60px;
}

.beneficio {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 230px;
  min-width: 230px;
  height: auto;
  flex-shrink: 0;
  box-sizing: border-box;
  border-bottom: none;
  padding-bottom: 0;
  gap: 14px;
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
}

.beneficio:last-child {
  border-bottom: none;
}

.beneficio-icon {
  height: 120px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px 0px;
}

.beneficio-icon img {
  width: auto;
  height: 100%;
  display: block;
}

.beneficio-text {
  width: 100%;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 30px;
}

.beneficio-text p {
  color: black;
  width: 100%;
  font-size: 17px;
  text-align: center;
  line-height: 1.2em;
  margin: 0px;
  padding: 0px;
}

/* -- Tiresia ERP Section 6 (Infinite Slider) -- */
.tiresia-erp-section-6 {
  background-color: #ffffff;
  padding: 60px 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.modulos-avanzados {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  width: 100%;
  gap: 8px;
  padding: 20px 0;
  cursor: grab;
  /* Hide Scrollbar */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.modulos-avanzados::-webkit-scrollbar {
  display: none;
}

.modulos-avanzados.active {
  cursor: grabbing;
  user-select: none;
}

.modulo-avanzado {
  flex: 0 0 auto;
  width: 233px;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.modulo-avanzado:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.modulo-avanzado-icon {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modulo-avanzado-icon img {
  height: 100%;
  width: auto;
  display: block;
}

.modulo-avanzado-text h3 {
  color: #2D403D;
  font-size: 20px;
  margin: 0 0 10px 0;
  line-height: 1.2em;
  text-align: left;
}

.modulo-avanzado-text p {
  color: #6C8184;
  font-size: 16px;
  line-height: 1.4em;
  margin: 0;
  text-align: left;
}

.tiresia-erp-section-6 > h2 {
  color: #6C8184;
  font-size: 26px;
  margin: 0px;
  padding: 0px;
  line-height: 1em;
  text-align: center;
  width: 100%;
  max-width: 100%;
  padding-left: 20px;
  box-sizing: border-box;
  margin-top: 90px;
  margin-bottom: 55px;
}

/* Animation Utilities */
/* IMPORTANT: Containers using these must have overflow-x: hidden to prevent scrollbars during animation */
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.pop-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: opacity, transform;
}

.slide-in-left.is-visible,
.slide-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.pop-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Ensure sections clip overflow for side animations */
.tiresia-erp-section-1,
.tiresia-erp-section-2,
.tiresia-erp-section-3,
.tiresia-erp-section-4,
.tiresia-erp-section-5,
.tiresia-erp-section-6 {
  overflow-x: hidden;
  width: 100%;
  /* Ensure width is explicit */
}

/* 
.index-section-1{
  margin-top: 400px;
} */
.header-desktop {
  display: none;
}

.index-section-3-container {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hecho-icon {
  display: none;
}

.contacto-col-2 {
  display: none;
}

.contacto-cols-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.contacto-col-1 {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.instagram-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 0px;
  width: 100%;
}

.instagrampost {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

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

@media (min-width: 500px) {
  .index-section-1 {
    height: calc(100vh - var(--altura-header)) !important;
    min-height: calc(100vh - var(--altura-header)) !important;
    overflow: hidden;
    margin-top: 0px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .index-section-1-slides {
    height: 100%;
  }
  .index-section-1-slide-1-content h2 {
    width: 100%;
  }
  .index-section-1-slide-1-bg {
    background-image: url("../img/inicio_fnd_slide1.jpg");
  }
  .index-section-1-slide-2-bg {
    background-image: url("../img/inicio_fnd_slide2.jpg");
  }
  .index-section-1-slide-3-bg {
    background-image: url("../img/inicio_fnd_slide3.jpg");
  }
  .index-section-1-slide-1-content p {
    max-width: 600px;
  }
  .goals {
    gap: 150px;
  }
  .index-section-3 {
    background-image: url("../img/fnd_section3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .index-section-3-container {
    max-width: 1200px;
    justify-content: flex-end;
  }
  .index-section-3-border-ext {
    width: 50%;
    /* 
    background-color: rgba(227, 246, 232, 0.1);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    border-radius: 25px;
    padding: 15px 15px;
    box-sizing: border-box; 
    */
  }
}
@media (min-width: 1200px) {
  .header-mobile {
    display: none;
  }
  .menu-container {
    display: none;
  }
  .header-desktop {
    display: block;
  }
  .header-menu-pc {
    flex-shrink: 0;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
  .header-menu-pc ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
  .header-menu-pc ul li a {
    text-decoration: none;
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: #2E7A6D;
  }
  /* Dropdown Caret Styles */
  .header-menu-pc ul li.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .header-menu-pc ul li.has-dropdown > a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid #2E7A6D;
    border-bottom: 1px solid #2E7A6D;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform 0.3s ease;
  }
  .header-menu-pc ul li.has-dropdown:hover > a::after {
    transform: rotate(225deg);
    margin-top: 4px;
  }
  /* Dropdown Menu Styles */
  .header-menu-pc ul li {
    position: relative;
  }
  .header-menu-pc ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: -20px;
    flex-direction: column;
    gap: 0px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    min-width: 240px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    border-radius: 16px;
    z-index: 1000;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-top: 15px;
  }
  /* Bridge the gap so the menu doesn't close */
  .header-menu-pc ul li ul::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
  }
  .header-menu-pc ul li:hover > ul {
    display: flex;
    animation: fadeInMenu 0.3s ease forwards;
  }
  .header-menu-pc ul li ul li {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .header-menu-pc ul li ul li a {
    display: block;
    padding: 12px 25px;
    font-size: 15px;
    color: #6C8184;
    transition: all 0.2s ease;
    font-weight: 400;
    width: 100%;
    box-sizing: border-box;
  }
  .header-menu-pc ul li ul li a:hover {
    background-color: #E7FFF6;
    color: #2E7A6D;
    padding-left: 30px;
  }
  @keyframes fadeInMenu {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .header-redes-pc {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
  .header-redes-pc a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    height: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .header-redes-pc a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0) saturate(100%) invert(86%) sepia(8%) saturate(191%) hue-rotate(127deg) brightness(89%) contrast(89%);
  }
  .index-section-4-content > a {
    display: flex;
  }
  .bg-partnerts {
    padding-top: 80px;
  }
  .partnerts-superior {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: row;
    gap: 70px;
  }
  .index-section-5 {
    padding: 0px !important;
  }
  .logos-partners {
    height: 100%;
    box-sizing: border-box;
  }
  .index-section-5 {
    padding: 0px !important;
    width: auto !important;
  }
  .bg-partnerts {
    overflow: hidden;
  }
  .index-section-6 {
    padding: 0px !important;
    width: auto !important;
  }
  .index-section-6-title h3 {
    margin-bottom: 0px !important;
  }
  .index-section-6-text {
    width: 500px !important;
    margin: 0px !important;
    margin-top: 40px !important;
    margin-bottom: 80px !important;
  }
  .index-section-6-text p {
    font-size: 19px !important;
    margin: 0px !important;
  }
  .index-section-6-cta a {
    font-size: 19px !important;
    padding: 5px 20px;
  }
  .index-section-7 {
    padding: 0px !important;
    min-height: auto !important;
    margin-top: 100px !important;
    margin-bottom: 60px !important;
  }
  .index-section-7-content {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 30px 50px;
    box-sizing: border-box;
    gap: 60px;
  }
  .index-section-7-text {
    width: 55%;
  }
  .index-section-7-content p {
    width: auot;
    max-width: 100%;
    padding: 0px;
    margin: 0px;
  }
  .bg-partnerts {
    background-position: center;
    background-size: auto;
  }
  .soluciones-titulo {
    max-width: 100%;
    margin-top: 150px;
    margin-bottom: 120px;
  }
  .solucion-top-foto {
    width: 1000px;
    height: auto;
  }
  .solucion-top-logo {
    width: 90%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0px;
    box-sizing: border-box;
  }
  .soluciones-bg {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .soluciones-titulo h3 {
    font-size: 28px;
  }
  .solucion-bottom {
    max-width: 1100px;
  }
  .solucion-top-logo {
    margin-bottom: 60px;
  }
  .solucion-top-logo img {
    width: 300px;
  }
  .solucion {
    margin-bottom: 130px;
  }
  .index-section-9 {
    margin-bottom: 160px;
  }
  .index-section-10 {
    height: auto;
  }
  .hecho-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  .hecho-icon img {
    width: 70px;
  }
  .index-section-10 .hecho-container {
    padding-top: 0px;
  }
  .index-section-10 .hecho-container p {
    max-width: 400px;
  }
  .index-section-10 .hecho-container p:last-of-type {
    max-width: 100%;
  }
  .index-section-10 .hecho-container p br {
    display: none;
  }
  .index-section-10 .hecho-container h3 {
    margin-bottom: 50px;
  }
  .index-section-10 .hecho-container p {
    margin-bottom: 50px;
  }
  .index-section-10 .cta {
    margin-bottom: 0px;
    margin: 30px 0px;
  }
  .contacto-col-1 {
    width: auto;
  }
  .contacto-col-2 {
    display: block;
  }
  .contacto-col-2 img {
    width: 365px;
    height: auto;
  }
  .contacto-contenedor-header {
    display: none;
  }
  .index-section-12 {
    margin: 60px 0px;
  }
  .fnd-redes-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    gap: 0px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
  }
  .index-section-13 {
    width: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
  }
  .index-section-13 .instagram-feed {
    width: 100%;
    position: relative;
    z-index: 10;
  }
  .index-section-14 {
    width: 50%;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    position: relative;
    z-index: 100;
  }
  .hero-redes-container-bg {
    position: absolute;
    z-index: 1000;
    width: 125% !important;
    max-width: 125% !important;
  }
  .hero-redes-container {
    padding: 120px 120px;
    box-sizing: border-box;
  }
  .instagram-posts {
    position: relative;
    z-index: 10;
  }
  .instagram-posts::after {
    content: "";
    position: absolute;
    inset: 0px;
    pointer-events: none;
    box-shadow: inset 0px 50px 30px -10px #51E5AC, inset 0px -50px 30px -10px #51E5AC;
    z-index: 20;
  }
  /* Testimonials Wrapper */
  .testimonios-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
  }
  /* Inset Shadow Overlay for Infinite Scroll Effect */
  .testimonios-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
    /* Inset shadow on left and right sides */
    box-shadow: inset 100px 0 60px -30px #ffffff, inset -100px 0 60px -30px #ffffff;
  }
  .testominos-content {
    margin-bottom: 40px;
  }
  .testominos-row {
    display: flex;
    gap: 30px;
    width: max-content;
    cursor: grab;
    will-change: transform;
  }
  .testominos-row:active {
    cursor: grabbing;
  }
  .footer-container-tiresia-bg-color-fnd {
    background-color: transparent;
  }
  .footer-container-tiresia {
    height: 200px;
    background-color: #ffffff;
    position: static;
    z-index: 1;
    background-image: url("../img/ondas_pc.png");
    background-size: 100% auto;
    background-position: bottom -2px right;
    background-repeat: no-repeat;
  }
  .footer-container-tiresia-bg-color {
    background-color: #134a39;
  }
  .logo-footer-cell-border {
    background-color: rgba(255, 255, 255, 0.5);
    height: 1px;
    width: 40%;
  }
  .footer-logo-container img {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .footer-derechos {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  .footer-item h3 {
    font-weight: 300 !important;
  }
  .footer-container-tiresia-bg-color a {
    transition: all 0.3s ease;
    display: flex;
  }
  .footer-container-tiresia-bg-color a:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .nosotros-section-1-container {
    margin-top: calc(var(--altura-header) * -1);
  }
  .nosotros-section-1-container h4 {
    display: block;
    color: #6C8184;
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    max-width: 490px;
    text-align: center;
    margin-top: 150px;
  }
  .nosotros-section-1-container h3 {
    max-width: 490px;
  }
  .nosotros-section-1-container h3 br {
    display: none;
  }
  .soluciones-nosotros {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 700px;
  }
  .solucion-nosotros {
    border-bottom: none;
    width: 200px;
    padding: 0px;
    margin: 0px;
    padding: 20px 0px;
    margin: 40px 0px;
  }
  .solucion-nosotros a {
    padding: 0px;
    margin: 0px;
    display: inline-block;
    transition: transform 0.3s ease;
  }
  .solucion-nosotros a:hover {
    transform: scale(1.1);
  }
  .nosotros-section-2-container h3 {
    margin-bottom: 40px;
  }
  .nosotros-section-3-container > h3 br {
    display: none;
  }
  .nosotros-section-3-container > p {
    margin: 0px;
    padding: 0px;
    font-size: 18px;
    max-width: 600px;
  }
  .nosotros-section-3-soluciones {
    justify-content: center;
    align-items: stretch;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .nosotros-section-3-cta {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nosotros-section-3-cta a {
    background-color: #000000;
    color: #E7FFF6;
    text-decoration: none;
    line-height: 1em;
    padding: 7px 20px;
    border-radius: 10px;
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    border: 2px solid #E7FFF6;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  }
  .mision-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
  }
  .mision-foto-container {
    padding: 0px;
    background-color: transparent;
    border-radius: 0px;
    width: auto;
    max-width: auto;
  }
  .mision-foto {
    width: auto;
    height: auto;
    border-radius: 25px;
    flex-shrink: 0;
  }
  .mision-foto img {
    width: 400px;
    height: auto;
  }
  .mision-content {
    margin: 0px;
    padding: 0px;
    padding: 10px;
    justify-content: space-between;
  }
  .mision-pic-colums {
    height: 250px;
  }
  .mision-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .mision-texto {
    max-width: 450px;
  }
  .vision-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .vision-texto-objetivos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
  }
  .vision-foto-container {
    width: auto;
    max-width: auto;
  }
  .vision-texto {
    max-width: 450px;
  }
  .vision-objetivos {
    max-width: 450px;
  }
  .valores-indicadores {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 0px;
  }
  .valores-item h3 {
    font-size: 50px;
    font-weight: 500;
  }
  .valores-item {
    min-height: 600px;
  }
  .valores-item-1 {
    background-image: url("../img/valor_01_desk.png ");
  }
  .valores-item-2 {
    background-image: url("../img/valor_02_desk.png ");
  }
  .valores-item-3 {
    background-image: url("../img/valor_03_desk.png ");
  }
  .valores-item-4 {
    background-image: url("../img/valor_04_desk.png ");
  }
  .timeline-item {
    margin-bottom: 100px;
  }
  .timeline-item::before {
    height: calc(100% + 100px);
  }
  .index-section-10 {
    padding-bottom: 0px;
  }
  .index-section-10 .hecho-container {
    padding: 0px;
    margin: 0px;
  }
  .index-section-12 h3 {
    max-width: 360px;
  }
  .index-section-12 h3 br {
    display: none;
  }
  .contacto-text {
    max-width: 360px;
  }
  .index-section-12 .contacto-contenedor {
    width: 100%;
    padding: 40px 60px;
    border-radius: 20px 0px 0px 20px;
    background-color: #ffffff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  /* ERP */
  .tiresia-erp-section-1 h2 {
    max-width: 550px;
    line-height: 1.3em;
  }
  .tiresia-erp-section-1 p {
    max-width: 700px;
  }
  .tiresia-erp-section-2 {
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 60px 0px;
  }
  .tiresia-erp-section-2-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    max-width: 1200px;
  }
  .tiresia-erp-section-2-text {
    max-width: 500px;
  }
  .tiresia-erp-section-2-text h2 {
    text-align: center;
  }
  .tiresia-erp-section-2-text p {
    text-align: center;
  }
  .tiresia-erp-section-3-text {
    max-width: 800px;
  }
  .mosaico-container-slide {
    max-width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
  }
  .mosaico-container-slide img {
    width: 100%;
    height: auto;
  }
  .tiresia-erp-section-3 .mosaico-container {
    background-image: none;
  }
  .ventaja {
    height: 172px;
  }
  .ventaja-1 {
    background-image: url("../img/ventaja_1_desktop.png ");
  }
  .ventaja-2 {
    background-image: url("../img/ventaja_2_desktop.png ");
  }
  .ventaja-3 {
    background-image: url("../img/ventaja_3_desktop.png ");
  }
  .beneficios {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: auto;
  }
  .beneficio {
    width: 240px;
    min-width: 240px;
    height: 240px;
    border: none;
  }
  .tiresia-erp-section-5 {
    padding-bottom: 0px;
  }
  .tiresia-erp-section-6 {
    min-height: auto;
    height: auto;
    padding: 0px;
    margin: 0px;
  }
  .modulo-avanzado:hover {
    transform: translateY(-5px);
    box-shadow: none;
  }
  .section,
  .index-section-1,
  .tiresia-erp-section-2 {
    min-height: auto !important;
  }
  .tiresia-erp-section-1 {
    margin: 60px 0px;
  }
  .tiresia-b2b-section-1 h2 {
    max-width: 900px;
  }
  .tiresia-b2b-section-1 h2 span {
    background-color: #8B91D8;
  }
  .tiresia-b2b .tiresia-erp-section-2 {
    overflow-y: hidden;
  }
  .tiresia-b2b .tiresia-erp-section-2-text {
    max-width: 400px;
  }
  .tiresia-b2b .tiresia-erp-section-2-container {
    gap: 40px;
  }
  .tiresia-b2b .tiresia-erp-section-2 {
    background: linear-gradient(to bottom, #DDE0FF 30%, #ffffff 100%) !important;
  }
  .tiresia-b2b .ventaja-1 {
    background-image: url("../img/ventaja_b2b_1_desktop.png ");
  }
  .tiresia-b2b .ventaja-2 {
    background-image: url("../img/ventaja_b2b_2_desktop.png ");
  }
  .tiresia-b2b .ventaja-3 {
    background-image: url("../img/ventaja_b2b_3_desktop.png ");
  }
  .ventaja h3 {
    padding-left: 150px;
  }
  .ventaja h3 br {
    display: none;
  }
  .nosotros-section-1 {
    min-height: calc(var(--vh, 1vh) * 100) !important;
  }
  .tiresia-pos .tiresia-erp-section-1 {
    min-height: calc(var(--vh, 1vh) * 100) !important;
    margin: 0px !important;
    padding: 0px !important;
  }
  .tiresia-pos .tiresia-erp-section-2 {
    margin-top: 0px !important;
  }
  .tiresia-pos .tiresia-erp-section-2 {
    padding-top: 40px;
    margin-bottom: 150px;
  }
  .tiresia-pos .tiresia-erp-section-2-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    max-width: 1200px;
  }
  .tiresia-pos .ventaja-1 {
    background-image: url(../img/ventaja_pos_1_desktop.png);
  }
  .tiresia-pos .ventaja-2 {
    background-image: url(../img/ventaja_pos_2_desktop.png);
  }
  .tiresia-pos .ventaja-3 {
    background-image: url(../img/ventaja_pos_3_desktop.png);
  }
  .nosotros-section-4 {
    overflow: visible;
  }
  .mision-vision-fnd {
    padding-top: 60px;
  }
  .nosotros-section-4 {
    margin-bottom: 140px;
  }
  .index-section-10 .hecho-container {
    padding: 80px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    max-width: 1100px;
    gap: 50px;
  }
  .hecho-container-img-pc {
    display: block;
    box-sizing: border-box;
    max-width: 500px;
  }
  .hecho-container-img-pc img {
    width: 100% !important;
    height: auto;
  }
  .hecho-container-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .index-section-10 .hecho-container .hecho-container-content img {
    display: none;
  }
  .index-section-10 .hecho-container .hecho-container-content p {
    margin: 0px;
    padding: 0px;
  }
  .index-section-10 .hecho-container h3 {
    text-align: center;
    color: #2E7A6D;
    line-height: 1em;
    font-size: 45px;
    margin: 0px;
    padding: 0px;
    margin-bottom: 30px;
  }
  .contacto-cols-container {
    flex-direction: row-reverse;
  }
  .contacto-col-1 .contacto-text {
    display: none;
  }
  .contacto-col-1 h3 {
    display: none;
  }
  .contacto-col-1 .contacto-col-1-img {
    margin-bottom: 20px;
  }
  .contacto-col-2 h3 {
    font-size: 39px;
  }
  .contacto-col-2 .contacto-text p {
    font-size: 24px;
  }
  .footer-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
  }
  .footer-container-tiresia-bg-color {
    background-color: #134A39;
    padding-top: 0px;
    overflow: hidden;
    position: relative;
    z-index: 10;
    top: -2px;
  }
  .footer-item-6 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 60px 0px;
  }
  .footer-item-6 a {
    color: white;
  }
  .footer-item-6 a:hover {
    color: white;
  }
  .footer-item-6 a:active {
    color: white;
  }
  .footer-item-6 a:focus {
    color: white;
  }
  .footer-link-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .footer-link-text br {
    display: none;
  }
  footer a:hover {
    color: white;
  }
  footer a:active {
    color: white;
  }
  footer a:focus {
    color: white;
  }
  .footer-container-tiresia-bg-color-fnd {
    padding-top: 60px;
    overflow: hidden;
    background-color: #134a39;
  }
  .breadcrumb {
    max-width: 1100px;
    margin: auto;
  }
  .breadcrumb h4 {
    max-width: 1100px;
    margin: auto;
    text-align: left;
    font-size: 20px;
  }
  /* === Hero RCP - two-column layout === */
  .section-split {
    display: grid;
    grid-template-columns: 1fr 450px;
    grid-template-areas: "logo  illustration" "title illustration" "badge illustration" "sub   illustration" "desc  illustration";
    column-gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: auto;
  }
  .section-split .solution-logo {
    grid-area: logo;
    margin: 0;
    width: 260px;
  }
  .section-split h1 {
    grid-area: title;
    text-align: left;
    padding: 0;
    font-size: 58px;
  }
  .section-split h2 {
    grid-area: sub;
    text-align: left;
    padding: 0;
    line-height: 0.8em;
    font-size: 45px;
  }
  .section-split h2.green-title {
    grid-area: badge;
    line-height: 1em;
    font-size: 24px;
    margin-bottom: 16px;
  }
  .section-split p {
    grid-area: desc;
    text-align: left;
    padding: 0;
    font-size: 28px;
  }
  .section-split .section-ilustration {
    grid-area: illustration;
    align-self: stretch;
    padding: 0;
    display: flex;
    align-items: center;
  }
  .section-split .section-ilustration img {
    width: 340px;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
  .section-split--reverse {
    grid-template-areas: "illustration sub" "illustration desc";
    grid-template-columns: 450px 1fr;
  }
  .section-split--reverse h2 {
    text-align: left;
    padding: 0;
  }
  .section-split--reverse p {
    text-align: left;
    padding: 0;
  }
  .separador-tiresia-content {
    height: 2px;
    background-color: rgb(231, 231, 231);
    width: 50%;
  }
  .section-cards-1 {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }
  .section-cards-1-card {
    width: 300px;
    min-width: 300px;
    flex-grow: 0;
  }
  .section-just-text h2 {
    font-size: 45px;
    padding: 0px;
  }
  .section-just-text p {
    font-size: 28px;
    padding: 0px;
  }
  .section-just-text {
    max-width: 1100px;
    margin: auto;
  }
  .section > h2.green-title {
    width: auto;
    padding: 5px 20px;
    margin-left: 0px;
    margin-bottom: 30px;
    margin-top: 0px;
  }
  .section-foto-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    max-width: 1100px;
    margin: auto;
    gap: 60px;
  }
  .section-foto-text .section-ilustration {
    grid-area: illustration;
    align-self: stretch;
    padding: 0;
    display: flex;
    align-items: center;
  }
  .section-foto-text .section-ilustration img {
    width: 340px;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
  .section-foto-text p {
    text-align: left;
    padding: 0;
    font-size: 28px;
  }
  .solo-imagen img {
    width: 500px;
    height: auto;
  }
  .sectores-title {
    margin-bottom: 80px;
  }
  .sectores-container {
    flex-direction: row;
    max-width: 1100px;
    margin: auto;
    justify-content: center;
    align-items: stretch;
  }
  .sector {
    max-width: 280px;
  }
  .sector-icon img {
    width: 90px;
    height: auto;
  }
  .sector-text h2 {
    font-weight: 500;
    line-height: 1em;
  }
  .tipos-clientes-tarjetas {
    flex-direction: row;
    max-width: 1100px;
    align-items: stretch;
    margin: auto;
    gap: 30px;
    justify-content: center;
  }
  .noticias {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0px;
    margin-top: 60px;
  }
  .beneficio-text {
    padding: 0px !important;
    padding-bottom: 20px !important;
  }
  .beneficios p {
    padding: 0px !important;
    font-size: 16px;
  }
  .soluciones-bg .section {
    padding: 40px 0px;
    box-sizing: border-box;
  }
  .soluciones-bg .solucion-bottom {
    margin-bottom: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
