p{
    font-family: "Inter", sans-serif;
}
h1, h2, h3, h4{
    font-family: "Montserrat", sans-serif;
}
body{
    margin-top: 9rem;
}
.wrappertop{
    position: fixed;
    top:0;
    left:0;
    right:0;
    z-index:9999;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:2.6rem;
    cursor:pointer;
    color:#141319;
}
.navbarmio{

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    height: 6rem;
    padding: 0 40px;
    background-color: #FAF8F8;
}

.logo{
    justify-self: start;
}

.logo img{
    height: clamp(15px, 6vw, 40px);
}

.nav-links{
    display: flex;
    gap: 40px;
    text-transform: uppercase;
    list-style: none;
    margin: 0;
    padding: 0;

    justify-self: center;
}

.nav-links a{
    text-decoration: none;
    color: black;
}
.nav-links a.active{
    font-weight: 800;
} 

li:hover{
    font-weight: 500;
}

.top-bar{
    background: white;
    border-bottom: 1px solid #ddd;
    height: 3rem;

    display: flex;
    justify-content: center;
}

.top-bar-content{
    width: min(95%, 1200px);
 
    
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

.social{
    display: flex;
    gap: .8rem;
}

.social a,
.contact-item{
    color: #777;
    text-decoration: none;
    font-size: 1.2rem;

    display: flex;
    align-items: center;
    gap: .4rem;

    transition: .2s;
}

.social a:hover,
.contact-item:hover{
    color: #000;
}
/*--------BREADCRUMB-----------*/
.breadcrumb{
    width: min(90%, 1200px);
    margin: 2rem auto;
    background-color: #FFF;
    display: flex;
    align-items: center;
    gap: .6rem;

    font-family: "Inter", sans-serif;
    font-size: 1.5rem;
}

.breadcrumb a{
    color: #777;
    text-decoration: none;
    transition: .2s;
}

.breadcrumb a:hover{
    color: #4A88D9;
}

.breadcrumb .separator{
    color: #bbb;
}

.breadcrumb .current{
    color: #141319;
    font-weight: 600;
}
/*------------botones y productos------------------*/
.categoria{
    display:none;
}
.categoria.visible{
    display:block;
}.categorias{

    display:flex;

    justify-content:center;

    gap:2rem;

    margin:3rem 0;

}

.cat-btn{

    width:260px;

    padding:1.6rem;

    border:none;

    background:#E4EDF9;

    color:#4A88D9;

    font-family:"Montserrat";

    font-size:2rem;

    font-weight:700;

    text-transform:uppercase;

    transition:.25s;

}
.cat-btn.active{

    background:#4A88D9;

    color:white;

}
.cat-btn:hover{

    background:#4A88D9;

    color:white;

}
.grid-botes{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:2rem;

}
.card-bote{

    background:white;

    border:1px solid #ddd;

}
.card-bote img{
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.card-info {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
}
.card-info h3 {
    font-weight: 500;
}
.card-info p {
    font-weight: 300;
    padding-bottom: 1rem;
}
.card-info a {
    background-color: #4A88D9;
    color: #FFF;
    text-transform:uppercase;
    padding:1rem 2rem;
    transition:.3s;
    cursor:pointer;
    font-weight: 500;

}
.card-info a:hover{
    text-decoration: none;
    background-color: #1b66c8;
}
.pcontainer{
    width:min(90%,1200px);
    margin:auto;
}
.banner-producto{
    display: flex;
    position:relative;

    margin-bottom:3rem;

}
.banner-producto img{

    width:100%;

    display:block;

}
.banner-info{
    position:absolute;
    left:3rem;
    bottom:3rem;
    color:white;
}

.banner-info h3{
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 3.2rem;

}
a.btn-banner{  /*----------BOTON BANNER------------*/
position:absolute;
    left:50%;
    bottom:40px;
    text-transform: uppercase;
    transform:translateX(-50%);

    padding: 1rem 6rem;
    background: #FF6F59;
    color: white;

    text-decoration: none;
    font-weight: 600;
    border-radius: 0px;

    transition: .3s;

}
/*--------------FOOTER----------------*/
.footer{
    background: #2B2B2B;
    color: white;
    padding: 5rem 0;
}
.footer-content{
    width:min(90%,1200px);

    margin:auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;

    align-items: start;
}
.footer-links h3{
    font-size: 2rem;
    margin-bottom: 2rem;
}

.footer-links ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li{
    margin-bottom: .8rem;
}

.footer-links a{
    color: white;
    text-decoration: none;
    transition: .2s;
}

.footer-links a:hover{
    color: #4A88D9;
}
/* */
.footer-contact{
    text-align: right;
}

.footer-contact h3{
    font-size: 2rem;
    margin-bottom: 2rem;
}

.footer-contact p{
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-contact a{
    color: white;
    text-decoration: none;
}

.footer-contact a:hover{
    color: #4A88D9;
}
@media (max-width: 768px){

    .footer-content{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact{
        text-align: center;
    }

}
/*----------------------------------------*/
#botes,#bananos,#pontones{
    padding-bottom: 3rem;
}

/*--------------WSP FLOTANTE-----------------*/
.whatsapp-float{
    position: fixed;
    bottom: 30px;
    right: 30px;

    width: 64px;
    height: 64px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #25D366;
    color: white;

    border-radius: 50%;
    text-decoration: none;

    font-size: 34px;

    box-shadow: 0 8px 25px rgba(0,0,0,.25);

    z-index: 9999;

    transition: .25s ease;
}

.whatsapp-float:hover{
    background: #20ba5a;
    color: white;
    transform: scale(1.08);
    text-decoration: none;
}
.whatsapp-float{
    animation: pulse 2.5s infinite;
}

@keyframes pulse{

    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,.5);
    }

    70%{
        box-shadow: 0 0 0 16px rgba(37,211,102,0);
    }

    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }

}
.whatsapp-float{
    overflow: visible;
}

