@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* Generales */
* {
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

.blue {
  background-color: #6f6f6f;
  color: white;
}

.borde {
  border-bottom: 1px solid #b4b4b4;
  text-align: center;
  font-weight: 600;
}

.carousel-inner .carousel_1, .carousel-inner .carousel_2, .carousel-inner .carousel_3, .section_products .card_1, .section_products .card_2, .section_products .card_3, .section_nosotros, .section_ofrecemos, .section_servicios, .section_banner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* Navbar */
nav img {
  width: 280px;
  height: 50px;
}

nav ul {
  font-weight: 600;
}

@media all and (min-width: 992px) {
  nav {
    height: 110px;
  }
  nav img {
    width: 500px;
    height: 75px;
  }
  nav ul {
    width: 60%;
    margin: auto;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    font-size: 1.2rem;
  }
}

@media all and (min-width: 1378px) {
  nav img {
    width: 700px;
    height: 75px;
  }
}

@media all and (min-width: 1920px) {
  nav img {
    width: 700px;
    height: 100px;
  }
}

/* Carousel */
.carousel-inner {
  height: 400px;
}

.carousel-inner div {
  height: 400px;
}

.carousel-inner .carousel_1 {
  background-image: url("../assets/carrousel/400/carrousel_mobile_1.png");
}

.carousel-inner .carousel_2 {
  background-image: url("../assets/carrousel/400/carrousel_mobile_2.png");
}

.carousel-inner .carousel_3 {
  background-image: url("../assets/carrousel/400/carrousel_mobile_3.png");
}

@media all and (min-width: 600px) {
  .carousel-inner {
    height: 500px;
  }
  .carousel-inner div {
    height: 500px;
  }
  .carousel-inner .carousel_1 {
    background-image: url("../assets/carrousel/800/carrousel_800_1.png");
  }
  .carousel-inner .carousel_2 {
    background-image: url("../assets/carrousel/800/carrousel_800_2.png");
  }
  .carousel-inner .carousel_3 {
    background-image: url("../assets/carrousel/800/carrousel_800_3.png");
  }
}

@media all and (min-width: 1000px) {
  .carousel-inner {
    height: 500px;
  }
  .carousel-inner div {
    height: 500px;
  }
  .carousel-inner .carousel_1 {
    background-image: url("../assets/carrousel/1000/carrousel_1000_1.png");
  }
  .carousel-inner .carousel_2 {
    background-image: url("../assets/carrousel/1000/carrousel_1000_2.png");
  }
  .carousel-inner .carousel_3 {
    background-image: url("../assets/carrousel/1000/carrousel_1000_3.png");
  }
}

@media all and (min-width: 1300px) {
  .carousel-inner {
    height: 500px;
  }
  .carousel-inner div {
    height: 500px;
  }
  .carousel-inner .carousel_1 {
    background-image: url("../assets/carrousel/1378/carrousel_1378_1.png");
  }
  .carousel-inner .carousel_2 {
    background-image: url("../assets/carrousel/1378/carrousel_1378_2.png");
  }
  .carousel-inner .carousel_3 {
    background-image: url("../assets/carrousel/1378/carrousel_1378_3.png");
  }
}

@media all and (min-width: 1920px) {
  .carousel-inner {
    height: 500px;
  }
  .carousel-inner div {
    height: 500px;
  }
  .carousel-inner .carousel_1 {
    background-image: url("../assets/carrousel/1920/carrousel_1920_1.png");
  }
  .carousel-inner .carousel_2 {
    background-image: url("../assets/carrousel/1920/carrousel_1920_2.png");
  }
  .carousel-inner .carousel_3 {
    background-image: url("../assets/carrousel/1920/carrousel_1920_3.png");
  }
}

/* Sección productos */
.section_products {
  padding: 0px 10px 0 10px;
  padding-bottom: 20px;
}

.section_products .card_1 {
  background-image: url("../assets/productos/1.png");
}

.section_products .card_2 {
  background-image: url("../assets/productos/2.png");
}

.section_products .card_3 {
  background-image: url("../assets/productos/3.png");
}

.section_products .card_products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 300px;
  margin-top: 20px;
  opacity: 0.6;
}

.section_products .card_products h1 {
  font-weight: 800;
}

.section_products .card_products h1 a {
  text-decoration: none;
  color: currentColor;
}

.section_products .card_products:hover {
  opacity: 1;
  -webkit-transform: scale(0.95, 0.95);
          transform: scale(0.95, 0.95);
  -webkit-transition: 1s;
  transition: 1s;
}

.section_products .card_products:hover h1 {
  font-size: 2.2rem;
}

@media all and (min-width: 985px) {
  .section_products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .section_products .card_products {
    width: 300px;
    height: 300px;
  }
  .section_products .card_products h1 {
    text-align: center;
  }
}

@media all and (min-width: 1250px) {
  .section_products .card_products {
    width: 400px;
    height: 400px;
  }
}

