.sidebar {
    position: relative;
    width: 100vw;
    height: 70px;
    background: var(--bg-sidebar);
}

.sidebar::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 280px;
    background: linear-gradient(360deg, rgba(217, 217, 217, 0) 0%, #000000 100%);
}

.sidebar .sidebar_content {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    padding-block: 1rem;
}

.sidebar .sidebar_content h2 {
    font-size: 1.25rem;
    color: var(--text-black);
    font-weight: 700;
}

.sidebar .sidebar_content h2 span {
    font-weight: 500;
}

.sidebar .sidebar_content h2+a {
    font-size: 1.25rem;
    color: var(--text-white);
    background: var(--bg-button-whats);
    padding: 10px 20px;
    border-radius: 300px;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sidebar .sidebar_content h2+a:hover {
    background: var(--text-green);
}

.sidebar .sidebar_content h2+a .fa {
    font-size: 1.3rem;
    text-indent: 8px;
}


/*                          HEADER | NAVBAR
  #########################################
*/

.header {
    width: 100%;
    height: 1764px;
    background: center no-repeat url(../imgs/banner.png);
}

.header .header_container {
    position: relative;
    z-index: 1;
    max-width: 1570px;
    margin-inline: auto;
    padding-block: 26px;
}

.header .header_container .navbar_content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 20px;
}

.header .header_container .navbar_content .navbar_logo img {
    width: 330px;
    height: 66px;
    object-fit: cover;
}

.header .header_container .navbar_content .navbar {
    flex-grow: 1;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    padding-top: 20px;
}

.header .header_container .navbar_content .navbar .navbar_list {
    display: flex;
}

.header .header_container .navbar_content .navbar .navbar_list li {
    margin-left: 36px;
}

