/*general*/
body{
    font-family: 'Open Sans', sans-serif;
}

.brown{
    color: #4F2C1D;
}

.light-brown{
    color: #CBB992;
}

.red{
    color: #D1291C;
}

.white{
    color: #ffffff;
}

h1.titulo{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 80px;
}

/*navbar*/
nav.navbar{
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.25);
    background-color: #ffffff;
}

.navbar-brand img{
    width: 74px;
}

.navbar-collapse{
    justify-content: end;
}

.navbar-nav{
    gap: 120px;
}

a.nav-link{
    font-size: 16px;
    font-weight: 700;
}

a.nav-link:hover{
    color: #CBB992;
}

.btn-contratar{
    background-color: #4F2C1D;
    border: 2px solid #4F2C1D;
    border-radius: 22px;
    color: #FBFBFB;
    font-weight: 700;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
}

.btn-contratar:hover,.btn-login:hover{
    background-color: #CBB992;
    border: 2px solid #CBB992;
    color: #FBFBFB;
}

.navbar-toggler i{
    color: #4F2C1D;
}

.navbar-toggler:focus{
    box-shadow: none;
}

/*slider*/
section#slider{
    margin-top: 100px;
}

.carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    margin-right: 15px;
    margin-left: 15px;
    border-top: 0;
    border-bottom: 0;
    border-radius: 14px;
}

/*video*/
section#video{
    padding: 50px 0;
    background-color: #E0E0E0;
}

.video-presentacion {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.video-presentacion iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/*productos*/
section#productos{
    padding: 50px 0;
}

.box-producto{
    border: 1px solid #CBB992;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 15px 5px rgb(204 204 204 / 50%);
    -moz-box-shadow: 0 0 15px 5px rgba(204,204,204,.5);
    box-shadow: 0 0 15px 5px rgb(204 204 204 / 50%);
    -webkit-transition: all .6s cubic-bezier(.165,.84,.44,1);
    transition: all .6s cubic-bezier(.165,.84,.44,1);
}

.box-producto:hover{
    webkit-transform: scale(1.04,1.04);
    transform: scale(1.04,1.04);
}

.img-producto-container{
    height: 200px;
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center!important;
    align-items: center!important;
}

img.img-producto{
    max-height: 200px;
    max-width: 90%;
}

.box-producto-texto{
    padding: 30px 15px 15px;
    min-height: 80px;
}

h2.nombre-producto{
    font-size: 15px;
    font-weight: 700;
    color: #4F2C1D;
}

h4.descripcion-producto{
    font-size: 13px;
    color: #4F2C1D;
}

.box-producto-acciones{
    padding: 10px 15px 15px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    justify-content: space-evenly;
    display: flex;
}

span.icon-compartir i{
    font-size: 16px;
    margin-right: 15px;
}

a.btn-comprar{
    background-color: #D1291C;
    color: #ffffff;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    padding: 5px 10px;
}

a.btn-comprar:hover{
    background-color: #CBB992;
}

/*recetas*/
section#recetas{
    padding: 50px 0;
    background-color: #D1291C;
}

h3.nombre-receta{
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.hashtag-receta a{
    font-size: 15px;
    text-decoration: none;
    color: #ffffff;
}

a.btn-link{
    background-color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 22px;
    color: #D1291C;
    font-weight: 700;
    padding: 5px 15px;
    text-decoration: none;
    font-size: 16px;
}

a.btn-link:hover{
    background-color: #CBB992;
    border: 2px solid #CBB992;
    color: #FBFBFB;
}

/*noticias*/
section#noticias{
    position: relative;
    background: #ffffff;
    overflow: hidden;
    padding: 80px 0;
}

section#noticias:before{
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    background-image: url('../img/bg-noticias.png');
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
}

.row-noticias{
    z-index: 2;
    position: relative;
}

.box-noticias{
    position: relative;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 15px 5px rgb(204 204 204 / 50%);
    -moz-box-shadow: 0 0 15px 5px rgba(204,204,204,.5);
    box-shadow: 0 0 15px 5px rgb(204 204 204 / 50%);
    -webkit-transition: all .6s cubic-bezier(.165,.84,.44,1);
    transition: all .6s cubic-bezier(.165,.84,.44,1);
    margin-bottom: 40px;
    height: 480px;
    background-color: #ffffff;
}

.box-noticias:hover {
    webkit-transform: scale(1.04,1.04);
    transform: scale(1.04,1.04);
}

.box-noticias-img{
    height: 250px;
    width: 100%;
    overflow: hidden;
    border-top-right-radius: 10px;
}

.box-noticias-img img{
    width: 100%;
}

.box-noticia-texto{
    padding: 5px 20px;
}

a.btn-ver-noticia{
    background-color: #4F2C1D;
    color: #ffffff;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    padding: 5px 10px;
}

a.btn-ver-noticia:hover{
    background-color: #CBB992;
}

.box-noticia-btn{
    padding: 5px 20px;
    text-align: right;
}

a.btn-link-2{
    background-color: #4F2C1D;
    border: 2px solid #4F2C1D;
    border-radius: 22px;
    color: #ffffff;
    font-weight: 700;
    padding: 5px 15px;
    text-decoration: none;
    font-size: 16px;
}

a.btn-link-2:hover{
    background-color: #CBB992;
    border: 2px solid #CBB992;
    color: #FBFBFB;
}

