body, html{
    font-family: Montserrat;
    overflow-x: hidden;
}

html{
    scroll-behavior: smooth;
}

h3{
    font-size: 1.4em;
}
h4{
    font-size: 1.2em;
}

/* HEADER */

.header{
    background: #F80097;
    height: 50px;
    align-items: center;
    align-content: center;
    width: 100%;
    position: fixed;
    z-index: 100;
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 1em;
}
.nav__left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 5px;
}

.logo__a{
    display: flex;
}

.logo__img{
    height: 28px;
    border-radius: 3px;
}

.nav__ul{
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 5px;
    margin: 0;
    margin-right: 16px;
}
.nav__link{
    text-decoration: none;
    color: #fff;
}

.a-productos{
    color: #F80097;
    padding: 8px 10px;
    font-size: 1em;
    border-radius: 50px;
    background: #e8e8e8;
    cursor: pointer;
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
    box-shadow: 1px 1px 10px #888a;
}
.a-productos:hover{
    color: #a80469;
    box-shadow: 1px 1px 10px #888f;
}
.a-productos:active{
    color: #666;
}
@media only screen and (max-width: 650px){
    .nav__ul{
        margin: 0;
        padding: 0;
    }
    .a-productos{
        margin-right: -6px;
    }
}
.a-contacto{
    transition: all 0.3s;
}
.a-contacto:hover{
    color: #ddd;
}
@media only screen and (max-width: 650px) {
    .a-contacto{
        display: none;
    }
}
.menu-toggle{
    background: none;
    border: none;
    display: flex;
    padding-left: 0;
}
.mynaui--menu {
    display: inline-block;
    width: 30px;
    height: 30px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M4.5 6.5h15M4.5 12h15m-15 5.5h15'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    color: #fff;
    cursor: pointer;
}

/* MAIN */

.main{
    width: 100%;
}

/* HERO */

.hero{
    /*
    background-image: url(assets/images/hero.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    */
    background: url("assets/images/hero.webp") center / cover no-repeat fixed;
    height: 500px;
    width: 100%;
    text-align: center;

    display: flex;
    align-items: center;
}
.hero__content{
    margin: auto;
    text-shadow: 0 0 15px #444;
    width: 100%;
    color: #fff;
}
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}
.hero__title{
    font-size: 3em;
}

/* PRODUCTOS */

.productos{
    text-align: center;
    width: 100%;
    margin: auto;
}

.productos__title{
    font-weight: 600;
}

.product-card{
    box-sizing: border-box;
    margin: 20px;
}

.product-card__img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    box-sizing: border-box;
    border-radius: 5px;
}

.carrusel{
    display: flex;
    background-color: #f5f5f5;
    max-width: 800px;
    overflow-x: scroll;
    margin: auto;
    border-radius: 5px;
    box-shadow: 0px 0px 10px #bbb;
}

.product-card__h4{
    margin-top: 0;
    font-size: 1em;
    font-weight: 600;
}





.carrusel-wrapper {
    position: relative;
    max-width: 800px;
    margin: auto;
}


.carrusel {
    scroll-behavior: smooth;    
    max-width: 100%;            


    scrollbar-width: none;
    -ms-overflow-style: none;
}
.carrusel::-webkit-scrollbar {
    display: none;
}


.carrusel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #F80097;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);

    opacity: 1;
    transition: opacity 0.3s ease, background 0.2s;
}

.carrusel-btn:hover {
    background: #c8007a;
}

.carrusel-btn--izq {
    left: -18px;
}
.carrusel-btn--der {
    right: -18px;
}

.carrusel-btn.hidden {
    opacity: 0;
    pointer-events: none;
}


@media (max-width: 480px) {
    .carrusel-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    .carrusel-btn--izq { left: 4px; }
    .carrusel-btn--der { right: 4px; }
}

/* ENCARGOS */

.encargos{
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
}

/* RAMO CUBANITOS */ /* BOX CUBANITOS */

.ramo, .box{
    text-align: center;
    margin: auto;
    padding: 10px;
}

.ramo__img, .box__img{
    height: 300px;
    width: 300px;
    object-fit: cover;
    box-sizing: border-box;
    border-radius: 5px;
    box-shadow: 0px 0px 10px #444;
    transition: all 0.3s;
}
.ramo__img:hover, .box__img:hover{
    box-shadow: 0px 0px 18px #444; 
}

/* ABOUT */

.about{
    text-align: center;
    max-width: 800px;
    margin: auto;
    padding: 18px;
    padding-right: 24px;
}

.about__img--trofeo{
    height: 340px;
    width: auto;
    object-fit: cover;
    box-sizing: border-box;
    border-radius: 5px;
    box-shadow: 0px 0px 10px #444;
    transition: all 0.3s;
}
.about__img--trofeo:hover{
    box-shadow: 0px 0px 18px #444;
    scale: 1.1;
}

.about__mision, .about__vision, .about__valores, .about__ubi{
    margin-top: 60px;
}

.about__img--mision, .about__img--vision, .about__img--valores{
    margin-right: 6px;
}

.about__mision, .about__vision, .about__valores, .about__ubi{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-content: center;
}

