* {
    padding: 0;
    border: 0;
    box-sizing: border-box;
    margin: 0;
}

:root {
    --color-white: #FFFFFF;
    --color-pink: #FF2B56;
    --color-lightgreen: #9DD9DA;
    --color-pink-hover: #ee5876;
    --color-lightgreen-hover: #d9f8f8;
    --color-gray1: #FAFAFA;
    --color-gray2: #E2E2E2;
    --color-gray3: #DEDEDE;
    --color-gray4: #999999;
}


html, body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: var(--color-gray1);
}

hr {
    height: 2px;
    background-color: var(--color-gray2);
}

.minHeightTitle {
    min-height: 190px;
}
.btn {
    padding: 5px 14px;
    border-radius: 14px;
    -moz-border-radius: 14px;
    -webkit-border-radius: 14px;
}

.btn.btn-ghost {
    border: 2px solid var(--color-pink);
    display: inline-block;
    color: var(--color-pink);
    font-size: 14px;
}

.btn.btn-ghost.active {
    color: var(--color-lightgreen);
    border-color: var(--color-lightgreen);
}

.container {
    display: flex;        
    height: 100%;
    position: relative;
}
/* ##### Sidebar ##### */
#menu {
    display: none;
}
.sidebar {
    position: absolute;
    top: 0;
    left: 0;    
    width: 300px;
    padding: 50px 40px 100px 40px;
    transition: all ease .2s;
    background-color: var(--color-white);
}

.container > .logo {
    display: none;
}

.sidebar .logo {
    width: 198px;
    margin-bottom: 87px;
    position: static;
}

.sidebar .logo img {
    width: 100%;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 10px;    
}

.sidebar a {
    text-decoration: none;    
    display: flex;
    align-items: center;
    color: var(--color-gray4);
    font-size: 16px;
}

.sidebar a:hover,
.sidebar a.active {
    color: var(--color-pink);
}

.sidebar a svg{
    margin-right: 15px;
}

.sidebar .initial {
    margin-bottom: 20px;
}

.sidebar .initial a {
    margin-bottom: 10px;
}


.sidebar .my-box,
.sidebar .benefits,
.sidebar .contact {
    margin: 20px 0;    
}

.sidebar h3 {
    margin-bottom: 30px;
    font-size: 16px;
    color: #000;
}

/* ###### Principal ###### */
.main {
    position: absolute;
    top: 0;
    left: 300px;
    width: calc(100% - 300px);
    background-color: var(--color-gray1);
    display: flex;
    height: auto;
}

.main .main-left {
    width: calc(100% - 350px);    
}

/* #### Index #### */
.main .main-left .wrapper {
    padding: 40px;
}

.main .main-left h3{
    color: var(--color-gray4);
    margin-bottom: 5px;
    font-size: 20px;
}

.main .main-left .tagline{
    color: var(--color-pink);
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 16px;
}

.main .main-left .bar-status {
    margin-bottom: 40px;
}

.main .main-left .bar-status .bar-container {
    width: 100%;
    height: 12px;
    border-radius: 10px;
    background-color: var(--color-gray3);
    overflow: hidden;
}

.main .main-left .bar-content {
    width: 20%;
    height: 100%;
    background-color: var(--color-pink);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    -moz-border-top-right-radius: 10px;
    -moz-border-bottom-right-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    position: relative;
}

.main .main-left .bar-content .circle {
    width: 8px;
    height: 8px;
    background-color: var(--color-white);
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    position: absolute;
    top: 2px;
    right: 2px;
}

