*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    width: 13px;
    height: 13px;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(13deg, #227131 14%,#0b8a22 64%);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover{
    background-color: #227131;
}
::-webkit-scrollbar-track{
    background: #ffffff;
    border-radius: 10px;
    box-shadow: inset 7px 10px 12px #f0f0f0;
}

::selection {
    background: #227131;
    color: #fff;
}

section{
    overflow: hidden;
}
main{
    width: 100%;
    height: 100dvh;   
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrap{
    width: 80dvw;
    height: 80dvh;
    border-radius: 50px;
    padding: 20px;
    background-color: #F17C13;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.derecha, .izquierda{
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.derecha{
    align-items: center;
}

.izquierda{
    align-items: flex-start;
}

.izquierda h1{
   font-size: 5em;
   font-weight: bold;
}

.izquierda h1, .izquierda p{
   text-align: left;
}

.btn_main{
    margin-top: 20px;
    position: relative;
    padding: 10px 45px;
    background-color: #54AF32;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 2px 3px 15px #00000029;
    transition: all 0.3s ease-in-out;
}
.btn_main:hover{
    background-color: #54AF32;
    color: #ffffff;
    box-shadow: 0px 0px 0px #00000029;
}
.btn_main::after{
    content: "→";
    position: absolute;
    top: 0%;
    left: 105%;
    width: 47px;
    height: 47px;
    border-radius: 30px;
    background-color: #54AF32;
    transition: all 0.3s ease-in-out;
    text-align: center;
    font-size: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sabor{
    position: absolute;
    width: 450px;
    height: auto;
    z-index: 1;
}

.derecha_img_main{
    width: 160px;
    height: auto;
    z-index: 2;
}

.botellas{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: auto;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.botellas .botellita{
    width: 30px;
    height: auto;
    margin: 0 15px 15px 15px;
    transition: all 0.4s ease;
}

.botellas .botellita:hover{
    transform: translateY(-10px) scale(1.2);
    cursor: pointer;
}

.hoja{
    position: absolute;
    width: 150px;
    height: auto;
    z-index: 2;
    opacity: 0.7;
    animation: mover1 6s infinite;
}
.hoja1{
    top: 10%;
    left: 5%;
    transform: rotate(20deg);
}
.hoja2{
    bottom: 10%;
    right: 5%;
    transform: rotate(-20deg);
    animation-delay: 3s;
}
.hoja3{
    bottom: 25%;
    left: 5%;
    transform: rotate(-75deg);
    animation-delay: 1s;
}

@keyframes mover1{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-20px) rotate(20deg);
        opacity: 1;
    }
    100%{
        transform: translateY(0px);
    }
}

.wave{
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 70%;
    height: auto;
    z-index: 0;
}

@media only screen and (max-width: 768px) {
    .wrap{
        flex-direction: column;
        width: 90dvw;
        border-radius: 25px;
    }
    .derecha, .izquierda{
        width: 90%;
    }
    .izquierda h1 {
        font-size: 3em;
        line-height: 0.9em;
                margin-top: 1em;
    }
    .derecha_img_main{
        width: 109px;
        z-index: 1;
        margin-top: 20px;
    }
    .btn_main {
        margin-top: 0px;
    }

    .botellas  {
        z-index: 100;
    }
    .botellas .botellita{
        width: 60px;
    }
    .sabor{
        width: 60%;
    }
    .hoja{
        width: 100px;
    }
    .hoja1{
        left: 78%;
    }
    .hoja2{
        bottom: 20%;
    }
    .wave{
        width: 180%;
    }
}


/* Acoordeon */
.accordion_section{
    padding: 4em 0;
    background-image: linear-gradient(-160deg, #53AE32, #DCD400);
}
.accordion_section h1{
    font-size: 4rem;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.image_accordion{
    padding: 40px;
}

.accordion .accordion-item {
    background-color: #277733;
    border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item button[aria-expanded=true] {
    border-bottom: 1px solid #fff;
}
.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 1em;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}
.accordion button:hover, .accordion button:focus {
    cursor: pointer;
    color: #DCD400;
}
.accordion button:hover::after, .accordion button:focus::after {
    cursor: pointer;
    color: #ffffff;
    border: 1px solid #ffffff;
}
.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 15px;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}
.accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}
.accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}
.accordion button[aria-expanded=true] {
    color: #DCD400;
}
.accordion button[aria-expanded=true] .icon::after {
    width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
    opacity: 1;
    max-height: 12em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}
.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    padding: 5px 30px;
    color: #fff;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}
.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
}