.about__img--mision, .about__img--vision, .about__img--valores, .about__img--ubi{
    height: 20px;
    width: auto;
}

.about__ul{
    list-style: none;
    margin: auto;
    text-align: center;
    line-height: 28px;
    padding: 20px;
}

.about__p--ubi{
    margin-bottom: 70px;
}

.about__img--ubi{
    margin-right: 4px;
}

/* INSTAGRAM LOGO FLOTANTE */

.ig-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 200;

    width: 52px;
    height: 52px;
    border-radius: 50%;

    /* Degradado oficial de Instagram */
    background: radial-gradient(circle at 30% 110%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);

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

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;

    text-decoration: none;
}

.ig-float__icon {
    width: 28px;
    height: 28px;
}


.ig-float:hover {
    
    animation: rebote 0.5s ease-in-out;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
@keyframes rebote {
    0%   { transform: translateY(0); }
    30%  { transform: translateY(-10px); }
    60%  { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}


@media (max-width: 480px) {
    .ig-float {
        width: 44px;
        height: 44px;
        bottom: 16px;
        right: 16px;
    }
    .ig-float__icon {
        width: 23px;
        height: 23px;
    }
}

/* FOOTER */

/* FOOTER DESCRIP */

.footer{
    background: #222;
    color: #fff;
    padding: 14px;
    width: 100%;
}

.footer__descrip{
    margin: auto;
}

.footer__ul{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.footer__item{
    margin: 0;
}
.footer__item--seguinos{
    margin-right: 4px;
}
.footer__item--contactanos{
    margin-left: 10px;
    margin-right: 10px;
}

.basil--instagram-outline {
    display: inline-block;
    width: 24px;
    height: 24px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M16 7a1 1 0 1 1 2 0a1 1 0 0 1-2 0'/%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M12 7.25a4.75 4.75 0 1 0 0 9.5a4.75 4.75 0 0 0 0-9.5M8.75 12a3.25 3.25 0 1 1 6.5 0a3.25 3.25 0 0 1-6.5 0' clip-rule='evenodd'/%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M17.258 2.833a47.7 47.7 0 0 0-10.516 0c-2.012.225-3.637 1.81-3.873 3.832a46 46 0 0 0 0 10.67c.236 2.022 1.86 3.607 3.873 3.832a47.8 47.8 0 0 0 10.516 0c2.012-.225 3.637-1.81 3.873-3.832a46 46 0 0 0 0-10.67c-.236-2.022-1.86-3.607-3.873-3.832m-10.35 1.49a46.2 46.2 0 0 1 10.184 0c1.33.15 2.395 1.199 2.55 2.517a44.4 44.4 0 0 1 0 10.32a2.89 2.89 0 0 1-2.55 2.516a46.2 46.2 0 0 1-10.184 0a2.89 2.89 0 0 1-2.55-2.516a44.4 44.4 0 0 1 0-10.32a2.89 2.89 0 0 1 2.55-2.516' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    color: #fff;
}
.footer__item--instagram-logo{
    height: 24px;
}

/* FOOTER INFO */

.footer__info{
    text-align: center;
    margin-top: 60px;
}

/* GITHUB */

.footer__info--github{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
@media only screen and (max-width: 650px) {
    .footer__info--github{
        align-items: center;
    }
}

.mdi--github {
    display: inline-block;
    width: 24px;
    height: 24px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2A10 10 0 0 0 2 12c0 4.42 2.87 8.17 6.84 9.5c.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34c-.46-1.16-1.11-1.47-1.11-1.47c-.91-.62.07-.6.07-.6c1 .07 1.53 1.03 1.53 1.03c.87 1.52 2.34 1.07 2.91.83c.09-.65.35-1.09.63-1.34c-2.22-.25-4.55-1.11-4.55-4.92c0-1.11.38-2 1.03-2.71c-.1-.25-.45-1.29.1-2.64c0 0 .84-.27 2.75 1.02c.79-.22 1.65-.33 2.5-.33s1.71.11 2.5.33c1.91-1.29 2.75-1.02 2.75-1.02c.55 1.35.2 2.39.1 2.64c.65.71 1.03 1.6 1.03 2.71c0 3.82-2.34 4.66-4.57 4.91c.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 0 0 0 12 2'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;

    cursor: pointer;
    color: #fff;
}

/* Footer Mobile */

@media only screen and (max-width: 650px) {
    .footer__ul{
        display: flex;
        list-style: none;
        flex-direction: column;
    }
    .footer__item{
        align-self: flex-start;
        margin: 0;
        margin-bottom: 12px;
    }
    .footer__info--github{
        margin: 0;
    }
}


/* ── Menú desplegable ── */
.nav-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;

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

    background: #F80097;
    list-style: none;
    padding: 0;
    margin: 0;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

    z-index: 999;
}


.nav-menu.open {
    max-height: 300px;
}

.nav-menu__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-menu__item:last-child {
    border-bottom: none;
}

.nav-menu__link {
    display: block;
    padding: 14px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: background 0.2s, padding-left 0.2s;
}

.nav-menu__link:hover {
    background: rgba(255, 255, 255, 0.15);
    padding-left: 28px;
}