@font-face {
      font-family: 'Poppins Bold';
      src: url('../fonts/Poppins-Bold.ttf') format('truetype');
      font-weight: 700;
      font-style: bold;
    }
  
    @font-face {
      font-family: 'Poppins Regular';
      src: url('../fonts/Poppins-Regular.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Poppins Regular', "Segoe UI", sans-serif;
    }

    body {
      background: #f7f9fb;
      color: #1f2d3d;
      line-height: 1.6;
    }

    a {
      text-decoration: none;
    }

    ul {
      list-style: none;
    }

    /* NAVBAR */
    .navbar {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      padding: 1.25rem 10%;
      background: transparent;
      display: flex;
      justify-content: space-between;
      align-items: center;
      pointer-events: auto;
    }

    .logo {
      max-height: 50px;
      width: 200px;
      display: block;
    }

    .logo2 {
      max-height: 50px;
      padding-bottom:10px;
    }

    .logo:hover {
      opacity: 0.9;
      transition: opacity 0.2s ease;
    }

    /* HAMBURGER MENU */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.25rem;
    }

    .hamburger span {
      width: 26px;
      height: 3px;
      background: #ffffff;
      border-radius: 2px;
      transition: all 0.3s ease;
      display: block;
    }

    /* BOTONES */
    .btn-primary {
      display: inline-block;
      padding: 1rem 2rem;
      border-radius: 6px;
      background: #f4a641;
      color: #1f2d3d;
      font-weight: 600;
      text-align: center;
      margin: 20px;
      transition: all 0.3s ease;
      border: 2px solid #f4a641;
    }

    .btn-primary:hover {
      background-color: #FFA500;
      border-color: #FFA500;
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(255, 191, 102, 0.3);
    }

    .btn-secondary {
      display: inline-block;
      padding: 1rem 2rem;
      border-radius: 6px;
      background: #1e4fd7;
      color: #fff;
      font-weight: 600;
      margin-top: 20px;
      transition: all 0.3s ease;
      border: 2px solid #1e4fd7;
    }

    .btn-secondary:hover {
      background-color: #154fb5;
      border-color: #154fb5;
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(30, 79, 215, 0.3);
    }

    .accent {
      color: #FFA500;
      font-weight: 700;
      font-family: 'Poppins Bold', sans-serif;
    }

    .accent-2 {
      color: #FFA500;
      font-weight: 700;
      font-style: italic;
      font-family: 'Poppins Bold', sans-serif;
    }

    /* HERO SECTION */
    .hero {
      background-image: url('../img/image-1@2x.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: #FFFFFF;
      min-height: 50vh;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      position: relative;
      padding-top: 100px;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
    }

    .hero-container {
      max-width: 600px;
      position: relative;
      z-index: 2;
      margin-left: 3rem;
      padding-bottom: 30px;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      font-family: 'Poppins Bold', sans-serif;
    }

    .hero-arrow {
      position:absolute;
      left: 10px;
      bottom: 10px;
      width: 150px;
      opacity: 0.2;
      mix-blend-mode: soft-light;
    }

    .hero-subtitle {
      font-size: 1.05rem;
      font-weight: 400;
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .highlight {
      font-weight: 700;
      font-family: 'Poppins Bold', sans-serif;
    }

    .highlight2 {
      background-color: #459DD4;
      border-radius: 10%;
      padding: 0 5px;
    }

    .hero-benefits {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .hero-benefits li {
      font-size: 1.15rem;
      font-weight: 600;
      color: #FFFFFF;
    }

    .item_x::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 24px;
      background-image: url('../img/asset-x.svg');
      background-size: contain;
      background-repeat: no-repeat;
      flex-shrink: 0;
      padding-right: 10px;
    }

    .item_check::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 24px;
      background-image: url('../img/asset-check.svg');
      background-size: contain;
      background-repeat: no-repeat;
      flex-shrink: 0;
      padding-right: 10px;
    }

    /* HERO AFTER: partner logos */
    .hero-after {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: -36px;
      z-index: 30;
      position: relative;
      pointer-events: auto;
    }

    .hero-after a {
      display: inline-block;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(15, 43, 91, 0.12);
    }

    .hero-after img {
      display: block;
      height: 80px;
      width: auto;
      opacity: 0.95;
    }

    /* SECCIONES */
    section {
      padding: 30px 10%;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      font-family: 'Poppins Semibold', sans-serif;
      color: rgb(69 157 212);
      text-align: left;
    }

    .section-subtitle {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      font-family: 'Poppins Semibold', sans-serif;
      color: rgb(69 157 212);
      text-align: left;
    }

    .section-text {
      font-size: 1.1rem;
      margin-bottom: 1.0rem;
      color: #1f2d3d;
      text-align: justify;
    }


    /* TESTIMONIALS */
    .testimonials {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 20px 50px;
      align-items: center;
    }

    .testimonials-slider-container {
      grid-column: 1;
      grid-row: 1 / 3;
    }

    .testimonials-title {
      grid-column: 2;
      grid-row: 1;
      align-self: end;
    }

    .testimonials-btn {
      grid-column: 2;
      grid-row: 2;
      align-self: start;
    }

    .testimonials .btn-primary {
      margin: 20px 0;
    }

    .testimonials .testimonials-image {
      text-align: center;
    }

    /* Slick Carousel - Testimonials */
    .testimonials-slider-container {
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
    }

    .testimonials-slider {
      width: 100%;
    }

    .testimonial-slide {
      padding: 0 10px;
    }

    /* Video.js Styles */
    .testimonial-slide .video-js {
      width: 100%;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    .testimonial-slide .video-js .vjs-poster {
      border-radius: 12px;
    }

    /* Slick Arrows */
    .testimonials-slider .slick-prev,
    .testimonials-slider .slick-next {
      width: 44px;
      height: 44px;
      background: #f4a641;
      border-radius: 50%;
      z-index: 10;
      display: flex !important;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .testimonials-slider .slick-prev:hover,
    .testimonials-slider .slick-next:hover {
      background: #FFA500;
      transform: scale(1.1);
    }

    .testimonials-slider .slick-prev {
      left: -22px;
    }

    .testimonials-slider .slick-next {
      right: -22px;
    }

    .testimonials-slider .slick-prev:before,
    .testimonials-slider .slick-next:before {
      display: none;
    }

    .testimonials-slider .slick-prev svg,
    .testimonials-slider .slick-next svg {
      color: #fff;
      width: 20px;
      height: 20px;
    }

    /* Slick Dots */
    .testimonials-slider .slick-dots {
      bottom: -35px;
    }

    .testimonials-slider .slick-dots li button:before {
      font-size: 12px;
      color: #f4a641;
      opacity: 0.4;
    }

    .testimonials-slider .slick-dots li.slick-active button:before {
      color: #f4a641;
      opacity: 1;
    }

    @media (max-width: 900px) {
      .testimonials {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
      }

      .testimonials-title {
        order: 1;
        text-align: center;
        width: 100%;
      }

      .testimonials-title .section-title {
        text-align: center;
      }

      .testimonials-slider-container {
        order: 2;
        max-width: 400px;
      }

      .testimonials-btn {
        order: 3;
        text-align: center;
        width: 100%;
      }

      .testimonials-slider .slick-prev {
        left: -15px;
      }

      .testimonials-slider .slick-next {
        right: -15px;
      }
    }

    @media (max-width: 480px) {
      .testimonials-slider-container {
        max-width: 300px;
      }

      .testimonials-slider .slick-prev,
      .testimonials-slider .slick-next {
        width: 36px;
        height: 36px;
      }

      .testimonials-slider .slick-prev {
        left: -10px;
      }

      .testimonials-slider .slick-next {
        right: -10px;
      }
    }

    /* ALERTA */
    .alert {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .alert .alert-image {
      text-align: center;
    }

    .img-placeholder {
      background: #dfe7ef;
      min-height: 260px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      color: #6b7c93;
    }

    .item_check {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      text-align: left;
    }

     .item_x {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      text-align: left;
    }

    .item_check .highlight{
      margin-right: 5px;
    }

    .alerta-riesgo {
      display: flex;
      justify-content: center;
    }

    .riesgo-card {
      align-self: center;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-top: 1rem;
      max-width: 470px;
      min-height: 95px;
      margin-left: 20px;
      margin-bottom: 20px;
    }

    .alerta-riesgo::after {
      content: '';
      min-width: 120px;
      background-image: url(../img/asset-alert.svg);
      background-size: contain;
      background-repeat: no-repeat;
      position: relative;
      margin-left: -100px;
      bottom: -10px;
      z-index: -1;
    }

    @media (max-width: 900px) {
      .alerta-riesgo::after {
          transform: translate(-80px, 15px);
      }
    }

    .riesgo-card span {
      margin: 0;
      font-weight: 600;
      font-size: 1rem;
      color: inherit;
    }

    .riesgo-card .btn-primary {
      margin: 0;
      white-space: nowrap;
    }

    @media (max-width: 900px) {
      .riesgo-card {
        flex-direction: column;
        align-items: stretch;
      }

      .riesgo-card span {
        margin-bottom: 0.5rem;
      }

      .riesgo-card .btn-primary {
        width: 100%;
      }
    }

    .item_alert {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 10px;
      text-align: left;
    }
    
    .item_alert::before{
      content: '';
      display: inline-block;
      width: 24px;
      height: 24px;
      background-image: url('../img/asset-alert.svg');
      background-size: contain;
      background-repeat: no-repeat;
      flex-shrink: 0;
    }

    /* DIFERENCIAL */
    .features {
      background: #eef3f8;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .features ul li {
      margin-bottom: 10px;
      text-align: left;
    }

    .card {
      padding: 30px;
      display: grid;
      justify-content: center;
    }

    .experiencia-card {
      display: grid;
      background: linear-gradient(130deg, #DCCEB9 0%,#DCCEB9 10%, #FFBF66 40%,#FFBF66 100%);
      padding: 20px;
      border-radius: 12px;
      width: 310px;
      position: absolute;
      margin-top: -49px;
      margin-left: 100px;
    }

    .experiencia-card .top {
      font-size: 1rem;
    }

    .experiencia-card .middle {
      font-size: 2rem;
      font-weight: 700;
    }

    .experiencia-card .bottom {
      font-size: 1.5rem;
    }

    .card-testimonio {
      display: grid;
      background: linear-gradient(313deg, #3B8BD3 0%,#3B8BD3 17%, #3985CD 48%,#10377F 90%,#10377F 100%);
      padding: 20px;
      border-radius: 12px;
      color: #fff;
      overflow: hidden;
      min-width: 380px;
    }

    .card-testimonio2 {
      display: grid;
      background: linear-gradient(270deg, #dcceb9 1%, #ffbf66 92%);
      padding: 20px;
      border-radius: 12px;
      overflow: hidden;
      min-width: 380px;
      max-width: 185px;
      color: initial;
    }

    .card-testimonio .content {
      display: grid;
      padding: 10px 20px;
    }

    /*
    .card-testimonio .content::after {
        content: '';
        background-image: url(../img/asset-figure.svg);
        background-size: contain;
        background-repeat: no-repeat;
        width: 208px;
        height: 122px;
        margin-top: -122px;
        left: 295px;
        position: relative;
        opacity: 0.5;
    }
    */

      .foot-testimonio::before {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        background-image: url('../img/asset-figure-2.svg');
        background-size: contain;
        background-repeat: no-repeat;
        flex-shrink: 0;
        padding-right: 1em;
    }

    .card-testimonio2 .content .foot-testimonio::before {
        background-image: url('../img/asset-figure-3.svg');
    }

    .foot-testimonio {
      padding-top: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .text-testimonio {
      max-width: 300px;
      text-align: center;
    }

    .text-testimonio .highlight {
      font-size: 1.2em;
    }


    .riesgo-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      background: linear-gradient(95deg, #1e4fd7e0 0%, #459DD4e0 100%);
      color: #fff;
      padding: 20px;
      border-radius: 12px;
      margin-top: 20px;
    }

    .riesgo-card a{
      padding: 5px;
    }

    /* AUDIENCE */
    .audience {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .audience .section-title {
      text-align: center;
    }

    .highlight3 {
      color: #304076;
      font-weight: 700;
      font-family: 'Poppins Bold', sans-serif;
    }

    .audience-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      margin: 10px 0;
      text-align: left;
    }

      .audience-si {
        font-weight: 600;
        color: #459DD4;
        margin-top: 20px;
        text-align: center;
        font-size: 1.3em;
      }

      .audience-no {
        font-weight: 600;
        color: #304076;
        margin-top: 20px;
        text-align: center;
        font-size: 1.3em;
      }

    .audience-image {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .audience-box {
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .audience-box ul {
      display: contents;
    }

    .audience-box ul li {
      margin-bottom: 10px;
    }

    /* FRASE */
    .quote {
      background: linear-gradient(0deg, #3B8BD3 0%, #3B8BD3 17%, #3985CD 50%,#10377F 90%,#10377F 100%);
      color: #fff;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .quote .container {
      display: flex;
    }

    .quote .container blockquote {
      font-size: 1.8rem;
      margin-bottom: 16px;
      font-weight: 700;
    }
    
    .quote .container::before{
      content: '';
      display: inline-block;
      width: 64px;
      height: 82px;
      background-image: url('../img/asset-double-quotes.svg');
      background-size: contain;
      background-repeat: no-repeat;
      -webkit-transform: scale(-1, -1);
      -moz-transform: scale(-1, -1);
      -o-transform: scale(-1, -1);
      transform: scale(-1, -1);
      margin-right: 10px;
    }

    .quote .container::after{
      content: '';
      display: inline-flex;
      width: 64px;
      height: 82px;
      background-image: url('../img/asset-double-quotes.svg');
      background-size: contain;
      background-repeat: no-repeat;
      align-items: flex-start;
      margin-left: 10px;
    }

    .quote-after {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: -36px;
      z-index: 30;
      position: relative;
      pointer-events: auto;

    }


    /* EXTRAS */
    .extras-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: start;
    }

    .extras-container .container {
      display: grid;
      justify-content: start;
      justify-items: start;
    }

    .extras-image {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .wave img {
      margin-bottom: -9px;
    }

    /* FOOTER */
    footer {
      background: #459DD4;
      color: #fff;
      padding: 40px 10%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      justify-items: center;
      width: 100%;
      box-sizing: border-box;
    }

    .footer-column {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    .footer-column-2 {
      border-left: 2px solid rgba(255, 255, 255, 0.3);
      padding-left: 40px;
    }

    .footer-column-3 {
      grid-column: 1 / -1;
      padding-top: 40px;
    }

    footer .row-1{
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 20px;
    }

    footer .row-2{
      display: flex;
      flex-direction: row;
      justify-content: space-around;
      width: 100%;
      align-items: center;
      max-width: 300px;
    }

    footer .row-2 a {
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    footer .row-2 a:hover {
      transform: scale(1.1);
    }

    footer .row-3 {
      display: flex;
      flex-direction: row;
      justify-content: space-around;
      width: 100%;
      align-items: center;
      gap: 20px;
    }

    footer .row-3 a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: #fff;
      font-weight: 700;
      transition: opacity 0.3s ease;
      text-decoration: none;
      width: 180px;
      height: 60px;
      flex-shrink: 0;
    }

    footer .row-3 a:hover {
      opacity: 0.8;
    }

    footer .row-3 a span {
      color: #fff;
      font-weight: 700;
      font-size: 0.9em;
    }

    
    footer .row-4 {
      grid-column: 1 / -1;
      background: #fff;
      color: #459DD4;
      width: 100%;
      padding: 20px 10%;
      text-align: center;
      box-sizing: border-box;
    }

    footer .row-4 .footer-text {
      color: #459DD4;
      margin-bottom: 0;
        font-weight: 700;
      font-size: 0.9em;
    }

    .footer-text {
      font-size: 1.5rem;
      margin-bottom: 16px;
      text-align: center;
    }

    .footer-arrow {
      position:fixed;
      right: 10px;
      bottom: 10px;
      width: 150px;
      opacity: 0.2;
      mix-blend-mode: soft-light;
    }

    .btn-container {
      width: 100%;
    }

    .partners-logo a img {
      height: 65px;
      width: auto;
    }

    .partners-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 50px;
    }

    .img-social {
      height: 32px;
    }

    /* FOOTER BOTTOM (full width copyright) */
    .footer-bottom {
      background: #fff;
      color: #459DD4;
      width: 100%;
      padding: 20px 10%;
      text-align: center;
      box-sizing: border-box;
    }

    .footer-bottom .footer-text {
      color: #459DD4;
      margin-bottom: 0;
      font-weight: 700;
      font-size: 0.9em;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .hero-container {
        max-width: 500px;
        margin-left: 2rem;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .hero-subtitle {
        font-size: 1rem;
      }

      .hero-benefits li {
        font-size: 1rem;
      }
      .audience-image img {
        max-height: 240px;
        object-fit: contain;
      }
      .audience-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
      }
      .partners-container {
        display: flex;
        gap: 20px;
        flex-direction: column;
      }

    }

    @media (max-width: 900px) {


      section,
      .alert,
      .features,
      .extras-container,
      .audience-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
      }

      .audience-grid {
        text-align: left;
      }

      .experiencia-card {
        margin-top: -47px;
        margin-left: 210px;
      }

      .experiencia-container {
        display: flex;
        justify-content: center;
      }

      footer {
        grid-template-columns: 1fr !important;
        padding: 30px 5% !important;
        gap: 20px !important;
      }

      .footer-column-2 {
        border-left: none !important;
        padding-left: 0 !important;
        border-top: 2px solid rgba(255, 255, 255, 0.3) !important;
        padding-top: 20px !important;
      }

      .footer-column-3 {
        padding-top: 20px !important;
        grid-column: 1 / -1 !important;
      }

      footer .row-3 {
        flex-direction: column !important;
        gap: 15px !important;
      }

      footer .row-3 a {
        width: 180px !important;
        height: 60px !important;
      }

      .footer-text {
        font-size: 1.2rem !important;
      }

      footer .row-2 {
        max-width: 250px !important;
      }

      .img-social {
        height: 28px !important;
      }
    }

    @media (max-width: 768px) {

      .navbar {
        padding: 1rem 4%;
      }

      .logo {
        max-height: 40px;
      }

      .hamburger {
        display: flex;
      }

      .hero-container {
        max-width: 100%;
        margin-left: 1rem;
      }

      .hero h1 {
        font-size: 2.2rem;
      }

      .hero-subtitle {
        font-size: 0.95rem;
      }

      .hero-benefits li {
        font-size: 0.95rem;
      }

      .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
      }

      .alert img,
      .experiencia-img img,
      .audience-image img,
      .extras-image img {
        max-height: 240px;
        object-fit: contain;
      }

      .experiencia-card {
        margin-top: -58px;
        margin-left: 145px;
        width: 200px;
      }

      .experiencia-card .top {
        font-size: 0.8rem;
      }
      .experiencia-card .middle {
        font-size: 1.5rem;
      }
      .experiencia-card .bottom {
        font-size: 1.2rem;
      }

      
    }

    @media (max-width: 480px) {

      .experiencia-card {
        margin-top: -58px;
        margin-left: 120px;
        width: 180px;
      }

      .experiencia-card .top {
        font-size: 0.6rem;
      }
      .experiencia-card .middle {
        font-size: 1.2rem;
      }
      .experiencia-card .bottom {
        font-size: 1.0rem;
      }

      .hero-container {
        margin-left: 0;
      }

      .hero h1 {
        font-size: 1.5rem;
      }

      .hero-subtitle {
        font-size: 0.9rem;
      }

      .hero-benefits li {
        font-size: 0.9rem;
      }

      .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
      }

      /*
      .card-testimonio .content::after {
          width: 208px;
          height: 122px;
          margin-top: -122px;
          left: 190px;
          position: relative;
          opacity: 0.5;
      }
      */

      .card-testimonio {
        min-width: 280px;
      }

      .card-testimonio2 {
        min-width: 280px;
      }

     .foot-testimonio {
        font-size: 0.7em;
      }

      .logo {
        max-height: 35px !important;
        width: 150px !important;
      }

      footer .row-3 a {
        width: 160px !important;
        height: 55px !important;
      }
    }