@media all and (min-width: 1920px) {
  .section_products {
    max-width: 1750px;
    margin-left: 85px;
  }
  .section_products .card_products {
    width: 450px;
    height: 400px;
  }
}

/*Nosotros*/
.section_nosotros {
  background-image: url("../assets/nosotros/nosotros/350.png");
  padding: 0 10px;
  text-align: center;
  padding-bottom: 1px;
}

.section_nosotros h1 {
  padding-top: 30px;
  font-weight: 600;
  font-size: 2rem;
}

.section_nosotros p {
  padding-bottom: 10px;
}

.section_ofrecemos {
  background-image: url("../assets/nosotros/ofrecemos/400.png");
  line-height: 1.3;
  padding: 0 10px;
  text-align: center;
  padding-bottom: 1px;
}

.section_ofrecemos h1 {
  font-size: 2rem;
  padding-top: 20px;
}

.section_ofrecemos ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.section_ofrecemos ul span {
  font-weight: 800;
}

.section_ofrecemos ul li {
  padding: 10px;
}

.section_ofrecemos .diferencia {
  text-align: center;
  padding: 0 10px;
  font-weight: 600;
}

.section_ofrecemos .diferencia p {
  font-style: italic;
  line-height: 1.3;
  padding-bottom: 10px;
}

.section_ofrecemos .diferencia h1 {
  font-size: 2rem;
}

@media all and (min-width: 550px) {
  .section_nosotros {
    background-image: url("../assets/nosotros/nosotros/800.png");
  }
  .section_ofrecemos {
    background-image: url("../assets/nosotros/ofrecemos/800.png");
  }
}

@media all and (min-width: 1000px) {
  .section_nosotros {
    background-image: url("../assets/nosotros/nosotros/1920.png");
    padding: 0 300px 0 300px;
    padding-bottom: 1px;
  }
  .section_nosotros p {
    font-size: 1.15rem;
  }
  .section_nosotros h1 {
    padding-top: 30px;
    font-weight: 600;
  }
  .section_ofrecemos {
    background-image: url("../assets/nosotros/ofrecemos/1378.png");
    font-size: 1.15rem;
    padding: 0 300px 0 300px;
    padding-bottom: 1px;
  }
  .section_ofrecemos ul {
    list-style-type: none;
  }
  .section_ofrecemos ul li span {
    font-size: 1.3rem;
  }
  .section_ofrecemos .diferencia {
    text-align: center;
  }
  .section_ofrecemos .diferencia p {
    font-style: italic;
    line-height: 1.3;
    font-size: 1.15rem;
  }
}

@media all and (min-width: 1920px) {
  .section_ofrecemos {
    background-image: url("../assets/nosotros/ofrecemos/1920.png");
  }
}

/* Detalle de los productos */
.section_details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section_details .header_details {
  margin-bottom: 20px;
  width: 100%;
}

.section_details .header_details h1 {
  margin-top: 30px;
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
}

.section_details .header_details p {
  text-align: center;
  padding: 0 10px;
}

.section_details .container_product .product_detail {
  margin-top: 20px;
  text-align: center;
}

.section_details .container_product .product_detail .container_text {
  padding: 10px;
}

.section_details .container_product .product_detail .container_text .contenedor_detalles {
  text-align: center;
}

.section_details .container_product .product_detail .container_text .contenedor_detalles h2 {
  font-weight: 600;
  font-size: 1.6rem;
}

.section_details .container_product .product_detail .container_text .contenedor_detalles .text_detail {
  margin-top: 10px;
}

.section_details .container_product .product_detail .container_text img {
  height: 320px;
  width: 100%;
  padding: 10px;
  margin-bottom: 0px;
  margin-top: 15px;
  border-radius: 15px;
}

.section_details2 {
  padding-bottom: 40px;
}

.section_details2 .product2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section_details2 .product2 .productos {
  text-align: center;
}

.section_details2 .product2 .productos h2 {
  font-weight: 600;
  font-size: 1.6rem;
  margin-top: 30px;
  padding-bottom: 8px;
}

.section_details2 .product2 .productos img {
  height: 355px;
  width: 100%;
  margin: 0;
  padding: 0;
  padding-top: 0px;
  border-radius: 5px;
}

@media all and (min-width: 500px) {
  .section_details .container_product .product_detail .container_text img {
    width: 400px;
    height: 400px;
  }
}

@media all and (min-width: 1200px) {
  .section_details .header_details p {
    text-align: center;
    padding: 0 300px;
  }
  .section_details .container_product .product_detail .container_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .section_details .container_product .product_detail .container_text .contenedor_detalles {
    width: 30%;
    margin-left: 262px;
    text-align: left;
  }
  .section_details .container_product .product_detail .container_text .contenedor_detalles h2 {
    padding-top: 15px;
  }
  .section_details .container_product .product_detail .container_text img {
    width: 450px;
    height: 450px;
    margin-left: 50px;
  }
  .section_details2 {
    padding-bottom: 40px;
  }
  .section_details2 .product2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .section_details2 .product2 .productos {
    padding: 0 50px;
  }
  .section_details2 .product2 .productos h2 {
    padding-top: 15px;
  }
  .section_details2 .product2 .productos img {
    margin-top: 0;
    width: 450px;
    height: 450px;
  }
}