@media only screen and (max-width: 768px) {
    .accordion_section h1{
        font-size: 2rem;
        color: #fff;
    }
}


/* sabores  */

.btn_section{
    border: 1px solid #fff;
    padding: 10px 35px;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.btn_section:hover{
    background-color: #9b1111;
    border-color: #9b1111;
    color: #fff;
    text-decoration: none;
}

.image_section_sabores{
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}


.frutilla_hibisco .image_section_sabores{
    background-image: url('../images/sabores/frutilla_e_hibisco.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 4em;
} 

.image_section_sabores .botella_section{
    width: 100%;
    max-width: 200px;
    height: auto;
    z-index: 2;
}


@media only screen and (max-width: 768px) {
    .image_section_sabores .botella_section {
        max-width: 140px;
    }
}


/* Frutilla e hibisco  */
.frutilla_hibisco .text_section_sabores{
    background-color: #D52524;
}

.text_section_sabores{
    padding: 2em;
    color: #fff;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
}

.text_section_sabores h2{
    font-size: 4em;
    font-weight: bold;
}

/* Piña y curcuma */

.pinha_curcuma .image_section_sabores{
    background-image: url('../images/sabores/pinha_y_curcuma.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 4em;
} 

.pinha_curcuma .text_section_sabores{
    background-color: #E7B900;
}

.pinha_curcuma .text_section_sabores{
    padding: 2em;
    color: #4B530F;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    text-align: right;
}

.pinha_curcuma .btn_section{
    border: 1px solid #4B530F;
    padding: 10px 35px;
    border-radius: 25px;
    color: #4B530F;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.pinha_curcuma .btn_section:hover{
    background-color: #a38302;
    border-color: #a38302;
    color: #4B530F;
    text-decoration: none;
}

/* fondo fijo  */
.background_parallax_fixed{
    background-image: url('../images/bg_komte_kombucha.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 50dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Espirulina y lupulo */
.espirulina_lupulo .text_section_sabores{
    background-color: #4B8035;
}
.espirulina_lupulo .image_section_sabores{
    background-image: url('../images/sabores/espirulina_y_lupulo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 4em;
} 

/* jengibre */
.jengibre .text_section_sabores{
    background-color: #E7B900;
}
.jengibre .image_section_sabores{
    background-image: url('../images/sabores/jengibre.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 4em;
} 

.jengibre .text_section_sabores{
    padding: 2em;
    color: #4B530F;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    text-align: right;
}

.jengibre .btn_section{
    border: 1px solid #4B530F;
    padding: 10px 35px;
    border-radius: 25px;
    color: #4B530F;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.jengibre .btn_section:hover{
    background-color: #a38302;
    border-color: #a38302;
    color: #4B530F;
    text-decoration: none;
}


footer{
    padding: 1em 0;
    background-color: #EB6611;
    color: #fff;
    text-align: center;
}

.redes_sociales {
    border-bottom: 1px solid #E7B900;
    margin-bottom: 10px;
}

footer a{
    text-decoration: none;
    padding: 1em 2em;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

footer a:hover{
    transform: translateY(-5px);
}

footer svg{
    color: #fff;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease-in-out;
}

footer svg:hover{
    transform: scale(1.2);
}
