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

.acordeon .acordeon-item {
    background-color: #277733;
    border-bottom: 1px solid #e5e5e5;
}
.acordeon .acordeon-item button[aria-expanded=true] {
    border-bottom: 1px solid #fff;
}
.acordeon 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;
}
.acordeon button:hover, .acordeon button:focus {
    cursor: pointer;
    color: #DCD400;
}
.acordeon button:hover::after, .acordeon button:focus::after {
    cursor: pointer;
    color: #ffffff;
    border: 1px solid #ffffff;
}
.acordeon button .acordeon-title {
    padding: 1em 1.5em 1em 0;
}
.acordeon button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 15px;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}
.acordeon button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}
.acordeon button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}
.acordeon button[aria-expanded=true] {
    color: #DCD400;
}
.acordeon button[aria-expanded=true] .icon::after {
    width: 0;
}
.acordeon button[aria-expanded=true] + .acordeon-content {
    opacity: 1;
    max-height: 100dvh;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}
.acordeon .acordeon-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;
}

/* =============  */

.revendedor_wrap{
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 15px;
}
.revendedor_image{
    width: 100%;
    max-width: 150px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.revendedor_info{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.revendedor_info a{
    text-decoration: none;
    margin: 10px 15px;
}
.revendedor_info a svg{
    color: #53AE32;
    width: 30px;
    height: 30px;
}

.revendedor_info a svg:hover{
    color: #d96302;
    cursor: pointer;
}


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