@media all and (min-width: 1920px) {
  .section_details p {
    font-size: 1.35rem;
    padding: 0 300px 0 300px;
    text-align: center;
  }
  .section_details .container_product .product_detail .container_text .contenedor_detalles {
    width: 30%;
    margin-left: 453px;
  }
  .section_details .container_product .product_detail .container_text img {
    margin-left: 50px;
  }
}

/* Servicios */
.section_servicios {
  text-align: center;
  padding: 0 10px;
  background-image: url("../assets/servicios/servicios_450.png");
  padding-bottom: 20px;
  color: white;
}

.section_servicios h1 {
  font-weight: 600;
  padding-top: 27px;
}

.section_servicios ul {
  font-weight: 500;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.section_servicios ul span {
  font-weight: 600;
  padding: 3px;
}

.section_servicios ul li {
  font-weight: 600;
  padding: 9px;
}

@media all and (min-width: 800px) {
  .section_servicios {
    background-image: url("../assets/servicios/servicios_800.png");
  }
  .section_servicios ul {
    width: 800px;
    margin: auto;
    font-size: 1rem;
  }
}

@media all and (min-width: 1000px) {
  .section_servicios {
    background-image: url("../assets/servicios/servicios_1920.png");
  }
  .section_servicios h1 {
    padding-top: 33px;
  }
  .section_servicios ul {
    width: 1000px;
    margin: auto;
    font-size: 1.35rem;
  }
}

/* Banner */
.section_banner {
  height: 250px;
  width: 100%;
  background-image: url("../assets/banner/banner_mobile.png");
}

@media all and (min-width: 800px) {
  .section_banner {
    background-image: url("../assets/banner/banner_1378.png");
  }
}

@media all and (min-width: 1700px) {
  .section_banner {
    background-image: url("../assets/banner/banner_desktop.png");
  }
}

/* Prefooter */
.section_prefooter {
  width: 100%;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

.section_prefooter div {
  padding: 0 15px 0 15px;
}

.section_prefooter div .title_prefooter {
  font-weight: 600;
  margin-top: 15px;
}

.section_prefooter div p .numero {
  font-size: 1rem;
}

.section_prefooter .container_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 25px 0 25px 0;
}

.section_prefooter .container_img img {
  height: 70px;
  margin-bottom: 0px;
}

/* Footer */
.section_footer {
  padding-bottom: 80px;
}

.section_footer .header_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 8px;
  margin-bottom: 20px;
  padding: 0 10px 0 10px;
}

.section_footer .header_footer .logo {
  height: 100px;
}

.section_footer .header_footer .qr {
  height: 75px;
}

.section_footer .header_footer .text_footer {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.section_footer .header_footer .text_footer p {
  margin-top: 20px;
  font-size: 0.7rem;
  text-align: left;
  margin-left: 10px;
}

.section_footer .contenedor_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 8px;
}

.section_footer .contenedor_footer .body_footer {
  width: 200px;
  height: 120px;
  margin-left: 25px;
}

.section_footer .contenedor_footer .body_footer p {
  font-size: 0.8rem;
}

.section_footer .contenedor_footer .body_footer p b {
  font-size: 0.9rem;
}

@media all and (min-width: 1000px) {
  .section_footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .section_footer .header_footer {
    margin-top: 85px;
    width: auto;
  }
  .section_footer .header_footer .logo {
    height: 130px;
    margin-right: 30px;
  }
  .section_footer .header_footer .qr {
    height: 90px;
  }
  .section_footer .header_footer .text_footer p {
    font-size: 1rem;
  }
  .section_footer .contenedor_footer .body_footer {
    margin-top: 50px;
  }
  .section_footer .contenedor_footer .body_footer p {
    font-size: 1rem;
  }
  .section_footer .contenedor_footer .body_footer p b {
    font-size: 1.1rem;
  }
}

@media all and (min-width: 1600px) {
  .section_footer {
    padding-bottom: 140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin: 0 100px 0 100px;
  }
  .section_footer .header_footer {
    width: auto;
  }
  .section_footer .header_footer .logo {
    height: 150px;
    margin-right: 40px;
  }
  .section_footer .header_footer .qr {
    height: 110px;
  }
  .section_footer .header_footer .text_footer {
    margin-left: 50px;
  }
  .section_footer .header_footer .text_footer p {
    font-size: 1rem;
  }
  .section_footer .contenedor_footer {
    width: 600px;
    margin: 0;
    padding: 0;
  }
  .section_footer .contenedor_footer .body_footer {
    margin-top: 40px;
    width: 300px;
  }
  .section_footer .contenedor_footer .body_footer p {
    font-size: 1rem;
  }
  .section_footer .contenedor_footer .body_footer p b {
    font-size: 1.1rem;
  }
}
/*# sourceMappingURL=estilos.css.map */