@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
  scroll-behavior: smooth;
}

:root {
    --color-naranja-1: #f99961;
    --color-rojo-1:#e5064d;
    --color-rojo-2: #b72534;
    --color-rosa-1: #ef6391;
    --color-bg-nar-nat: #f48264;
    --color-bg-nar-nat-2: #fd5e33;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

#backToTopBtn {
    display: none; /* Oculto por defecto */
    position: fixed; /* Fijo en la ventana */
    bottom: 15px; /* Posición desde el fondo */
    right: 15px; /* Posición desde la derecha */
    z-index: 50; /* Asegúrate de que esté en frente */
    width: 50px; /* Ancho del botón */
    height: 50px; /* Altura del botón */
    border: none; /* Sin borde */
    outline: none; /* Sin contorno */
    background-color: #5050507b; /* Color de fondo */
    color: white; /* Color del texto */
    cursor: pointer; /* Cursor de puntero */
    border-radius: 50%; /* Bordes redondeados para hacerlo circular */
    display: flex; /* Flexbox para centrar el contenido */
    align-items: center; /* Centrar verticalmente */
    justify-content: center; /* Centrar horizontalmente */
    padding-top: 8px;
}

#backToTopBtn:hover {
    background-color: #8b8b8b; /* Cambio de color al pasar el ratón */
}

#backToTopBtn::before {
    content: ""; /* Contenido vacío */
    border: solid white; /* Bordes sólidos blancos */
    border-width: 0 4px 4px 0; /* Ajuste de los bordes para crear la flecha */
    display: inline-block; /* Mostrar en línea */
    padding: 8px; /* Tamaño de la flecha */
    transform: rotate(-135deg); /* Rotar para crear la flecha */
    -webkit-transform: rotate(-135deg); /* Rotar para Safari */
}

main {
  padding-top: 80px;
}


/* estilos indiv. */
.mbo-10{
  margin-bottom: 10px;
}
.mbo-16{
  margin-bottom: 16px;
}
.mbo-20{
  margin-bottom: 20px;
}
.mbo-30{
  margin-bottom: 30px;
}
.mbo-40{
  margin-bottom: 40px;
}
.mbo-50{
  margin-bottom: 50px;
}
.mbo-60{
  margin-bottom: 60px;
}

.mto-10{
  margin-top: 10px;
}
.mto-16{
  margin-top: 16px;
}
.mto-20{
  margin-top: 20px;
}
.mto-30{
  margin-top: 30px;
}
.mto-40{
  margin-top: 40px;
}
.mto-50{
  margin-top: 50px;
}
.mto-60{
  margin-top: 60px;
}

.mtb-10{
  margin: 10px 0;
}
.mtb-16{
  margin: 16px 0;
}
.mtb-20{
  margin: 20px 0;
}
.mtb-30{
  margin: 30px 0;
}
.mtb-40{
  margin: 40px 0;
}
.mtb-50{
  margin: 50px 0;
}
.mtb-60{
  margin: 60px 0;
}

.mlr-10{
  margin: 0 10px;
}
.mlr-16{
  margin: 0 16px;
}
.mlr-20{
  margin: 0 20px;
}
.mtb-30{
  margin: 0 30px;
}
.mlr-40{
  margin: 0 40px;
}
.mlr-50{
  margin:  0 50px;
}
.mlr-60{
  margin: 0 60px;
}

.mle-10{
  margin-left: 10px;
}

.mri-10{
  margin-right: 10px;
}

.mleft-16{
  margin-left: 16px;
}

.pdd-10{
  padding: 10px;
}

.pdd-16{
  padding: 16px;
}

.txt-centerr {
  text-align: center;
}

.txt-startt {
  text-align: start;
}

.txt-endd {
  text-align: end;
}

.cl-orange {
    color: var(--color-naranja-1);
}

.cl-red {
    color: var(--color-rojo-1);
}

.cl-red-2 {
    color: var(--color-rojo-2);
}

.cl-pink {
    color: var(--color-rosa-1);
}

.cl-white {
    color: #fff;
}

.cl-black {
    color: #000;
}


.cl-gray {
    color: #6d6d6d;
}

.bg-orange {
    background-color: var(--color-naranja-1);
}

.bg-red {
    background-color: var(--color-rojo-1);
}

.bg-red-2 {
    background-color: var(--color-rojo-2);
}

.bg-pink {
    background-color: var(--color-rosa-1);
}

/* estilos de s1 - banner */


.cont-port1{
  position: relative;
  width: 100%;
  height: auto;
  background-image: url(../img/vender_natura_banner.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  padding: 100px 0;
}


/*
.cont-port1{
  position: relative;
  width: 100%;
  height: auto;
  background-color: #90d1ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-rojo-2);
  overflow: hidden;
  color: black;
  padding: 50px 0;
}

*/
.cont-txt-port1{
    width: 90%;
    max-width: 1200px;
    height: auto;
    padding: 0;
    margin: 0 auto;
}

.d-row-norm1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
}

.box-bann-1 {
    width: 80%;
    max-width: 960px;
    height: auto;
    padding: 0;
    margin: 0 10px 0 0;
}

.box-bann-2 {
    width: 20%;
    max-width: 240px;
    height: auto;
    padding: 0;
    display: flex;
    justify-content: center;
}

.box-bann-2 div {
    width: 100%;
    height: auto;
    padding: 0;
    
}

.box-bann-2 img {
    display: block;
    width: 100%;
    max-width: auto;
    height: auto;
    padding: 0;
    margin: 0 auto;
}

h1 {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    padding: 0;
}

.txt-port1{
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    padding: 0;
    width: auto;
}

.txt-port2{
    font-size: 25px;
    font-weight: 500;
    line-height: 1.2;
    padding: 0;
    width: auto;
}

.txt-port3{
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    padding: 0;
    width: auto;
}

.btn-reg {
    display: inline-block;
    width: auto;
    height: auto;
    padding: 12px 16px;
    margin: 0 16px 0 0;
    border-radius: 8px;
    color: var(--color-rojo-2);
    background-color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    border: 1px solid var(--color-rojo-2);
}

.btn-reg-mov {
    display: none;
}

.btn-reg-dc {
    display: inline-block;
    width: 100%;
    height: auto;
    padding: 12px 16px;
    margin: 0 0 0 0;
    border-radius: 8px;
    color: var(--color-rojo-2);
    background-color: white;
    text-decoration: none;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    border: 1px solid var(--color-rojo-2);
}

.txt-click {
  font-size: 16px;
  font-weight: 500;
  margin-top: 3px;
}

/* estilos de seccion 2 */

.sect-main-1 {
    width: 100%;
    height: auto;
    padding: 0;
}

.cont-princ-1 {
    width: 90%;
    max-width: 1200px;
    padding: 0;
    margin: 0 auto;
}

.cont-princ-mb {
    width: 90%;
    max-width: 1200px;
    padding: 0;
    margin: 0 auto 16px auto;
}

.txt-sabias {
    font-size: 24px;
    font-weight: 500;
    padding: 0;
    line-height: 1.2;
}

