/* PRIMERA SECCIÓN */

    #section-recompra .heading-text{
      margin-bottom: 14px;
      text-align: center;
    }

    #section-recompra .heading-text h4{
      margin: 0;
      font-size: 22px;
      line-height: 1.2;
      letter-spacing: .3px;
    }

    #section-recompra .recompra-body{
      font-size: 16px;
      line-height: 1.75;
      color: rgba(0,0,0,0.85);
      text-align: center; /* si lo prefieres más editorial, cámbialo a left */
    }

    /* En móvil, mejor alineado a la izquierda para lectura */
    @media (max-width: 767px){
      #section-recompra .heading-text{ text-align: left; }
      #section-recompra .recompra-body{ text-align: left; }
    }

    /* SECCION TRANSPORTE */
        /* 2 columnas: imagen + texto */
        #section-transporte .recompra-grid{
          display: flex;
          gap: 28px;
          align-items: center; /* centra verticalmente imagen y texto */
          margin-top: 18px;
        }

        #section-transporte .recompra-col-img{
          flex: 0 0 42%;
        }

        #section-transporte .recompra-col-img img{
          width: 100%;
          height: auto;
          display: block;
        }

        #section-transporte .recompra-col-text{
          flex: 1 1 auto;
        }

        #section-transporte .recompra-body{
          font-size: 16px;
          line-height: 1.75;
          color: rgba(0,0,0,0.85);
        }

        /* Responsive */
        @media (max-width: 991px){
          #section-transporte .recompra-grid{
            flex-direction: column;
            align-items: stretch;
          }
          #section-transporte .recompra-col-img{
            flex: 0 0 auto;
          }
        }

    /* PROCESO RECOMPRA */
    #section2 .process-item{
      display:flex;
      align-items:center;
      gap: 20px;
      padding: 18px 0;
    }

    #section2 .process-item + .process-item{
      border-top: 1px solid rgba(0,0,0,0.08);
    }

    /* Bloque número */
    #section2 .process-number{
      width: 40px;
      flex: 0 0 40px;
      font-weight: 800;
      font-size: 46px;
      line-height: 1;

      /* color: rgba(0,0,0,0.85); */
      color: #449a24b2;
      opacity: 0.9;
    }

    /* Texto */
    #section2 .process-text{
      flex: 1 1 auto;
    }

    #section2 .process-text h4{
      margin: 0;
      font-size: 1.25rem;
      line-height: 1.35;
    }

    /* Separadores */
    #section2 .process-separator{
      margin: 22px 0 8px 0;
      padding: 12px 14px;
      background: rgba(255,255,255,0.55);
      border-left: 4px solid #449a2477;
      font-size: 1.5rem;
      font-weight: 600;
    }

    /* Títulos */
    #section2 h2.process-title,
    #section-recompra h2.process-title,
    #section-transporte h2.process-title,
    #section-beneficios h2.process-title,
    #section-faqs h2.process-title{
      font-size: 2.8rem;
    }

    /* Responsive */
    @media (max-width: 768px){
      #section2 h2.process-title,
      #section-recompra h2.process-title,
      #section-transporte h2.process-title,
      #section-beneficios h2.process-title,
      #section-faqs h2.process-title{
        font-size: 2.3rem;
      }

      #section2 .process-separator{
        font-size: 1.2rem;
      }

      #section2 .process-text h4{
        font-size: 1.1rem;
      }

      #section2 .process-item{
        gap: 14px;
      }

      #section2 .process-number{
        width: 60px;
        flex: 0 0 60px;
        font-size: 44px;
      }
    }

    /* CONTACTO */
  #section-contacto .cta-contacto{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 18px;
    padding: 42px 44px;
    border-radius: 10px;
    background: #439a24;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  }

  #section-contacto .cta-contacto__title{
    margin: 0 0 6px 0;
    font-size: 20px;
    line-height: 1.25;
    color: rgb(255, 255, 255);
    font-size: 2rem;
  }

  #section-contacto .cta-contacto__desc{
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgb(255, 255, 255);
  }

  #section-contacto .cta-contacto__action{
    flex: 0 0 auto;
  }

  #section-contacto .cta-contacto__btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width: 170px;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    background: #fff;
    color: #111;
    border: 1px solid #FFF;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  }

  #section-contacto .cta-contacto__btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.14);
    background: #fff;
    color: #000;
  }

  /* Responsive */
  @media (max-width: 767px){
    #section-contacto .cta-contacto{
      flex-direction: column;
      align-items: stretch;
      padding: 18px 18px;
      text-align: left;
    }
    #section-contacto .cta-contacto__btn{
      width: 100%;
      min-width: 0;
    }
  }

  /* SECTION BENEFICIOS */
  #section-beneficios #cajas-beneficios{
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 22px;
    margin-top: 18px;
  }

  #section-beneficios .beneficio-card{
    flex: 0 0 calc((100% - (22px * 2)) / 3);

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 26px 22px;
    min-height: 150px;

    background: #fff;
    border-radius: 10px;
    border: 2px solid #439a24;
    box-sizing: border-box;
  }

  #section-beneficios .beneficio-card h3{
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
  }

  @media (max-width: 991px){
    #section-beneficios .beneficio-card{
      flex: 0 0 calc((100% - 22px) / 2);
    }
  }

  @media (max-width: 575px){
    #section-beneficios .beneficio-card{
      flex: 0 0 100%;
      min-height: auto;
      text-align: left;
      justify-content: flex-start;
    }
  }

  /* FAQS */
  
    #section-faqs .faqs-list{ margin-top: 18px; }

    #section-faqs .faq-item{
      border-top: 1px solid rgba(0,0,0,0.08);
    }
    #section-faqs .faq-item:first-child{ border-top: 0; }

    #section-faqs .faq-btn{
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 18px 0;
      border: 0;
      background: transparent;
      cursor: pointer;
      text-align: left;
    }

    #section-faqs .faq-q{
      margin: 0;
      font-size: 18px;
      line-height: 1.35;
      font-weight: 700;
      color: rgba(0,0,0,0.80);
    }

    #section-faqs .faq-toggle{
      width: 28px;
      height: 28px;
      border-radius: 999px;
      border: 1px solid #439a24;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      position: relative;
    }
    #section-faqs .faq-toggle::before,
    #section-faqs .faq-toggle::after{
      content: "";
      position: absolute;
      width: 18px;
      height: 2px;
      background: #439a24;
      border-radius: 2px;
    }
    #section-faqs .faq-toggle::after{
      transform: rotate(90deg);
      transition: transform .18s ease;
    }

    #section-faqs .faq-a{
      margin: 0 0 16px 0;
      font-size: 16px;
      line-height: 1.7;
      color: rgba(0,0,0,0.80);
      display: none;
    }

    #section-faqs .faq-item.is-open .faq-a{ display: block; }
    #section-faqs .faq-item.is-open .faq-toggle::after{ transform: rotate(0deg); } 

    #section-faqs .faq-btn:focus{
      outline: none;
    }
    #section-faqs .faq-btn:focus-visible{
      outline: 2px solid rgba(0,0,0,0.25);
      outline-offset: 4px;
      border-radius: 6px;
    }
