@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-nat-nw-1: #fa5300;
    --color-nat-nw-2: #e90f3f;
    --color-nat-nw-3: #a41946;
    --color-nat-nw-4: #ae0025;
    --color-nat-az-1: #060a2f;
    --color-bg-gris-1: #c8d1d9;


    --color-azul-f: #060a2f;
  --color-azul-c: #5286d6;
  --color-amarillo: #ffb400;
  --color-dorado: #df8b0c;
  --color-rosa: #fa0644;
  --color-naranja: #fa5300;
  --color-naranja-c: #ff7828;
  --color-verde: #007b37;
  --color-gris-bg: #e2e2e2;

    --color-grad-nat-1: linear-gradient(to right, #fd5806 33%, #f43f1c 33%, #ec2237 33%);
}

*{
    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 */
}

a {
  text-decoration: none;
  color: inherit;
}

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;
}

.txt-upp {
  text-transform: uppercase;
}

.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-d-blue {
    color: var(--color-nat-az-1);
}

.cl-white {
    color: white;
}

.bg-img-nat {
  background-image: url('../img/bg-natura.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


/* estilos de header */

header {
    width: 100%;
    height: auto;
    padding: 24px 0;
    margin: 0;
}

.cont-header {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
}

.cont-btn-ind {
    width: fit-content;
    height: auto;
    margin: 0 16px 0 0;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
}

.btn-volver {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    padding: 4px 12px;
    border: 1px solid var(--color-nat-nw-2);
    border-radius: 999px;
    background-color: var(--color-nat-nw-2);
    color: white;
}

.box-det-cic {
    margin: 0 0 0 16px;
    padding: 0;
    display: flex;
    justify-content: start;
    align-items: end;
}

.txt-cic-gr {
    display: block;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.0;
    margin: 0 16px 0 0;
}

.txt-cic-ch {
    display: block;
    font-size: 15px;
    line-height: 1.0;
}

.txt-hd-1 {
    font-size: 20px;
    font-weight: 400;
}

.cont-sesion {
    width: fit-content;
    height: auto;
    margin: 0 0 0 0;
}

.btn-sesion {
    display: inline-block;
    font-size: 17px;
    font-weight: 400;
    color: black;
    padding: 4px 8px;
    border: 1px solid white;
    border-radius: 8px;
    background-color: white;
}

.btn-sesion:hover {
    color: white;
    border: 1px solid var(--color-nat-nw-1);
    background-color: var(--color-nat-nw-1);
}

.btn-sesion span {
    display: block;
    font-size: 12px;
}

/* estilos de secciones */

.sect-cna {
    width: 100%;
    height: auto;
    padding: 50px 0;
    margin: 0;
}

.cont-cna {
    width: 90%;
    max-width: 1200px;
    height: auto;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
}

.disp-rwcl-1 {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
}

.disp-rwcl-2 {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.disp-rwcl-3 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
}

.disp-rwcl-4 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}


.disp-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.disp-st-st {
    display: flex;
    justify-content: start;
    align-items: start;
}

.disp-st-cn {
    display: flex;
    justify-content: start;
    align-items: center;
}

.tit-cna-h2 {
    font-size: 28px;
    font-weight: 700;
}

.tit-cna-h3 {
    font-size: 28px;
    font-weight: 500;
}

.txt-cna {
    font-size: 16px;
    font-weight: 500;
}

.txt-cna-2 {
    font-size: 17px;
    font-weight: 500;
}

.txt-cna-3 {
    font-size: 18px;
    font-weight: 500;
}

.txt-cna-4 {
    font-size: 20px;
    font-weight: 500;
}

.txt-cna-5 {
    font-size: 22px;
    font-weight: 500;
}

.txt-cna-ch {
    font-size: 12px;
    font-weight: 500;
}

.txt-cna-gr {
    font-size: 28px;
    font-weight: 500;
}

.txt-cna-wg-a1 {
    font-size: 16px;
    font-weight: 600;
}

.txt-cna-wg-a2 {
    font-size: 17px;
    font-weight: 600;
}

.txt-cna-wg-a3 {
    font-size: 18px;
    font-weight: 600;
}

.txt-cna-wg-a4 {
    font-size: 20px;
    font-weight: 600;
}

/* estilos de sec 1 */

.sc-gc-1 {
    width: 45%;
    max-width: 540px;
    margin: 0 30px 0 0;
}

.cont-img-tit {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.cont-img-tit img {
    display: inline-block;
    width: 18%;
    max-width: 180px;
    margin: 0 16px 0 0;
    padding: 0;
    object-fit: cover;
}

.sc-gc-2 {
    width: 55%;
    max-width: 660px;
    margin: 0 0 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background-color: transparent;
}

.item-vid {
    height: auto;
    padding: 0;
    background: linear-gradient(90deg,
    #ff4b08 0%,
    #ff3a18 45%,
    #f5253c 100%);
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    padding: 16px;
}


  .item-vid i {
    font-size: 36px;
  }

  /* estilos modales videos */

   .modalvid {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.6);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 100;
}

.modalvid.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .modal-content2 {
        background: #fff;
        padding: 8px 8px 8px 8px;
        width: 95%;
        max-width: 600px;
        height: auto;
        border-radius: 8px;
        position: relative;
        animation: fadeIn .3s ease;
        border: 1px solid var(--color-celeste-osc);
    }

   .modal-content2 .contt {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0 0 0 0;
        overflow-y: scroll;

    }

  .modal-content2 .close {
    position: absolute;
    top: -16px;
    right: -16px;
    font-size: 36px;
    cursor: pointer;
    color: white;
    padding: 0;
    line-height: 1.0;
    border-radius: 50%;
    background-color: var(--color-nat-nw-4);
  }

    .modal-content2 .close:hover {
      background-color: white;
      color: var(--color-nat-nw-4);
    }

    @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;
    }

    /* seccion 2 */

    .sc-pp-1 {
        width: 45%;
        max-width: 540px;
        margin: 0 30px 0 0;
    }

    .sc-pp-2 {
        width: 55%;
        max-width: 660px;
        margin: 0 0 0 0;
    }

    .cont-accord {
      width: 100%;
    }
    
    .item-accord {
    }

    .header-accord {
        width: 100%;
        padding: 10px 16px;
        background-color: var(--color-bg-gris-1);
        border-radius: 999px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .header-accord p {
        font-size: 14px;
        font-weight: 400;
        margin: 0 16px 0 0;
    }

    .header-accord i {
        font-size: 20px;
        color: var(--color-nat-az-1);
        transition: transform 0.3s ease;
    }

    .info-accord {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        padding: 0 16px;
    }

    .item-accord.active .info-accord {
        width: 100%;
        max-height: 1500px; /* Ajusta este valor si es necesario */
        opacity: 1;
        padding-top: 8px;
    }

    .item-accord.active .header-accord i {
        transform: rotate(180deg);
    }



    .bg-video {
        width: 100%;
        height: 260px;
        padding: 16px;
        border-radius: 15px;
        background: linear-gradient(90deg,
        #ff4b08 0%,
        #ff3a18 45%,
        #f5253c 100%);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .bg-video i {
        font-size: 90px;
        color: white;
    }

    .btn-apps {
        display: inline-block;
        padding: 8px 12px;
        font-size: 17px;
        font-weight: 500;
        border: 1px solid #464646;
        border-radius: 5px;
        background-color: white;
        color: black;
    }

    .btn-apps:first-child {
        margin: 0 16px 0 0;
    }

    /* seccion de lives */

    .cont-tit-live {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .box-live {
        width: fit-content;
        padding: 12px 24px;
        margin: 0 0 0 16px;
        background: linear-gradient(90deg,
        #ff4b08 0%,
        #ff3a18 45%,
        #f5253c 100%);
        display: flex;
        clip-path: polygon(
        7% 0,    /* arriba izquierda */
        100% 0,   /* arriba derecha */
        100% 100%,/* abajo derecha */
        0 100%    /* abajo izquierda */
    );
    }

    .box-live i {
      font-size: 30px;
      margin: 0 16px 0 16px;
      color: white;
    }

    .tit-live {
      font-size: 28px;
      font-weight: 700;
      color: white;
    }

    /* seccion de lives */

    .cont-slv {
      width: 100%;
      border: 1px solid var(--color-nat-nw-3);
      border-radius: 8px;
      overflow: hidden;
    }

    .header-slv {
      width: 100%;
      padding: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .bg-o-nat {
        background: linear-gradient(90deg,
        #ff4b08 0%,
        #ff3a18 45%,
        #f5253c 100%);
    }

    .hd-tit {
      width: fit-content;
      display: flex;
      justify-content: start;
      align-items: center;
      margin: 0 16px 0 0;
    }

    .hd-tit img {
      display: inline-block;
      width: 40px;
      height: auto;
      margin: 0 16px 0 0;
      object-fit: cover;
    }

    .hd-tag {
      width: fit-content;
      display: flex;
      justify-content: start;
      align-items: center;
    }

    .tit-live-ch {
      font-size: 24px;
      font-weight: 700;
      color: white;
    }

    .content-slv {
      width: 100%;
      padding: 16px;
    }

    .cont-live-pr {
      display: flex;
      justify-content: start;
      align-items: stretch;
    }

    .img-live {
      width: 40%;
      max-width: 480px;
      
      border-radius: 15px;
      background-color: var(--color-bg-gris-1);
      margin: 0 20px 0 0;
    }

    .info-live {
      width: 60%;
      max-width: 720px;
      margin: 0 0 0 0;
    }

    .div-fech-liv {
      width: fit-content;
    }

    .div-fech-liv:first-child {
      margin: 0 16px 0 0;
    }

    .img-icon-live {
      display: inline-block;
      width: 40px;
      height: auto;
      margin: 0 16px 0 0;
      object-fit: cover;
    }

    .img-icon-gm {
      display: inline-block;
      width: 80px;
      height: auto;
      margin: 0 16px 0 0;
      object-fit: cover;
    }

    .btn-enl {
      display: inline-block;
      padding: 10px 16px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 500;
      text-align: center;
      color: white;
    }

    .icon-exc {
      font-size: 40px;
      color: yellow;
      margin: 0 16px 0 0;
    }

    .bg-y-nat {
      background-color: #df8b0c;
    }

    /* estilos de sec de whatsapp */

    .cont-whats {
      width: 100%;
      display: flex;
      justify-content: start;
      align-items: start;
    }

    .box-whats {
      width: 10%;
      max-width: 100px;
      margin: 0 16px 0 0;
    }

    .box-whats img {
      display: block;
      width: 100%;
      margin: 0;
      padding: 0;
      object-fit: cover;
    }

    .box-com {
      width: 90%;
      max-width: 1100px;
      margin: 0 0 0 0;
      display: flex;
      flex-direction: row;
      justify-content: start;
      align-items: start;
      gap: 16px;
    }

    .btn-whats {
      display: inline-block;
      padding: 8px 20px;
      font-size: 16px;
      font-weight: 500;
      background-color: #55cc61;
      border-radius: 5px;
      color: white;
    }

    /* estilos de sec especialistas */

    .sect-esp-nat {
      width: 100%;
      height: auto;
      padding: 20px;
    }

    .cont-cna-rel {
      width: 90%;
      max-width: 1200px;
      height: auto;
      padding: 0;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }

    .tit-ext-gr-1 {
      font-size: 72px;
      font-weight: 800;
    }

    .txt-abs {
      position: absolute;
      top: 0;
      left: 0;
    }

    .txt-rel {
      position: relative;
      z-index: 10;
    }


    .cont-swp-esp {
      position: relative;
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0;
      z-index: 0;
  
    }

    .cont-swp-esp .swiper {
        width: 100%;
        height: 100%;
      }

    .cont-swp-esp .swiper-slide {
        background: transparent;
        display: flex;
        justify-content: space-between;
        align-items: end;
      }

      .cont-nom-esp {
        width: fit-content;
        height: auto;
        display: flex;
        justify-content: start;
        align-items: center;
      }

      .cont-nom-esp i {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        width: 40px;
        height: 40px;

        background-color: white;
        color: orange;

        border-radius: 50%;
        font-size: 24px;
      }

      .cont-nmb {
        width: fit-content;
        margin: 0 0 0 5px;
        color: white;
      }

    .cont-swp-esp .swiper-slide img {
        display: inline-block;
        width: auto;
        height: 380px;
        object-fit: contain;
      }

      /* estilos sec capacitaciones */

    .cont-swp-cap {
      position: relative;
      width: 100%;
      height: 100%;
      padding: 0;
      z-index: 0;
    }

    .cont-swp-cap .swiper {
      width: 100%;
      height: 100%;
    }

    .cont-swp-cap .swiper-slide {
      background: transparent;
      border-radius: 15px;
      display: flex;
      flex-direction: column;
      justify-content: start;
      align-items: center;
      overflow: hidden;
    }

    .cont-play-epi {
      width: 100%;
      background-color: #dff5ff;
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .cont-icon-play {
      width: fit-content;
      padding: 20px;
      border-radius: 50%;
      background-color: transparent;
      border: 1px solid white;
    }

    .cont-icon-play i {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        width: 60px;
        height: 60px;

        background-color: white;
        color: #38a3a5;

        border-radius: 50%;
        font-size: 32px;
    }

    .cont-info-epi {
      width: 100%;
      padding: 24px 16px;
      background: linear-gradient(
        to bottom,
        #f5dce5 0%,
        #efb2bd 12%,
        #f18a87 28%,
        #f5683a 45%,
        #d94b0b 62%,
        #963500 80%,
        #552400 100%
    );
    }

    .txt-tit-epi {
      font-size: 22px;
      font-weight: 700;
      color: white;
    }

    .txt-desc-epi {
      font-size: 14px;
      font-weight: 500;
      color: white;
    }

    .box-det-epi {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: start;
    }

    .tag-nomb {
      width: fit-content;
      padding: 5px 16px;
      border-radius: 999px;
      background-color: white;
    }

    .tag-fech {
      width: fit-content;
      text-align: end;
    }

    .txt-pres-epi {
      font-size: 14px;
      font-weight: 600;
    }

    .txt-pres-epi span {
      font-size: 10px;
      font-weight: 500;
    }

    .txt-fech-epi {
      font-size: 16px;
      font-weight: 600;
      color: white;
    }

    .cont-swp-cap .swiper .swiper-navigation-top {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 16px;
}

.cont-swp-cap .swiper .swiper-button-prev-1c {
    display: inline-block;
    background-color: #fff;
    color: var(--color-nat-nw-1);
    border: 1px solid var(--color-nat-nw-1);
    padding: 10px 12px;
    cursor: pointer;
    user-select: none;
    border-radius: 50%;
    margin: 0 16px 0 0;
    font-size: 18px;
    font-weight: bold;
}

.cont-swp-cap .swiper .swiper-button-next-1c {
    display: inline-block;
    background-color: #fff;
    color: var(--color-nat-nw-1);
    border: 1px solid var(--color-nat-nw-1);
    padding: 10px 12px;
    cursor: pointer;
    user-select: none;
    border-radius: 50%;
    margin: 0 0 0 0;
    font-size: 18px;
    font-weight: bold;
}

/* sec de documentos */

.bg-naranja-f {
    background-color: #fd5806;
}

.bg-azul-f {
    background-color: var(--color-azul-f);
}

.bg-azul-c {
    background-color: var(--color-azul-c);
}


.bg-gris-c {
    background-color: #e2e2e2;
}

.bg-dorado {
    background-color: #df8b0c;
}

.bg-rosa {
    background-color: #fa0644;
}

.bg-naranja-c {
    background-color: var(--color-naranja-c);
}

.bg-verde {
    background-color: var(--color-verde);
}


      .docs__container {
          width: 100%;
          height: auto;
          margin-left: 0;
          margin-right: 0;
          background-color: transparent;
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          gap: 20px;
      }

      .columna-docs {
          display: flex;
          flex-direction: column;
          gap: 20px;
      }

      .item-docs {
          padding: 20px;
          border-radius: 15px;
          box-sizing: border-box;
      }

      .fade-scroll {
          opacity: 0;
          transform: translateY(30px);
          transition: opacity 0.8s ease, transform 0.8s ease;
      }

      .fade-scroll.visible {
          opacity: 1;
          transform: translateY(0);
      }

      .fade-scroll-2 {
          opacity: 0;
          transform: scaleY(0);
          transform-origin: bottom;
          transition:
              opacity 0.8s ease,
              transform 0.4s ease;
      }

      .fade-scroll-2.visible {
          opacity: 1;
          transform: scaleY(1);
      }

      .item-docs-tit {
          padding: 0;
          border-radius: 15px;
          box-sizing: border-box;
      }

      .item-tit {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: center;
      }

      .pequeno {
          height: 180px;
      }

      .pq-disp {
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          align-items: center;
      }

      .mediano {
          height: 250px;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          align-items: center;
      }

      .grande {
          height: 320px;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          align-items: center;
      }

      .icon-title {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: fit-content;
        margin: 0 auto;
        padding: 8px 12px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #777777;
      }

      .icon-title i.bi-search {
        transform: rotate(90deg);
        font-size: 34px;
        color: white;
      }

      .icon-title i {
        font-size: 36px;
        color: white;
      }

      .cont-ext {
        width: 100%;
        padding: 16px 24px;
        background-color: var(--color-bg-gris-1);
        border-radius: 15px;
      }

      .cont-int {
        width: 100%;
        padding: 20px;
        background-color: white;
        border-radius: 15px;
      }

      .tit-h3 {
        font-size: 1.5rem;
        font-weight: 700;
      }

      .tit-mes {
        font-size: 1.3rem;
      }

      .part-disp-end {
        width: 100%;
        display: flex;
        justify-content: end;
        align-items: center;
      }

      .part-disp-spbt {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .part-disp-end i {
        font-size: 2.0rem;
        color: white;
      }

      .part-disp-spbt .icon-pdf {
        font-size: 2.0rem;
      }

      .part-tit-opc {
        width: 100%;
      }

      .img-opc-1 {
        display: block;
        width: 60px;
      }

      .img-opc-2 {
        display: block;
        width: 45px;
      }

      .img-opc-3 {
        display: block;
        width: 65px;
      }

      .txt-opc-docs {
        font-size: 1.4rem;
        font-weight: 700;
      }

      .txt-desc-docs {
        font-size: 0.9rem;
        font-weight: 400;
      }

      .txt-opc-rec {
        font-size: 1.6rem;
        font-weight: 700;
      }

      .txt-subopc-rec {
        font-size: 1.2rem;
        font-weight: 600;
      }

      .btn-item-docs {
        width: fit-content;
        display: block;
        display: flex;
        justify-content: start;
        align-items: center;
        color: white;
      }

      .btn-item-docs i {
        font-size: 2.6rem;
        margin-right: 10px;
      }

      .btn-item-docs p {
        font-size: 0.8rem;
        font-weight: 500;
      }

      /*
      .part-disp-spbt div i {
        font-size: 1rem;
        color: white;
      }
      */

      .btn-item-docs-ch {
        width: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: end;
      }

      .btn-item-docs-ch i {
        font-size: 1.4rem;
      }

      .btn-item-docs-ch p {
        font-size: 0.8rem;
        font-weight: 500;
      }

      .sp-blog {
        display: inline-block;
        width: fit-content;
        padding: 5px 10px;
        border-radius: 999px;
        color: var(--color-nat-az-1);
        background-color: white;
        font-size: 1rem;
        font-weight: 700;
        text-align: 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) {

    .cont-header {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
    }

    .cont-btn-ind {
        width: fit-content;
        height: auto;
        margin: 0 0 10px 0;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .btn-volver {
        display: inline-block;
        font-size: 18px;
        font-weight: 600;
        padding: 4px 12px;
    }

    .box-det-cic {
        margin: 10px 0 0 0;
        display: flex;
        align-items: start;        
    }

    .txt-cic-gr {
        font-size: 20px;     
    }

    .txt-cic-ch {
        font-size: 12px;
    }

    .txt-hd-1 {
        font-size: 16px;
        width: 60%;
    
    }

    .cont-sesion {
        width: fit-content;
        height: auto;
        margin: 0 0 0 0;
    }

    .btn-sesion {
    }

    .btn-sesion:hover {
        
    }

    .btn-sesion span {
        display: block;
        font-size: 12px;
    }

    /* estilos de secciones */

    .disp-rwcl-1 {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
    }


    .disp-rwcl-3 {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
    }

    .tit-cna-h2 {
        font-size: 24px;
        text-align: center;
    }

    .tit-cna-h3 {
        font-size: 22px;
    }

    .txt-cna {
        font-size: 16px;
    }

    .txt-cna-2 {
        font-size: 13px;
    }

    .txt-cna-3 {
        font-size: 17px;
    }

    .txt-cna-4 {
        font-size: 18px;
    }

    .txt-cna-5 {
        font-size: 19px;
    }

    .txt-cna-ch {
        font-size: 12px;
    }

    .txt-cna-gr {
        font-size: 24px;
        font-weight: 500;
    }

    .txt-cna-wg {
        font-size: 18px;
    }

    .txt-cna-wg-a1 {
    font-size: 15px;
    font-weight: 600;
    }

    .txt-cna-wg-a2 {
        font-size: 16px;
        font-weight: 600;
    }

    .txt-cna-wg-a3 {
        font-size: 17px;
        font-weight: 600;
    }

    .txt-cna-wg-a4 {
        font-size: 18px;
        font-weight: 600;
    }

    /* estilos de sec 1 */

.sc-gc-1 {
    width: 100%;
    max-width: 799px;
    margin: 0 0 16px 0;
}

.cont-img-tit {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.cont-img-tit img {
    display: inline-block;
    width: 15%;
    max-width: 80px;
    margin: 0 10px 0 0;
    padding: 0;
    object-fit: cover;
}

.sc-gc-2 {
    width: 100%;
    max-width: 799px;
    margin: 0 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.item-vid {

}


  .item-vid i {
    font-size: 32px;
  }

  .modal-content2 {
          
    }

    .modal-content2 .contt {
        width: 100%;
    }

    .modal-content2 .contt {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 25px 0 0 0;
    }

    .modal-content2 .close {
      position: absolute;
      top: -16px;
      right: -8px;
      font-size: 30px;
    }

    /* seccion 2 */

    .sc-pp-1 {
        width: 100%;
        max-width: 799px;
        margin: 0 0 16px 0;
    }

    .sc-pp-2 {
        width: 100%;
        max-width: 799px;
        margin: 0 0 0 0;
    }

    .bg-video {
        height: 200px;
    }

    .bg-video i {
        font-size: 80px;
    }

    .btn-apps {
        font-size: 16px;
    }

    .btn-apps:first-child {
        margin: 0 16px 0 0;
    }

    /* seccion de lives */

    .cont-tit-live {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        justify-content: start;
        align-items: center;
    }

    .box-live {
        width: fit-content;
        padding: 8px 20px;
        margin: 0 0 16px 0;
        display: flex;
        clip-path: polygon(
        7% 0,    /* arriba izquierda */
        100% 0,   /* arriba derecha */
        100% 100%,/* abajo derecha */
        0 100%    /* abajo izquierda */
    );
    }

    .box-live i {
      font-size: 24px;
    
    }

    .tit-live {
      font-size: 19px;
     
    }

    /* seccion de lives */

    .cont-slv {
      
    }

    .header-slv {
        width: 100%;
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
    }

    .hd-tit {
      width: 100%;
      display: flex;
      justify-content: start;
      align-items: center;
      margin: 0 0 10px 0;
    }

    .hd-tit img {
      display: inline-block;
      width: 30px;
      height: auto;
      margin: 0 8px 0 0;
      object-fit: cover;
    }

    .hd-tag {
      width: fit-content;
      display: flex;
      justify-content: start;
      align-items: center;
    }

    .tit-live-ch {
      font-size: 20px;
    }

    .content-slv {
      padding: 10px;
    }

    .cont-live-pr {
      display: flex;
      flex-direction: column;
      justify-content: start;
      align-items: center;
    }

    .img-live {
      width: 100%;
      height: 150px;
      max-width: 799px;
      border-radius: 15px;
      background-color: var(--color-bg-gris-1);
      margin: 0 0 16px 0;
    }

    .info-live {
      width: 100%;
      max-width: 799px;
      margin: 0 0 0 0;
    }

    .div-fech-liv {
      width: 100%;
    }

    .div-fech-liv:first-child {
      margin: 0 0 10px 0;
    }

    .img-icon-live {
      display: inline-block;
      width: 25px;
      height: auto;
      margin: 0 8px 0 0;
      object-fit: cover;
    }

    .img-icon-gm {
      display: inline-block;
      width: 60px;
      height: auto;
      margin: 0 16px 0 0;
      object-fit: cover;
    }

    .btn-enl {
      display: inline-block;
      padding: 8px 12px;
      font-size: 15px;
    }

    .icon-exc {
      font-size: 24px;
      margin: 0 8px 0 0;
    }

    /* estilos de sec de whatsapp */

    .cont-whats {
      width: 100%;
      display: flex;
      justify-content: start;
      align-items: start;
    }

    .box-whats {
      width: 10%;
      max-width: 80px;
      margin: 0 5px 0 0;
    }

    .box-whats img {

    }

    .box-com {
      width: 100%;
      max-width: 799px;
      margin: 0 0 0 0;
      display: flex;
      flex-direction: column;
      justify-content: start;
      align-items: center;
      gap: 10px;
    }

    .btn-whats {
      padding: 8px 20px;
      font-size: 15px;
      
    }

    /* sec de especialistas */

    .sect-esp-nat {
      width: 100%;
      height: auto;
      padding: 20px;
    }

    .cont-cna-rel {
      width: 90%;
      max-width: 1200px;
      height: auto;
      padding: 0;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }

    .tit-ext-gr-1 {
      font-size: 46px;
      font-weight: 800;
    }

    .txt-abs {
      position: relative;
      top: 0;
      left: 0;
    }

    .txt-rel {
      z-index: 0;
    }


    .cont-swp-esp {
      position: relative;
      width: 100%;
      height: 100%;
      margin: 16px 0 0 0;
      padding: 0;
      z-index: 0;
  
    }

    .cont-swp-esp .swiper {
        width: 100%;
        height: 100%;
      }

    .cont-swp-esp .swiper-slide {
        background: transparent;
        display: flex;
        justify-content: center;
        align-items: end;
      }

      .cont-nom-esp {
        position: absolute;
        width: fit-content;
        padding: 10px;
        border-radius: 5px;
        background-color: #0000007c;
        height: auto;
      }

      .cont-nom-esp i {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        width: 40px;
        height: 40px;

        background-color: white;
        color: orange;

        border-radius: 50%;
        font-size: 24px;
      }

      .cont-nmb {
       
      }

    .cont-swp-esp .swiper-slide img {
        display: inline-block;
        width: auto;
        height: 350px;
        object-fit: contain;
      }

      /* 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;
    }

}

@media(max-width: 899px) {
  .docs__container {
          max-width: 850px;
          grid-template-columns: repeat(2, 1fr);
          gap: 10px;
          overflow: hidden;
      }

      .columna-docs {
          gap: 10px;
      }

      .item-docs {
          padding: 12px;
          border-radius: 15px;
          box-sizing: border-box;
      }

      .pequeno {
          height: auto;
      }

      .mediano {
          height: 210px;
    
      }

      .grande {
          height: 290px;
      
      }

      .item-docs-tit {
          padding: 0;
          border-radius: 15px;
          box-sizing: border-box;
      }

      .item-tit {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
      }

      .pq-disp {
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          align-items: center;
      }

      .icon-title {
        padding: 8px 10px;
        border-radius: 50%;
      }

      .icon-title i.bi-search {
        font-size: 16px;
      }

      .icon-title i {
        font-size: 24px;
        color: white;
      }

      .cont-ext {
        margin-top: 20px;
        padding: 10px 12px;
      }

      .cont-int {
        padding: 10px;
      }

      .tit-h3 {
        font-size: 1.1rem;
      }

      .tit-mes {
        font-size: .9rem;
      }

      .part-disp-end i {
        font-size: 1.7rem;
      }

      .part-disp-spbt .icon-pdf {
        font-size: 1.7rem;
      }

      .part-tit-opc {
        width: 100%;
      }

      .img-opc-1 {
        display: block;
        width: 40px;
      }

      .img-opc-2 {
        display: block;
        width: 30px;
      }

      .txt-opc-docs {
        font-size: 1.1rem;
      }

      .txt-desc-docs {
        font-size: 0.8rem;
      }

      .txt-opc-rec {
        font-size: 1.4rem;
      }

      .txt-subopc-rec {
        font-size: 1.0rem;
      }

      .btn-item-docs i {
        font-size: 1.8rem;
      }

      .btn-item-docs p {
        font-size: 0.9rem;
      }

      .btn-item-docs-ch i {
        font-size: 1.0rem;
      }

      .btn-item-docs-ch p {
        font-size: 0.7rem;
      }

      .sp-blog {
        font-size: .75rem;
      }
    
}

/* ------------------------------------------------------ */
/* estilos de pedidos */
/* ------------------------------------------------------ */