.txt-sabias span {
    font-size: 36px;
    font-weight: 600;
    color: var(--color-rojo-2);
}

.cont-sab {
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}

.box-sab {
    width: 25%;
    max-width: 290px;
    height: auto;
    padding: 0;
    margin: 0 8px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.box-sab i{
    font-size: 40px;
    color: var(--color-rojo-2);
}

.box-sab img{
    width: 20%;
    max-width: 150px;
    height: auto;
    display: block;
    padding: 0;
    margin: 0 auto 10px auto;
}

.txt-norm-1 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    padding: 0;
}

.txt-normm-1 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    padding: 0;
}

.txt-norm-2 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    padding: 0;
}

/* estilos de s2 - beneficios */

.subtit-nat {
    font-size: 40px;
    font-weight:700;
    line-height: 1.2;
    padding: 0;
    color: var(--color-rojo-2);
    text-align: center;
}

.cont-ben-nat {
    padding: 10px;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* Permite que los elementos pasen a la siguiente línea */
    gap: 20px;        /* Espacio entre los contenedores */
    justify-content: center; /* Centra horizontalmente */
}

.box-ben-nat {
  width: calc(50% - 20px); /* 50% del ancho menos el espacio del gap */
  height: auto;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.part-img-ben {
    width: 100%;
    height: 120px;
    padding: 10px;
    margin: 0;
}

.part-img-ben img{
    display: block;
    width: auto;
    height: 100%;
    padding: 0;
    margin: 0 auto;
    object-fit: contain;
}

.part-txt-ben {
    width: 100%;
    height: auto;
    padding: 10px;
    margin: 0;
}

.txt-ben-nat-1 {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-rojo-2);
    padding: 0;
    line-height: 1.2;
    text-align: center;
}

.txt-ben-nat-1 span{
    font-size: 20px;
    font-weight: 500;
    color: black;
    padding: 0;
    line-height: 1.2;
}

/* estilos de slider de beneficios (resp) */
.cont-tel-ben{
    display: none;
}



/* estilos s3 - mas beneficios */

.cont-ben-nat-2 {
    padding: 10px;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* Permite que los elementos pasen a la siguiente línea */
    gap: 16px;        /* Espacio entre los contenedores */
    justify-content: center; /* Centra horizontalmente */
}

.box-ben-nat-2 {
  width: calc(25% - 16px); /* 50% del ancho menos el espacio del gap */
  height: auto;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 16px;
}


.box-ben-nat-2 i {
  font-size: 36px;
  color: var(--color-rojo-2);
  margin: 0 0 10px 0;
}

.box-ben-nat-2 img {
  display: block;
  width: 20%;
  max-width: 150px;
  height: auto;
  padding: 0;
  margin: 0;
}

.tit-mas-ben {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-rojo-2);
    padding: 0;
    line-height: 1.2;
}

.info-mas-ben {
    font-size: 17px;
    font-weight: 400;
    padding: 0;
    line-height: 1.2;
}

/* estilos de slider de beneficios (resp) */
.cont-tel-ben-nat{
    display: none;
}


/* estilos s4 - portada productos */

