    
      /* HubSpot Styles (default) */
      .body_dnd_area-row-0-background-layers {
      background-image: linear-gradient(to bottom right, rgba(229, 243, 255, 1), rgba(229, 249, 237, 1)) !important;
      background-position: left top !important;
      background-size: auto !important;
      background-repeat: no-repeat !important;
      }
      .body_dnd_area-row-2-background-layers {
      background-image: linear-gradient(to bottom right, rgba(229, 243, 255, 1), rgba(229, 249, 237, 1)) !important;
      background-position: left top !important;
      background-size: auto !important;
      background-repeat: no-repeat !important;
      }
      .site_footer-row-1-padding {
      padding-top: 5rem !important;
      padding-bottom: 6.125rem !important;
      padding-left: 15px !important;
      padding-right: 15px !important;
      }
      .site_footer-row-1-background-layers {
      background-image: linear-gradient(rgba(25, 25, 25, 1), rgba(25, 25, 25, 1)) !important;
      background-position: left top !important;
      background-size: auto !important;
      background-repeat: no-repeat !important;
      }
      .site_footer-row-2-background-layers {
      background-image: linear-gradient(rgba(25, 25, 25, 1), rgba(25, 25, 25, 1)) !important;
      background-position: left top !important;
      background-size: auto !important;
      background-repeat: no-repeat !important;
      }
      /* HubSpot Styles (mobile) */
      @media (max-width: 767px) {
      .widget_1759858704800-hidden {
      display: block !important;
      }
      .cell_1759793048813-padding {
      padding-bottom: 30px !important;
      }
      .cell_1759792920485-padding {
      padding-bottom: 30px !important;
      }
      .cell_17597927725882-padding {
      padding-bottom: 30px !important;
      }
      .cell_1759793257183-padding {
      padding-bottom: 30px !important;
      }
    }








/* =========================================
   1. ESTILOS BASE Y RESET
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
 font-family: "Noto Sans", sans-serif !important;
  color: #111;
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   2. HEADER & NAVEGACIÓN
   ========================================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  /* background: #fff; */
background-color: transparent;
  border-bottom: 0px solid #eee;
  z-index: 1000;
  min-height: 100px;
}

.header.scrolled {
  background-color: rgb(229 248 239);
}

.header-main {
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

.nav-main a {
  margin-right: 32px;
  font-size: 15px;
  text-decoration: none;
  color: #444;
  transition: color 0.2s;
}

.nav-main a:hover { color: #000; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta .link {
  text-decoration: none;
  color: #111;
  font-size: 15px;
}

.btn-primary {
  padding: 10px 20px;
  border-radius: 6px;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

/* =========================================
   3. ESTRUCTURA HERO Y SECCIONES SPLIT
   ========================================= */
.hero {
  padding: 140px 0 60px; /* Padding superior para compensar el header fixed */
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.text h1 {
  font-size: 45px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.text h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.media img {
  width: 100%;
  height: auto;
  display: block;
}

.img-placeholder {
  width: 100%;
  height: 360px;
  background: #f0f0f0;
  border-radius: 12px;
}

/* =========================================
   4. SECCIONES ESPECÍFICAS
   ========================================= */
.logos { padding: 60px 0; }
.logos-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.logo-box {
  width: 120px;
  height: 40px;
  background: #eee;
  border-radius: 4px;
}

.feature { padding: 100px 5px 100px 5px; }
.feature.reverse .split {
  direction: rtl; /* Invierte columnas */
}
.feature.reverse .text { direction: ltr; }

.callout, .final-cta {
  padding: 100px 0;
  background: #f9f9f9;
  text-align: center;
}



/* =========================================
   5. EL CORTE EN "V" (TU DISEÑO)
   ========================================= */
.row-number-4.dnd-row {
  position: relative !important;
  /* background: linear-gradient(120deg, #eef9fe 0%, #ffffff 100%) !important; */
  padding-bottom: 140px !important;
  z-index: 1;
}

.row-number-4.dnd-row::before,
.row-number-4.dnd-row::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50.2%; 
  height: 100px;
  background-color: white; 
  z-index: 2;
}

.row-number-4.dnd-row::before {
  left: 0;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.row-number-4.dnd-row::after {
  right: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* =========================================
   6. RESPONSIVE (MÓVIL Y TABLET)
   ========================================= */
@media (max-width: 991px) {
  .text h1 { font-size: 38px; }
  .split { gap: 40px; }
}

@media (max-width: 768px) {
  .header-main {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  
  .nav-main { display: none; } /* Ocultar nav en móvil */
  
  .split {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 40px;
  }
  
  .feature.reverse .split {
    display: flex;
    flex-direction: column-reverse;
  }

  .text p { margin-left: auto; margin-right: auto; }

  .row-number-4.dnd-row::before,
  .row-number-4.dnd-row::after {
    height: 50px; /* Punta más discreta en móvil */
  }

  .logos-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

 
}



.subtitle{font-size: 25px !important;}

.text25{ font-size: 25px;}
.btng{background: #4cae3f;}
.btnb{background: #0b99dc;}
.center-text{text-align: center;}
.bannerList{margin-top:50px; position: relative; margin-bottom: -50px;}

.bannerList ul li {
    list-style: none;
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    color: #1d2e3b;
    padding: 10px;
    font-weight: 700;
}

.bannerList ul li svg {
    color: #4cae3f;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.center{text-align: center;}
.mb50{margin-bottom: 100px;}
.mb100{margin-bottom: 100px;}
h1{font-size: 55px; line-height: 1; font-weight: 700; margin-bottom: 20px;}
.bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(229 248 239);
}
.bg-indigo-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(76 174 63);
}

.faq{background-image: linear-gradient(to bottom right, rgba(229, 249, 237, 1), rgba(229, 249, 237, 1)) !important;
    background-position: left top !important;
    background-size: auto !important;
    background-repeat: no-repeat !important;}




.faq-header{
  font-size: 42px;
  border-bottom: 1px dotted #ccc;
  padding: 24px;
}

.faq-content {
  margin: 0 auto;
}

.faq-question {
  padding: 20px 0;
  border-bottom: 1px dotted #ccc;
}

.panel-title {
  font-size: 24px;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 10px 10px 0 48px;
  display: block;
  cursor: pointer;
}

.panel-content {
  font-size: 20px;
  padding: 0px 14px;
  margin: 0 40px;
  height: 0;
  overflow: hidden;
  /* z-index: -1; */
  position: relative;
  opacity: 0;
  -webkit-transition: .4s ease;
  -moz-transition: .4s ease;
  -o-transition: .4s ease;
  transition: .4s ease;
}

.panel:checked ~ .panel-content{
  height: auto;
  opacity: 1;
  padding: 14px;
}

.plus {
  position: absolute;
  margin-left: 20px;
  margin-top: 4px;
  z-index: 5;
  font-size: 42px;
  line-height: 100%;
  -webkit-user-select: none;    
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .2s ease;
  -moz-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
}

.panel:checked ~ .plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.panel {
  display: none;
}



.plr h2 {font-size: 40px; font-weight: 600; padding-top: 40px;}

.text-white-500{color:#fff}
.btn-conta {
    padding: 10px 20px;
    border-radius: 6px;
    background: #fff;
    color: #000;
    border: solid 1px #ccc;
    cursor: pointer;
    font-weight: 500;
}

.menu{font-weight: 600;}
.basebg{background-color: #e5f5f6;}
.colorg{color: #4daf41;}
.mill{color: #1a98cd;}


