﻿/* NAVBAR CSS */
.navbar_container {
    background-color: var(--navbarBackground) !important;
    padding: 11px 50px;
}

.navbar_logo {
    margin-right: 45px;
}

.navbar_toggle_button:focus {
    box-shadow: none !important;
}

.navbar_item_content {
    width: 100%;
    justify-content: flex-end;
    align-items: center;
}

.navbar_divisor {
    width: 1px;
    height: 38px;
    background-color: var(--linkFont);
    margin-right: 25px;
}

.navbar_link {
    font-family: "Roboto";
    font-style: normal;
    font-weight: normal;
    font-size: 16px !important;
    line-height: 19px;
    color: var(--linkFont);
    padding-right: 0px;
    margin-right: 25px;
}

.last_navbar_link {
    margin-right: 25px;
}

.navbar_link:hover {
    color: var(--linkFont);
}

.navbar_button {
    background-color: #FFC413;
    color: #fff;
    border: none;
    outline: 0;
    border-radius: 3px;
    padding: 11px 16px;
    font-family: "Roboto";
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    text-decoration: none !important;
}

    .navbar_button:hover {
        color: var(--buttonFont);
    }

@media (min-width: 1500px) {
    .navbar_link {
        font-size: 20px;
        margin-right: 50px;
    }
}

@media (max-width: 769px) {
    .navbar_item_content li:nth-child(7) {
        margin-top: 20px !important;
    }

    .navbar_logo {
        margin: 0;
    }

    .navbar_item_content {
        padding-top: 20px;
    }

    .navbar_divisor {
        width: 70%;
        margin: 20px auto;
        height: 1px;
    }

    .last_navbar_link {
        margin-right: 0;
    }

    .navbar_link {
        margin-right: 0;
    }
}

/* NAVBAR CSS */

/* BANNER CSS */
#banner {
    height: 70vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-image: url("../assets/img/home_material/home_gif.gif"); 
    background-size: cover;
    background-position: center;
}
.banner_video {
    position: absolute;
    width: 100%;
    height: 70vh;
}

.banner_container {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.72);
    padding-left: 42px;
}

.banner_title {
    font-family: "Roboto";
    font-style: normal;
    font-weight: bold;
    font-size: 52px;
    line-height: 61px;
    color: var(--bannerFont);
    margin: 100px 0 15px;
    max-width: 54%;
    text-transform: uppercase;
}

.banner_subtitle {
    font-family: "Roboto";
    font-style: normal;
    font-weight: normal;
    font-size: 22px;
    line-height: 26px;
    color: var(--bannerFont);
    max-width: 49%;
    margin: 12px 0 30px;
}

.banner_button {
    margin-top: 60px;
    width: 100%;
    display: flex;
}

    .banner_button a {
        padding: 20px;
        border-radius: 3px;
        text-decoration: none;
        font-family: "Roboto";
        font-style: normal;
        font-weight: bold;
        font-size: 15px;
        line-height: 18px;
        color: var(--buttonFont);
        background-color: var(--buttonBackground);
    }

        .banner_button a:hover {
            color: var(--buttonFont);
        }

@media (max-width: 768px) {
    /* for tablets and other devices */
    #banner {
        height: 60vh;
    }

    .banner_video {
        height: 70vh;
        width: 100%;
    }

    .banner_title {
        font-size: 40px;
        line-height: 40px;
        max-width: 80%;
        margin-top: 20%;
    }

    .banner_subtitle {
        font-size: 19px;
        line-height: 23px;
        max-width: 75%;
    }
}

@media (max-width: 500px) {
    /* for mobile screens */
    #banner {
        height: 60vh;
    }

    .banner_video {
        height: 60vh;
    }

    .banner_img {
        height: 34px;
    }

    .banner_title {
        display: none;
    }

    .banner_subtitle {
        display: none;
    }

    .banner_container {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .banner_button {
        justify-content: center;
        margin-bottom: 20px;
    }

    .banner_container {
        padding-left: 0;
    }
}
/* BANNER CSS */

/* MIDDLE INFO CSS */
#middleInfo {
    width: 100%;
    padding: 80px 50px;
    background-color: var(--background);
}