.header .header_container .navbar_content .navbar .navbar_list li a {
    font-size: 1.125rem;
    color: var(--text-white);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.header .header_container .navbar_content .navbar .navbar_list li a:hover {
    color: var(--bg-button);
}

.header .header_container .navbar_content .navbar .navbar_list+.navbar_buttons a {
    font-size: 0.96rem;
    text-transform: uppercase;
    color: var(--text-black);
    font-weight: 600;
    padding: 10px 12px;
    margin: 0 1px;
    background: var(--bg-button);
    border-radius: 60px;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

.header .header_container .navbar_content .navbar .navbar_list+.navbar_buttons a:hover {
    background: var(--text-black);
    color: var(--bg-button);
}

.header .header_container .navbar_content .navbar~.social_network .fa {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-black);
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: var(--bg-button);
    border-radius: 50%;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

.header .header_container .navbar_content .navbar~.social_network {
    text-align: center;
    overflow: hidden;
    padding-top: 14px;
}

.header .header_container .navbar_content .navbar~.social_network .fa:hover {
    background: var(--text-black);
    color: var(--bg-button);
}


/*              HEADER  |  IMAGES  | BANNER
  #########################################
*/

.header .header_info_banner {
    position: relative;
    padding-block: 46px;
    height: 556px;
}

.header .header_info_banner .info_banner_image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .header_info_banner .info_banner_image img {
    width: 403px;
    height: 637px;
    object-fit: contain;
}

.header .header_info_banner .info_banner_image .image_one {
    transform: translateX(166px);
}


/*                      HEADER  |  CAROUSEL
  #########################################
*/

.header .header_carousel {
    padding-inline: 30px;
    height: 306px;
}

.header .header_carousel .carousel_two .carousel_items {
    position: relative;
    width: 406px;
    height: 280px;
    background: transparent;
    border: 1px solid var(--bg-button);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 30px;
    margin: 10px;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    overflow: hidden;
}

.header .header_carousel .carousel_two .carousel_items:hover {
    background: var(--text-black);
}

.header .header_carousel .carousel_two .carousel_items img {
    width: 70px;
    height: 68px;
    object-fit: cover;
    margin-bottom: 20px;
}

.header .header_carousel .carousel_two .carousel_items h3 {
    font-size: 2rem;
    color: var(--text-info);
    margin-bottom: 12px;
}

.header .header_carousel .carousel_two .carousel_items p {
    font-size: 0.96rem;
    color: var(--text-info);
}


/*                  HEADER   |  WHAT_OFFERS
  #########################################
*/

.header .whatoffers {
    position: relative;
    padding-inline: 30px;
}

.header .whatoffers .whatOffers_container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.header .whatoffers .whatOffers_container .cell_phone {
    position: relative;
    top: 186px;
}

.header .whatoffers .whatOffers_container .cell_phone img {
    width: 602px;
    height: 690px;
    object-fit: contain;
}


/*                     ANIMATION   |   CELL
  #########################################
*/

.header .whatoffers .whatOffers_container .cell_phone .animation_cell {
    animation-name: infiniteupdown;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

@keyframes infiniteupdown {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-40px);
    }
    100% {
        transform: translateY(0px);
    }
}


/*            END   |  ANIMATION   |   CELL
  #########################################
*/

.header .whatoffers .whatOffers_container .whatOffer_title {
    position: relative;
    top: 80px;
    text-align: center;
}

.header .whatoffers .whatOffers_container .whatOffer_title .whatOffer_info h2 {
    font-size: 2.5rem;
    color: var(--text-white);
    font-weight: 100;
    margin-bottom: 12px;
}

.header .whatoffers .whatOffers_container .whatOffer_title .whatOffer_info h2 strong {
    font-weight: 700;
}

.header .whatoffers .whatOffers_container .whatOffer_title .whatOffer_info h2 span {
    display: block;
}

.header .whatoffers .whatOffers_container .whatOffer_title .whatOffer_info p {
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 200;
    line-height: 1.3rem;
    margin-bottom: 10px;
}

.header .whatoffers .whatOffers_container .whatOffers_content {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding-block: 16px;
}

.header .whatoffers .whatOffers_container .whatOffers_content .whatOffers_bg {
    width: 380px;
    height: 70px;
    background-color: var(--text-white);
    border-radius: 7px;
    margin-bottom: 6px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header .whatoffers .whatOffers_container .whatOffers_content .whatOffers_bg:hover {
    transform: translateX(-3px);
    background-color: var(--text-info);
}

.header .whatoffers .whatOffers_container .whatOffers_content .whatOffers_bg .whatOffers_text {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 28px;
}

.header .whatoffers .whatOffers_container .whatOffers_content .whatOffers_bg .whatOffers_text h4 {
    font-size: 1rem;
    color: var(--text-black);
    text-indent: 22px;
}

.header .whatoffers .whatOffers_container .whatOffers_content .whatOffers_bg .whatOffers_text .fa {
    font-size: 1.4rem;
    font-weight: 800;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    background-color: var(--bg-button);
    position: absolute;
    left: -12px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header .whatoffers .whatOffers_container .whatOffers_content .whatOffers_bg .whatOffers_text:hover .fa {
    transform: rotate(180deg);
}

.header .whatoffers .button_whats {
    position: absolute;
    top: 99.6%;
    right: 14%;
}

.header .whatoffers .button_whats .btn_whats {
    position: relative;
    cursor: pointer;
    width: 480px;
    height: 60px;
    background-color: var(--bg-button-whats);
    border-radius: 30px;
    padding-block: 14px;
    border: 2px solid var(--bg-icon-whats);
    overflow: hidden;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.header .whatoffers .button_whats .btn_whats:hover {
    box-shadow: var(--shadow-whats);
}

.header .whatoffers .button_whats .btn_whats a {
    text-indent: 24px;
}

.header .whatoffers .button_whats .btn_whats h3 {
    font-size: 1.25rem;
    color: var(--text-black);
    font-weight: 300;
    padding-inline: 16px;
}

.header .whatoffers .button_whats .btn_whats h3 strong {
    font-weight: 800;
}

.header .whatoffers .button_whats .btn_whats .fa {
    position: absolute;
    top: 0;
    right: 0px;
    width: 70px;
    height: 60px;
    font-size: 1.7rem;
    background: var(--bg-icon-whats);
    color: var(--icon-wats);
    display: flex;
    align-items: center;
}


/* ###############################################
   ###############################################   END |  HEADER...
   ###############################################  
*/

.button_content {
    display: flex;
    flex-direction: column;
    justify-content: end;
    margin-left: 96px;
}

.button_scroll {
    position: fixed;
    top: 56%;
    right: 0;
    z-index: 1002;
}

.button_scroll .btn_whats {
    width: 73px;
    height: 50px;
    background: var(--bg-whats-top);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    margin-bottom: 4px;
}

.button_scroll .btn_whats .fa {
    color: var(--text-white);
    font-size: 1.5rem;
    line-height: 50px;
    display: flex;
    justify-content: center;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.button_scroll .btn_whats .fa:hover {
    background: var(--text-green);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}


/* ###############################################
   ###############################################   BTN   |   VOLTAR
   ###############################################  
*/

.button_scroll .btn_voltar {
    width: 73px;
    height: 50px;
    background: var(--text-black);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    cursor: pointer;
}

.button_scroll .btn_voltar .fa {
    color: var(--text-white);
    font-size: 1.5rem;
    line-height: 50px;
    display: flex;
    justify-content: center;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.button_scroll .btn_voltar .fa:hover {
    background: var(--bg-button);
    color: var(--text-black);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}


/* ###############################################
   ###############################################   END |  HEADER...
   ###############################################  
*/

.button_content {
    margin-left: 96px;
}

.button_scroll {
    position: fixed;
    right: 0;
    bottom: 5%;
    z-index: 1002;
}

.button_scroll .btn_whats {
    width: 73px;
    height: 50px;
    background: var(--bg-whats-top);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    margin-bottom: 4px;
}

.button_scroll .btn_whats .fa {
    color: var(--text-white);
    font-size: 1.5rem;
    line-height: 50px;
    display: flex;
    justify-content: center;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.button_scroll .btn_whats .fa:hover {
    background: var(--text-green);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}


/* ###############################################
   ###############################################   BTN   |   VOLTAR
   ###############################################  
*/

.button_scroll .btn_voltar {
    width: 73px;
    height: 50px;
    background: var(--text-black);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    cursor: pointer;
}

.button_scroll .btn_voltar .fa {
    color: var(--text-white);
    font-size: 1.5rem;
    line-height: 50px;
    display: flex;
    justify-content: center;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.button_scroll .btn_voltar .fa:hover {
    background: var(--bg-button);
    color: var(--text-black);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}


/* ###############################################
   ###############################################   BTN   |   ASSINAR
   ###############################################  
*/

.button_scroll .btn_assinar {
    position: relative;
    width: 168px;
    height: 50px;
    background: var(--bg-icon-subscribe);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    margin-top: 4px;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.button_scroll .btn_assinar:hover {
    background: var(--text-black);
}

.button_scroll .btn_assinar a {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 50px;
    text-indent: 40px;
    color: var(--text-black);
}

.button_scroll .btn_assinar a:hover {
    color: var(--text-white);
}

.button_scroll .btn_assinar a .fa {
    font-size: 1.3rem;
    position: relative;
    right: 10px;
}


/* ###############################################
   ###############################################   MAIN...
   ###############################################  
*/

.about {
    width: 100vw;
    height: 940px;
    background: center no-repeat url(../imgs/bg_about.png);
    transform: translateY(-96px);
}

.about .about_container {
    max-width: 1570px;
    margin-inline: auto;
    padding-inline: 22px;
}

.about .about_container .about_content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.about .about_container .about_content .about_info {
    width: 383px;
    height: 332px;
    padding-top: 160px;
}

.about .about_container .about_content .about_info h2 {
    font-size: 2.2rem;
    color: var(--text-blue);
    font-weight: 400;
    margin-bottom: 16px;
}


/* CRIAR  |  LODING   |  NESSE BORDER */

.about .about_container .about_content .about_info .border {
    width: 300px;
    height: 1px;
    background-color: var(--text-blue);
    margin-bottom: 16px;
}


/* CRIAR  |  LODING */

.about .about_container .about_content .about_info p {
    font-size: 1rem;
    color: var(--text-blue);
    font-weight: 400;
}

.about .about_container .form {
    width: 910px;
    height: 660px;
    object-fit: cover;
    background: var(--bg-button);
    border-radius: 40px;
    margin-top: 164px;
    overflow: hidden;
}

.about .about_container .form .form_container {
    display: flex;
    grid-gap: 46px;
    align-items: center;
    padding-inline: 40px;
}

.about .about_container .form .form_container .form_content {
    width: 420px;
    height: 588px;
    background-color: var(--text-white);
    border-radius: 40px;
    overflow: hidden;
    margin-top: 36px;
    padding: 70px 40px;
}

.about .about_container .form .form_container .form_content h3 {
    font-size: 2.688rem;
    color: var(--text-green);
    font-weight: 100;
    margin-bottom: 20px;
}

.about .about_container .form .form_container .form_content h3 span {
    display: block;
    font-weight: 700;
    line-height: 40px;
}

.about .about_container .form .form_container .form_content p {
    font-size: 1.375rem;
    color: var(--text-blue);
    line-height: 30px;
}

.about .about_container .form .form_container .form_value h4 {
    font-size: 2.25rem;
    color: var(--text-black);
    margin-bottom: 20px;
}

.about .about_container .form .form_container .form_value form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 auto;
    width: 336px;
}

.about .about_container .form .form_container .form_value form input {
    outline: none;
    border: none;
    padding: 10px;
    border-radius: 6px;
}

.about .about_container .form .form_container .form_value form input::placeholder {
    font-size: 0.875rem;
    color: var(--text-black);
}

.about .about_container .form .form_container .form_value form input[type="submit"] {
    width: 260px;
    height: 46px;
    cursor: pointer;
    background: var(--text-green);
    margin-top: 8px;
    color: var(--text-white);
    font-size: 1.1rem;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.about .about_container .form .form_container .form_value form input[type="submit"]:hover {
    background-color: var(--text-white);
    color: var(--text-green);
    border: 1px solid var(--text-green);
}


/*              MAIN   |    CAROUSEL  |   PARCEIROS
    ############################################### 
*/

.carousel_partner {
    width: 100%;
    height: 536px;
}

.carousel_partner .carousel_container {
    max-width: 1570px;
    margin: auto;
    padding-inline: 20px;
}

.carousel_partner .carousel_container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-blue);
}

.carousel_partner .carousel_container h2 span {
    color: var(--text-green);
    display: block;
}

.carousel_partner .carousel_container .carousel_six {
    transform: translateY(-30px);
}

.carousel_partner .carousel_container .carousel_six .brands {
    width: 245px;
    height: 200px;
    background: var(--text_white);
    border-radius: 20px;
    margin: 10px;
    border: 1px solid var(--text-blue);
}

.carousel_partner .carousel_container .carousel_six .brands:hover {
    border: 1px solid var(--bg-button);
}

.carousel_partner .carousel_container .carousel_six .brands img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin: 30px auto;
}

.carousel_partner .carousel_container .slick-dots li button {
    transform: translateY(136px);
    background: var(--text-green);
}

.carousel_partner .carousel_container .carousel_six .slick-dots li.slick-active button {
    border: 2px solid var(--text-green);
    background: transparent;
}


/*                     MAIN   |   FORWHO_AND
  ##########################################
*/

.forWho_and {
    width: 100%;
    height: 684px;
    transform: translateY(-106px);
}

.forWho_and_content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.forWho_and_content .forWho_and_imgs {
    position: relative;
    display: flex;
    align-items: center;
}

.forWho_and_content .forWho_and_imgs img {
    width: 420px;
    height: 670px;
    object-fit: contain;
}

.forWho_and_content .forWho_and_imgs .circle {
    position: relative;
    top: 50px;
    right: 136px;
}

.forWho_and_content .forWho_and_imgs .circle img {
    width: 160px;
    height: 160px;
}


/*  
################################### 
################################### ANIMATION / EFEITO BUTTON-PULSANDO
###################################
*/

.forWho_and_content .forWho_and_imgs .circle::before,
.forWho_and_content .forWho_and_imgs .circle::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    border-radius: 50%;
    border: 2px solid var(--bg-circle);
    display: block;
    animation: btnAnime 1.5s linear infinite;
}

.forWho_and_content .forWho_and_imgs .circle::after {
    animation-delay: .5s;
}

@keyframes btnAnime {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}


/*  
################################### 
################################### END / ANIMATION | EFEITO BUTTON-PULSANDO
###################################
*/

.forWho_and_content .forWho_and_imgs~.forWho_and_info h2 {
    font-size: 2.375rem;
    color: var(--text-blue);
    font-weight: 300;
    margin-bottom: 16px;
}

.forWho_and_content .forWho_and_imgs~.forWho_and_info h2 span {
    font-weight: 700;
    display: block;
}

.forWho_and_content .forWho_and_imgs~.forWho_and_info .forWho_text {
    width: 596px;
    margin-bottom: 40px;
}

.forWho_and_content .forWho_and_imgs~.forWho_and_info .forWho_text p {
    font-size: 1.125rem;
    color: var(--text-blue);
    display: block;
    line-height: 26px;
}

.forWho_and_content .forWho_and_imgs~.forWho_and_info .forWho_text p strong {
    font-weight: 700;
}

.forWho_and_content .forWho_button {
    position: relative;
    cursor: pointer;
    width: 480px;
    height: 60px;
    background-color: var(--bg-button-whats);
    border-radius: 30px;
    padding-block: 14px;
    border: 2px solid var(--bg-icon-whats);
    overflow: hidden;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.forWho_and_content .forWho_button:hover {
    box-shadow: var(--shadow-whats);
}

.forWho_and_content .forWho_button a {
    text-indent: 24px;
}

.forWho_and_content .forWho_button h3 {
    font-size: 1.25rem;
    color: var(--text-black);
    font-weight: 300;
    padding-inline: 16px;
}

.forWho_and_content .forWho_button h3 strong {
    font-weight: 800;
}

.forWho_and_content .forWho_button .fa {
    position: absolute;
    top: 0;
    right: 0px;
    width: 70px;
    height: 60px;
    font-size: 1.7rem;
    background: var(--bg-icon-whats);
    color: var(--icon-wats);
    display: flex;
    align-items: center;
}


/*             MAIN   |    PARTNERS   |   PARCEIROS
    ############################################### 
*/

.partners {
    width: 100%;
    height: 648px;
}

.partners .partners_container {
    max-width: 1570px;
    margin-inline: auto;
}

.partners .partners_container .partners_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    height: 126px;
}

.partners .partners_container .partners_content h2 {
    font-size: 2.5rem;
    color: var(--text-blue);
    font-weight: 200;
    margin-bottom: 10px;
}

.partners .partners_container .partners_content h2 span {
    display: block;
    color: var(--text-green);
    font-weight: 700;
}

.partners .partners_container .partners_content p {
    font-size: 1.125rem;
    color: var(--text-blue);
}

.partners .partners_container .partners_content .partners_select {
    position: relative;
    padding-block: 16px;
}

.partners .partners_container .partners_content .partners_select select {
    position: relative;
    font-size: 1rem;
    color: var(--text-black);
    appearance: none;
    border: none;
    outline: none;
    background: var(--bg-selected);
    width: 300px;
    height: 48px;
    padding-inline: 20px;
    border-radius: 5px;
    cursor: pointer;
}

.partners .partners_container .partners_content .partners_select::after {
    content: "";
    position: absolute;
    background: no-repeat url(../imgs/angle-down.png);
    top: 36px;
    right: 0;
    padding: 1rem;
    pointer-events: none;
    transition: all 0.4s;
}

.partners .partners_container .carousel_four {
    padding-inline: 20px;
}

.partners .partners_container .carousel_four .four_cards {
    margin: 10px;
}

.partners .partners_container .carousel_four .four_cards img {
    object-fit: cover;
}

.partners .partners_container .carousel_four .slick-dots li button {
    background: var(--text-green);
    margin-top: 148px;
    display: inline-block;
}

.partners .partners_container .carousel_four .slick-dots li.slick-active button {
    border: 2px solid var(--text-green);
    background: transparent;
}


/*            MAIN   |    CAROUSEL   |   DEPOIMENTO
    ############################################### 
*/

.testimonials {
    width: 100%;
    height: 608px;
}

.testimonials .five_items {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.testimonials .five_items .five_title {
    text-align: center;
    margin-bottom: 20px;
}

.testimonials .five_items .five_title h2 {
    font-size: 2.5rem;
    color: var(--text-blue);
    font-weight: 100;
}

.testimonials .five_items .five_title h2 strong {
    color: var(--text-green);
    font-weight: 700;
}

.testimonials .five_items .five_title+.five_img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}


/*                 |  ANIMATION   |  LOADER
  #########################################
*/

.testimonials .five_items .five_title+.five_img::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 206px;
    height: 206px;
    background: linear-gradient(to top, #019970, #687983);
    backdrop-filter: blur(30px);
    border-radius: 300px;
    opacity: 0.5;
    animation: loader 0.6s linear infinite;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*           END   |  ANIMATION   |  LOADER
  #########################################
*/

.testimonials .five_items .five_title+.five_img img {
    width: 186px;
    height: 186px;
    object-fit: cover;
}

.testimonials .five_items .five_text {
    text-align: center;
    height: 146px;
    padding-top: 30px;
}

.testimonials .five_items .five_text p {
    font-size: 1.125rem;
    color: var(--text-blue);
}

.testimonials .five_items .five_text p span {
    font-size: 1.125rem;
    color: var(--text-blue);
    font-weight: 600;
    display: block;
    margin-top: 20px;
}

.testimonials .carousel_five .slick-dots li button {
    background: var(--text-green);
    margin-top: 146px;
    display: inline-block;
}

.testimonials .carousel_five .slick-dots li.slick-active button {
    border: 2px solid var(--text-green);
    background: transparent;
}

.accordion {
    width: 100%;
    height: 1320px;
}

.accordion .accordion_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.accordion .accordion_container .acc_img {
    position: relative;
    z-index: -1;
}

.accordion .accordion_container .acc_img img {
    width: 586px;
    height: 546px;
    object-fit: cover;
}

.accordion .accordion_container .accordion_info {
    width: 1300px;
    height: 680px;
    background-color: var(--text-black);
    border-radius: 40px;
    overflow: hidden;
    padding: 94px;
}

.accordion .accordion_container .accordion_info h2 {
    font-size: 3rem;
    color: var(--bg-button);
    text-transform: uppercase;
}

.accordion .accordion_container .accordion_info .accordio_items {
    position: relative;
    margin-top: 36px;
    max-width: 1060px;
    border-bottom: 2px solid var(--bg-button);
    padding-bottom: 20px;
}

.accordion .accordion_container .accordion_info .accordio_items .acc_text {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion .accordion_container .accordion_info .accordio_items .acc_text h3 {
    font-size: 1.125rem;
    color: var(--bg-button);
}

.accordion .accordion_container .accordion_info .accordio_items .acc_text .fa {
    font-size: 1.5rem;
    color: var(--bg-button);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.accordion .accordion_container .accordion_info .accordio_items .acc_text.power .fa {
    transform: rotate(180deg);
}

.accordion .accordion_container .accordion_info .accordio_items .paragraph {
    font-weight: 100;
    color: var(--text-white);
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.accordion .accordion_container .accordion_info .accordio_items .paragraph.power {
    max-height: 100%;
}

.accordion .accordion_container .accordion_info .accordio_items .paragraph p {
    font-size: 1rem;
    padding: 20px 0;
}


/*                                       FOOTER
############################################### 
*/

.footer {
    width: 100%;
    /* height: 296px; */
}

.footer .footer_container {
    max-width: 1570px;
    height: 80px;
    margin: auto;
    background-color: var(--text-green);
}

.footer .footer_container .footer_content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 20px;
    padding-top: 30px;
}

.footer .footer_container .footer_content .footer_title h2 {
    font-size: 1.25rem;
    font-weight: 100;
    color: var(--text-white);
}

.footer .footer_container .footer_content .footer_social_network {
    display: flex;
    gap: 26px;
    overflow: hidden;
}

.footer .footer_container .footer_content .footer_social_network a {
    font-size: 1.125rem;
    color: var(--text-white);
    font-weight: 200;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.footer .footer_container .footer_content .footer_social_network a:hover {
    color: var(--bg-button);
}

.footer .footer_container .footer_content .footer_social_network a .fa {
    font-size: 1.3rem;
    margin: 0 3px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.footer .footer_container .footer_content .footer_social_network a:hover .fa {
    color: var(--text-black);
}


/*                          FOOTER    |   FOTTER_END
    ################################################
*/

.footer_end {
    width: 100%;
    height: 216px;
}

.footer_end .end_container {
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
}

.footer_end .end_container img {
    width: 330px;
    height: 66px;
    object-fit: cover;
    margin-top: 40px;
}

.footer_end .end_container>.end_nav {
    margin-top: 20px;
    margin-bottom: 18px;
}

.footer_end .end_container>.end_nav a {
    font-size: 1.125rem;
    color: var(--text-black);
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 30px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.footer_end .end_container>.end_nav a:hover {
    color: var(--text-green);
}

.footer_end .end_container+.copyright {
    padding: 16px 0;
    max-width: 1570px;
    margin: 0 auto;
    border-top: 1px solid var(--text-blue);
    text-align: center;
}

.footer_end .end_container+.copyright P {
    color: var(--text-black);
    font-size: 0.875rem;
}