/*noticia*/

section#noticia{
    padding: 200px 0 100px;
}

p.texto-noticia{
    font-size: 13px;
    color: #808080;
}

/*footer*/
footer{
    background-color: #4F2C1D;
    padding: 100px 0;
}

h6.titulo-fotter{
    font-size: 18px;
    color: #CBB992;
    font-weight: 700;
}

ul.lista-footer{
    list-style: none;
    padding-left: 0px;
}

li.item-footer a{
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
}

li.item-footer a:hover{
    color: #CBB992;
}

a.rrss-icon{
    color: #ffffff;
    margin-right: 8px;
    margin-left: 8px;
}

a.rrss-icon:hover{
    color: #FFC72C;
}

/*productos*/

section#banner{
    margin-top: 100px;
}

section#contenidos{
    padding: 50px 0;
}

.input-group>.form-control{
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: #E8E8E8;
    font-size: 14px;
}

.input-group .btn {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #4F2C1D;
    color: #ffffff;
}

.form-select{
    border-radius: 20px;
    background-color: #E8E8E8;
    font-size: 14px;
    padding: 0.5rem 2.25rem 0.5rem 0.75rem;
    color: #212529;
}

.box-filtro-categoria{
    width: 100%;
    border: 1px solid #CBB992;
    border-radius: 10px;
}

.box-titulo-filtro{
    background-color: #D1291C;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
}

h3.tittulo-filtro{
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    padding: 10px 0;
}

.form-check{
    margin-bottom: 15px;
    margin-left: 15px;
}

.form-check-label{
    color: #4F2C1D;
    font-size: 14px;
}

.box-btn-filtro{
    margin: 25px 0;
    text-align: center;
}

a.btn-filtro{
    background-color: #D1291C;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 20px;
}

a.btn-filtro:hover{
    background-color: #CBB992;
}

/*recetas*/

.hashtag-receta-brown a{
    font-size: 13px;
    text-decoration: none;
    color: #4F2C1D;
    font-weight: bold;
}

/*quiero-ser-proveedor*/

section#formulario{
    padding: 200px 0 100px;
}

h3.subtitulo-formulario{
    font-size: 18px;
    font-weight: bold;
}

.btn-enviar{
    background-color: #4F2C1D;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: none;
    border: 1px solid #4f2c1d;
}

.btn-enviar:hover{
    background-color: #CBB992;
    border: 1px solid #CBB992;
}

.texto-mensaje-ok{
    font-size: 24px;
    font-weight: bold;
}


@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .texto-slider h1 {
        font-size: 32px;
    }
}

@media (max-width: 1100px) {
    .texto-slider h1 {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .texto-slider h1 {
        font-size: 23px;
    }

    .mensaje {
        padding: 10px 0;
    }

    .texto-mensaje {
        font-size: 16px;
    }

    /*#slider{
        padding-top: 120px;
    }*/

    .info-slider {
        margin-top: 10px;
    }

    .navbar-brand img {
        width: 75px;
    }

    h2.titulo-precios{
        font-size: 28px;
    }

    .caja-precios {
        width: 360px;
        height: 200px;
    }

    h4.texto-precio{
        font-size: 25px;
    }

    h3.precio {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .imagen-slider img {
        height: 300px;
        width: auto;
    }

    .mensaje{
        position: initial;
    }

    .texto-slider h1 {
        font-size: 20px;
    }

    h2.titulo-precios{
        margin: 25px 0;
    }

    #precios {
        padding: 50px 0;
    }

    span.titulo-caracteristica {
        font-size: 24px;
    }

    p.texto-caracteristica {
        margin-bottom: 25px;
    }

    #caracteristicas{
        padding: 50px 0;
    }

    h2.titulo-seccion{
        font-size: 24px;
    }

    #pos{
        padding: 50px 0;
    }

    .imagen-pos{
        width: 200px;
    }

    #como_contratar{
        padding: 50px 0;
    }

    #tutoriales{
        padding: 50px 0;
    }

    #testimonios{
        padding: 50px 0;
    }

    .img-testimonio{
        width: 50%;
        margin: auto;
    }

    h3.nombre-testimonio {
        font-size: 24px;
        text-align: center;
        margin-top: 20px;
    }

    h5.cargo-testimonio {
        font-size: 20px;
        text-align: center;
    }

    p.texto-testimonio{
        text-align: center;
    }

    .arrow-slider-next {
        right: 0px;
        display: none !important;
    }

    .arrow-slider-prev {
        left: 0px;
        display: none !important;
    }

    #promociones{
        padding: 50px 0;
    }

    #contratar{
        padding: 50px 0;
    }

    footer{
        padding: 50px 0;
    }

    h6.titulo-fotter, ul.lista-footer, .group-rrss{
        text-align: center;
    }

}

@media (max-width: 576px) {
    .logo-slider img {
        width: 60%;
    }

    .texto-slider h1 {
        font-size: 18px;
        white-space: initial;
        margin-top: 25px;
    }

    .caja-precios {
        width: 90%;
        height: auto;
    }

    h2.titulo-precios {
        font-size: 24px;
    }

    h4.texto-precio {
        font-size: 18px;
    }

    h3.precio {
        font-size: 42px;
    }

    h3.precio span {
        font-size: 28px;
    }
}