.middleInfo_video {
    margin: auto;
    height: 350px;
}

#middleInfo .plyr--video {
    background: none !important;
    overflow: hidden;
}

#middleInfo .vjs-play-progress {
    background: #32a190 !important;
}

#middleInfo .plyr__video-wrapper {
    border-radius: 8px;
}

.middleInfo_text_content {
    padding: 10px;
}

.middleInfo_title {
    font-family: "Roboto";
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 37px;
    color: var(--primaryFont);
    margin-bottom: 30px;
    margin-top: -50px;
}

.middleInfo_subtitle {
    font-family: "Roboto";
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
    color: var(--secondaryFont);
    max-width: 75%;
}

.middleInfo_button {
    margin-top: 35px;
}

    .middleInfo_button button {
        border-radius: 3px;
        padding: 16px;
        background-color: var(--buttonBackground);
        color: var(--buttonFont);
        font-family: "Roboto";
        font-style: normal;
        font-weight: bold;
        font-size: 15px;
        line-height: 18px;
        text-transform: uppercase;
        border: none;
        outline: 0;
    }

@media (min-width: 1441px) {
    /* for full hd screens */
    #middleInfo {
        padding: 80px;
    }

    .middleInfo_container {
        max-width: 1440px;
    }
}

@media (max-width: 1000px) {
    /* for tablets and other devices */
    .middleInfo_title {
        margin-top: 20px;
        margin-bottom: 22px;
    }

    .middleInfo_subtitle {
        max-width: 100%;
    }
}

@media (max-width: 500px) {
    /* for mobile screens */
    #middleInfo {
        padding: 60px 10px;
    }

    .middleInfo_title {
        font-size: 22px;
        line-height: 22px;
    }

    .middleInfo_subtitle {
        width: 100%;
        font-size: 16px;
        line-height: 20px;
    }
}
/* MIDDLE INFO CSS */

/* INFORMATION */
#information {
    width: 100%;
    padding: 50px 70px;
    background-color: var(--backgroundSecondary);
}

.information_title {
    font-family: "Roboto";
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 37px;
    text-transform: uppercase;
    color: var(--primaryFont);
    text-align: center;
    margin-bottom: 50px;
}

.information_column {
    text-align: center;
}

.information_image {
    margin-bottom: 25px;
}

.information_card_title {
    font-family: "Roboto";
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    color: var(--primaryFont);
    text-align: center;
    margin-bottom: 8px;
}

.information_card_subtitle {
    font-family: "Roboto";
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: var(--primaryFont);
    text-align: center;
    max-width: 80%;
    margin: auto;
}

.carousel_icon {
    color: var(--primaryGreen);
    font-size: 32px;
}

.carousel-indicators [data-bs-target] {
    width: 15px !important;
    height: 15px !important;
    border-radius: 100% !important;
    border: 1px solid var(--primaryGreen) !important;
    opacity: 1 !important;
}

.carousel-indicators .active {
    background-color: var(--primaryGreen) !important;
}

.carousel-item {
    text-align: center !important;
}

.carousel-indicators {
    margin-bottom: 0px !important;
}

.carousel-inner {
    padding-bottom: 50px;
}

@media (min-width: 1441px) {
    .information_container {
        max-width: 1440px;
        margin: auto;
    }
}

@media (max-width: 1000px) {
    .information_column:nth-child(n + 1):nth-child(-n + 2) {
        /* margin bottom on the first two cards  */
        margin-bottom: 20px;
    }
}

@media (min-width: 551px) {
    .information_desktop {
        display: unset;
    }

    .information_mobile {
        display: none;
    }
}

@media (max-width: 550px) {
    .information_desktop {
        display: none;
    }

    .information_mobile {
        display: unset;
    }

    #information {
        padding: 50px 15px;
    }

    .information_column:nth-child(n + 1):nth-child(-n + 3) {
        /* margin bottom on the first two cards  */
        margin-bottom: 40px;
    }
}
/* INFORMATION */

