/*codigo del estilo del pdf
 *
 *  */
.title {
    /* Estilos de título h1 */
    text-align: center;
    padding: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.pdfview {
    /* Centrado */
    margin: auto;
    display: block;
    /* Tamaño */
    width: 850px;
    height: 100vh;
    /* Mejorar aspecto */
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


/*
codigo de la pantalla del carrusel
*/
.carousel-inner > .item > img,
  .carousel-inner > .item > a > img {
      width: 45%;
    
      margin: auto;
  }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Bebas Neue", sans-serif;
}

h1 {
    color: #ff6a00;
    font-size: 50px;
    line-height: 64px;
}

h2 {
    font-size: 46px;
    line-height: 64px;
    color: #a88914;
}

h4 {
    font-size: 30px;
    color: #7b3703;
}

h6 {
    font-weight: 700;
    font-size: 14px;
}

p {
    font-size: 26px;
    margin: 15px 0 20px 0;
    color: #1a1a1a;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    margin: 40px 0;
}

button.normal {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #d59500;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}

body {
    width: 100%;
}

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #e3e6f3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.66);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}
.logo {
    width: 90px;
    height: 20px;
}

/*? nav bar*/
#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}
#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}
#navbar li a:hover,
#navbar li a.active {
    color: #d59500;
}
#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #fa3c08;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

/*! home page*/

#hero {
    background: url("imagenes/fondo3.jpg") no-repeat center;
    height: 30%;
    width: 100%;
    background-position: top 25% right 0;
    background-size: cover;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero button {
    background-color: transparent;
    color: #fa3c08;
    border-color: transparent;
    border: 0;
    padding: 14px 80px 14px 65px;
    cursor: pointer;
    font-weight: 700;
    font-size: 25px;
}

#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#feature .fe-box {
    width: 90px;
    height: 100px;
    text-align: center;
    padding: 10px 15px;
    border: 1px solid #ff003c;
    border-radius: 6px;
    margin: 15px 0;
}

#feature .fe-box:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.8);
    margin: 15 px 0;
    transition: 0.2s ease;
}

#feature .fe-box h6 {
    display: inline-block;
    padding: auto;
    line-height: 1;
    border-radius: 4px;
    color: #fa3c08;
    background-color: transparent;
}

#feature .fe-box img {
    width: 100%;
    margin-bottom: 5px;
}

/*! productos*/
#product1 {
    text-align: center;
}

#product1 .pro-container {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}

#product1 .pro {
    width: 23%;
    min-width: 150px;
    padding: 10px 12px;
    border: 1px solid #f56218;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.2);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
}

#product1 .pro:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.6);
}

#product1 .pro img {
    width: 55%;
    border-radius: 20px;
}

#product1 .pro .des {
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .des span {
    color: #1a1a1a;
    font-size: 15px;
}

#product1 .pro .des h5 {
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
}

#product1 .pro .des i {
    font-size: 12px;
}

#product1 .pro .des h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #a88914;
}

#product1 .pro .cart {
    width: 40px;
    height: 40px;
    color: #1a1a1a;
    line-height: 40px;
    border-radius: 50px;
    background-color: #e9e199;
    border: 1px solid #a88914;
    position: absolute;
    bottom: 20px;
    right: 10px;
}

#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("imagenes/fondo2.jpg");
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
}

#banner h4 {
    color: #1a1a1a;
    font-size: 25px;
}

#banner h2 {
    color: #1a1a1a;
    font-size: 40px;
    padding: 10px 0;
}

#banner h2 span {
    color: #fe0b09;
}

#banner button:hover{
    background: #1a1a1a;
}

#sm-banner .banner-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url("imagenes/f4.jpg");
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
}

#sm-banner h4{
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}

#sm-banner span{
    color: #d59500;
    font-size: 28px;
    font-weight: 800;
}

.star {
    color: #d59500;
}

#btn-whats {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
    font-size: 50px;
    color: #00ff00;
}