.body{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
main{
    margin-top: 19vh;
    min-height: 65vh;
    padding-inline: 12vw;
    padding-bottom: 3vh;
}
*{
    margin: 0;
    padding: 0;
}
.banner{
    /* width: 100%; */
    height: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0%;
}
.image_conatiner{
    flex:1;
    height: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 1vh;
}
.main_image_container{
    /* background: linear-gradient(to right, #ffebae, #ffffff); */
    /* background: linear-gradient(to right, #d5f7c8, #f7fff3); */
    border-radius: 10px;
    aspect-ratio: 1 / 1;
    display: flex;               /* activar flexbox */
    justify-content: center;     /* centrar horizontalmente */
    align-items: center;         /* centrar verticalmente */
}
#main_image {
    width: 65%;
    height: auto;
}
.image_conatiner img{
    width: 100%;
    height: auto;
    /*border: 1px solid #8B9B81;*/
    border-radius: 10px;
}


/*--------------INFORMACION LATERAL-----------------*/
.productInfo{
    flex: 1;
    width: auto;
    height: auto;
    padding-left: 15vh;
    padding-top: 2vh;
}
.productInfo h1{
    font-size: 35px;
    font-family: "encabezado";
    margin: 0%;
}
.productInfo h3{
    font-size: 25px;
    font-family: "encabezado";
    margin: 0%;
}
.productInfo p{
    font-size: 18px;
    font-family: "parrafo";
}


/*----------------SELECTOR DE CANTIDAD-----------------*/
.amountSelector{
    width: 100%;
    height: auto;
    display: flex;
    gap: 10vh;
    margin-top: 2vh;
    align-items: center;
}
.amountSelector p{
    font-weight: lighter;
    font-size: 18px;
}
.selector{
    width: 15vh;
    height: 5vh;
    border: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 5px;
    border-radius: 18px;
    box-shadow: 0 5px 8px rgba(0,0,0,0.4);
}
.qty-btn{
    width: 3vh;
    border: none;
    background-color: transparent;
    color: #333;
    font-size: 28px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 40%;
}
.qty-btn:hover {
    background-color: #e0e4ec;
}
.selector input[type="number"] {
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 25px;
    border: none;
    background-color: white;
}
.selector input::-webkit-outer-spin-button,
.selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.selector input[type="number"] {
    -moz-appearance: textfield;
}
.addButton{
    width: 85%;
    height: 8vh;
    background-color: transparent;
    border-radius: 18px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.4);
    margin-top: 5vh;
    font-size: 25px;
    font-family: 'encabezado';
    cursor: pointer;
    transition: transform 0.3s ease;
}
.addButton:hover{
    background-color: #8B9B81;
    color: white;
    transform: scale(1.1); 
}


/*----------------DROPDOWN--------------*/
.more{
    width: 100%;
    height: auto;
    margin-bottom: 10vh;
    margin-top: 0%;
}
.dropdown-header{
    margin-top: 3vh;
    border-bottom: 1px solid black;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    align-items: center;
}
.dropdown-header h2{
    font-family: 'encabezado';
    font-size: 25px;
    font-weight: lighter;
    margin-bottom: 1vh;
}
.dropdown-header img{
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
}
.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fafafa;
}

.dropdown-content p {
    font-family: 'parrafo';
    font-size: 18px;
    margin-top: 1vh;
    margin-bottom: 1vh;
}
.dropdown.active .dropdown-content {
    max-height: 350px; /* ajusta según contenido */
    padding: 0.8rem 1rem;
}
.dropdown.active .dropdown-header img {
    transform: rotate(180deg); /* gira flecha */
}
.faq_title{
    text-align: center;
    font-family: "encabezado";
    margin-top: 50px;
}
.faq_container{
    padding-inline: 20vh;
}