/*=============================== FONT GOOGLE 1080px a más ===============================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Source+Serif+Pro:wght@200;300;400;600;700;900&display=swap');
/*font-family: 'Montserrat', sans-serif;
font-family: 'Source Serif Pro', serif;*/
/*-----------------------------------====================---------------------------------*/




/*================================ ENLACES OTRAS CARPETAS ===============================*/
@import url('../css/productos.css');
@import url('../css/footer.css');
@import url('../css/nosotros.css');
@import url('../css/dosis.css');
@import url('../css/contactos.css');
/*-----------------------------------====================---------------------------------*/




/*================================== BASE DE SITE-WEB ===================================*/
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', serif;
}
/*-----------------------------------====================---------------------------------*/




/*==================================== SECCIÓN NAV =======================================*/
.navbar{                                                                     /*Sección Nav*/
    background: #12024d;                                 
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container{                                                        /*Container Nav*/
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 70px;
}

#navbar__logo{                                                       /*Container Logo-tex*/
    color: #ffffff;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.2rem;
}

#navbar__logo img{                                                        /* Logo-imagen*/
    width: 45px;
    height: auto;
}

.fa-gem{
    margin-right: 0.50rem;
}

.navbar__menu{                                                   /* Container de botones*/
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item{                                                        /* Box de botones*/
    height: 80px;
}


.navbar__links{                                                             /* Botones*/
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 1rem 1rem;
    height: 100%;
}


.navbar__links:hover{                                             /*Presionar Botones*/
    color: #FA293C; 
    border-bottom: 2px solid rgb(68, 67, 67);
    border-top: 2px solid rgb(68, 67, 67);
    transition: all 0.3s ease;
}


.navbar__btn{                                                /*Box Botón de Contactos*/
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.7rem;
    width: 100%;
}

.button{                                                        /*Botón de Contactos*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 15px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #FA293C;
    color: #ffffff;
}

.button:hover {                                                /*Presionar Botón Contactos*/
    background: #4837ff;
    transition: all 0.3s ease;
}
/*-----------------------------------====================---------------------------------*/



/*====================================== NAV 960px =======================================*/
@media screen and (max-width: 960px){
    .navbar__container{                                                    /*Container Nav*/
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu{                                                  /* Container de botones*/
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px; /*Se oculta para editar el menu en mobil y luego activar */
        opacity: 0;   /*Se oculta para editar el menu en mobil y luego activar */
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;
        background: #131313; /*Se oculta para editar el menu en mobil y luego activar */
    }

    .navbar__menu.active{                          /* Container de botones-activacion mobil*/
        background: #191919;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 65vh;
        font-size: 1.2rem;
    }

    #navbar__logo{                                                    /*Container Logo-tex*/
        padding-left: 25px; /*Ancho de margen a logo*/
        font-size: 1.5rem;  /*--------------------- */
    }

    .navbar__toggle .bar {                                           /*Botón hambuergueza*/
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar__item{                                                      /* Box de botones*/
        width: 100%;
    }

    .navbar__links{                                                           /* Botones*/
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu{                                               /* Box botón hambuergueza*/
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__btn{                                               /*Box Botón de Contactos*/
        padding-bottom: 2rem;
    }

    .button{                                                       /*Botón de Contactos*/
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0 auto;
    }

    .navbar__toggle .bar{                           /* Botón hambuergueza al hacer clic*/
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2){
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
}
/*-----------------------------------====================---------------------------------*/




/*==================================== SECCIÓN INICIO ====================================*/
.slider_portada{
    width: 100%;
    height: 700px;
    position: relative;
}


.slider_portada .swiper {
    width: 100%;
    height: 100%;
  }

.slider_portada .swiper-slide {
   
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

.slider_portada .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.swiper-slide .texportal{
    position:absolute;
    left: 10%;
    max-width: 500px;
  }


  .swiper-slide .texportal h1{
    font-size:2rem;
    background-color: #fa5a4e;
    background-image:linear-gradient(to top, #ff0808 0%,#ffb19f 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color:transparent
  }


  .swiper-slide .texportal h3{
    font-size:1.5rem;
    background-color: #4efafa;
    background-image:linear-gradient(to top, #4f6d99 0%,#6048e7 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color:transparent
  }


  .swiper-slide .texportal p{
    font-size:1rem;
    background-color: rgb(255, 255, 255, 0.7);
    padding: 10px;
    border-radius: 5px;
  }

  @media screen and (max-width: 960px) {
    .swiper-slide .texportal{
        position:absolute;
        left: 9%;
        max-width: 380px;
      }       
}

@media screen and (max-width: 768px) {
    .swiper-slide .texportal{
        position:absolute;
        left: 9%;
        max-width: 350px;
      }
      
      .swiper-slide .texportal p{
        font-size:1.2rem;
      }
}


@media screen and (max-width: 480px) {
    .swiper-slide .texportal{
        position:absolute;
        left: 11%;
        max-width: 380px;
      } 
      
      .swiper-slide .texportal p{
        font-size:1.2rem;
      }
}


@media screen and (max-width: 380px) {
    .swiper-slide .texportal{
        position:absolute;
        left: 11%;
        max-width: 290px;
      }  
      
    #navbar__logo{                                                       /*Container Logo-tex*/
        color: #ffffff;
        display: flex;
        align-items: center;
        cursor: pointer;
        text-decoration: none;
        font-size: 1.15rem;
    }

    .swiper-slide .texportal p{
        font-size:1rem;
      }
}


@media screen and (max-width: 330px) {
    .swiper-slide .texportal{
        position:absolute;
        left: 11%;
        max-width: 260px;
      }  
      
    #navbar__logo{                                                       /*Container Logo-tex*/
        color: #ffffff;
        display: flex;
        align-items: center;
        cursor: pointer;
        text-decoration: none;
        font-size: 1.1rem;
    }

    .swiper-slide .texportal p{
        font-size:1rem;
      }
}

/*-----------------------------------====================---------------------------------*/




/*================================= SECCIÓN NUESTRO PRODUCTO =============================*/
.seccion_nproduct{                                                      /*Seccion N Producto*/
    background-color: #ffffff;
    height: 100%;
    padding: 10px auto;
}


.seccion_nproduct h1{                                                  /*Título N Producto*/
    padding-top: 20px;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 500;
    background-color: #fa5a4e;
    background-image:linear-gradient(to top, #ff0808 0%,#ffb19f 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color:transparent
}


.container_nproduct {                                              /*Container N Producto*/
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin: 0 auto;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-width: 1080px;
    padding: 10px 70px;
}



.content_text p{                                                       /*Párrafo N Producto*/
    color: #000000;
}


.container_nproduct .main__img--container img{                           /*Imagen N Producto*/
    width: 100%;
    height: 100%;
    padding: 10px;
}

/*-----------------------------------====================---------------------------------*/


/*========================= NUESTRO PRODUCTO 768px para mobil ============================*/
@media screen and (max-width: 768px) {
    .container_nproduct{                                               /*Container Inicio*/
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        height: 100%;
        margin: 0 auto; 
        padding: 10px 70px; 
    }


    .seccion_nproduct h1{                                               /*Título N Producto*/
        font-size: 2.3rem;
    }


    .content_text p{                                                      /*Texto Inicio*/
        margin-top: 5px;
        font-size: 1.2rem;
    }

}
/*-----------------------------------====================---------------------------------*/




/*========================= NUESTRO PRODUCTO 480px para mobil ============================*/
@media screen and (max-width: 480px) {
    .container_nproduct{                                               /*Container Inicio*/
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        height: 100%;
        margin: 0 auto;        
        padding: 10px 70px;     
    }


    .seccion_nproduct h1{                                              /*Título N Producto*/
        font-size: 2rem;
    }


    .content_text p{                                                      /*Texto Inicio*/
        margin-top: 5px;
        font-size: 1.2rem;
    }


    .container_nproduct .main__img--container img{
        width: 100%;
        height: auto;
        margin-top: 10px;
    }
}
/*-----------------------------------====================---------------------------------*/





/*========================= NUESTRO PRODUCTO 360px para mobil ============================*/
@media screen and (max-width: 360px) {
    .container_nproduct{                                               /*Container Inicio*/
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        height: 100%;
        margin: 0 auto;        
        padding: 10px 40px;     
    }


    .seccion_nproduct h1{                                              /*Título N Producto*/
        font-size: 1.8rem;
    }


    .content_text p{                                                      /*Texto Inicio*/
        margin-top: 5px;
        font-size: 1.2rem;
    }


    .container_nproduct .main__img--container img{
        width: 100%;
        height: auto;
        margin-top: 10px;
    }
}
/*-----------------------------------====================---------------------------------*/



  

  /*================================ INSUMOS PRINCIPALES   =================================*/

  .seccion_InsumosP{
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: grid;
    align-items: center;
    justify-content: center;
  }
 

  .seccion_InsumosP h1{
    padding-top: 20px;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 300;
    background-color: #fa5a4e;
    background-image:linear-gradient(to top, #ff0808 0%,#ffb19f 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color:transparent;
  }

  .seccion_InsumosP .container_InsumosP {
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    margin: 0 auto;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-width: 1080px;
    padding: 0px 70px;
  }

  .seccion_InsumosP .container_InsumosP .insumosPrincipales ul li i {
    color: rgb(255, 5, 5);
  }


  .seccion_InsumosP .container_InsumosP img {
    padding-top: 10px;
    width: 90%;
    border-radius:10px;
  }


  seccion_InsumosP .container_InsumosP p {
    font-size: 1.2rem;
  }

  .Nota{
    max-width: 1080px;
    text-align: center;
    padding-bottom: 25px;
  }

  .Nota h1{
    font-weight:700;
    padding-top: 1px;
  }

  .Nota p{
    font-size: 20px;
    background-color: #8adb07;
  }


  /*-----------------------------------====================---------------------------------*/
  
  
  /*=========================== INSUMOS PRINCIPALES 960px   ================================*/
  @media screen and (max-width: 960px) {
   

  .seccion_InsumosP h1{
    padding-top: 20px;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 300;
    background-color: #fa5a4e;
    background-image:linear-gradient(to top, #ff0808 0%,#ffb19f 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color:transparent;
  }

  .seccion_InsumosP .container_InsumosP {
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin: 0 auto;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-width: 1080px;
    padding: 10px 70px;
  }

  .seccion_InsumosP .container_InsumosP .insumosPrincipales ul li i {
    color: rgb(255, 5, 5);
  }


  .seccion_InsumosP .container_InsumosP img {
    padding-top: 10px;
    width: 90%;
    border-radius:10px;
  }

  
  seccion_InsumosP .container_InsumosP p {
    font-size: 1.2rem;
  }
    
  }
  /*-----------------------------------====================---------------------------------*/


  
  /*=========================== INSUMOS PRINCIPALES 768px   ================================*/
  @media screen and (max-width: 768px) {
   

  
    .seccion_InsumosP .container_InsumosP {
      display: grid;
      align-items: center;
      justify-content: center;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      margin: 0 auto;
      z-index: 1;
      width: 100%;
      height: 100%;
      max-width: 1080px;
      padding: 10px 70px;
    }
  
    .seccion_InsumosP .container_InsumosP .insumosPrincipales ul li i {
      color: rgb(255, 5, 5);
    }
  
  
    .seccion_InsumosP .container_InsumosP img {
      padding-top: 10px;
      width: 90%;
      border-radius:10px;
    }
  
    
    seccion_InsumosP .container_InsumosP p {
      font-size: 1.2rem;
    }
      
    }
    /*-----------------------------------====================---------------------------------*/



    /*=========================== INSUMOS PRINCIPALES 480px   ================================*/
  @media screen and (max-width: 480px) {
   

  
    .seccion_InsumosP .container_InsumosP {
      display: grid;
      align-items: center;
      justify-content: center;
      grid-template-columns: 1fr;
      align-items: center;
      margin: 0 auto;
      z-index: 1;
      width: 100%;
      height: 100%;
      max-width: 1080px;
      padding: 10px 50px;
    }
  
    .seccion_InsumosP .container_InsumosP .insumosPrincipales ul li i {
      color: rgb(255, 5, 5);
    }
  
  
    .seccion_InsumosP .container_InsumosP img {
      padding-top: 10px;
      width: 90%;
      border-radius:10px;
    }
  
    
    seccion_InsumosP .container_InsumosP p {
      font-size: 1.2rem;
    }
      
    }
    /*-----------------------------------====================---------------------------------*/






/*============================= SECCIÓN PRODUCTOS DEL MES  ===============================*/
.carrusel_pr_mes{                                                      /*Seccion Producto mes*/
    background-color: #dd2019;
    width: 100%;
    height: 500px;
    display: grid;
    align-items: center;
    justify-content: center;
    padding: 20px 180px;
}


.carrusel_pr_mes h1{                                                  /*Título Producto mes*/
    padding-top: 20px;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 500;
    background-color: #fa5a4e;
    background-image:linear-gradient(to top, #0e53e9 0%,#6fcffc 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color:transparent
}


.wrapper{
    display: flex;
    max-width: 1080px;
    position: relative;
    align-items: center;
    justify-content: center;
  }


  .wrapper i{
    top: 50%;
    height: 44px;
    width: 44px;
    color: #343F4F;
    cursor: pointer;
    font-size: 1.15rem;
    position: absolute;
    text-align: center;
    line-height: 44px;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: transform 0.1s linear;
  }
  .wrapper i:active{
    transform: translateY(-50%) scale(0.9);
  }
  .wrapper i:hover{
    background: #f2f2f2;
  }
  .wrapper i:first-child{
    left: -22px;
    display: none;
  }
  .wrapper i:last-child{
    right: -22px;
  }
  .wrapper .carousel{
    font-size: 0px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
  }
  .carousel.dragging{
    cursor: grab;
    scroll-behavior: auto;
  }
  .carousel.dragging img{
    pointer-events: none;
  }
  .carousel img{
    height: 330px;
    object-fit: cover;
    user-select: none;
    margin-left: 14px;
    width: calc(100% / 3);
    border-radius: 25px;
  }
  .carousel img:first-child{
    margin-left: 0px;
  }
  /*-----------------------------------====================---------------------------------*/



/*========================= PRODUCTOS DEL MES 960px para mobil  ==========================*/
  @media screen and (max-width: 960px) {
    .carrusel_pr_mes{                                                      /*Seccion Producto mes*/
      padding: 10px 70px;
    }
    .carousel img{
      width: calc(100% / 2);
    }
  }
  /*-----------------------------------====================---------------------------------*/
  


  /*========================= PRODUCTOS DEL MES 768px para mobil  ==========================*/
  @media screen and (max-width: 768px) {
    .carrusel_pr_mes{                                                      /*Seccion Producto mes*/
      padding: 10px 50px;
    }
    .carousel img{
      width: calc(100% / 2);
    }

    .carrusel_pr_mes h1{                                                  /*Título Producto mes*/
        font-size: 2.3rem;
    }
  }
  /*-----------------------------------====================---------------------------------*/
  


  /*======================= PRODUCTOS DEL MES 480px para mobil  ===========================*/
  @media screen and (max-width: 480px) {
    .carrusel_pr_mes{                                                      /*Seccion Producto mes*/
        padding: 10px 60px;
      }

    .carousel img{
      width: 100%;
    }

    .carrusel_pr_mes h1{                                                  /*Título Producto mes*/
        font-size: 2rem;
    }
  }
  /*-----------------------------------====================---------------------------------*/


  /*======================= PRODUCTOS DEL MES 330px para mobil  ===========================*/
  @media screen and (max-width: 330px) {
    .carrusel_pr_mes{                                                      /*Seccion Producto mes*/
        padding: 10px 10px;
      }

    .carousel img{
        transform: scale(0.8);
    }

    .carrusel_pr_mes h1{                                                  /*Título Producto mes*/
        font-size: 1.8rem;
    }
  }
  /*-----------------------------------====================---------------------------------*/





  /*================================== SEDES DE TIENDA  ====================================*/
  .sedetienda{
    background-color: rgb(224, 224, 224);
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 10px 80px;
  }

  .sedetienda h1{                                                 /*Título N Producto*/
    padding-top: 20px;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 500;
    background-color: #fa5a4e;
    background-image:linear-gradient(to top, #ff0808 0%,#ffb19f 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color:transparent
  }


  .container_sedetienda{
	width: 100%;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr  1fr;
  align-items: center;
  justify-content: center;
	margin: auto;
}

.card{
	width: 96%;
	margin: 5px;
  padding: 10px 20px;
	border-radius: 6px;
	overflow: hidden;
	background:#fff;
	box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
	transition: all 400ms ease-out;
	cursor: default;
}


.card:hover{
	box-shadow: 5px 5px 20px rgba(0,0,0,0.4);
	transform: translateY(-3%);
}
.card img{
	width: 100%;
	height: 210px;
}
.card .contenido-card{
	padding: 15px;
	text-align: center;
}
.card .contenido-card h3{
	margin-bottom: 15px;
	color: #7a7a7a;
}
.card .contenido-card p{
	line-height: 1.8;
	color: #000000;
	font-size: 1rem;
	margin-bottom: 5px;
}
.card .contenido-card a{
	display: inline-block;
	padding: 10px;
	margin-top: 10px;
	text-decoration: none;
	color: #fa5a4e;
	border: 1px solid #fa5a4e;
	border-radius: 4px;
	transition: all 400ms ease;
	margin-bottom: 5px;
}
.card .contenido-card a:hover{
	background: #fa5a4e;
	color: #fff;
}
  /*-----------------------------------====================---------------------------------*/


  
  /*============================== SEDES DE TIENDA 960px   =================================*/
  @media screen and (max-width: 960px) {
    .container_sedetienda{
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      justify-content: center;
    }
  }
  /*-----------------------------------====================---------------------------------*/


  
  /*============================== SEDES DE TIENDA 768px   =================================*/
  @media screen and (max-width: 768px) {
    .container_sedetienda{
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      justify-content: center;
    }    

    .sedetienda h1{
      font-size: 2.3rem;
    }

    .card .contenido-card p{
      font-size: 1.2rem;
    }
  }
  /*-----------------------------------====================---------------------------------*/



  /*============================== SEDES DE TIENDA 480px   =================================*/
  @media screen and (max-width: 480px) {
    .sedetienda{
      padding: 10px 60px;
    }
    
    .container_sedetienda{
      width: 100%;
      display: grid;
      grid-template-columns: 1fr;
      align-items: center;
      justify-content: center;
    }    

    .sedetienda h1{
      font-size: 2rem;
    }

    .card .contenido-card p{
      font-size: 1.2rem;
    }
  }
  /*-----------------------------------====================---------------------------------*/


  /*============================== SEDES DE TIENDA 320px   =================================*/
  @media screen and (max-width: 320px) {
    .sedetienda{
      padding: 10px 10px;
    }

    .container_sedetienda{
      width: 100%;
      display: grid;
      grid-template-columns: 1fr;
      align-items: center;
      justify-content: center;
    }    

    .sedetienda h1{
      font-size: 1.8rem;
    }

    .card .contenido-card p{
      font-size: 1.2rem;
    }

    .card{
      width: 100%;
      margin: 5px;
      padding: 0px;
    }
  }
  /*-----------------------------------====================---------------------------------*/




/*------------------------------------------------------------------------------------------*/
/*--================ Copyright©2023 Roland Samaniego All rigths reserved =================--*/
/*------------------------------------------------------------------------------------------*/
