/* Contenedor de cards con scroll */
        .cards-scroller {
            position: relative;
        }
        
        .cards-container {
            display: flex;
            overflow-x: auto;
            gap: 20px;
            padding: 20px 0;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth;
            -ms-overflow-style: none;
            scrollbar-width: none;
            overflow-x: scroll;
        }
        
        /* Ocultar scrollbar pero mantener funcionalidad */
        .cards-container::-webkit-scrollbar {
            display: none;
        }
        
        /* Estilos individuales de cada card */
        .card {
            position: relative;
            overflow: hidden;
            flex: 0 0 300px;
            min-height: 492px;
            border-radius: 10px;
            background: #FEFFAA;
            cursor: pointer;
        }

        .card-front, .card-curtain {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Contenido de la cara frontal */
        .card-front-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            transition: transform 0.6s ease;
            padding: 2rem;
            text-align: left;
        }

        .card-subtitle {
            font-size: 1.125rem;
            color: black;
            text-transform: uppercase;
            top: 20px;
            left: 20px;
            position: absolute;
        }

        .card-title {
            font-size: 3rem;
            font-weight: 800;
            color: black;
            margin: 0;
            position: absolute;
            bottom: 1rem;
            text-align: left;
            line-height: 3rem;
            width: 90%;
        }

        /* Contenido de la cortina */
        .curtain-content {
            position: absolute;
            bottom: -100%;
            width: 100%;
            height: 100%;
            color: black;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: bottom 0.6s ease;
            padding: 2rem;
            text-align: left;
        }

        .curtain-content h2 {
            font-size: 2rem;
            position: absolute;
            top: 1rem;
            left: 1rem;
        }

        .curtain-content p {
            font-family: 'Good Sans';
            font-size: 1.125rem;
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            width: 90%;
            line-height: 1.5rem;
        }

        /* Hover animations */
        .card:hover .card-front-content {
            transform: translateY(-100%);
        }

        .card:hover .curtain-content {
             bottom: 0;
        }
        .card:hover{
            background: #FFFF00 !important;
        }
        
        /* Botones de navegación */
        .scroll-btn {
            width: 30px;
            height: 30px;
            border: none;
            cursor: pointer;
            display: inline-block;
            background: url(assets/images/arrow_right_white.svg) no-repeat right black;
        }
        
        .scroll-btn:hover{
           background: url(assets/images/arrow_right_yellow.svg) no-repeat right black;
        }
        
        .scroll-btn.left {
            left: 0;
            transform: rotate(180deg);
            margin-right: 10px;
        }
        
        .scroll-btn.right {
            right: 0;
        }
        
        .scroll-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        
        /* Indicador de posición */
        .dots-indicator {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }
        
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background-color: #3498db;
            transform: scale(1.2);
        }
      .fixed-top-menu {
       
        transition: all 0.8s ease-in; /* transición suave */
      }
       .menu-top {
      transition: top 0.7s ease-out;
    }
    .container-btns{
        float: right;
    }
    .container-svg {
      position: relative;
      width: 99%;
      height: auto;
      overflow: hidden;
      margin: 10px;
    }

    .background-svg {
      position: absolute;
      top: 90px;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    .content {
      position: relative;
      z-index: 10;
      color: black;
      padding: 2rem;
      padding-bottom: 0px;
    }
.hero h1{
    left: auto;
  right: -25px;
}
    .que-impulsamos-politica i{
        color:#FFFF00 !important;
        font-style: inherit;
    }
    .que-impulsamos-politica h2 {
      font-size: 4rem;
      line-height: 4rem;
    }
    .que-impulsamos-politica p{
        font-size: 1rem !important;
        line-height: 1.5rem !important;
        font-family: 'Good Sans' !important;
        color: white !important;
    }
    .indicador-nosotros{
       font-size: 10rem !important;
        margin-top: 0rem;
        font-family: 'PP Right Grotesk Medium' !important;
        margin-bottom: 0rem;
        color: #FEFFAA !important;
        line-height:8rem !important;
    }
    .scroll-wrapper {
      position: relative;
      height: 90vh;
      width: 100%;
      display: flex;
      padding: 1rem;
      box-sizing: border-box;
       -ms-overflow-style: none; /* for Internet Explorer, Edge */
        scrollbar-width: none; /* for Firefox */
    }

    .scrollable-col {
      flex: 1;
      overflow-y: scroll;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none;  /* IE y Edge */
    }

    .scrollable-col::-webkit-scrollbar {
      display: none; /* Chrome, Safari */
    }

    .custom-scrollbar {
      width: 10px;
      background: rgba(255, 255, 200, 0.2);
      margin-left: 4px;
      border-radius: 5px;
      position: relative;
    }

    .custom-thumb {
      background: black;
      width: 100%;
      border-radius: 4px;
      position: absolute;
      top: 0;
      height: 40px; /* se ajusta dinámicamente */
    }

    .content {
      height: 1500px;
      background: linear-gradient(#eee, #ccc);
      padding: 1rem;
      box-sizing: border-box;
    }
    .scrollable-col {
      flex: 1 !important;
      overflow-y: scroll !important;

      /* Ocultar scrollbar nativa: */
      scrollbar-width: none !important;        /* Firefox */
      -ms-overflow-style: none !important;     /* IE y Edge */
    }

    .scrollable-col::-webkit-scrollbar {
      display: none !important;                /* Chrome, Safari y derivados */
    }
    .container-metodo{
        background: #FEFFAA;
        color: black;
            border-radius: 20px;
            padding: 5rem;
    }
    .subtitle-presenta-p {
        width: 70%;
        font-size: 3rem;
        line-height: 3rem;
        }
        .circle-presenta{
            border: 1px solid black;
        }
        .permanente p a,
        .permanente p{
            color: black;
        }
        .btn-capital{
            display: inline-block;
            background: #FEFFAA;
            color: black;
        }
        @media screen and (max-width: 810px) {
          .container-metodo{
            padding-left: 2rem;
            padding-right: 2rem;
          }
          #gobernanza{
            padding-left: 1rem !important;
            padding-right: 1rem !important;
          }
          #proceso .scroll-wrapper{
            padding: 0px;
          }
         
        }
         
        @media screen and (max-width: 500px) {
         .hero h1{
            right: 0px !important;
            font-size: 2.2rem;
            line-height: 2.2rem;
          }
          .que-impulsamos-politica h2{
            font-size: 2rem;
            line-height: 2.4rem;
          }
          .subtitle-presenta-p{
            width: 100%;
            margin-bottom: 2rem;
          }
          #gobernanza .mt-5 {
            margin-top: 0px !important;
          }
        }