@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;

    --color-nat-nw-1: #fa5300;
    --color-nat-nw-2: #e90f3f;
    --color-nat-nw-3: #a41946;
    --color-nat-nw-4: #ae0025;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

a {
  text-decoration: none;
}

h1,h2,h3 {
  line-height: 1.2;
}

p {
  line-height: 1.2;
}

/* 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;
}
.mle-16{
  margin-left: 16px;
}

.mri-10{
  margin-right: 10px;
}
.mri-16{
  margin-right: 16px;
}

.pdd-10{
  padding: 10px;
}
.pdd-16{
  padding: 16px;
}

.txt-centerr {
  text-align: center;
}
.txt-startt {
  text-align: start;
}
.txt-endd {
  text-align: end;
}

.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}

.cl-orange {
    color: var(--color-nat-nw-1);
}

.cl-pink {
    color: var(--color-nat-nw-2);
}

.cl-d-red {
    color: var(--color-nat-nw-3);
}

.cl-d-red-2 {
    color: var(--color-nat-nw-4);
}



.cl-white {
    color: white;
}

.cl-gray-1 {
    color: #737373;
}

/* seccion portada */

.sect-portt {
    width: 100%;
    height: auto;
    padding: 80px 0 100px 0;
    margin: 0;
    /*background: linear-gradient(
        90deg,
      #ff481a 0%,
      #ff2d25 50%,
      #ee003e 100%
    );*/
    background-image: url('../img/bg-natura.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sect-portt-2 {
    width: 100%;
    height: auto;
    padding: 40px 0 40px 0;
    margin: 0;
    /*background: linear-gradient(
        90deg,
      #ff481a 0%,
      #ff2d25 50%,
      #ee003e 100%
    );*/
    background-image: url('../img/bg-natura.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sect-nat {
    width: 100%;
    height: auto;
    padding: 50px 0;
    margin: 0;
}

.cont-portt {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.sc-portt-1 {
    width: 100%;
    display: flex;
    justify-content: end;
}

.cont-h {
  margin: 0 0 24px 0;
  display: flex;
  justify-content: flex-end;
}

.btn-cat {
  display: inline-block;
  padding: 16px 24px;
  margin: 0;
  background-color: white;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-nat-nw-2);
  border-radius: 12px;

  transition: transform 0.25s ease,
                background-color 0.25s ease;

}

.btn-cat:hover {
    background-color:var(--color-nat-nw-2);
    color: white;
    transform: scale(0.95);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
}

.efect-fadepop {
    opacity: 0;
    transform: scale(0.8);
}

.efect-fadepop.visible {
    animation: fadePop 0.7s ease-out forwards;
}


@keyframes fadePop {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }

    60% {
        opacity: 1;
        transform: scale(1.08);
    }

    80% {
        transform: scale(0.96);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


.cont-info-vid {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
}

.box-info-nat {
  width: 60%;
  max-width: 720px;
  height: auto;
  padding: 0;
  margin: 0 16px 0 0;
}

.cont-fech-ciclo {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.txt-ciclo {
  font-size: 28px;
  font-weight: 600;
  color: white;
}

.txt-fech {
  font-size: 18px;
  font-weight: 600;
  color: white;
}

h1 {
  font-size: 50px;
  font-weight: 800;
  color: white;
}

.txt-princ-port {
  font-size: 16px;
  font-weight: 500;
  color: white;
}

.div-btns {
  display: flex;
  justify-content: start;
  align-items: center;
}

.btn-regg {
  display: inline-block;
  padding: 12px 16px;
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  color: white;
  border-radius: 8px;
  border: 1px solid white;

  transition: transform 0.25s ease;
}

.btn-regg:hover {
    transform: scale(1.1);
}


.btn-regg:first-child {
  margin: 0 16px 0 0;
}


.box-vid-nat {
  width: 40%;
  max-width: 480px;
  height: auto;
  padding: 0;
  margin: 0 0 0 0;
  aspect-ratio: 16 / 9; 
}

.box-vid-nat iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fade-scroll {
    opacity: 0;
}

.fade-scroll.visible {
    animation: fadeIn 1.2s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slide-up-scroll {
    opacity: 0;
    transform: translateY(50px);
}

.slide-up-scroll.visible {
    animation: slideUp 0.4s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* sec 2 */

.cont-nat-1 {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
} 

.txt-lead-nat-1 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-nat-nw-1);
}

.cont-swp-oport {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.cont-swp-oport .swiper {
    width: 100%;
    height: auto;
    padding: 10px 0 0 0;
    background-color: transparent;
}

.cont-swp-oport .swiper-slide {
      height: auto;
      background: #fff;
      border-radius: 15px;
      border: 1px solid var(--color-nat-nw-2);
      display: flex;
      flex-direction: row;
      justify-content: start;
      align-items: start;
      padding: 16px;
}

.cont-swp-oport .swiper-slide .ss-img {
  width: 25%;
  margin: 0 10px 0 0;
}

.cont-swp-oport .swiper-slide .ss-img img {
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  object-fit: cover;
}

.ss-txt-btn {
  width: 75%;
  margin: 0 0 0 0;
}

.txt-oport-1 {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-nat-nw-2);
}

.txt-oport-2 {
  font-size: 16px;
  font-weight: 600;
}

.btn-oport {
  display: block;
  width: 100%;
  padding: 0;
  margin: 5px 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

.btn-oport p {
  font-size: 16px;
  font-weight: 600;
  margin-right: 10px;
  text-align: start;
  color: var(--color-nat-nw-1);
}

.btn-oport i {
  font-size: 24px;
  color: var(--color-nat-nw-1);
}

.cont-swp-oport .swiper .swiper-navigation-top {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 16px;
}

.cont-swp-oport .swiper .swiper-button-prev-n1 {
    display: inline-block;
    background-color: #fff;
    color: var(--color-nat-nw-2);
    border: 1px solid var(--color-nat-nw-2);
    padding: 10px 12px;
    cursor: pointer;
    user-select: none;
    border-radius: 50%;
    margin: 0 16px 0 0;
    font-size: 18px;
    font-weight: bold;
}

.cont-swp-oport .swiper .swiper-button-next-n1 {
    display: inline-block;
    background-color: #fff;
    color: var(--color-nat-nw-2);
    border: 1px solid var(--color-nat-nw-2);
    padding: 10px 12px;
    cursor: pointer;
    user-select: none;
    border-radius: 50%;
    margin: 0 0 0 0;
    font-size: 18px;
    font-weight: bold;
}

/* modales */

.modal-oport {
    display:none;
    position:fixed;
    inset: 0;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1000;
    background:rgba(255,255,255,.25);
    justify-content:center;
    align-items:center;
    padding: 0;
}

.modal-oport.show {
    display: flex;
    /*justify-content: center;
    align-items: center;*/
}

.modal-content {
    width:100%;
    /*max-width:1200px;*/
    height:100vh;
    border-radius:0;
    padding:32px 0;
    background-color: white;
}

.modal-content .cont-info-op {
    width: 90%;
    max-width: 1200px;
    height: 100%;
    padding: 0 8px 0 0;
    margin: 0 auto;
    overflow-y:scroll;
}

.modal-content .cont-info-op::-webkit-scrollbar {
    width: 8px;
}

.modal-content .cont-info-op::-webkit-scrollbar-thumb {
    background-color: var(--color-nat-nw-1);
    border-radius: 10px;
}

.modal-content .cont-info-op::-webkit-scrollbar-track {
    background-color: #dedddd;
    border-radius: 10px;
}

.modal-content .close {
    display:inline-flex;
    align-items:center;
    gap: 8px;
    background: var(--color-nat-nw-2);
    cursor: pointer;
    padding: 4px 10px;
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid var(--color-nat-nw-2);
    border-radius: 999px;
    color: white;
}

.modal-content .close:hover {
    background-color: white;
    color: var(--color-nat-nw-2);
}

.cont-nar {
  width: 100%;
  height: auto;
  background-color: var(--color-nat-nw-1);
  border-radius: 15px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cont-rd {
  width: 100%;
  height: auto;
  background-color: var(--color-nat-nw-3);
  border-radius: 15px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.txt-tit-mod {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.img-niv {
  display: inline-block;
  width: 30%;
  max-width: 360px;
  padding: 0;
  margin: 0;
}

.wd-600 {
  width: 50%;
  max-width: 600px;
}

.wd-720 {
  width: 60%;
  max-width: 740px;
}

.wd-840 {
  width: 70%;
  max-width: 840px;
}

.txt-dest-mod-1 {
  font-size: 32px;
  font-weight: 700;
}

.txt-dest-mod-2 {
  font-size: 50px;
  font-weight: 700;
}

.txt-st-mod-1 {
  font-size: 32px;
  font-weight: 600;
}

.txt-st-mod-2 {
  font-size: 24px;
  font-weight: 600;
}

.txt-st-mod-3 {
  font-size: 30px;
  font-weight: 500;
}

.txt-mod-nm-1 {
  font-size: 17px;
  font-weight: 500;
}

.cont-btn-kits {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.box-info-kits {
  width: 75%;
  max-width: 900px;
  margin: 0 24px 0 0;
}

.box-btn-kits {
  width: 300px;
  height: auto;
  padding: 24px;
  border-radius: 16px;
  background-color: var(--color-nat-nw-1);
  color: white;
}

.btn-kits {
  display: block;
  width: 100%;
  padding: 0;
  margin: 5px 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  color: white;

}

.btn-kits p {
  text-align: start;
}

.btn-kits i {
  font-size: 24px;
}

.box-btn-kits img {
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 10px auto 0 auto;
}

.cont-sb {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  padding: 16px;
  background-color: #f7f7f7;
  border-radius: 8px;
}

.sb-info {
  width: 75%;
  max-width: 900px;
  margin: 0 20px 0 0;
}

.txt-sb-1 {
  font-size: 18px;
  font-weight: 600;
}

.txt-sb-2 {
  font-size: 16px;
  font-weight: 600;
}

.sp-pts {
  background-color: #b6b6b6;
  padding: 2px 8px;
  border-radius: 999px;
}

.sb-pts {
  width: 25%;
  max-width: 300px;
  margin: 0 0 0 0;
  display: flex;
  justify-content: start;
  align-items: center;
}

.suma {
  margin: 0 10px 0 0;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.puntos {
  
}

/* seccion 3 */

.txt-sabias {
    font-size: 20px;
    font-weight: 500;
    padding: 0;
    line-height: 1.2;
    color: var(--color-nat-nw-1);
}

.txt-sabias span {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-nat-nw-4);
    text-transform: uppercase;
}

/* secc 4 */

.subtit-nat {
    font-size: 38px;
    font-weight:700;
    line-height: 1.2;
    padding: 0;
    color: var(--color-nat-nw-4);
    text-align: center;
    text-transform: uppercase;
}

.sp-subtit {
  font-weight:400;
}

.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.12), 
  0 -0.5rem 1rem rgba(0, 0, 0, 0.12);
  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: 600;
    color: var(--color-nat-nw-2);
    padding: 0;
    line-height: 1.2;
}

.info-mas-ben {
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    line-height: 1.2;
}

/* estilos de slider de beneficios (resp) */
.cont-tel-ben-nat{
    display: none;
}

/* secc 5 */

.subtit-nat-h3 {
    font-size: 32px;
    font-weight:700;
    line-height: 1.2;
    padding: 0;
    text-transform: uppercase;
}

.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;
}

/* secc 6 */

/* 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: var(--color-nat-nw-2);
        color: white;
        border: 1px solid var(--color-nat-nw-2);
        border-radius: 15px;
        cursor: pointer;
        white-space: nowrap;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        font-weight: 500;

        transition: transform 0.25s ease,
                background-color 0.25s ease;
      
    }

    .tabb1:hover {
      background-color: var(--color-nat-nw-1);
      border: 1px solid var(--color-nat-nw-1);
      transform: scale(1.05);

    }

    .active-tabb1 {
      background: var(--color-nat-nw-1);
      border: 1px solid var(--color-nat-nw-1);
    }
    

     .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;
    }

    .txt-dest-nat {
      font-size: 17px;
      font-weight: 500;
    }

    /* secc imagen */

    .img-portada-prod {
        display: block;
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }

    /* sec cuadro nar */

    .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);*/
  background-color: transparent;
  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;
}

.txt-comp-1 {
  font-size: 22px;
  font-weight: 500;
}

/* 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;
    }

  /* 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: 20px;
    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-nat-nw-1);
  padding: 0;
  margin: 0 8px 0 0;
}

.div-hidd {
  display: block;
}

.div-hidd-tel {
  display: none;
}

.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;
}

.div-reg-form-1 {
    display: inline-block;
    width: auto;
    height: auto;
    padding: 8px 12px;
    margin: 0 0 0 0;
    border-radius: 8px;
    color: white;
    background-color: var(--color-bg-nar-nat-2);
    border: 1px solid var(--color-bg-nar-nat-2);
}

.div-reg-form-2 {
    display: inline-block;
    width: 60%;
    height: auto;
    padding: 8px 12px;
    margin: 16px 0 0 0;
    border-radius: 8px;
    color: white;
    background-color: var(--color-bg-nar-nat-2);
    border: 1px solid var(--color-bg-nar-nat-2);
}

.div-buttons-reg {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

/*
.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 {
    display: inline-block;
    width: auto;
    height: auto;
    padding: 8px 12px;
    margin: 0 16px 0 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 white;
    cursor: pointer;
    text-align: center;
}

.btn-reg-form-1:hover {
    background-color: #db5322;
    border: 1px solid #db5322;
}

.btn-reg-formm-1 {
    display: inline-block;
    width: auto;
    height: auto;
    padding: 8px 12px;
    margin: 0 0 0 0;
    border-radius: 8px;
    color: black;
    background-color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid white;
    cursor: pointer;
    text-align: center;
}


.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;
  }

.disp-row-3-center {
  display: flex;
  justify-content: center;

}

.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;
  }

  /* footer */

footer{
    width: 100%;
    height: auto;
    padding: 20px 0;
    margin: 0;
    background-color: white;
}

.cont-ft{
    width: 90%;
    max-width: 1200px;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-ft{
    display: flex;
    width: 15%;
    max-width: 200px;
    height: auto;
    padding: 0;
    margin: 0 0 10px 0;
}

.txt-copyright-ft{
    font-size: 15px;
    font-weight: 400;
    color: var(--color-jafra);
    padding: 0;
    text-align: center;
}


 @media(max-width: 799px) {
 
  /* portada */

  .sect-portt {
      width: 100%;
      height: auto;
      padding: 40px 0 40px 0;
  }

  .sect-portt-2 {
    width: 100%;
    height: auto;
    padding: 30px 0 30px 0;
}

  .sect-nat {
      width: 100%;
      height: auto;
      padding: 50px 0;
      margin: 0;
  }

  .cont-portt {
    
  }

  .cont-h {
    
  }

  .btn-cat {
    padding: 10px 18px;    
    font-size: 16px;
  }

  .btn-cat:hover {

  }

  .cont-info-vid {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
  }

  .box-info-nat {
    width: 100%;
    max-width: 799px;
    height: auto;
    padding: 0;
    margin: 0 0 16px 0;
  }

  .cont-fech-ciclo {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .txt-ciclo {
    font-size: 24px;
  }

  .txt-fech {
    font-size: 16px;
  }

  h1 {
    font-size: 36px;
  }

  .txt-princ-port {
    font-size: 16px;
  }

  .div-btns {
    display: flex;
    justify-content: start;
    align-items: center;
  }

  .btn-regg {
    padding: 8px 12px;
    font-size: 16px;
  }

  .btn-regg:hover {
      transform: scale(1.1);
  }


  .btn-regg:first-child {
    margin: 0 12px 0 0;
  }


  .box-vid-nat {
    width: 100%;
    max-width: 600px;
  }

  .box-vid-nat iframe {
  
  }

  /* secc 2 */

  .cont-nat-1 {
    
  } 

  .txt-lead-nat-1 {
    font-size: 18px;
  }

  .cont-swp-oport .swiper-slide .ss-img {
    width: 20%;
    margin: 0 10px 0 0;
  }

  .ss-txt-btn {
    width: 80%;
    margin: 0 0 0 0;
  }

  /* modales */

.modal-oport {
    
}

.modal-oport.show {
   
}

.modal-content {
    
}

.modal-content .cont-info-op {
    
}

.modal-content .cont-info-op::-webkit-scrollbar {
}

.modal-content .cont-info-op::-webkit-scrollbar-thumb {
   
}

.modal-content .cont-info-op::-webkit-scrollbar-track {
    
}

.modal-content .close {
  
}

.modal-content .close:hover {
    
}

.cont-nar {
  width: 100%;
  height: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.cont-rd {
  width: 100%;
  height: auto;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.txt-tit-mod {
  font-size: 20px;
}

.img-niv {
  display: inline-block;
  width: 50%;
  max-width: 200px;
  padding: 0;
  margin: 0;
}

.wd-600 {
  width: 100%;
  max-width: 799px;
}

.wd-720 {
  width: 100%;
  max-width: 799px;
}

.wd-840 {
  width: 100%;
  max-width: 799px;
}

.txt-dest-mod-1 {
  font-size: 24px;
}

.txt-dest-mod-2 {
  font-size: 28px;
}

.txt-st-mod-1 {
  font-size: 22px;
}

.txt-st-mod-2 {
  font-size: 18px;
}

.txt-st-mod-3 {
  font-size: 20px;
}

.txt-mod-nm-1 {
  font-size: 16px;
}

.cont-btn-kits {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.box-info-kits {
  width: 100%;
  max-width: 799px;
  margin: 0 0 16px 0;
}

.box-btn-kits {
  width: 300px;
  height: auto;
  padding: 24px;

}

.btn-kits {

}

.btn-kits p {
  text-align: start;
}

.btn-kits i {
}

.box-btn-kits img {
  
}

.cont-sb {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px;
}

.sb-info {
  width: 100%;
  max-width: 799px;
  margin: 0 0 16px 0;
}

.txt-sb-1 {
  font-size: 17px;
}

.txt-sb-2 {
  font-size: 15px;
}

.sp-pts {
  padding: 2px 6px;
}

.sb-pts {
  width: 100%;
  max-width: 799px;
  margin: 0 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* secc 3 */

.txt-sabias {
    font-size: 18px;
}

.txt-sabias span {
    font-size: 26px;
   
}

 /* estilos s4 - mas beneficios */

.subtit-nat {
      font-size: 26px;      
}

.cont-ben-nat-2 {
    display: none;
}

.tit-mas-ben {
    font-size: 18px; 
}

.info-mas-ben {
    font-size: 16px;  
}

/* 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.12), 
      0 -0.5rem 1rem rgba(0, 0, 0, 0.12);
      display: flex;
      flex-direction: column;
      justify-content: start;
      align-items: start;
      padding: 16px;
      overflow: hidden;
      border-radius: 15px;  
}

.cont-tel-ben-nat .swiper-slide img {
    display: block;
    width: 20%;
    max-width: 100px;
    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-nat-nw-2);
    border: 1px solid var(--color-nat-nw-2);
    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-nat-nw-2);
    border: 1px solid var(--color-nat-nw-2);
    padding: 10px 12px;
    cursor: pointer;
    user-select: none;
    border-radius: 50%;
    margin: 0 0 0 0;
    font-size: 18px;
    font-weight: bold;
  }

 /* estilos s5 - portada productos */

 .subtit-nat-h3 {
    font-size: 24px;
}


.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 (modificada) */

    .tabss1 {
      gap: 8px;
    }

    .tabb1 {
        width: 32%;
        height: auto;
        padding: 8px 12px;
        background: var(--color-nat-nw-2);
        color: white;
        border: 1px solid var(--color-nat-nw-2);
        border-radius: 5px;
        cursor: pointer;
        white-space: nowrap;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 16px;

        transition: transform 0.25s ease,
                background-color 0.25s ease;
    }
   
    .active-tabb1 {
      background: var(--color-nat-nw-1);
      border: 1px solid var(--color-nat-nw-1);
    }

  /* sec cuadro nar */

   .cont-tit-intro {
  width: 100%;
  height: auto;
  padding: 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  
}

.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;
}

.txt-comp-1 {
  font-size: 17px;
  font-weight: 500;
}
    
.txt-dest-nat {
      font-size: 16px;
    }

/* 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;
    }

    /* 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: 17px;
}

.box-req i{
  font-size: 1.8rem;
}

.div-hidd {
  display: none;
}

.div-hidd-tel {
  display: block;
}

/* */

  .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: 17px;
  
}

.txt-dest-nm-2 {
    font-size: 19px;
}

/* footer */

    .logo-ft{
        display: flex;
        width: 40%;
        max-width: 240px;
        height: auto;
        padding: 0;
        margin: 0 0 10px 0;
    }

    .txt-copyright-ft{
        font-size: 14px;
    }
}