/* PLANS CSS */
#plans {
    width: 100%;
    height: 100%;
    padding: 70px 85px 90px;
    background-color: var(--background);
    display:block;
}
#plans_mobile {
    width: 100%;
    height: 100%;
    padding: 16px;
    background-color: var(--background);
    display: none;
}
@media (max-width:768px) {
    #plans {
        display:none;
    }
    #plans_mobile {
        display: block;
    }
}
.accordion_item_mobile {
    background-color: #F8F9FA;
}
.plans_mobile_container {
    margin: 10px 0px 50px;
}
.plans_mobile_card_title {
    font-family: "Roboto";
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    color: var(--primaryFont);
    text-align:center;
    margin:10px auto;
}
.plans_mobile_card_subtitle {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: var(--tableFont);
    margin-bottom:17px;
}
.plans_mobile_card_divisor {
    background-color: var(--tableDivisor);
    width:100%;
    margin:4px 0;
    height:1px;
}
.my_accordion_button {
    padding: 0px !important;
}
.my_accordion_button::after{
    position:absolute !important;
    top:20px;
    right:20px;
}
.plans_mobile_footer_money {
    text-align:right;
}
.plans_mobile_footer_money span:nth-child(2) {
    font-family: "Roboto";
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
}
.plans_mobile_footer_money span:nth-child(1) {
    font-family: "Roboto";
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
}
.my_accordion_button {
    border: none !important;
}
.accordion_mobile_item {
    padding:16px;
    width:100%;
    border-bottom:1px solid var(--tableDivisor);
    display:flex;
    justify-content:space-between;
    align-content:center;
}
.accordion_mobile_item span{
    font-family: "Roboto";
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: var(--tableFont);
}
.plans_container {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-end;
    overflow-x: auto;
    min-height: 750px;
}
@media (min-width:1400px) {
    .plans_container {
        overflow-x: unset;
    }
}
.plans_first_title {
    text-align: center;
    font-family: "Roboto";
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 37px;
    text-transform: uppercase;
    color: var(--primaryFont);
    margin-bottom: 100px;
}

.plans_col_title {
    font-family: "Roboto";
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    color: var(--primaryFont);
    text-align: center;
    background-color: var(--backgroundSecondary) !important;
    padding: 20px 80px !important;
    position: relative;
}

    .plans_col_title:nth-child(3),
    .plans_col_title:nth-child(5) {
        background-color: var(--tableBackground) !important;
    }
    .plans_col_title:nth-child(5) {
        border-top-right-radius: 10px !important;
        border-right: none !important;
    }
/*.plans_col_title:nth-child(3)::after,
        .plans_col_title:nth-child(5)::after {
            position: absolute;
            width: calc(100% + 4px);
            height: 40px;
            content: "Recomendado";
            font-family: "Roboto";
            font-style: normal;
            font-weight: normal;
            font-size: 18px;
            line-height: 21px;
            color: var(--primaryFont);
            background-color: #FFEA7C;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            top: -40px;
            left: -2px;
            padding: 10px 0;
        }*/
.plans_col_title:nth-child(2) {
    border-top-left-radius: 10px !important;
}

.plans_green_col {
    border-left: 2px solid var(--tableBackground);
    border-right: 2px solid var(--tableBackground);
}

.table td, .table th {
    border-top:none !important;
}

.plans_green_col_last_line {
    position: relative;
}

    .plans_green_col_last_line::after {
        position: absolute;
        content: "";
        width: calc(100% + 4px);
        bottom: -10px;
        left: -2px;
        height: 10px;
        border: 2px solid var(--tableBackground);
        border-top: none;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

.plans_first_col_first_line {
    border-top-left-radius: 10px;
    padding-top: 30px !important;
}

.plans_first_col {
    background-color: var(--backgroundSecondary) !important;
    padding: 16px 0 16px 15px !important;
    border-bottom: 1px solid var(--tableDivisor) !important;
    font-family: "Roboto";
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: var(--tableFont);
    max-width: 300px;
    min-width: 220px;
}

.plans_content_col {
    text-align: center;
    padding: 16px 0px !important;
    font-family: "Roboto";
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: var(--tableFont);
}

.plans_card_body_icon {
    color: var(--primaryGreen);
    font-size: 16px;
}
.table > :not(:last-child) > :last-child > * {
    border-bottom-color:white !important;
}
.plans_card_money_content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-left: -35px;
    margin-top: 50px;
    /* this margin is to compensate for "/ mes" */
}

    .plans_card_money_content div {
        font-family: "Roboto";
        font-style: normal;
        font-weight: bold;
        font-size: 55px;
        line-height: 64px;
        color: var(--primaryFont);
        position: relative;
    }

        .plans_card_money_content div::after {
            content: "/mês";
            position: absolute;
            bottom: 15px;
            left: 99%;
            font-family: "Roboto";
            font-style: normal;
            font-weight: normal;
            font-size: 16px;
            line-height: 19px;
            color: var(--primaryFont);
        }

        .plans_card_money_content div span {
            font-family: "Roboto";
            font-style: normal;
            font-weight: normal;
            font-size: 16px;
            line-height: 19px;
            color: var(--primaryFont);
        }