.img-portada-prod {
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

.cont-full {
    width: 100%;
    padding: 60px 0;
}

.cont-prod {
  width: 100%;
  padding: 0;
}

.cont-ind-prod {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.box-ind {
  width: 10%;
  height: auto;
  padding: 0;
  margin: 0 8px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.box-ind:last-child {
  margin-right: 0;
}


.box-ind img{
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
    object-fit: cover;

}

.box-ind p{
  font-size: 18px;
  font-weight: 400;
  padding: 0;
  line-height: 1.2;
  text-align: center;
}

/* estilos de secciones de pestañas */
.cont-prog-slider {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
}    

    .slider-container-vip {
      width: 100%;
      overflow: hidden;
      position: relative;
      border-radius: 10px;
    }

    .slider-track-vip {
      display: flex;
      transition: transform 0.5s ease;
      background-color: white;
    }

    .slide2 {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        overflow: hidden;
    }

.cont-tabs-vip {
      width: 100%;
      display: flex;
      gap: 16px;
      padding: 10px 0;
      margin-bottom: 0;
      display: flex;
      flex-direction: row;
      justify-content: center;
    }

    /*
    .cont-tab-opc{
      width: 100%;
      display: flex;
      gap: 10px;
      padding: 10px 0;
      margin-bottom: 16px;
      background-color: pink;
      display: flex;
      flex-direction: column;
      justify-content: start;
    }
    */

    .tab-vip {
        width: 25%;
        height: auto;
        padding: 8px 12px;
        background: white;
        color: var(--color-rojo-2);
        border: 1px solid var(--color-rojo-2);
        border-radius: 5px;
        cursor: pointer;
        white-space: nowrap;
        transition: background 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    


    .tab-vip img{
        display: block;
        width: 50%;
        height: auto;
        padding: 0;
        margin: 0 auto;
    }


    .tab-vip p{
        font-size: 16px;
        line-height: 1.2;
        padding: 0;
        margin: 0;
    }

    .tab-vip.active {
      background: #ffc1ef;
      border: 1px solid #ffc1ef;
      color: white;
      font-weight: bold;
    }
    
    .tab-vip.active:first-child {
      background: #ffdf74;
      border: 1px solid #ffdf74;
      color: white;
      font-weight: bold;
    }

    .tab-vip.active:last-child {
      background: #aeaeaf;
      border: 1px solid #aeaeaf;
      color: white;
      font-weight: bold;
    }


    /* estilos de secciones de pestañas (modificada) */

    .tabss1 {
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: stretch;
      padding: 0;
      margin: 0 0 16px 0;
      gap: 16px;
    }

    .tabb1 {
        width: 25%;
        height: auto;
        padding: 8px 12px;
        background: white;
        color: var(--color-rojo-2);
        border: 1px solid var(--color-rojo-2);
        border-radius: 5px;
        cursor: pointer;
        white-space: nowrap;
        transition: background 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .tabb1 img{
        display: block;
        width: 50%;
        height: auto;
        padding: 0;
        margin: 0 auto;
    }

    .tabb1:hover {
      background-color: #f1faa2;
      border: 1px solid #f1faa2;
    }

    .active-tabb1 {
      background: #f1faa2;
      border: 1px solid #f1faa2;
    }
    

     .content-containerr{
        width: 100%;
        height: auto;
        margin: 0 0 0 0;
        padding: 0;
    }

    .tab-contentt {
      margin: 0 0 0 0;
      padding: 0;
      display: none;
    }

    .active-contentt {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 0;
      padding: 0;
    }


/* estilos s5 - categorias de natura */

.cont-enc-logo {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cont-enc-logo img{
  display: block;
  width: 12%;
  max-width: 150px;
  padding: 0;
  margin: 0 auto;
  object-fit: cover;
}

.txt-dest-nat {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    padding: 0;
}

/* estilos s - venderproductos */
.subtit-nat-2 {
    font-size: 36px;
    font-weight:700;
    line-height: 1.2;
    padding: 0;
    text-align: center;
}

.subtit-nat-h3 {
    font-size: 34px;
    font-weight:700;
    line-height: 1.2;
    padding: 0;
    text-align: center;
}

.cont-img-pos {
  padding: 0;
  margin: 0 auto;
}

.cont-img-pos img{
  display: block;
  width: 80%;
  height: auto;
  padding: 0;
  margin: 0 auto 16px auto;
}

.cont-can {
  padding: 0;
  margin: 0 auto 16px auto;
  display: flex;
  justify-content: center;
}

.box-can {
  width: 25%;
  max-width: 300px;
  height: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background-color: transparent;
}

.box-can:first-child {
  margin: 0 16px 0 0;
}

.box-can i{
 font-size: 42px;
 color: var(--color-rojo-2);
}

.box-can img{
  display: block;
  width: 25%;
  height: auto;
  padding: 0;
  margin: 0 auto;
 
}

.box-can p{
 font-size: 20px;
 color: var(--color-rojo-2);
 font-weight: 500;
 line-height: 1.2;
}

.cont-rev {
  padding: 0;
  margin: 16px auto 0 auto;
  display: flex;
  justify-content: center;
}

.box-rev-1 {
  width: 25%;
  max-width: 300px;
  height: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  background-color: transparent;
}

.box-rev-1:nth-child(2) {
  margin: 0 20px;
}

.box-rev-1 img{
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
}

.nomb-rev {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-rojo-2);
  line-height: 1.2;
}

.btn-desc {
  display: block;
  padding: 8px 12px;
  font-size: 20px;
  font-weight: 500;
  color: white;
  background-color: var(--color-rojo-2);
  border-radius: 5px;
  text-decoration: none;
  border: 1px solid var(--color-rojo-2);
}

.btn-desc:hover {
  color: var(--color-rojo-2);
  background-color: white;
  border: 1px solid var(--color-rojo-2);
}

.cont-tit-intro {
  width: 100%;
  height: auto;
  padding: 20px 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  background: linear-gradient(to right, #f08d84, #f48264, #fd5e33);
  border-radius: 15px;
}

.box-img-intro {
  width: 30%;
  height: auto;
  padding: 0;
  margin: 0 16px 0 0;
}

.box-img-intro img{
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
}

.box-txt-intro {
  width: 70%;
  height: auto;
  padding: 0;
  margin: 0 0 0 0;
}

.box-full {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 0 0 0;
}


.cont-tit-intro-2 {
  width: 100%;
  height: auto;
  padding: 30px 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  background: linear-gradient(to right, #f08d84, #f48264, #fd5e33);;
  border-radius: 15px;
}

.box-img-intro-2 {
  width: 30%;
  height: auto;
  padding: 0;
  margin: 0 16px 0 0;
}

.box-img-intro-2 img{
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
}

.box-txt-intro-2 {
  width: 70%;
  height: auto;
  padding: 0;
  margin: 0 0 0 0;
}

.cont-pasos-invita {
  width: 100%;
  height: auto;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  background-color: orange;
}

/* estilos de invita y gana */

.cont-invita-1 {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.box-pasos-inv {
  width: 30%;
  height: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box-pasos-inv i{
  font-size: 42px;
  color: white;
}

.box-pasos-inv:nth-child(2) {
  margin: 0 20px;
}

.txt-inv {
  font-size: 20px;
  font-weight: 500;
}

.txt-inv span{
  font-size: 30px;
  font-weight: 600;
}

.box-club {
  width: 25%;
  height: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box-club:nth-child(2) {
  margin: 0 16px;
}

.box-club i{
  font-size: 42px;
  color: var(--color-rojo-2);
}

.txt-club {
  font-size: 20px;
  font-weight: 600;
}

/* estilos de campañas */

.cont-camp {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
}

.box-camp {
  width: 50%;
  height: auto;
  padding: 0;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 
      0 0.5rem 1rem rgba(0, 0, 0, 0.15),
      0 -0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.box-camp:first-child {
  margin: 0 16px 0 0;
}

.part-info-camp {
  width: 100%;
  height: auto;
  padding: 16px 16px 0 16px;
  margin: 0;
}

.part-img-camp {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
}

.tit-camp {
  font-size: 30px;
  font-weight: 600;
  padding: 0;
}

.txt-norm-camp {
  font-size: 18px;
  font-weight: 400;
  padding: 0;
}

.part-img-camp img{
  display: block;
  width: 80%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  object-fit: cover;

  /* Aplica el difuminado desde arriba hacia abajo */
      mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
      -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%);

      /* Mejora suavizado para navegadores modernos */
      mask-mode: alpha;
      -webkit-mask-mode: alpha;
}


/* seccion parallax */

.cont-parallax{
    width: 100%;
    position: relative;
    background-image: url('../img/vender_natura_bannerr.webp'); /* Aquí va tu imagen de fondo */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto; /* Ajusta la altura según sea necesario */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

 .main-cont-par{
    width: 95%;
    max-width: 1200px;
    height: auto;
    padding: 16px;
    margin: 0 auto 0 auto;
    background-color: #fafafade;
    border-radius: 15px;
  }

  .txt-top-parallax{
    font-size: 28px;
    font-weight: 600;
    color: var(--color-rojo-2);
    text-transform: uppercase;
    line-height: 1.2;
    padding: 0;
}

.disp-row-3{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
}

.cont-req-1{
  width: 50%;
  max-width: 600px;
  height: auto;
  padding: 0;
  margin: 0;
}

.cont-req-1:first-child{
  margin-right: 16px;
  margin-bottom: 0;

}

.txt-esp-jaf-3{
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    padding: 0;
}

.box-req{
  width: 100%;
  height: auto;
  padding: 16px;
  border: 1px solid #eee;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background-color: white;
  display: flex;
  justify-content: start;
  align-items: center;
}

.box-req i{
  font-size: 2rem;
  color: var(--color-rojo-2);
  padding: 0;
  margin: 0 8px 0 0;
}

.box-pasos{
  width: 100%;
  height: auto;
  padding: 16px;
  border: 1px solid #eee;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background-color: white;
}

.txt-norm-jaf {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  padding: 0;
}

.cont-form-jafra{
  width: 95%;
  max-width: 1200px;
  height: auto;
  padding: 0;
  margin: 0;
}

.cont-ext-req {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
}

.cont-whats {
  border: 1px solid #eee;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background-color: white;
  padding: 0;
}

.box-whats-1 {
  width: 50%;
  height: auto;
  padding: 16px;
  margin: 0;
}

.box-pos {
  display: flex;
  justify-content: start;
  align-items: center;
}

.box-pos i{
  font-size: 2rem;
  color: var(--color-rojo-2);
  padding: 0;
  margin: 0 8px 0 0;
}


/* */

  .img-mx {
    display: inline-block;
    width: 60px;
    height: auto;
    padding: 0;
    margin: 0;
    object-fit: cover;
  }

  .subtit-reg-1 {
    font-size: 26px;
    font-weight:700;
    line-height: 1.2;
    padding: 0;
    text-align: center;
  }

.box-reg-nm {
  width: 100%;
  height: auto;
  padding: 16px;
  border: 1px solid #eee;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background-color: white;
}

.txt-norm-nm {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  padding: 0;
}

.cont-reg-nm {
  display: flex;
  justify-content: center;
  align-items: start;
}

.btn-reg-form-1 {
    display: inline-block;
    width: auto;
    height: auto;
    padding: 8px 12px;
    margin: 0 0 16px 0;
    border-radius: 8px;
    color: white;
    background-color: var(--color-bg-nar-nat-2);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid var(--color-bg-nar-nat-2);
    cursor: pointer;
}

.btn-reg-form-1:hover {
    background-color: var(--color-bg-nar-nat);
    border: 1px solid var(--color-bg-nar-nat);
}


.btn-reg-form-2 {
    display: inline-block;
    width: auto;
    height: auto;
    padding: 8px 12px;
    margin: 0 0 0 0;
    border-radius: 8px;
    color: white;
    background-color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid black;
    cursor: pointer;
}

.btn-reg-form-2:hover {
    background-color: #242424;
    border: 1px solid #242424;
}

.txt-det-btn {
  width: auto;
  font-size: 20px;
  font-weight: 500;
  padding: 4px 8px;
  background-color: white;
  margin: 0 auto 0 auto;
  color: black;
  border-radius: 10px;
  border: 1px solid white;
  text-align: center;
}

.txt-dest-nm-1 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    padding: 0;
}

.txt-dest-nm-2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    padding: 0;
}


.icon-hid {
  display: none;
}

.icon-hid2 {
    display: inline-block;
  }


/* estilos de confirmación */

  .img-logo-registro {
    display: block;
    width: 15%;
    max-width: 150px;
    height: auto;
    padding: 0;
    margin: 0 auto 16px auto;
  }

  .btn-whats{
    display: inline-block;
    width: 100%;
    height: auto;
    padding: 8px 12px;
    margin: 0 auto;
    background-color: #25D366;
    border-radius: 5px;
    color: white;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .btn-whats i{
    font-size: 24px;
    color: white;
    margin: 0 5px 0 0;
  }

 .btn-whats:hover{
    background-color: #20b657;
    text-decoration: underline;
  }

  .txt-conf-jaf  {
    font-size: 18px;
    font-weight: 600;
    padding: 0;
    line-height: 1.2;
  }

  /* estilos de tabla de camino de crec. */

    .cont-tabla-cam {
      width: 100%;
      height: auto;
      padding: 0;
      overflow-x: auto; 
    }

   .cont-tabla-cam table {
      width: 100%;
      max-width: 960px;
      border-collapse: collapse;
      margin: 0 auto;
    }

    .cont-tabla-cam th, td {
      border: 2px solid #000;
      padding: 8px;
      text-align: center;
    }

    .cont-tabla-cam th img {
      width: 50px;
      height: 50px;
      object-fit: cover;
    }

    .cont-tabla-cam th {
      padding: 8px;
    }

     .cont-tabla-cam tr {
      padding: 8px;
      font-size: 18px;
      font-weight: 600;
      color: black;
    }

    .txt-nivel {
      font-size: 18px;
      font-weight: 700;
    }

     .txt-pts-niv {
      font-size: 15px;
      font-weight: 600;
    }

    .bg-tb-0 {
      background-color: #eeeeee;
    }
    .bg-tb-1 {
      background-color: #ef3f23;
    }
    .bg-tb-2 {
      background-color: #b7b7b7;
    }
    .bg-tb-3 {
      background-color: #f99f1b;
    }
    .bg-tb-4 {
      background-color: #416cb3;
    }
    .bg-tb-5 {
      background-color: #8f56a2;
    }

    .cont-ind-slid {
      display: block;
      width: 100%;
      height: auto;
      padding: 0;
      text-align: center;
      font-size: 15px;
      font-weight: 400;
      color: #8f8f8f;
    }

    .cont-ind-slid p{
      display: none;
    }

    /* estilos de campaña individual */

    .cont-indiv-camp {
      width: 100%;
      height: auto;
      margin: 24px auto 0 auto;
      padding: 0;
      border-radius: 15px;
      box-shadow: 
      0 0.5rem 1rem rgba(0, 0, 0, 0.15),
      0 -0.5rem 1rem rgba(0, 0, 0, 0.15);
      overflow: hidden;
    }

    .cont-tit-camp {
      width: 100%;
      height: auto;
      padding: 0;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }

    .txt-alignn-1 {
      text-align: start;
    }

    .cont-tit-camp .img1{
      display: inline-block;
      width: 5%;
      height: auto;
      margin: 0 10px 0 0;
      padding: 0;
     
    }

   .cont-tit-camp .img2 {
      display: inline-block;
      width: 4%;
      height: auto;
      margin: 0 10px;
      padding: 0;
     
    }

    .cont-tit-camp .img3 {
      display: inline-block;
      width: 4%;
      height: auto;
      margin: 0;
      padding: 0;
     
    }

    .cont-icons-resp {
      display: none;

    }

    .img-camp {
      display: block;
      width: 100%;
      height: auto;
      padding: 0;
      margin: 0 auto;
    }

    /* estilos de portada navideña */

    .cont-port-navidad{
      position: relative;
      width: 100%;
      height: auto;
      background-image: url('../img/portada-natura-nav.png');
      background-size: cover;
      background-position: bottom;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: white;
      overflow: hidden;
      padding: 100px 0;
    }

    .cont-ciclo-fecha {
      width: 100%;
      height: auto;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: row;
      justify-content: start;
      align-items: start;
    }

    .box-ciclo {
      width: 30%;
      height: auto;
      padding: 0;
      margin: 0 16px 0 0;
      display: flex;
      flex-direction: row;
      justify-content: start;
      align-items: center;
    }

    .box-ciclo img{
      display: inline-block;
      width: 40px;
      height: auto;
      padding: 0;
      margin: 0 10px 0 0;
    }

    .box-ciclo p{
      font-size: 30px;
      font-weight: 600;
    }

    .box-fecha {
      width: 70%;
      height: auto;
      padding: 0;
      margin: 0 0 0 0;
      display: flex;
      flex-direction: row;
      justify-content: start;
      align-items: center;

    }

    .box-fecha img{
      display: inline-block;
      width: 50px;
      height: auto;
      padding: 0;
      margin: 0 10px 0 0;
      object-fit: contain;
    }

    .box-fecha p{
      font-size: 22px;
      font-weight: 600;
    }

    .cont-btns-4 {
      width: 100%;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      justify-content: start;
      align-items: start;
    }

    .cont-btns-bann {
      width: 100%;
      height: auto;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: row;
      justify-content: start;
      align-items: start;
    }

    .cont-btns-bann:first-child {
      margin: 0 0 8px 0;
    }

    .cont-btns-bann div {
      width: 40%;
      height: auto;
      padding: 0;
      margin: 0 8px 0 0;
    }

     .cont-btns-bann div:last-child {
      margin: 0 0 0 0;
    }


    /*
    .cont-btns-bann .btn-reg:nth-child(2) {
      margin: 0 16px;
    }
      */

    .cont-btns-bann .btn-reg:last-child {
      margin: 0;
    }

    .cont-info-video {
      width: 100%;
      height: auto;
      padding: 0;
      margin: 0 0 16px 0;
      display: flex;
      justify-content: start;
      align-items: center;
    }

    .cont-info-video img{
      display: inline-block;
      width: 50px;
      height: auto;
      padding: 0;
      margin: 0 4px 0 0;
    }

    .cont-info-video p{
      font-size: 22px;
      font-weight: 600;
    }

    .box-video-nav {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 15px;
      border: 1px solid #fff;
    }

    .box-video-nav iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .txt-info-small-1 {
      font-size: 14px;
      font-weight: 400;
    }

    /* estilos de kits de regalo */

    .cont-regalos {
      width: 100%;
      height: auto;
      padding: 0;
    }

    .cont-regalos table{
      width: 100%;
      height: auto;
      padding: 0;
    }

    .cont-regalos table {
      width: 50%;
      max-width: 600px;
      border-collapse: collapse;
      margin: 0 auto;
    }

    .cont-regalos table th, td {
      border: 2px solid #000;
      padding: 8px;
      text-align: center;
    }

    .cont-regalos table thead {
      background-color: var(--color-rojo-2);
    }

     .cont-regalos .txt-desc-1 {
      font-size: 16px;
      font-weight: 600;
    }

     .cont-regalos .txt-desc-2 {
      font-size: 16px;
      font-weight: 600;
    }

    .cont-tit-intro-reg {
      width: 60%;
      max-width: 720px;
      height: auto;
      padding: 0;
      display: flex;
      flex-direction: row;
      justify-content: center;
      margin:  30px auto 16px auto;
      align-items: center;
      background: transparent;      
    }

    .box-img-intro-reg {
      width: 15%;
      height: auto;
      padding: 0;
      margin: 0 16px 0 0;
    }

    .box-img-intro-reg img{
      display: block;
      width: 100%;
      height: auto;
      padding: 0;
      margin: 0 auto;
    }

    .box-txt-intro-reg {
      width: 70%;
      height: auto;
      padding: 0;
      margin: 0 0 0 0;
    }


    .part-img-camp-2 {
      width: 100%;
      height: auto;
      padding: 0;
      margin: 0;
    }


    .part-img-camp-2 img{
      display: block;
      width: 100%;
      height: auto;
      padding: 0;
      margin: 0 auto;
      object-fit: cover;

    }

    .div-especif {
      width: 100%;
      height: auto;
      padding: 0 16px 16px 16px;
      margin: 0;
      display: flex;
      justify-content: space-between;
    }


    .box-especif {
      width: 50%;
      height: auto;
      padding: 0;
      margin: 0 10px 0 0;
    }

    .txt-norm-camp-sh {
      font-size: 14px;
    }


/* NUEVOS ESTILOS - ENERO 2026 */

/* Estilos de portada */

    .cont-port-ene{
        position: relative;
        width: 100%;
        height: auto;
        background: var(--color-rojo-2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        overflow: hidden;
        padding: 100px 0;
    }
  
/* estilos de modal */

    .modalbol {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.6);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .modalbol.show {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .modal-content {
        background: #fff;
        padding: 16px 16px 30px 16px;
        max-width: 600px;
        width: 90%;
        border-radius: 12px;
        position: relative;
        animation: fadeIn .3s ease;
        border: 1px solid #e94213;
    }

   .modal-content .contt {
        width: 100%;
        height: 700px;
        padding: 0;
        margin: 25px 0 0 0;
        overflow-y: scroll;

    }

    .modal-content .contt::-webkit-scrollbar {
        width: 8px;
    }

    .modal-content .contt::-webkit-scrollbar-thumb {
        background-color: #202c56;
        border-radius: 10px;
    }

    .modal-content .contt::-webkit-scrollbar-track {
        background-color: #cfcfcf;
        border-radius: 10px;
    }


    .modal-content .close {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 40px;
    cursor: pointer;
    color: #e94213;
    padding: 0;
    background-color: transparent !important;
    }

    .modal-content .close:hover {
        color: #b82a03;
    }

    .modalbol2 {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.6);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .modalbol2.show {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .modal-content2 {
        background: #fff;
        padding: 16px 6px 16px 6px;
        max-width: 900px;
        width: 90%;
        border-radius: 12px;
        position: relative;
        animation: fadeIn .3s ease;
        border: 1px solid #e94213;
    }

   .modal-content2 .contt2 {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 25px 0 0 0;
    }

    .modal-content2 .close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 40px;
    cursor: pointer;
    color: #e94213;
    padding: 0;
    background-color: transparent !important;
    }

    .modal-content2 .close:hover {
        color: #b82a03;
    }

    @keyframes fadeIn {
    from { opacity: 0; transform: scale(.9); }
    to { opacity: 1; transform: scale(1); }
    }

    .video-cont-modal {
      width: 100%;
      margin: auto;
    }

    .video-cont-modal video {
      width: 100%;
      height: auto;
      display: block;
    }


    /* estilos de compra en tienda */

    .cont-com-prod {
      width: 100%;
      padding: 16px;
      margin: 0;
      border-radius: 16px;
      background: linear-gradient(to right, #f08d84, #f48264, #fd5e33);
    }

    .subcont-comp {
      width: 100%;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: start;
    }

    .part-comp-1 {
      width: 70%;
      max-width: 840px;
      margin: 0 16px 0 0;
      padding: 0;
    }

    .part-comp-2 {
      width: 30%;
      max-width: 360px;
      margin: 0 0 0 0;
      padding: 0;
    }

    .subtit-com-nat {
        font-size: 30px;
        font-weight:700;
        line-height: 1.2;
        padding: 0;
    }

    .txt-dest-com-1 {
      font-size: 22px;
      font-weight: 600;
      line-height: 1.2;
    }

    .btn-ti {
        display: inline-block;
        width: auto;
        height: auto;
        padding: 10px 14px;
        margin: 0;
        border-radius: 8px;
        color: var(--color-rojo-2);
        background-color: white;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        border: 1px solid var(--color-rojo-2);
    }

    .txt-dest-com-2 {
        font-size: 20px;
        font-weight: 500;
        line-height: 1.2;
    }

    .cont-envio {
        width:fit-content;
        padding: 10px;
        background-color: #fcc6b9f3;
        border-radius: 5px;
        display: flex;
        justify-content: start;
        align-items: center;
    }

    .txt-ap {
      width: auto;
      font-size: 24px;
      font-weight: 500;
      line-height: 1.2;
    }

    .txt-ap span {
      font-size: 32px;
      font-weight: 600;
    }
    .txt-mas {
      width: auto;
      font-size: 50px;
      font-weight: 700;
      line-height: 1.2;
      margin: 0 16px;
    }

    .txt-env {
      width: auto;
      font-size: 32px;
      font-weight: 500;
      line-height: 1.2;
    }

    .icon-env {
      font-size: 54px;
      margin: 0 10px 0 0;
    }

    .part-comp-2 img {
      display: block;
      width: 100%;
      height: auto;
      margin: 0;
      padding: 0;
    }




 @media(max-width: 799px) {

    main {
        padding-top: 90px;
    }

  
    .cont-port1{
        position: relative;
        width: 100%;
        height: auto;
        background-image: url(../img/vender_natura_banner.webp);
        background-position: top;
        background-size: cover;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        overflow: hidden;
        padding: 30px 0;
    }
  
    /*
    .cont-port1{
      width: 100%;
      height: auto;
      background-color: #90d1ff;
      padding: 30px 0;
    }
    */

    .d-row-norm1 {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
    }

    .box-bann-1 {
        width: 100%;
        max-width: 800px;
        height: auto;
        padding: 0;
        margin: 0 0 16px 0;
    }

    .box-bann-2 {
        width: 100%;
        max-width: 800px;
        height: auto;
        padding: 0;
    }

    .box-bann-2 div {
        width: 100%;
        max-width: 300px;
        height: auto;
        padding: 0;
    }

    .box-bann-2 img {
        display: block;
        width: 100%;
        max-width: auto;
        height: auto;
        padding: 0;
        margin: 0 auto;
    }


    h1 {
        font-size: 28px;
        font-weight: 700;
        line-height: 1.2;
        padding: 0;
    }

    .txt-port1{
        font-size: 22px;
        width: 100%;
    }

    .txt-port2{
        font-size: 18px;
        width: 100%;
    }

    .txt-port3{
        font-size: 16px;
    }

  
    .btn-reg {
        width: auto;
        height: auto;
        font-size: 16px;
        padding: 6px 10px;
        margin: 0 8px 0 0;
    }
  
    .btn-reg-dc {
        padding: 12px 10px;
        font-size: 18px;
    }

    .txt-click {
      font-size: 14px;
    }

    /*
    .btn-reg {
        display: none;
    }
        */

    .btn-reg-mov {
        display: inline-block;
        width: auto;
        height: auto;
        padding: 10px 16px;
        margin: 0;
        border-radius: 8px;
        color: var(--color-rojo-2);
        background-color: white;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        border: 1px solid var(--color-rojo-2);
    }


    /* estilos de seccion 2 */

    .txt-sabias {
        font-size: 20px;
    }

    .txt-sabias span {
        font-size: 28px;
    }

    .cont-sab {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
    }

    .box-sab {
        width: 100%;
        max-width: 600px;
        height: auto;
        padding: 10px;
        margin: 0 8px;
    }

    .box-sab i{
        font-size: 32px;
        color: var(--color-rojo-2);
    }

    .txt-norm-2 {
        font-size: 17px;
    }

    /* estilos de s2 - beneficios */

    .subtit-nat {
      font-size: 26px;
      
    }

    .cont-ben-nat {
        display: none;
    }

    .txt-ben-nat-1 {
    font-size: 24px;
  
}

.txt-ben-nat-1 span{
    font-size: 18px;
    
}

    /* estilos de slider de beneficios (resp) */
.cont-tel-ben{
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    position: relative;
}

.cont-tel-ben .swiper {
      width: 100%;
      height: auto;
      padding: 15px 15px 15px 15px;
}

.cont-tel-ben .swiper-slide {
      height: auto;
      box-shadow: 
      0 0.5rem 1rem rgba(0, 0, 0, 0.15),
      0 -0.5rem 1rem rgba(0, 0, 0, 0.15);
      display: flex;
      flex-direction: column;
      justify-content: start;
      align-items: center;
      padding: 10px;
      overflow: hidden;
      border-radius: 15px;  
}


.cont-tel-ben .swiper .swiper-navigation-top {
      display: flex;
      justify-content: end;
      align-items: center;
      margin-bottom: 16px;
      background-color: white;
    }

.cont-tel-ben .swiper .swiper-navigation-bottom {
      display: flex;
      justify-content: end;
      align-items: center;
      margin-top: 16px;
}

.cont-tel-ben .swiper .swiper-button-prev-tl {
    display: inline-block;
    background-color: #fff;
    color: var(--color-naranja-1);
    border: 1px solid var(--color-naranja-1);
    padding: 10px 12px;
    cursor: pointer;
    user-select: none;
    border-radius: 50%;
    margin: 0 16px 0 0;
    font-size: 18px;
    font-weight: bold;
  }

.cont-tel-ben .swiper .swiper-button-next-tl {
    display: inline-block;
    background-color: #fff;
    color: var(--color-naranja-1);
    border: 1px solid var(--color-naranja-1);
    padding: 10px 12px;
    cursor: pointer;
    user-select: none;
    border-radius: 50%;
    margin: 0 0 0 0;
    font-size: 18px;
    font-weight: bold;
  }

  /* estilos s3 - mas beneficios */

.cont-ben-nat-2 {
    
    display: none;
   
}


.tit-mas-ben {
    font-size: 18px;
 
}

.info-mas-ben {
    font-size: 17px;
   
}



  /* estilos de slider de mas beneficios (resp) */
.cont-tel-ben-nat{
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    position: relative;
}

.cont-tel-ben-nat .swiper {
      width: 100%;
      height: auto;
      padding: 15px 15px 15px 15px;
}

.cont-tel-ben-nat .swiper-slide {
      height: auto;
      box-shadow: 
      0 0.5rem 1rem rgba(0, 0, 0, 0.15),
      0 -0.5rem 1rem rgba(0, 0, 0, 0.15);
      display: flex;
      flex-direction: column;
      justify-content: start;
      align-items: start;
      padding: 16px;
      overflow: hidden;
      border-radius: 15px;  
}

.cont-tel-ben-nat .swiper-slide i {
  font-size: 32px;
  color: var(--color-rojo-2);
  margin: 0 0 10px 0;
}

.cont-tel-ben-nat .swiper-slide img {
    display: block;
    width: 20%;
    max-width: 150px;
    height: auto;
    padding: 0;
    margin: 0;
}

.cont-tel-ben-nat .swiper .swiper-navigation-top {
      display: flex;
      justify-content: end;
      align-items: center;
      margin-bottom: 16px;
      background-color: white;
    }

    .cont-tel-ben-nat .swiper .swiper-navigation-bottom {
      display: flex;
      justify-content: end;
      align-items: center;
      margin-top: 16px;
      background-color: white;
    }


.cont-tel-ben-nat .swiper .swiper-button-prev-tl {
    display: inline-block;
    background-color: #fff;
    color: var(--color-naranja-1);
    border: 1px solid var(--color-naranja-1);
    padding: 10px 12px;
    cursor: pointer;
    user-select: none;
    border-radius: 50%;
    margin: 0 16px 0 0;
    font-size: 18px;
    font-weight: bold;
  }

.cont-tel-ben-nat .swiper .swiper-button-next-tl {
    display: inline-block;
    background-color: #fff;
    color: var(--color-naranja-1);
    border: 1px solid var(--color-naranja-1);
    padding: 10px 12px;
    cursor: pointer;
    user-select: none;
    border-radius: 50%;
    margin: 0 0 0 0;
    font-size: 18px;
    font-weight: bold;
  }
        
  /* estilos s4 - portada productos */

.cont-ind-prod {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  overflow-x: visible;
}

.box-ind {
  width: 300px;
  height: auto;
  padding: 0;
  margin: 0 10px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.box-ind:last-child {
  margin-right: 0;
}


.box-ind img{
  display: block;
  width: auto;
  height: 80px;
  padding: 0;
  margin: 0 auto;
  object-fit: contain;
}

.box-ind p{
  font-size: 15px;
}

/* estilos de secciones de pestañas */



.cont-tabs-vip {
      width: 100%;
      display: flex;
      gap: 8px;
      padding: 10px 0;
      margin-bottom: 0;
      display: flex;
      flex-direction: row;
      justify-content: center;
    }

    .tab-vip {
        width: 32%;
        height: auto;
        padding: 8px 8px;
        background: white;
        color: var(--color-rojo-2);
        border: 1px solid var(--color-rojo-2);
        border-radius: 5px;
        cursor: pointer;
        white-space: nowrap;
        transition: background 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    


    .tab-vip img{
        display: block;
        width: 80%;
        height: auto;
        padding: 0;
        margin: 0 auto;
    }


    .tab-vip p{
        font-size: 16px;
        line-height: 1.2;
        padding: 0;
        margin: 0;
    }

    .tab-vip.active {
      background: #ffc1ef;
      border: 1px solid #ffc1ef;
      color: white;
      font-weight: bold;
    }
    
    .tab-vip.active:first-child {
      background: #ffdf74;
      border: 1px solid #ffdf74;
      color: white;
      font-weight: bold;
    }

    .tab-vip.active:last-child {
      background: #aeaeaf;
      border: 1px solid #aeaeaf;
      color: white;
      font-weight: bold;
    }

    .txt-dest-nat {
    font-size: 18px;
  
}

/* estilos de secciones de pestañas (modificada) */

    .tabss1 {
      gap: 8px;
    }

    .tabb1 {
        width: 32%;
        height: auto;
        padding: 8px 12px;
        background: white;
        color: var(--color-rojo-2);
        border: 1px solid var(--color-rojo-2);
        border-radius: 5px;
        cursor: pointer;
        white-space: nowrap;
        transition: background 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .tabb1 img{
        display: block;
        width: 90%;
        height: auto;
        padding: 0;
        margin: 0 auto;
    }

    .tabb1:hover {
      background-color: #f1faa2;
      border: 1px solid #f1faa2;
    }

    .active-tabb1 {
      background: #f1faa2;
      border: 1px solid #f1faa2;
    }
    

  


/* estilos s - venderproductos */
.subtit-nat-2 {
    font-size: 24px;
}

.subtit-nat-h3 {
    font-size: 24px;

}

.cont-img-pos {
  padding: 0;
  margin: 0 auto;
}

.cont-img-pos img{
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto 16px auto;
}

.cont-can {
  padding: 0;
  margin: 0 auto 16px auto;
  display: flex;
  justify-content: center;
}

.box-can {
  width: 50%;
  max-width: 300px;
  height: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background-color: transparent;
}

.box-can:first-child {
  margin: 0 16px 0 0;
}

.box-can i{
 font-size: 36px;
}

.box-can p{
 font-size: 17px;
 text-align: center;
}

.cont-rev {
  padding: 0;
  margin: 0 auto 16px auto;
  display: flex;
  justify-content: center;
}

.box-rev-1 {
  width: 32%;
  max-width: 300px;
  height: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  background-color: transparent;
}

.box-rev-1:nth-child(2) {
  margin: 0 8px;
}

.box-rev-1 img{
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
}

.nomb-rev {
  font-size: 18px;
  text-align: center;
}

.btn-desc {
  
  padding: 8px 12px;
  font-size: 15px;
}

.btn-desc i{
  display: none;
}

/* estilos de invita y gana */

.cont-invita-1 {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.box-pasos-inv {
  width: 100%;
  height: auto;
  padding: 0;
}

.box-pasos-inv:nth-child(2) {
  margin: 16px 0;
}

.txt-inv {
  font-size: 17px;
}

.txt-inv span{
  font-size: 24px;
}

.box-club {
  width: 100%;
  height: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box-club:nth-child(2) {
  margin: 16px 0;
}

.box-club i{
  font-size: 36px;
  color: var(--color-rojo-2);
}

.txt-club {
  font-size: 17px;
}

/* estilos de campañas */

.cont-camp {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.box-camp {
  width: 100%;
  height: auto;
}

.box-camp:first-child {
  margin: 0 0 16px 0;
}

.tit-camp {
  font-size: 24px;
}

.txt-norm-camp {
  font-size: 17px;
}

.part-img-camp {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
}

.part-img-camp img{
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  object-fit: cover;

  /* Aplica el difuminado desde arriba hacia abajo */
      mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
      -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%);

      /* Mejora suavizado para navegadores modernos */
      mask-mode: alpha;
      -webkit-mask-mode: alpha;
}


/* seccion parallax */

.txt-top-parallax{
    font-size: 22px;

}

.disp-row-3{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.cont-req-1{
  width: 100%;
  max-width: 750px;
  height: auto;
  padding: 0;
  margin: 0;
}

.cont-req-1:first-child{
  margin-right: 0;
  margin-bottom: 20px;
}

.txt-esp-jaf-3{
    font-size: 18px;
}

.box-req i{
  font-size: 1.8rem;
}

/* */

  .img-mx {
    display: inline-block;
    width: 40px;
    height: auto;
    padding: 0;
    margin: 0;
    object-fit: cover;
  }

  .subtit-reg-1 {
    font-size: 20px;
   
  }

  .txt-norm-nm {
    font-size: 15px;

  }

.btn-reg-form-1 {
    font-size: 16px;
}

.btn-reg-form-2 { 
    font-size: 16px;
}

.txt-det-btn {
  font-size: 18px;
}

.txt-dest-nm-1 {
    font-size: 15px;
  
}

.txt-dest-nm-2 {
    font-size: 19px;
}

 /* estilos de confirmación */

  .img-logo-registro {
    width: 40%;
    max-width: 150px;

  }

  .cont-compra-columns {
   display: none;
  }

  .txt-norm-jaf {
    font-size: 15px;
  }

  .box-whats-1 {
    width: 100%;
    height: auto;
    padding: 16px;
    margin: 0;
  }

  .box-whats-1:first-child {
    width: 100%;
    height: auto;
    padding: 16px 16px 0 16px;
    margin: 0;
  }

  .btn-whats{
    font-size: 18px;
  }

  .btn-whats i{
    font-size: 22px;
  }

  .txt-conf-jaf  {
    font-size: 16px;
  }


  .cont-tit-intro {
  width: 100%;
  height: auto;
  padding: 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background: linear-gradient(to right, #f08d84, #f48264, #fd5e33);;
}

.box-img-intro {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 0 16px 0;
}

.box-img-intro img{
  display: block;
  width: 80%;
  height: auto;
  padding: 0;
  margin: 0 auto;
}

.box-txt-intro {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 0 0 0;
}

.cont-tit-intro-2 {
  width: 100%;
  height: auto;
  padding: 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background: linear-gradient(to right, #f08d84, #f48264, #fd5e33);;
}

.box-img-intro-2 {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 0 16px 0;
}

.box-img-intro-2 img{
  display: block;
  width: 80%;
  height: auto;
  padding: 0;
  margin: 0 auto;
}

.box-txt-intro-2 {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 0 0 0;
}

.cont-pasos-invita {
  width: 100%;
  height: auto;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  background-color: orange;
}

/* estilos de tabla de camino de crec. */

   .cont-tabla-cam table {
      width: 800px;
    }

     .cont-tabla-cam tr {
      padding: 8px;
      font-size: 16px;
    }

    .txt-nivel {
      font-size: 16px;
    }

     .txt-pts-niv {
      font-size: 14px;
    }

    .cont-ind-slid p{
      display: block;
    }

    /* estilos de campaña individual */

    .cont-tit-camp {
      width: 100%;
      height: auto;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .txt-alignn-1 {
      text-align: center;
    }

    .cont-tit-camp .img1 {
      display: none;
     
    }

    .cont-tit-camp .img2 {
      display: none;
     
    }

    .cont-tit-camp .img3 {
      display: none;
     
    }

    .cont-icons-resp {
      display: flex;
      justify-content: center;
    }

    .cont-icons-resp img{
      display: inline-block;
      width: 10%;
      max-width: 120px;
      height: auto;
      padding: 0;
    
    }

    .cont-icons-resp img:first-child{
      display: inline-block;
      width: 12%;
      height: auto;
      padding: 0;
      object-fit: contain;
    
    }

    .cont-icons-resp img:nth-child(2){
      margin: 0 8px;
    
    }


     /* estilos de portada navideña */

    .cont-port-navidad{
      padding: 30px 0;
    }

    .cont-ciclo-fecha {
      display: flex;
      flex-direction: row;
      justify-content: start;
      align-items: start;
    }

    .box-ciclo {
      width: auto;
      height: auto;
      padding: 0;
      margin: 0 8px 0 0;
      display: flex;
      flex-direction: row;
      justify-content: start;
      align-items: center;
    }

    .box-ciclo img{
      display: inline-block;
      width: 20%;
      max-width: 40px;
      height: auto;
      padding: 0;
      margin: 0 5px 0 0;
    }

    .box-ciclo p{
      font-size: 12px;
    }

    .box-fecha {
      width: 100%;
      height: auto;
      padding: 0;
      margin: 0 0 0 0;
      display: flex;
      flex-direction: row;
      justify-content: start;
      align-items: start;
    }

    .box-fecha img{
      display: inline-block;
      width: 10%;
      max-width: 20px;
      height: auto;
      padding: 0;
      margin: 0 5px 0 0;
      object-fit: contain;
    }

    .box-fecha p{
      font-size: 12px;
      font-weight: 500;
    }

    .cont-btns-4 {
      width: 100%;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      justify-content: start;
      align-items: start;
    }

    /*
    .cont-btns-bann .btn-reg:nth-child(2) {
        margin: 0 5px;
    }
    */

    .cont-btns-bann {
      width: 100%;
      height: auto;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: row;
      justify-content: start;
      align-items: start;
    }

    .cont-btns-bann div {
      width: 50%;
      height: auto;
    }

    /*
    .cont-btns-bann .btn-reg:nth-child(2) {
      margin: 0 4px;
    }
    */

     .cont-info-video {
      margin: 0 0 10px 0;
    }

    .cont-info-video img{
      display: inline-block;
      width: 10%;
      max-width: 30px;
      height: auto;
      padding: 0;
      margin: 0 4px 0 0;
    }

    .cont-info-video p{
      font-size: 12px;
      font-weight: 400;
    }

     .txt-info-small-1 {
      font-size: 12px;
    }

    .cont-regalos {
      width: 100%;
      height: auto;
      padding: 0;
    }

    /* tabla de regalos */

    .cont-regalos table {
      width: 100%;
      max-width: 600px;
      border-collapse: collapse;
      margin: 0 auto;
    }

    .cont-regalos table th, td {
      border: 2px solid #000;
      padding: 4px;
      text-align: center;
    }
     .cont-regalos .txt-desc-1 {
      font-size: 15px;
      font-weight: 600;
    }

     .cont-regalos .txt-desc-2 {
      font-size: 15px;
      font-weight: 600;
    }

    .cont-tit-intro-reg {
      width: 100%;
      max-width: 720px;
      height: auto;
      padding: 0;     
    }

    .box-img-intro-reg {
      width: 20%;
      height: auto;
      padding: 0;
      margin: 0 16px 0 0;
    }

    .box-img-intro-reg img{
      display: block;
      width: 100%;
      height: auto;
      padding: 0;
      margin: 0 auto;
    }

    .box-txt-intro-reg {
      width: 80%;
      height: auto;
      padding: 0;
      margin: 0 0 0 0;
    }
    
  .txt-normm-1 {
    font-size: 15px;
    
  }


  /* Estilos de portada */

    .cont-port-ene{
        position: relative;
        width: 100%;
        height: auto;
        background: var(--color-rojo-2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        overflow: hidden;
        padding: 50px 0;
    }

    /* estilos de modales */

    .modal-content {
        padding: 16px 6px 16px 6px;
        max-width: 600px;
        width: 95%;
        border-radius: 8px;
        
    }

   .modal-content .contt {
        width: 100%;
        height: 650px;
        padding: 0;
        margin: 25px 0 0 0;

    }

    .modal-content2 {
        padding: 16px 6px 8px 6px;
        max-width: 700px;
        width: 95%;
        border-radius: 8px;
    }

   .modal-content2 .contt2 {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 25px 0 0 0;
    }

    /* estilos de compra en tienda */

    .subcont-comp {
      display: flex;
      flex-direction: column;
      justify-content: start;
      align-items: center;
    }

    .part-comp-1 {
      width: 100%;
      max-width: 799px;
      margin: 0 0 16px 0;
      padding: 0;
    }

    .subtit-com-nat {
        font-size: 24px;
    }

    .txt-dest-com-1 {
      font-size: 18px;
    }

    .txt-dest-com-2 {
      font-size: 16px;
    }

    .btn-ti {
        font-size: 16px;
    }

    .cont-envio {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: start;
      align-items: center;
    }

    .txt-ap {
      font-size: 18px;
  
    }

    .txt-ap span {
      font-size: 22px;
    }
    .txt-mas {
      font-size: 30px;
      margin: 0 0;
    }

    .txt-env {
      font-size: 22px;

    }

    .icon-env {
      font-size: 40px;
      margin: 0 0 0 0;
    }

    .part-comp-2 {
      width: 100%;
      max-width: 799px;
    }


}

@media(max-width: 399px) {

    main {
      padding-top: 95px;
    }

}

@media(max-width: 499px) {
  .icon-hid {
    display: inline-block;
  }

  .icon-hid2 {
    display: none;
  }
}