.whatsapp-float span{

    position: absolute;
    right: 78px;

    white-space: nowrap;

    background: white;
    color: #141319;

    padding: .8rem 1.2rem;

    border-radius: 30px;

    font-family: "Inter", sans-serif;
    font-size: 1.4rem;

    opacity: 0;
    transform: translateX(10px);

    transition: .25s;

    pointer-events: none;

    box-shadow: 0 5px 18px rgba(0,0,0,.15);
}

.whatsapp-float:hover span{
    opacity: 1;
    transform: translateX(0);
}
/*-----------------------------------------------------*/
@media (max-width:768px){

    .navbarmio{

        display:flex;
        justify-content:space-between;
        align-items:center;

        position:relative;

        padding:0 20px;

    }

    .menu-toggle{
        display:block;
    }

    .nav-links{

        position:absolute;

        top:100%;
        left:0;
        width:100%;

        display:flex;
        flex-direction:column;

        background:#FAF8F8;

        gap:0;

        max-height:0;
        overflow:hidden;

        transition:.3s;

        box-shadow:0 8px 20px rgba(0,0,0,.08);

    }

    .nav-links li{
        width:100%;
    }

    .nav-links a{

        display:block;

        padding:18px 25px;

    }

    .nav-links.open{
        max-height:400px;
    }
    a.btn-banner{
        bottom:10px;
        padding: .6rem 3rem;
    }
    .banner-info h3{
        font-size: 2rem;
    }
    .banner-info p{
        font-size: 1.2rem;
    }
}
@media (max-width:768px){

.categorias{
    display:flex;
    flex-direction:column;
}

.cat-btn{
    width:100%;
    margin-bottom:8px;
}
.pcontainer{
    width: 100%;
    margin: 0;
}
}
@media (max-width:768px){

.grid-botes{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
}

.card-bote{
    width:100%;
}

.card-bote img{
    width:100%;
    height:auto;
    display:block;
}

}
@media (max-width:768px){

.banner-producto{
    display:flex;
    flex-direction:column;
}

.banner-producto img{
    width:100%;
    height:auto;
}

.banner-info{
    position:static;
    padding:18px;
    color:#141319;
}

.btn-banner{
    position:static;
    transform:none;
    display:block;
    width:fit-content;
    margin:0 18px 18px;
}

}
@media (max-width:768px){

.banner-producto{
    display:flex;
    flex-direction:column;
}

.banner-producto img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.banner-info{
    position:static;
    color:#141319;

    padding:18px;

    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
}

.banner-info h3{
    margin:0;
}

.banner-info p{
    margin:0;
}

.btn-banner{
    text-align: center;
    position:static;
    transform:none;

    display:inline-block;

    margin:0;
    padding:.8rem 2rem;
}

}