a.plans_card_button.btn-compre-plano {
    color: white;
    text-decoration: none;
}
.plans_card_button {
    padding: 17px 17px;
    font-family: "Roboto";
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 3px;
    background-color: var(--buttonBackground);
    color: var(--buttonFont);
    border: none;
    outline: 0;
}
.plans_card_button_green {
    background-color: #26CB7E !important;
}

@media (min-width: 1441px) {
    #plans {
        max-width: 1440px;
        margin: auto;
    }
}

@media (max-width: 1300px) {
    .more_info {
        padding-bottom: 26px;
    }

    #plans {
        padding: 70px 30px 90px;
    }
}

@media (max-width: 1200px) {
    .plans_card:nth-child(n + 1):nth-child(-n + 2) {
        margin-bottom: 25px;
    }
}

@media (max-width: 850px) {
    .plans_card {
        height: 730px;
    }

    .plans_first_title {
        font-size: 26px;
        line-height: 30px;
    }

    .plans_card_money_content {
        margin-top: 25px;
    }

        .plans_card_money_content div {
            font-size: 50px;
            line-height: 60px;
        }
}

@media (max-width: 570px) {
    #plans {
        padding: 70px 5px 90px;
    }
}
/* PLANS CSS */

/* PLANS MODAL CSS */

.plans_modal_header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 24px;
}

    .plans_modal_header span {
        font-family: "Roboto";
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 19px;
        color: var(--primaryFont);
        margin-right: 15px;
        cursor: pointer;
    }

    .plans_modal_header img {
        height: 14px;
        cursor: pointer;
    }

.plans_modal_body {
    padding: 24px;
    width: 100%;
}

.plans_modal_title {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #666666;
    margin-left: 20px;
}

.modal_form_container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.modal_form_item {
    display: flex;
    width: 100%;
    align-items: center;
}

.form-select:focus {
    border: 1px solid var(--inputBorder) !important;
    box-shadow: none !important;
}

.modal_form_item input,
select {
    font-family: "Roboto" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 16px !important;
    line-height: 19px !important;
    color: #666666 !important;
    padding: 16px !important;
    height: 50px;
    width: 400px;
    border: 1px solid var(--inputBorder) !important;
}

    .modal_form_item input:focus-visible {
        outline: 0 !important;
    }

.modal_form_item button {
    border: none;
    outline: 0;
    border-radius: 3px;
    background-color: var(--buttonBackground);
    color: var(--buttonFont);
    font-family: "Roboto";
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    padding: 16px 18px;
    margin-left: -10px;
    height: 52px;
    width: 190px;
}

.modal_form_validation {
    font-family: "Roboto";
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    margin-top: 5px;
    color: var(--primaryGreen);
    margin-left: 5px;
}

.modal_form_valid {
    color: var(--primaryGreen);
}

.modal_form_invalid {
    color: var(--buttonBackground);
}