.main .main-left .legends {
    display: flex;
    margin-top: 10px;
    margin-bottom: 25px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.main .main-left .legends .legend {
    width: 25%;
    text-align: center;
}

.main .main-left .legends .legend p{
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
}

.main .main-left .status-complete {
    margin-top: 30px;
    text-align: right;
}

.main .main-left .status-complete a {
    color: var(--color-pink);
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
}
.main .main-left .title {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 20px;
}

.main .main-left .title span {
    color: var(--color-pink);
}

.main .main-left .wrapper > .box {
    padding: 25px;
    background-color: var(--color-lightgreen);
    color: var(--color-white);
    margin-bottom: 30px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

.main .main-left .wrapper > .box {
    display: flex;
    align-items: center;
}

.main .main-left .wrapper > .box:nth-last-of-type(even) {
    background-color: var(--color-pink);
}
.main .main-left .wrapper > .box .left{
    width: calc(100% - 70px);
}

.main .main-left .wrapper > .box .left h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.main .main-left .wrapper > .box .left p {
    font-size: 13px;    
    text-transform: uppercase;
}

.main .main-left .wrapper > .box .right{
    width: 68px;
}

.main .main-left .boxes {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.main .main-left .boxes .box {
    width: 30%;
    background-color: var(--color-lightgreen);
    padding: 20px;
    color: var(--color-white);
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

.main .main-left .boxes .box:nth-child(2) {
    background-color: var(--color-pink);
}
.main .main-left .boxes .box h2 {
    font-size: 22px;
    margin-bottom: 5px;
}

.main .main-left .boxes .box p {
    font-size: 12px;
}

.main .main-left .boxes .box a {
    text-decoration: none;
    color: var(--color-white);
    font-size: 12px;
    margin-top: 10px;
    display: block;
    font-weight: bold;
}

.main .main-left .boxes .box svg {
    height: 70px;
    margin-bottom: 24px;
    
}

/* Carrosel */

.carrosel-container h2 {
    font-size: 16px;
    margin: 0 40px 0 40px;
}

.carrosel-container .horizontal-carrosel{
    width: calc(100% - 80px);
    max-width: 1000px;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto 50px auto; 
    height: 400px;
}

.carrosel-container .horizontal-carrosel .btn-scroll {
    background-color: #fff;
    color: var(--color-pink);
    box-shadow: 0 0 10px #999999;
    padding: 5px 8px;
    border: 0;
    border-radius: 50%;
    margin: 0 5px;
    z-index: 1;
    cursor: pointer;
    transition: 1s;
    font-weight: bold;
}

.carrosel-container .horizontal-carrosel .prod-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    left: 0;
    transition: 0.5s all ease-out;
}

.carrosel-container .horizontal-carrosel .prod-container .item {
    width: 200px;
    margin-right: 10px;
    background-color: var(--color-white);
    padding: 20px;
}

.carrosel-container .horizontal-carrosel .prod-container .item h4 {
    font-size: 12px;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: normal;
}

.carrosel-container .horizontal-carrosel .prod-container .item img {
    width: 150px;
}

.carrosel-container .horizontal-carrosel .prod-container .item .ponts {
    font-size: 16px;
    color: var(--color-lightgreen);
    font-weight: bold;
    margin-bottom: 16px;
}

.carrosel-container .horizontal-carrosel .prod-container .item a {
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 14px;
    border: 2px solid var(--color-pink);
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    font-weight: bold;
    color: var(--color-pink);
    font-size: 14px;
    margin-top: 20px;
}

.main .main-right {
    width: 350px;
    background-color: var(--color-white);
    padding: 50px 20px;    
}

.main .main-right .profile-header {    
    display: flex;
    align-items: center;
}

.main .main-right .profile-header .left {
    width: 70%;
}

.main .main-right .profile-header h2 {
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;    
}

.main .main-right .profile-header .tagline,
.main .main-right .profile-header .tagline-perfil {
    font-size: 14px;
    color: var(--color-pink);
    font-weight: bold;
}

.main .main-right .profile-header .tagline-perfil {
    display: none;
}

.main .main-right .profile-header .right {
    width: 30%;
    display: flex;
}

.main .profile-header .right a {
    padding: 7px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    box-shadow: 2px 2px 2px 2px var(--color-gray2);
}

.main .profile-header .right a:first-of-type{
    margin-right: 15px;
}

.main .profile-header .right a svg {
    width: 25px;
}

.main .main-right .profile-cover {
    text-align: center;
    padding: 70px 40px 50px 40px;
}

.main .main-right .profile-cover img{
    width: 150px;
    border-radius: 50%;
}

.main .profile-actions {
    display: flex;
    justify-content: space-between;
}

.main .profile-actions a {
    width: 48%;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.main .profile-actions .btn {
    border: 1px solid var(--color-gray2);
    color: var(--color-gray4);
    padding: 10px 14px;
}

.main .profile-actions .btn-default {
    color: var(--color-white);
    background-color: var(--color-pink);    
    border: none;
}

.main .main-right .more-itens {
    display: flex;    
    justify-content: space-between;    
    margin-top: 30px;
}

.main .main-right .more-itens div {
    width: 48%;
    padding: 20px 10px;
    background: #EAF7F8;
    color: #54B3B5;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

.main .main-right .more-itens div svg {
    margin-bottom: 45px;
}

.main .main-right .more-itens div h3 {
    font-size: 22px;
}

.main .main-right .more-itens div p {
    font-size: 12px;
}

.main .main-right .more-itens div:last-of-type {
    background: #FFD5D5;
    color: #FF2B56;
    font-weight: bold;
}


/* #### Media queries Index e Sidebar principal #### */

@media screen and (max-width: 1024px) {
    .sidebar {
        width: 200px;
        padding: 40px 20px 100px 20px;
    }
    .sidebar .logo {
        width: 120px;
        margin-bottom: 40px;
    }

    .sidebar a {
        font-size: 14px;
    }

    .sidebar a svg {
        margin-right: 7px;
        width: 18px;
    }

    .main {
        left: 200px;
        width: calc(100% - 200px);
    }
    
    .main .main-left .wrapper {
        padding: 40px 20px;
    }

    .main .main-left .wrapper {
        padding: 40px 20px;
    }

    .main .main-left {
        width: calc(100% - 250px);
    }

    .main .main-right {
        width: 250px;
        padding: 40px 20px;
    }

    .main .main-right .profile-header {
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
    }

    .main .main-right .profile-header .left {
        width: 100%;
    }

    .main .main-right .profile-header .right {
        width: 100%;
        justify-content: flex-end;
        margin-bottom: 10px;
    }

    .main .main-right .profile-header h2 {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .main .profile-header .right a:first-of-type {
        margin-right: 10px;
    }

    .main .profile-header .right a {
        padding: 3px;
        display: flex;
    }

    .main .profile-header .right a svg {
        width: 20px;
        height: 20px;
    }

    .main .main-right .profile-cover {
        padding: 30px;
    }

    .main .main-right .profile-cover img {
        width: 80px;
    }

    .main .profile-actions .btn {
        padding: 10px 16px;
    }

    .main .profile-actions a {
        width: auto;
    }

    .main .main-right .more-itens {
        background-image: none;
        flex-direction: column;
    }

    .main .main-right .more-itens div {
        width: 100%;
        margin-bottom: 10px;
    }

    .main .main-right .more-itens div svg {
        margin-bottom: 20px;
    }

    .main .main-left h3 {
        margin-bottom: 2px;
        font-size: 18px;
    }

    .main .main-left .tagline {    
        font-size: 14px;
    }

    .main .main-left .legends .legend p {
        font-size: 10px;        
    }

    .main .main-left .status-complete {
        margin-top: 20px;
    }

    .main .main-left .status-complete a {
        font-size: 14px;
    }

    .main .main-left .title {
        font-size: 16px;
        font-weight: normal;
        margin-bottom: 20px;
    }

    .main .main-left .wrapper > .box {
        padding: 15px;        
        margin-bottom: 15px;        
        min-height: 100px;
    }

    .main .main-left .wrapper > .box .left h2 {
        font-size: 15px;
        margin-bottom: 5px;
        letter-spacing: 0;
    }

    .main .main-left .boxes {
        margin-bottom: 0;
        margin-top: 25px;
    }

    .main .main-left .boxes .box {
        width: 32%;
        padding: 15px;
    }

    .main .main-left .boxes .box svg {
        height: 40px;
        margin-bottom: 18px;
    }

    .main .main-left .boxes .box h2 {
        font-size: 18px;
    }    


}

@media screen and (max-width: 768px) {
    .minHeightTitle {
        min-height: 160px;
    }

    #menu {
        display: block;
        margin-bottom: 40px;
    }
    .sidebar {
        width: 45px;
        padding: 20px 10px 100px 10px;
        z-index: 4;
        position: absolute;
        left: 0;
        transition: .2s;
        background-color: #FFF;
        overflow: hidden;
    }

    .sidebar .logo {
        display: none;
    }
    
    .main {
        left: 45px;
        width: calc(100% - 45px);
    }

    .container > .logo {
        display: block;
        position: absolute;
        top: 24px;
        left: 56px;
        z-index: 4;
        width: 105px;
    }

    .logo img {
        width: 100%;
    }
    .sidebar .initial a {
        display: block;
        width: 200px;
    }

    .sidebar .initial a.btn-ghost {
        display: none;
        width: 100px;
    }

    .sidebar a svg {
        margin-right: 20px;
        width: 23px;
    }

    .sidebar h3 {
        display: none;
    }

    .sidebar ul {
        list-style: none;
        display: block;
        width: 200px;
    }

    .main .main-left {
        width: 100%;
    }

    .main .main-left .wrapper {
        padding: 70px 20px;
    }

    .main .main-right {
        width: 320px;
        padding: 18px 20px;
        height: 65px;
        overflow: hidden;
        z-index: 3;
        position: absolute;
        top: 0;
        right: 0;
        background-color: var(--color-gray1);
    }

    .main .main-right .profile-header {
        flex-direction: row;
    }

    .main .main-right .profile-header .left {
        width: 70%;
        text-align: right;
    }
    .main .main-right .profile-header .tagline,
    .main .main-right .profile-header h2 {    
        display: none;
    }

    .main .main-right .profile-header .tagline-perfil {
        display: block;
    }

    .main .main-right .profile-header .right {
        width: 30%;
    }
    
    .carrosel-container h2 {
        font-size: 16px;
        margin: 0 20px 0 20px;
    }

    .carrosel-container .horizontal-carrosel {
        width: calc(100% - 40px);
        height: 335px;
    }

}

@media screen and (max-width: 425px) {
    .minHeightTitle {
        min-height: 110px;
    }
    .main .main-left {
        margin-bottom: 100px;
    }
    .main .main-left .wrapper {
        padding: 70px 15px 30px 15px;
    }

    .main .main-left h3 {
        font-size: 16px;
    }    

    .main .main-left .tagline {
        margin-bottom: 25px;
    }

    .main .main-left .legends {
        margin-bottom: 15px;
    }

    .main .main-left .wrapper > .box .left h2 {
        font-size: 14px;
    }

    .main .main-left .wrapper > .box {
        padding: 10px;
        margin-bottom: 10px;
        min-height: 80px;
    }

    .main .main-left .boxes {
        flex-wrap: wrap;
    }

    .main .main-left .boxes .box {
        width: 49%;
        padding: 15px;
        margin-bottom: 2%;
    }

    .carrosel .item .ponts {
        font-size: 14px;
    }

    .main .profile-actions {
        margin-top: 15px;
    }

    .main .profile-actions .btn {
        padding: 6px 12px;
    }

    .main .main-right .more-itens div h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
}

@media screen and (max-width: 320px) {
    .logo {
        display: none;
    }
    .main .main-left .boxes .box {
        width: 100%;
        margin-bottom: 4%;
    }
}


/* #### Clube Vip #### */
a.btn-ghost.active {
    color: var(--color-lightgreen);
    border-color: var(--color-lightgreen);
}
.main .clube-content {
    width: 100%;
    padding: 40px;    
    height: 100%;    
}

.main .clube-content header {
    padding: 25px 20px;    
    text-transform: uppercase;
    color: var(--color-white);
    background-color: var(--color-lightgreen);
    margin-bottom: 40px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main .clube-content header p {
    font-size: 12px;    
    margin-bottom: 0;
    font-weight: bold;
}

.main .clube-content header p:last-of-type {
    margin-top: 20px;
    font-size: 12px;
    font-weight: bold;
}

.main .clube-content header h2 {
    font-size: 36px;
}

.main .clube-content .box-clube-vip {
    max-width: 1000px;
    margin: 0 auto;
}
.main .clube-content .box-clube-vip .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;    
}

.main .clube-content .box-clube-vip .title h2 {
    font-size: 40px;
}

.main .clube-content .box-clube-vip .title h2 span {
    color: var(--color-pink);
}

.main .clube-content .box-clube-vip p{
    font-size: 18px;
    margin-bottom: 35px;
    color: rgba(18, 17, 39, 0.56);
}

.main .clube-content .box-clube-vip .checkboxes{
    display: flex;
    justify-content: space-between;    
    flex-wrap: wrap;    
}

.main .clube-content .box-clube-vip .checkboxes ul {
    width: 40%;
    list-style: none;
}
.main .clube-content .box-clube-vip .checkboxes ul:last-of-type {
    width: 60%;
}

.main .clube-content .box-clube-vip .checkboxes li {
    margin-bottom: 15px;
    color: #121127;
    display: flex;
    align-items: center;
}

.main .clube-content .box-clube-vip .checkboxes li svg {
    margin-right: 10px;
}

.main .clube-content .box-clube-vip .checkboxes .btn-active {
    margin-top: 35px;
    width: 100%;
    padding: 14px;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-white);
    background-color: var(--color-pink);
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}


/* #### Media Queries - Clube Vip  ###### */

@media screen and (max-width: 1440px) {
    .main .clube-content header {
        text-align: left;
    }
}

@media screen and (max-width: 1024px) {
    .main .clube-content {
        padding: 40px 20px;
    }

    .main .clube-content header {
        margin-bottom: 50px;
    }

    .main .clube-content header p {
        font-size: 16px;
    }

    .main .clube-content header h2 {
        font-size: 28px;
    }

    .main .clube-content .box-clube-vip .title h2 {
        font-size: 28px;
    }

    .main .clube-content .box-clube-vip p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .main .clube-content .box-clube-vip .checkboxes li {
        margin-bottom: 10px;
    }

    .main .clube-content .box-clube-vip .checkboxes li svg {
        margin-right: 5px;
    }

    .main .clube-content .box-clube-vip .checkboxes .btn-active {
        font-size: 14px;
    }
}
@media screen and (max-width: 768px) {
    .main .clube-content header {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .main .clube-content .box-clube-vip .title {
        margin-bottom: 18px;
    }

    .main .clube-content .box-clube-vip .checkboxes {
        flex-wrap: wrap;
    }
    .main .clube-content .box-clube-vip .checkboxes ul,
    .main .clube-content .box-clube-vip .checkboxes ul:last-of-type {
        width: 100%;
    }     

    .main .clube-content .box-clube-vip .checkboxes li {
        display: block;
        text-align: left;
    }

    .main .clube-content .box-clube-vip .checkboxes svg {
        position: relative;
        top: 4px;
    }

    .main .clube-content .box-clube-vip .checkboxes .btn-active {
        margin-bottom: 50px;
        display: block;
    }
}
@media screen and (max-width: 425px) {
    .main .clube-content header {
        padding: 15px 10px;
    }

    .main .clube-content header p {
        font-size: 14px;
        font-weight: normal;
        margin-bottom: 5px;
    }
    
    .main .clube-content header h2 {
        font-size: 21px;        
    }

    .main .clube-content .box-clube-vip .title h2 {
        font-size: 20px;
    }

    .main .clube-content .box-clube-vip p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .main .clube-content .box-clube-vip .checkboxes li {
        margin-bottom: 4px;
        font-size: 14px;
    }

    .main .clube-content .box-clube-vip .checkboxes .btn-active {
        margin-top: 20px;
    }
}
@media screen and (max-width: 375px) {
    .main .clube-content header p {
        font-size: 12px;
        margin-bottom: 2px;
    }

    .main .clube-content header h2 {
        font-size: 19px;
    }

    .main .clube-content .box-clube-vip .title h2 {
        font-size: 16px;
    }

    .main .clube-content .box-clube-vip p {
        margin-bottom: 10px;
    }

    .main .clube-content .box-clube-vip .checkboxes .btn-active {
        font-size: 13px;
    }
}

@media screen and (max-width: 320px) {
    .main .clube-content .box-clube-vip .title h2 {
        font-size: 14px;
    }
}

/* #### Meu Club #### */

.main .my-club {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.main .my-club .title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
}

.main .my-club .title .left h2{
    font-size: 20px;
    color: #11243D;
    margin-bottom: 5px;
}

.main .my-club .title .left p{
    font-size: 16px;
    color: var(--color-pink);
}

.main .my-club .title a {
    text-decoration: none;
    color:#fff;
    background-color: var(--color-lightgreen);
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
}

.main .my-club .title a svg {
    margin-right: 10px;
}

.main .my-box {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main .my-box .cover {
    width: 60%;    
}

.main .my-box .cover img {
    width: 100%;
}

.main .my-box .desc {
    width: 40%;
}

.main .my-box .desc h2 {
    font-size: 30px;
    margin-bottom: 40px;
}

.main .my-box .desc a.btn-default {
    font-size: 18px;
    color: #fff;
    background-color: var(--color-pink);
    padding: 10px 30px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.main .boxes {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

.main .boxes .item {
    width: 30%;
    padding: 20px;
    background-color: var(--color-pink);
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    color: var(--color-white);
}

.main .boxes .item.special {
    background-color: var(--color-lightgreen);
}

.main .boxes .item h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.main .boxes .item p {
    font-size: 14px;
    margin-bottom: 15px;
}

.main .boxes .item a {
    font-size: 14px;
    text-decoration: none;
    color: var(--color-white);
}


@media screen and (max-width: 1024px) {
    .main .clube-content header p {
        margin-bottom: 5px;
    }

    .main .clube-content header h2 {
        font-size: 24px;
    }

    .main .my-box .cover,
    .main .my-box .desc {
        width: 50%;
    }

    .main .my-box .desc h2 {
        font-size: 20px;
        margin-bottom: 30px;
        padding-right: 40px;
    }

    .main .my-box .desc a.btn-default {
        font-size: 16px;
        padding: 10px 25px;
    }

    .main .boxes .item h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .main .boxes .item p {
        margin-bottom: 10px;
    }    
}

@media screen and (max-width: 768px) {
    .main .boxes .item {
        width: 32%;
    }
}

@media screen and (max-width: 580px) {
    .main .clube-content header p {
        font-size: 14px;
        font-weight: normal;
    }

    .main .clube-content header h2 {
        font-size: 20px;
    }

    .main .my-club .title {
        align-items: flex-start;
        margin-bottom: 25px;
        flex-direction: column;
    }

    .main .my-club .title .left h2 {
        font-size: 18px;
    }

    .main .my-club .title .left p {
        font-size: 14px;
    }

    .main .my-club .title .right {
        align-self: flex-end;
        margin-top: 15px;
    }

    .main .my-club .title a {
        padding: 8px 12px;
        font-size: 14px;
    }

    .main .my-box {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .main .my-box .cover, .main .my-box .desc {
        width: 100%;
        text-align: center;
    }

    .main .my-box .desc h2 {
        padding-right: 0;
    }

    .main .boxes {
        flex-wrap: wrap;
    }

    .main .boxes .item {
        width: 48%;
        margin-bottom: 4%;
    }        
    
}

@media screen and (max-width: 425px) {
    .main .clube-content header h2 {
        font-size: 18px;
    }

    .main .my-box .desc h2 {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .main .my-box .desc a.btn-default {
        font-size: 14px;
    }

    .main .boxes .item {
        width: 100%;
        margin-bottom: 2%;
    }

}

/* #### Status #### */

.main .box-status {
    padding: 40px;
    width: 100%;    
}

.main .box-status .header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1000px;
    margin: 0 auto 55px auto;
}

.main .box-status .header .left h2 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #11243D;
}

.main .box-status .header .left p {
    font-size: 16px;
    color: var(--color-pink);
    font-weight: bold;
}

.main .box-status .header .right a,
.main .feedback a {
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
}
.main .auction .filter,
.main .club-2 .filter,
.main .dot-clube .filter,
.main .wishes .filter,
.main .box-status .filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 25px auto;
}

.main .auction .filter figcaption,
.main .club-2 .filter figcaption,
.main .dot-clube .filter figcaption,
.main .wishes .filter figcaption,
.main .box-status .filter figcaption{
    width: 300px;
    border: 1px solid var(--color-gray4);
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    position: relative;
    padding: 2px 5px 2px 2px;
}

.main .auction .filter legend,
.main .club-2 .filter legend,
.main .dot-clube .filter legend,
.main .wishes .filter legend,
.main .box-status .filter legend {
    position: absolute;
    left: 10px;
    top: -10px;
    padding: 2px 5px;
    background-color: var(--color-gray1);
    font-size: 10px;
    color: #787885;
    text-transform: uppercase;
}

.main .auction .filter select,
.main .club-2 .filter select,
.main .dot-clube .filter select,
.main .wishes .filter select,
.main .box-status .filter select {
    background-color: none;
    background-color: var(--color-gray1);
    padding: 10px 14px;
    width: 100%;
}

.main .auction .filter select:hover,
.main .club-2 .filter select:hover,
.main .dot-clube .filter select:hover,
.main .wishes .filter select:hover,
.main .box-status .filter select:hover {
    cursor: pointer;
}

.main .wishes .filter .buttons,
.main .box-status .filter .buttons {
    display: flex;
    align-items: center;
}

.main .wishes .filter .buttons a,
.main .box-status .filter .buttons a {
    padding: 5px 30px;
    margin-left: 10px;
    background-color: var(--color-white);
}
.main .wishes .filter .buttons a:hover,
.main .wishes .filter .buttons a.active,
.main .box-status .filter .buttons a:hover,
.main .box-status .filter .buttons a.active {
    background-color: #FFE9EE;
}

.main .wishes .filter .buttons svg,
.main .box-status .filter .buttons svg {
    height: 25px;
}

.main .box-mes {
    max-width: 1000px;
    margin: 0 auto;
}

.main .box-mes h2 {
    color: var(--color-pink);
    text-transform: uppercase;
    font-size: 28px;
    margin-bottom: 25px;    
}

.bars-container .top {
    display: flex;
    justify-content: space-between;
}

.bars-mobile-container {
    display: none;
}

.bars-container .top p {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 3px;
}

.bars-container .middle {
    width: 100%;
    height: 12px;    
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    background-color: var(--color-gray3);
    overflow: hidden;
}

.bars-container .middle .fill {
    height: 100%;
    width: 20%;
    position: relative;
    background-color: var(--color-pink);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.bars-container .middle .fill span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: var(--color-white);
    position: absolute;
    top: 2px ;
    right: 2px;
}

.bars-container .bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.bars-container .bottom p {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
}

.bars-container .bottom p span {
    color: var(--color-pink);
}

.main .box-status .feedback {
    max-width: 1000px;
    margin: 0 auto;
}

.main .box-status .feedback h2{
    font-size: 28px;
    margin-top: 48px;
    color: #3F3F3F;
    margin-bottom: 20px;
}

.main .box-status .feedback a {
    padding: 12px 60px;
    font-size: 14px;
}

.main .faq {
    padding: 20px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    color: var(--color-white);
    display: flex;
    background-color: var(--color-lightgreen);
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 70px auto 0 auto;
}

.main .faq > svg {
    width: 200px;
}

.main .faq .content {
    width: calc(100% - 300px)
}

.main .faq a {
    width: 100px;
}

@media screen and (max-width: 768px) {
    .main .box-status {    
        padding: 40px 20px;
        width: 100%;
        margin-top: 30px;
    }

    .main .box-status .header .left h2 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .main .box-status .header .left p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .main .box-status .header .right a, .main .feedback a {
        padding: 7px 10px;
        font-size: 12px;
        
    }
    
    .main .auction .filter figcation,
    .main .club-2 .filter figcation,
    .main .dot-clube .filter figcation,
    .main .wishes .filter figcaption,
    .main .box-status .filter figcaption {
        width: 200px;
    }

    .main .wishes .filter .buttons svg,
    .main .box-status .filter .buttons svg {
        height: 23px;
    }

    .main .box-mes h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .bars-container {
        display: none;
    }

    .bars-mobile-container {
        display: block;
    }

    .bars-mobile-container strong{
        margin-left: 40px;
        display: inline-block;
        background-color: #555;
        color: #fff;
        font-weight: normal;
        font-size: 12px;
        padding: 5px 7px;
        border-radius: 4px;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
    }

    .bars-mobile-container .bottom p{
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 15px;

    }

    .bars-mobile-container .bottom p span.rounded {
        display: inline-block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        background-color: var(--color-gray3);
        margin-right: 10px;
    }

    .bars-mobile-container .bottom p span.rounded.active {
        background-color: var(--color-pink);
    }

    .bars-mobile-container .bottom p span {
        color: var(--color-pink);
    }

    .main .feedback h2 {
        font-size: 20px;
        margin-top: 35px;
        margin-bottom: 10px;
    }

    .main .faq {
        margin-top: 30px;
    }    
}

@media screen and (max-width: 473px) {
    .main .box-status .header {
        flex-direction: column;
    }

    .main .auction .filter figcation,
    .main .club-2 .filter figcation,
    .main .dot-clube .filter figcation,
    .main .wishes .filter figcaption,
    .main .box-status .filter figcaption {
        width: 100%;
    }

    .main .wishes .filter .button a,
    .main .box-status .filter .buttons a {
        padding: 5px 8px;
        margin-left: 6px;
    }

    .main .box-mes h2 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .bars-mobile-container .bottom p {
        font-size: 12px;
        margin-bottom: 9px;
    }

    .bars-mobile-container strong {
        margin-left: 22px;
        font-size: 10px;
        padding: 3px 5px;
    }

    .main .feedback h2 {
        font-size: 16px;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .main .faq {    
        padding: 10px;
    }

    .main .faq > svg {
        width: 60px;
    }

    .main .faq .content {
        width: calc(100% - 120px);
        padding-left: 15px;
    }

    .main .faq a {
        width: 60px;
    }

    .main .faq a > svg {
        width: 100%;
    }

    .main .faq h2 {
        font-size: 16px;
        margin-bottom: 7px;
    }

    .main .faq p {
        font-size: 14px;        
    }
    
}

@media screen and (max-width: 425px) {
    .main .auction .filter,
    .main .club-2 .filter,
    .main .dot-clube .filter {
        flex-direction: column-reverse;
    }
    
    .main .auction .filter form,
    .main .club-2 .filter form,
    .main .dot-clube .filter form {
        width: 100%;
    }

    .main .auction .filter figcation,
    .main .club-2 .filter figcation,
    .main .dot-clube .filter figcaption {
        width: 100%;        
    }
}
@media screen and (max-width: 320px) {
    .main .dot-clube .filter,
    .main .wishes .filter,
    .main .box-status .filter {
        flex-direction: column-reverse;
    }

    .main .wishes .filter .buttons,
    .main .box-status .filter .buttons {
        margin-bottom: 20px;
    }

    .main .dot-clube .filter form,
    .main .wishes .filter form,
    .main .box-status .filter form,
    .main .wishes .filter figcaption,
    .main .box-status .filter figcaption {
        width: 100%;
    }

    .main .faq {
        padding: 10px;
        flex-wrap: wrap;
    }

    .main .faq > svg {
        display: none;
    }

    .main .faq .content {
        width: calc(100% - 40px);
        padding: 0;
    }

    .main .faq a {
        width: 40px;
        height: 40px;
    }

    .main .faq a > svg {
        width: 100%;
        height: 40px;
    }
}


/* #### Perfil de Beleza #### */
.main .perfil-de-beleza {
    width: 100%;
    padding: 40px;    
}

.main header.bg-title {
    padding: 20px;
    background-color: var(--color-pink);
    color: var(--color-white);
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main header.bg-title svg{
    margin-bottom: 10px;
    width: 46px;
}

.main header.bg-title h2{
    font-size: 26px;
    margin-bottom: 25px;
}

.main header.bg-title p{
    font-size: 12px;
    font-weight: bold;
}

.container-2 {
    width: 100%;
    margin: 0 auto;
}

.container-2 .form-counter {
    width: 100%;
    max-width: 740px;
    overflow: hidden;
    margin: 0 auto;
}

.form-counter > h2 {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
    color: var(--color-pink);
}

.main .perfil-de-beleza form,
.container-2 form {
    width: 400%;
    display: flex;
    max-width: none;
}

.container-2 form .page {
    width: 25%;    
    padding: 0;
    height: 500px;
}

.container-2 form .page .buttons {
    max-width: 300px;
    display: flex;
    margin: 0 auto;
    justify-content: center;
}

.container-2 form .page button {
    padding: 14px 30px;    
    background-color: var(--color-pink);
    color: #FFF;
    cursor: pointer;
    border-radius: 4px;
    /* transition: background-color 0.3s ease-in-out; */
    font-size: 16px;
}

.container-2 form .page button:first-of-type {
    margin-right: 5px;
}
.container-2 form .page button:last-of-type {
    margin-left: 5px;
}

.container-2 form .page button.prev {
    border: 1px solid var(--color-pink);
    color: var(--color-pink);
    background-color: transparent;    
}

.slide-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.slide-container .type {
    width: 24%;
    padding: 10px;
    margin-bottom: 2%;
    text-align: center;
}


.slide-container .type:last-of-type {
    margin-right: auto;
}

.slide-container .type:nth-child(5) {
    margin-left: auto;
}

.slide-container .type img {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--color-gray1);
    width: 100%;
    transform: scale(.9);
    transition: all .2s ease;
}

.slide-container .type img:hover, 
.slide-container .type img.active {
    transform: scale(1);
    border-color: var(--color-pink);
}

.slide-container .type p {
    margin-top: 5px;
    font-size: 12px;
    color: #000;
    font-weight: bold;
}

.container-2 .page {
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.container-2 .page-2 > div{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.container-2 .page-2 label {
    padding: 10px 30px;
    border: 1px solid var(--color-pink);
    color: var(--color-pink);
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    width: 32%;
    max-width: 400px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.container-2 .page-2 label:last-of-type {
    margin-inline: auto;
}

.container-2 .page-2 label.active,
.container-2 .page-2 label:hover {
    color: var(--color-white);
    background-color: var(--color-pink);
}

.container-2 .slide-container label input,
.container-2 .page-2 label input {
    display: none;
}

.container-2 .page-3 > div {
    display: flex;
    justify-content: space-between;
} 

.container-2 .page-3 > div .group {
    width: 24%;
    margin-bottom: 2%;
}

.container-2 .page-3 div .group h3 {
    padding: 10px;
    border: 1px solid var(--color-pink);
    color: var(--color-pink);
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.container-2 .page-3 div .group label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
    color: var(--color-gray4);
}

.container-2 .page-3 div .group input[type=radio] {
    all: unset;
    display: inline-block;
    margin-right: 10px;
    border: 2px solid var(--color-pink);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    transition: all .2s ease;
}

.container-2 .page-3 div .group input[type=radio]:checked {
    background-color: var(--color-pink);
}

.container-2 .page-4 > div label {
    width: 540px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-lightgreen);
    color: #fff;
    margin: 0 auto 70px auto;
    font-size: 20px;
    cursor: pointer;
    transition: all .2s ease-in-out;
    border-radius: 4px;
}

.container-2 .page-4 > div label svg {
    height: 45px;
}

@media screen and (max-width: 1024px) {
    
    .main header.bg-title svg {
        margin-bottom: 0;
        width: 35px;
    }
    
    .main header.bg-title h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .main header.bg-title {
        margin-bottom: 50px;
    }
    
    .slide-container .type {
        width: 30%;
    }

    .container-2 form .page {
        height: auto;
        flex-direction: column;
        justify-content: flex-start;
    }

    .container-2 .page-3 > div {
        flex-wrap: wrap;
        justify-content: center;
    }

    .container-2 .page-3 > div .group {
        width: 40%;
        margin-bottom: 2%;        
        margin-left: 20px;
    }
}

@media screen and (max-width: 768px) {
    .main .wishes,
    .main .perfil-de-beleza {
        padding: 40px 20px;
        margin-top: 40px;
    }    

    .container-2 .page-2 > div {
        justify-content: center;
    }

    .container-2 .page-2 label {
        width: 40%;
        display: flex;
        align-items: center;
    }

    .container-2 .page-2 label:nth-child(odd) {
        margin-right: 10px;
    }

    .container-2 .page-2 label:nth-child(even) {
        margin-left: 10px;
    }

    .container-2 .page-2 label:last-of-type {
        margin-inline: auto;
    }
    
    .slide-container .type:nth-child(5) {
        margin-left: inherit;
    }
    .slide-container .type:last-of-type {
        margin-inline: inherit;
    }
}

@media screen and (max-width: 578px) {
    
}

@media screen and (max-width: 425px) {

    .main header.bg-title {
        padding: 0 20px 20px;
        margin-bottom: 40px;
    }
    
    .main header.bg-title h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .main header.bg-title p {
        font-weight: normal;
    }

    .form-counter > h2 {
        margin-bottom: 15px;
        font-size: 14px;
    }

    .container-2 .page-2 label {
        width: 60%;
        margin-left: 0;
        margin-bottom: 10px;
        font-size: 12px;
    }
    
    .container-2 .page-3 > div .group {
        width: 52%;
        margin-bottom: 6%;
        margin-left: 0;
    }

    .container-2 .page-4 > div label {
        width: 100%;
        height: auto;
        margin: 0;
        font-size: 18px;
        padding: 10px;
    }

    .container-2 form .page button {
        padding: 10px;
        margin-right: 10px;
        font-size: 13px;
        margin-top: 30px;
    }

    .container-2 .page-3 div .group h3 {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .container-2 .page-4 > div label svg {
        height: 30px;
        width: 43px;
    }
    .container-2 .page-2 label:nth-child(odd) {
        margin-inline: auto;
    }

    .container-2 .page-2 label:nth-child(even) {
        margin-inline: auto;
    }
}

@media screen and (max-width: 375px) {
    .slide-container .type {
        width: 47%;
    }

    .container-2 .page-2 label {
        width: 85%;
    }

    .container-2 .page-3 > div .group {
        width: 80%;
    }

    .container-2 .page-4 > div label {
        font-size: 15px;
    }

    .container-2 .page-3 div .group label {        
        font-size: 15px;
    }

    .container-2 .page-3 div .group input[type=radio] {
        margin-right: 3px;        
        width: 7px;
        height: 7px;        
    }    
}

/* #### Wishes #### */

.main .wishes {
    width: 100%;
    padding: 40px;    
}

.main .club-2 .produts,
.main .dot-clube .produts,
.main .feedback .produts,
.main .auction .produts,
.main .wishes .produts{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.main .club-2 .produts .prod,
.main .dot-clube .produts .prod,
.main .feedback .produts .prod,
.main .auction .produts .prod, 
.main .wishes .produts .prod {
    width: 24%;
    background-color: var(--color-white);   
    padding: 20px; 
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    margin-bottom: 4%;
}

.main .dot-clube .produts .prod.outline,
.main .feedback .produts .prod.outline,
.main .wishes .produts .prod.outline {
    width: 24%;
    border: 1px solid var(--color-pink);    
}

.main .club-2 .produts .prod.outline {
    width: 24%;
    border: 1px solid var(--color-lightgreen);    
}

.main .club-2 .produts .prod img,
.main .dot-clube .produts .prod img,
.main .feedback .produts .prod img,
.main .auction .produts .prod img,
.main .wishes .produts .prod img {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.main .club-2 .produts .prod h3,
.main .dot-clube .produts .prod h3,
.main .feedback .produts .prod h3,
.main .auction .produts .prod h3,
.main .wishes .produts .prod h3 {
    color: #19191D;
    margin: 10px 0 35px 0;
    font-size: 12px;
}

.main .club-2 .produts .prod a,
.main .dot-clube .produts .prod a,
.main .feedback .produts .prod a,
.main .wishes .produts .prod a {
    padding: 10px;
    text-decoration: none;
    color: #000;
    border: 1px solid var(--color-pink);
    font-size: 15px;
    text-align: center;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;    
    background-color: var(--color-pink);
    color: var(--color-white)    
}

.main .club-2 .produts .prod a {
    background-color: var(--color-lightgreen);
    border-color: var(--color-lightgreen);
}

.main .dot-clube .produts .prod a.outline,
.main .feedback .produts .prod a.outline,
.main .wishes .produts .prod a.outline  {
    background-color: transparent;
    color: var(--color-pink);
}

.main .club-2 .produts .prod a.outline {
    color: var(--color-lightgreen);
    background-color: transparent;
}

.main .club-2 .produts .prod a svg,
.main .dot-clube .produts .prod a svg,
.main .feedback .produts .prod a svg,
.main .auction .produts .prod a svg,
.main .wishes .produts .prod a svg {
    width: 24px;
    margin-right: 10px;
}

@media screen and (max-width: 1024px) {
    .main .club-2 .produts .prod,
    .main .dot-clube .produts .prod,
    .main .dot-clube .produts .prod.outline,
    .main .feedback .produts .prod, 
    .main .auction .produts .prod, 
    .main .wishes .produts .prod,
    .main .feedback .produts .prod.outline, 
    .main .wishes .produts .prod.outline {
        width: 32%;
    }

    .main .club-2 .produts .prod a,
    .main .dot-clube .produts .prod a,
    .main .feedback .produts .prod a,
    .main .wishes .produts .prod a {
        padding: 10px;
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .main .wishes {
        padding: 40px 20px;
    }
    
    .main .auction .produts .prod,
    .main .club-2 .produts .prod,
    .main .club-2 .produts .prod.outline ,
    .main .dot-clube .produts .prod,
    .main .feedback .produts .prod,
    .main .wishes .produts .prod,
    .main .wishes .produts .prod.outline {
        width: 48%;
    }

    .main .club-2 .produts .prod a,
    .main .dot-clube .produts .prod a,
    .main .feedback .produts .prod a,
    .main .wishes .produts .prod a,
    .main .wishes .produts .prod.outline a {
        width: 100%;
        padding: 10px;
    }
    
}

@media screen and (max-width: 425px) {
    .main .feedback header,
    .main .attendance header, 
    .main .auction header,
    .main .dot-clube header,
    .main .wishes header {
        padding: 20px;
        margin-bottom: 40px;
    }


    .main .club-2 .produts .prod,
    .main .club-2 .produts .prod.outline,
    .main .dot-clube .produts .prod,
    .main .wishes .produts .prod,
    .main .feedback .produts .prod,
    .main .wishes .produts .prod,
    .main .feedback .produts .prod.outline,
    .main .wishes .produts .prod.outline{
        width: 100%;
    }

    .main .club-2 .filter,
    .main .wishes .filter {
        flex-direction: column-reverse;
    }

    .main .club-2 .filter form,
    .main .wishes .filter form {
        width: 100%;
    }

    .main .auction .filter figcaption,
    .main .club-2 .filter figcaption {
        width: 100%;
    }

    .main .wishes .filter .buttons {
        margin-bottom: 20px;
    }
}

/* #### Clube de Pontos #### */
.main .auction,
.main .dot-clube {
    width: 100%;
    padding: 40px;
}
.main .dot-clube header {
    margin-bottom: 50px;
}

.main .auction .filter h2,
.main .club-2 .filter h2,
.main .dot-clube .filter h2 {
    margin-bottom: 20px;
    font-size: 20px;
}

.main .dot-clube .feature {
    display: flex;
    background-image: linear-gradient(to right,rgba(255, 255, 255), rgba(188, 7, 43, 1) 50%, rgba(255, 43, 89, 1));
    color: #fff;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}


.main .dot-clube .feature .left {
    min-height: 180px;
    width: 50%;
    background-color: var(--color-white);
    color: #000;
    padding: 45px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    -moz-border-top-right-radius: 20px;
    -moz-border-bottom-right-radius: 20px;
    -webkit-border-top-right-radius: 20px;
    -webkit-border-bottom-right-radius: 20px;
}

.main .dot-clube .feature .left h2 {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
    color: #1F4173;
}

.main .dot-clube .feature .left h3 {
    font-size: 32px;
    color: #1F4173;
}

.main .dot-clube .feature .left h2 svg {
    margin-right: 15px;
    height: 41px;
}
.main .dot-clube .feature .right {
    width: 50%;
    padding: 45px;
    text-align: center;
}

.main .dot-clube .feature .right h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.main .dot-clube .feature .right h3 {
    font-size: 42px;
}

.receipt form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 40px auto;
}

.receipt form .file-fake {
    width: calc(80% - 20px);
    padding: 10px 14px;
    border: 1px solid rgba(18, 17, 39, 0.4);
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    font-size: 14px;
    color: rgba(18, 17, 39, 0.4);
    text-transform: uppercase;
    cursor: pointer;
}

.receipt form input[type=submit] {
    background-color: var(--color-lightgreen);
    color: var(--color-white);    
    width: 20%;
    padding: 10px 14px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.main .dot-clube .tables {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}
.main .dot-clube .tables .extract {
    width: calc(70% - 40px);
    padding: 20px 20px 70px 20px;
    background-color: var(--color-white);
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
}
.main .dot-clube .extract .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.main .dot-clube .extract .top h3 {
    color: #1F4173;
    font-size: 14px;
    width: 20%;
}

.main .dot-clube .extract .top form {
    width: 40%;
}

.main .dot-clube .extract .top form .wrapper {
    position: relative;
}

.main .dot-clube .extract .top form input {
    display: block;
    width: 100%;
    padding: 10px 30px 10px 10px;
    border-bottom: 1px solid #E6EAF0;
    background-color: transparent;
    outline: none;    
    color: #1F4173;
}

.main .dot-clube .extract .top form input::placeholder {    
    color: #1F4173;
}

.main .dot-clube .extract .top form svg {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.main .dot-clube .extract .title {
    display: flex;
    justify-content: space-between;    
}

.main .dot-clube .extract .title h4 {
    width: 33.3%;
    text-transform: uppercase;
    font-size: 12px;
    text-align: center;
    border-bottom: 1px solid #E6EAF0;
    padding: 10px 0;
    color: #1F4173;
}

.main .dot-clube .extract .body  {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

.main .dot-clube .extract .body > div {
    width: 33.3%;
    padding: 10px 30px;
    border-bottom: 1px solid #E6EAF0;
    height: 55px;
    line-height: 55px;
}

.main .dot-clube .resume {
    width: 30%;
    padding: 40px 20px 20px 20px;
    background-color: var(--color-white);
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
}

.main .dot-clube .resume h3 {
    color: var(--color-pink);
    font-size: 24px;
    margin-bottom: 37px;
    text-align: center;
}

.main .dot-clube .resume ul {
    list-style: none;    
}

.main .dot-clube .resume li {
    margin-bottom: 15px;
    color: #1F4173;
    font-size: 20px;
    font-weight: bold;
}

.main .dot-clube .resume li > span {
    color: var(--color-pink);
}

.main .dot-clube .resume a {
    color: var(--color-white);
    padding: 10px 30px;
    text-align: center;
    display: block;
    margin-top: 55px;
    text-decoration: none;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    background-color: var(--color-pink);
    width: 100%;
    font-size: 16px;
}

.more-dots {    
    margin: 70px auto 0 auto;
    text-align: center;
}

.more-dots h2{    
    color: #121127;
    font-size: 24px;
}


.more-dots .buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;    
    max-width: 420px;
    margin: 20px auto 50px auto;
}

.more-dots .buttons a {
    width: 200px;
    text-align: center;
    text-decoration: none;
    padding: 12px 30px;
    background: var(--color-lightgreen);
    color: var(--color-white);
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    font-size: 16px;
}

.more-dots .buttons a:nth-child(2) {
    background: #F2F3FF;
    color: var(--color-pink);
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
    .main .dot-clube .feature .right,
    .main .dot-clube .feature .left {
        min-height: auto;
        padding: 20px 40px;
    }

    .main .dot-clube .feature .left h2 {        
        margin-bottom: 12px;
    }

    .main .dot-clube .feature .left h3 {
        font-size: 20px;
    }
    
    .main .dot-clube .feature .left h2 svg {
        margin-right: 10px;
        height: 28px;
    }
    
    .main .dot-clube .feature .right h2 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .main .dot-clube .feature .right h3 {
        font-size: 24px;
    }

    .receipt form .file-fake {
        width: calc(70% - 20px);
    }

    .receipt form input[type=submit] {
        width: 30%;
        padding: 12px 14px;
    }

    .main .dot-clube .extract .top {
        margin-bottom: 30px;
    }

    .main .dot-clube .resume h3 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .main .dot-clube .resume li {
        margin-bottom: 8px;
        font-size: 14px;
    }

    .main .dot-clube .resume a {
        margin-top: 30px;
        font-size: 14px;
    }

    .main .dot-clube .resume {
        padding: 20px;
    }

    .main .dot-clube .tables {
        align-items: flex-start;
    }

    .main .dot-clube .tables .extract {
        width: calc(70% - 20px);
    }

    .main .dot-clube .extract .body > div {
        padding: 10px 8px;
        height: 40px;
        line-height: 40px;
    }

    .more-dots h2 {
        font-size: 20px;
    }

    .more-dots .buttons a {
        width: 150px;
        padding: 12px 10px;
        font-size: 14px;
    }

    .more-dots .buttons {
        justify-content: center;
    }

    .more-dots .buttons a:nth-child(1) {
        margin-right: 10px;
    }
    
}

@media screen and (max-width: 768px) {   
    .main .auction, 
    .main .dot-clube {
        padding: 40px 20px;
    }

    .main .feedback header,
    .main .attendance header,
    .main .auction header,
    .main .dot-clube header {
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .receipt form {
        margin: 30px 0;
        justify-content: flex-end;
    }

    .receipt form .file-fake {
        width: auto;
        margin-right: 10px;
        font-size: 12px;
    }
    .receipt form input[type=submit] {
        width: auto;
        padding: 12px 14px;
        font-size: 12px;
    }

    .main .dot-clube .tables {
        flex-direction: column;
    }

    .main .dot-clube .tables .extract {
        width: 100%;
    }
    .main .dot-clube .resume {
        width: 50%;
        margin-top: 20px;
        margin-inline: auto;
    }
    
}

@media screen and (max-width: 425px) {
    .main .dot-clube .feature {
        display: flex;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255), rgba(188, 7, 43, 1) 50%, rgba(255, 43, 89, 1));
        flex-direction: column;
    }
    .main .dot-clube .feature .left {
        width: 100%;
        border-radius: 20px;
        -moz-border-radius: 20px;
        -webkit-border-radius: 20px;
    }
    
    .main .dot-clube .feature .left h3 {
        font-size: 18px;
        text-align: right;
    }
    
    .main .dot-clube .feature .right {
        width: 100%;
        padding: 20px;
    }

    .receipt form .file-fake {
        width: auto;
        margin-right: 5px;
        font-size: 10px;
        padding: 4px;
    }

    .receipt form input[type=submit] {
        padding: 7px;
        font-size: 10px;
    }

    .main .dot-clube .extract .top {
        margin-bottom: 20px;
    }

    .main .dot-clube .extract .body > div {
        padding: 5px 8px;
        height: 30px;
        line-height: 30px;
    }

    .main .dot-clube .tables .extract {
        padding: 20px 20px 40px 20px;
    }

    .main .dot-clube .resume {
        width: 100%;
    }

    .main .dot-clube .resume h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .more-dots h2 {
        font-size: 18px;
    }

    .more-dots .buttons a {
        width: auto;
    }
    
}

@media screen and (max-width: 375px) {
    .main .feedback header,
    .main .attendance header, 
    .main .auction header,
    .main .dot-clube header {
        margin-bottom: 15px;
    }

    .receipt form {
        margin: 15px 0;
    }

    .main .dot-clube .tables .extract {
        padding: 10px;
    }    
}

@media screen and (max-width: 320px) {
    .main .dot-clube .extract .top form {
        width: 60%;
    }
}

/* #### Leilão #### */
.main .feedback header,
.main .attendance header,
.main .auction header {
    margin-bottom: 40px;
}

.main .dot-clube .features-2,
.main .auction .features {
    display: flex;
    justify-content: space-between;    
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

.main .dot-clube .features-2 .yours,
.main .auction .features .yours {
    background-color: var(--color-white);
    padding: 20px 40px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    width: 40%;
}

.main .dot-clube .features-2 .yours h2,
.main .auction .features .yours h2 {
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: #1F4173;
    font-weight: normal;
}

.main .dot-clube .features-2 .yours h2 svg,
.main .auction .features .yours h2 svg {
    margin-right: 10px;
}

.main .dot-clube .features-2 .yours h3,
.main .auction .features .yours h3 {
    font-size: 24px;
    color: #1F4173;
}

.main .dot-clube .features-2 .by,
.main .auction .features .by {
    width: 52%;
    padding: 20px 60px;
    background-color: var(--color-lightgreen);
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

.main .dot-clube .features-2 .by h2,
.main .auction .features .by h2 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 15px;
}

.main .dot-clube .features-2 .by a,
.main .auction .features .by a {
    text-decoration: none;
    color: var(--color-pink);
    font-weight: bold;
}

.main .auction .produts .prod h3 {
    margin: 10px 0 12px 0;
}

.main .club-2 .produts .produts p,
.main .dot-clube .produts p,
.main .auction .produts p {
    font-size: 15px;
    color: var(--color-lightgreen);
    font-weight: bold;
    margin-bottom: 10px;
}

.main .auction .produts .prod a {
    padding: 10px;
    text-decoration: none;
    border: 1px solid var(--color-pink);
    font-size: 15px;
    text-align: center;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 0 auto;    
    background-color: transparent;
    color: var(--color-pink);
}

@media screen and (max-width: 1024px) {
    .main .dot-clube .features-2 .yours,
    .main .auction .features .yours {
        width: 40%;
        padding: 20px;
    }

    .main .dot-clube .features-2 .by,
    .main .auction .features .by {
        Width: 55%;
        padding: 20px;
    }

    .main .dot-clube .features-2 .by h2,
    .main .auction .features .by h2 {
        font-size: 20px;
        margin-bottom: 22px;
    }
}

@media screen and (max-width: 768px) {
    .main .dot-clube .features-2 .yours h2,
    .main .auction .features .yours h2 {
        margin-bottom: 15px;
    }

    .main .dot-clube .features-2 .yours h3,
    .main .auction .features .yours h3 {
        font-size: 20px;
    }

    .main .dot-clube .features-2 .by h2,
    .main .auction .features .by h2 {
        font-size: 18px;
        margin-bottom: 14px;
    }

}

@media screen and (max-width: 768px) {
    .main .dot-clube .features-2 .yours,
    .main .auction .features .yours {
        width: 40%;
    }

    .main .dot-clube .features-2 .by,
    .main .auction .features .by {
        Width: 50%;
    }
    
}

@media screen and (max-width: 425px) {
    .main .feedback header,
    .main .auction header,
    .main .attendance header {
        margin-bottom: 20px;
    }

    .main .dot-clube .features-2,
    .main .auction .features {
        flex-wrap: wrap;
    }
    
    .main .dot-clube .features-2 .by,
    .main .dot-clube .features-2 .yours,
    .main .auction .features .by,
    .main .auction .features .yours {
        width: 100%;
        margin-bottom: 4%;
    }

    .main .dot-clube .features-2,
    .main .auction .features {        
        margin-bottom: 20px;
    }
    .main .feedback .produts .prod,
    .main .auction .produts .prod {
        width: 100%;
    }
} 

/* #### Atendimento #### */

.main .attendance {
    width: 100%;
    padding: 40px;
}

.attendance form {
    padding: 70px 40px;
    background-color: var(--color-white);
    max-width: 1000px;
    margin: 0 auto;
}

.attendance form .wrapper {
    margin-bottom: 40px;
}

.attendance form label {
    color:#121127;
    font-size: 14px;
    font-weight: bold;
}

.attendance form input[type=email],
.attendance form input[type=text] {
    display: block;
    padding: 14px;
    border: 1px solid var(--color-gray2);
    width: 100%;
    margin-top: 10px;
    font-size: 15px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.attendance form .checkbox {
    display: flex;
    flex-wrap: wrap;
    max-width: 500px;
}

.attendance form .checkbox label:nth-child(1) {
    width: 100%;
    margin-bottom: 20px;
}


.attendance form .checkbox label + label {
    width: 30%;
    margin-right: 10px;
    margin-bottom: 15px;
    padding: 14px 20px;
    background-color: var(--color-white);
    color: #121127;
    font-size: 15px;
    border-radius: 20px;
    border: 1px solid var(--color-gray2);
    cursor: pointer;
    transition: .2s;
    text-align: center;
}

.attendance form .checkbox label.active {
    border-color: var(--color-pink);
    color: var(--color-pink);
}

.attendance form .checkbox label input {
    display: none;
}

.attendance form input[type=submit] {
    background-color: var(--color-pink);
    color: #fff;
    font-size: 15px;
    text-align: center;
    padding: 14px 30px;
    border: none;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    cursor: pointer;
}

.attendance .tickets {
    margin-top: 50px;
    max-width: 1000px;
    margin: 50px auto 0 auto;
}

.attendance .tickets h2 {
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--color-pink);
    font-weight: normal;
}

.attendance .ticket-box p {
    font-weight: bold;
}

.attendance .ticket-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 14px;
    background-color: var(--color-white);
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.attendance .ticket-box a {
    padding: 10px 20px;
    color: var(--color-white);
    text-decoration: none;
    background-color: var(--color-lightgreen);
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    margin-right: 10px;
}

.attendance .ticket-box .wrapper {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .attendance .tickets h2 {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .main .attendance {
        padding: 40px 20px;
    }

    .main .feedback header,
    .main .attendance header {
        margin-bottom: 20px;
    }

    .attendance form {
        padding: 40px 20px;
    }

    .attendance .tickets h2 {
        font-size: 16px;
    }

    .attendance .ticket-box p {
        font-size: 14px;
    }

    .attendance .ticket-box a {
        padding: 6px 12px;
        font-size: 14px;
    }
}

@media screen and (max-width: 540px) {
    .attendance form .checkbox {
        justify-content: space-between;
    }
    .attendance form .wrapper {
        margin-bottom: 20px;
    }
    .attendance form .checkbox label + label {
        width: 48%;
        margin: 0 0 10px 0;
        padding: 7px 10px;
        font-size: 12px;
    }

    .attendance form input[type=text],
    .attendance form input[type=email] {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .attendance form input[type=submit] {
        font-size: 13px;
        padding: 10px 15px;
    }

    .attendance .tickets h2 {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
}

@media screen and (max-width: 375px) {
    .attendance form {
        padding: 20px 10px;
    }
    
    .attendance .ticket-box p {
        font-size: 12px;
    }
}

/* #### Feedback #### */
.main > .feedback {
    padding: 40px;
    width: 100%;
}

.main > .feedback .box-form h2{
    font-size: 40px;
    color: #121127;
    margin-bottom: 15px;
    text-align: center;
}

.main > .feedback .box-form p {
    text-align: center;
    color: rgba(18, 17, 39, 0.56);
    font-size: 18px;
    margin-bottom: 30px;
}

.main > .feedback .wrapper label{
    font-size: 12px;
    color: #121127;
    margin-bottom: 5px;
    display: block;
    font-weight: bold;
}

.main > .feedback .wrapper {
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

.main > .feedback .wrapper select,
.main > .feedback .wrapper textarea::placeholder {
    color: rgba(18, 17, 39, 0.4);
}
.main > .feedback .wrapper select,
.main > .feedback .wrapper textarea {
    display: block;
    width: 100%;
    resize: none;
    padding: 10px 14px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border: 1px solid rgba(18, 17, 39, 0.12);
    margin-bottom: 20px;
    outline: none;
    font-size: 14px;
}

.main > .feedback .wrapper select {
    cursor: pointer;
}

.main > .feedback form .button {
    width: 100%;
}
.main > .feedback form button[type=submit] {
    padding: 14px 30px;
    background-color: var(--color-pink);
    color: var(--color-white);
    display: block;
    margin: 30px auto;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    max-width: 250px;
    font-size: 17px;
    cursor: pointer;
}

.main .club-2 .produts .prod h3,
.main .feedback .produts .prod h3 {
    margin: 10px 0 15px 0;
}

.main .feedback .produts .prod p.reviews {
    font-size: 14px;
    color: #1d5b5c;
    text-align: center;
    font-weight: bold;
}

.main > .feedback .reviews-box {
    display: flex;
    width: 100%;
    margin-top: 10px;
}

.main > .feedback .reviews-box .note {
    width: 40px;
    padding: 5px;
    background-color: #000;
    color: var(--color-white);
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.main > .feedback .reviews-box .stars {
    padding: 5px 0;    
    display: flex;    
    width: calc(100% - 20px);
    transition: all ease .5s;
    background-color: var(--color-gray2);
}

.main > .feedback .reviews-box .stars.gradient-20 {
    background-image: linear-gradient(to right, #4da5a7 20%, var(--color-gray2) 5%, var(--color-gray2) );    
}

.main > .feedback .reviews-box .stars.gradient-40 {
    background-image: linear-gradient(to right, #4da5a7 40%, var(--color-gray2) 5%, var(--color-gray2) );
}

.main > .feedback .reviews-box .stars.gradient-60 {
    background-image: linear-gradient(to right, #4da5a7 60%, var(--color-gray2) 5%, var(--color-gray2) );
}

.main > .feedback .reviews-box .stars.gradient-80 {
    background-image: linear-gradient(to right, #4da5a7 80%, var(--color-gray2) 5%, var(--color-gray2) );
}

.main > .feedback .reviews-box .stars.gradient-100 {
    background-image: linear-gradient(to right, #4da5a7 100%, var(--color-gray2) 5%, var(--color-gray2) );
}

.main > .feedback .reviews-box .stars svg {
    width: 20%;
    cursor: pointer;
}


@media screen and (max-width: 768px) {
    .main > .feedback {
        padding: 40px 20px;
    }
    .main .feedback h2 {
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .main > .feedback .box-form h2 {
        font-size: 28px;
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .main > .feedback .box-form p {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .main > .feedback .wrapper textarea {
        height: 100px;
    }
}

@media screen and (max-width: 425px) {
    .main > .feedback h2 {
        margin-top: 0;
    }

    .main > .feedback .box-form h2 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .main > .feedback .box-form p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .main > .feedback form button[type=submit] {
        padding: 14px 30px;
        font-size: 14px;
    }

}

/* #### Perfil do Usuário #### */

.main .user {
    width: 100%;
    padding: 40px;
}
.main .user .wrapper-2{
    display: flex;
    justify-content: space-between;    
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.main .user .left,
.main .user .right {
    width: 45%;
}

.main .user input {
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 2px solid var(--color-lightgreen);
    background-color: transparent;
    outline: none;
}

.main .user .left .name {
    font-size: 17px;
    color: var(--color-gray4);
    margin-bottom: 10px;
}

.main .user .left .edit {
    font-size: 17px;
    color: var(--color-pink);
    margin-bottom: 30px;
    font-weight: bold;
}

.main .user .left .data {
    font-size: 24px;
    color: #121127;
    margin-bottom: 15px;
}

.main .user .left .cover {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    width: 140px;
    margin-bottom: 40px;
    overflow: hidden;
}

.main .user .left .cover img {
    width: 100%;
    border-radius: 50%;
}

.main .user .left .wrapper h3 {
    font-size: 17px;
    font-weight: normal;
    color: var(--color-pink);
    margin-bottom: 20px;
    font-weight: bold;
}

.main .user label {
    display: block;
    color: var(--color-gray4);
    font-size: 14px;
    margin-bottom: 5px;
}

.main .user input {
    margin-bottom: 10px;
    font-size: 15px;
}

.main .user .right h4 {
    color: var(--color-pink);
    font-size: 17px;
    margin-bottom: 10px;
}

.main .user .right .ps {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
}


.main .user .right button[type=submit] {
    padding: 12px 50px;
    color: var(--color-pink);
    border: 2px solid var(--color-pink);
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    margin-right: 5px;
    background-color: transparent;
    margin-top: 25px;
    font-size: 14px;
    font-weight: bold;
}

.main .user .right a {
    color: #29b2b5;
    padding: 12px 25px;
    background-color: var(--color-lightgreen-hover);
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    text-decoration: none;
    margin-top: 25px;
    font-size: 14px;
    font-weight: bold;
}

.main .user .group {
    display: flex;
    justify-content: space-between;
}

.main .user .group div {
    width: 50%;
}

.main .user .group div:nth-child(2) {
    padding-left: 20px;
}

@media screen and (max-width: 768px) {
    .main .user {
        padding: 20px;
        margin-top: 50px;
    }

    .main .user .left .name {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .main .user .left .edit {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .main .user .left .data {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .main .user .left .cover {
        width: 100px;
        margin-bottom: 15px;
    }

    .main .user .left .wrapper h3 {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .main .user .right h4 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .main .user .right .ps {
        font-size: 10px;
    }
}

@media screen and (max-width: 585px) {
    .main .user {
        flex-direction: column;
    }

    .main .user .right,
    .main .user .left {
        width: 100%;
    }    
}

@media screen and (max-width: 375px) {
    .main .user .group {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .main .user .group div {
        width: 100%;
    }
    
    .main .user .group div:nth-child(2) {
        padding-left: 0;
    }
}








/* @media screen and (max-width: 1024px) {}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 425px) {}
@media screen and (max-width: 320px) {} */
