:root {
    --sizenavbar: 60px;
    --sizetitlecards: 20vh;
  }
  
*{
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    box-sizing: border-box;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: black;
    font-size: 1rem;
}
a:hover{
    color: #E7B71A;
}
.hidden{
    display: none;
}
.navbar{
    position: fixed;
    width: 100%;
    height: var(--sizenavbar);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    padding: 10px 10px 10px 10px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 2px solid #E7B71A;
}
.navbar .links{
    display: flex;
    gap: 2rem;
}
.navbar .toggle_btn{
    color: black;
    font-size: 1.5 rem;
    cursor: pointer;
    display: none;
    padding: 0 10px 0 0;
}
.action_btn{
    background-color: red;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
}
.action_btn:hover{
    scale: 1.15;
    color: #fff;
}
.imglogotipo{
    width: 100%;
    height: 40px;
}


/* DROPDOWN MENU */
.dropdown_menu{
    position: fixed;
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.dropdown_menu.open{
    height: 240px;
}

.dropdown_menu li{
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown_menu .action_btn{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* RESPONSIVE MENU */
@media (max-width: 992px){
    .navbar .links, .navbar .action_btn{
        display: none;
    }
    .navbar .toggle_btn{
        display: block;
    }
    .dropdown_menu{
        display: block;
    }
}

@media (max-width: 576px){
    .dropdown_menu{
        left: 2rem;
        width: unset;
    }
}

/* IMAGEN FIJA PRINCIPAL */ 
.inicio{
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/IMG_0320.webp);
    background-size: cover;
    height: 100vh;
    width: 100%;

    .data_bottle{
        text-align: center;
        padding-right: 15px;
    }
    .data_bottlebutton{
        display: none;
        padding-top: 15px;
    }
    .data_bottle:hover{
        color: #E7B71A;
        .data_bottlebutton{
            display: block;
        }
    }
}

/* IMAGEN FIJA PRINCIPAL */ 
.parallax {
    /* The image used */
    background-image: url(../images/BOTELLAS\ JUNTAS\ 2.webp);
  
    /* Set a specific height */
    min-height: 500px;
    width: 100%;
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    padding-bottom: 50px;
}

.item{
    padding-top: 14%;
}
.item img{
    width: 400px;
    height: auto;
}
/* El "active" se utliza para el script que vayan apareciendo*/
.active{
    padding-left: 40%
}

@media (max-width:1340px){
    .parallax {
        /* The image used */
        background-image: url(../images/BOTELLAS\ JUNTAS\ CENTRADAS.webp);
    }
    .item{
        margin: auto;
    }
    .active{
        padding-left: 25%
    }
}

@media (max-width: 450px){
    .item img{
        width: 220px;
        height: auto;
    }

}

/* SCROLL */ 


/* SCROLL */ 



/* CARDS */ 
.section_cards{
    background-image: url(../images/14mostbote.webp);
    background-size: cover;
    height: 100vh;
    width: 100%;
}
.titlecards{
    width: 100%;
    height: var(--sizetitlecards);
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.titlecards{
  color: white;
}
.cards{
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - var(--sizetitlecards));
    width: 100%;
    gap: 50px;
}
.card_me{
    position: relative;
    width: 320px;
    height: 320px;
}
.card_me .face{
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    transition: .5s;
}
.card_me .front{
    box-shadow: 0 5px 10px #000;
}
.img_card{
    position: absolute;
    width: 320px;
    height: 320px;
    object-fit: cover;
}
.card_me .back{
    padding: 15px;
    color: #f3f3f3;
    justify-content: space-between;
    display: none;
}
.card_me:hover{
    .back{
        background: rgba(255, 215, 0, .5);
        display: flex;
        flex-direction: column;
        transition: 1s;
    }
}
@media (max-width: 560px){
    .s1{
        flex-direction: column;
    }
    .card_me{
        width: 300px;
        height: 200px;
    }
}
/* CARDS */ 

/* SECCIÓN DE ENVIAR CORREO NEWSLETTER */ 
.newsletter{
    width: 100%;
    height: 100vh;
}
.subscribe-box{
    top: 37%;
    left: 55%;
    position:relative;
    background: #fff;
    padding: 60px 40px;
    width: 600px;
    text-align: center;
    z-index: 100;
}

@media (max-width: 1340px){
    .subscribe-box{
        left: 10%;
        width: 80%;
        height: auto;
    }

}
.subscribe-box h1{
    font-size: 36px;
    color: #E7B71A;
    margin-bottom: 15px;
}
.subscribe-box span{
    color: #999;
    font-size: 16px;
    text-transform: capitalize;
}
.subscribe-box hr{
    width: 70px;
    color: #999;
    margin: 25px auto;
}
.email_address{
    width: 100%;
    height: 46px;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    background-color: #f4f4f4;
    border: 1px solid #d4d4d4;
    margin-bottom: 20px;
    border-radius: 10px;
}
.btn_sub{
    width: 50%;
    height: 46px;
    border: 0;
    background-color: #E7B71A;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s linear;
    border-radius: 8px;
}
.btn_sub:hover{
    opacity: .8;
}
/* SECCIÓN DE ENVIAR CORREO NEWSLETTER */ 