.modal_subtotal {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

    .modal_subtotal span {
        font-family: "Roboto";
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 19px;
        color: #343434;
    }

.modal_total {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

    .modal_total span {
        font-family: "Roboto";
        font-style: normal;
        font-weight: normal;
        font-size: 24px;
        line-height: 28px;
        color: var(--primaryFont);
    }

.modal_price {
    margin: 0 35px 0 0;
}

    .modal_price span {
        font-family: "Roboto";
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 19px;
    }

    .modal_price div {
        font-size: 36px;
        line-height: 50px;
    }

        .modal_price div::after {
            bottom: 7px;
        }

.modal_button_content {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    align-items: center;
}

    .modal_button_content a {
        width: 100%;
        padding: 16px 0;
        border-radius: 3px;
        text-align: center;
        border: none;
        outline: 0;
    }

    .modal_button_content span {
        font-family: "Roboto";
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 19px;
        color: #343434;
    }

    .modal_button_content a:nth-child(1) {
        background-color: var(--buttonBackground);
        color: var(--buttonFont);
        margin-bottom: 6px;
        text-transform: uppercase;
        font-family: "Roboto";
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 19px;
    }

.modal_button_paypal {
    background-color: #26CB7E;
    margin-top: 6px;
}

@media (min-width: 769px) {
    .modal-dialog {
        max-width: 630px !important;
        width: 630px !important;
    }
}

@media (max-width: 768px) {
    .modal_form_item {
        flex-direction: column;
    }

    .modal_subtotal span {
        max-width: 60%;
    }

    .modal_form_item input {
        width: 100%;
        margin-bottom: 8px;
    }

    .modal_form_item button {
        width: 100%;
        margin-left: 0;
        margin-bottom: 16px;
    }

    .modal_subtotal .modal_price div {
        font-size: 16px;
        line-height: 19px !important;
        margin-left: 3px;
    }

        .modal_subtotal .modal_price div::after {
            bottom: 0;
            left: 102%;
        }
}
/* PLANS MODAL CSS */

/* QUESTIONS CSS */
#questions {
    width: 100%;
    height: 100%;
    padding: 70px 85px 90px;
    background-color: var(--backgroundSecondary);
}

.questions_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.questions_title {
    font-family: "Roboto";
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 37px;
    text-transform: uppercase;
    color: var(--primaryFont);
    margin-bottom: 100px;
}

.accordion-item {
    border: 1px solid var(--primaryGreen) !important;
    border-radius: 10px !important;
    /* padding: 5px !important; */
    margin-bottom: 18px !important;
}

    .accordion-item:focus {
        outline: 0 !important;
    }

.accordion-button::after {
    background-image: url(../assets/img/home_material/arrow_down.png) !important;
    background-size: 25px !important;
    background-position: center !important;
}

.accordion-button {
    font-family: "Roboto" !important;
    font-style: normal !important;
    font-weight: bold !important;
    font-size: 16px !important;
    line-height: 19px !important;
    color: var(--primaryFont) !important;
    background-color: #F8F9FA;
}

    .accordion-button:focus {
        box-shadow: unset !important;
    }

    .accordion-button:not(.collapsed) {
        background-color: #F8F9FA !important;
        box-shadow: unset !important;
        border-bottom: 1px solid var(--primaryGreen);
        border-bottom-left-radius: 0px !important;
        border-bottom-right-radius: 0px !important;
    }

.accordion-body {
    font-family: "Roboto" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 16px !important;
    line-height: 19px !important;
    color: var(--primaryFont) !important;
}

@media (min-width: 1441px) {
    .questions_container {
        max-width: 1440px;
        margin: auto;
    }
}

@media (max-width: 1000px) {
    #questions {
        padding: 50px 20px 60px;
    }

    .questions_title {
        width: 80%;
        text-align: center;
        margin: 0 auto 42px;
    }
}
/* QUESTIONS CSS */

/* FULL SCREEN VIDEO  */
#fullScreenVideo {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    background: black;
}

.full_screen_video_content {
    position: absolute;
    z-index: 10000;
    width: max-content;
    background: rgba(0, 0, 0, 0.45);
    padding: 10px 15px;
    border-radius: 5px;
    right: 10px;
    top: 10px;
    cursor: pointer;
    transition: all ease 1s;
}

#fullScreenVideo .plyr--video {
    background: none !important;
    overflow: hidden;
}

#fullScreenVideo .vjs-play-progress {
    background: #32a190 !important;
}

.video_content_icon_close {
    color: white;
    font-size: 42px;
}

@media (max-width: 767px) {
    .video_content_icon_close {
        font-size: 20px;
    }
}
/* FULL SCREEN VIDEO  */
