/*********************************
* ************* BOOT *************
******************************** */
* {
    font-family: 'Montserrat', sans-serif;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow: clip) {
    html, body { 
        overflow-x: hidden;
    }
}

body {
    position: relative; 
    background: #FFFFFF !important;
}

* { 
    box-sizing: border-box; 
}

img, video { 
    max-width: 100%; 
    height: auto; 
}

@font-face {
  font-family: 'Benton';
  src: url('../fonts/benton-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Benton';
  src: url('../fonts/benton-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

h1, h2 {
  font-family: 'Benton', serif;
  font-weight: 300;
}

/*********************************
* ******** REUTILIZÁVEIS *********
******************************** */
/* Buttons */
.btn {
    display: inline-block;
    border: none;
    text-decoration: none;
    font-size: var(--textSize15);
    color: var(--colorWhite);
    background: #666;
    border-radius: var(--borderRadius);
    padding: 0 30px;
    height: 50px;
    line-height: 50px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    border-radius: 50px;
}

.btn:hover {
    background: var(--colorPrimaryDark);
}

.btn-default {
    background: var(--colorPrimary);
    color: var(--colorSecondary);
}

.btn-default:hover {
    background: var(--colorPrimaryDark);
}

/* Title */
.title-section-h1 {
    font-size: var(--textSize78);
    line-height: 74px;
    width: 100%;
}

/* Padding Container */
.padding_container {
    padding: 100px 0;
}

/*********************************
* *********** HEADER *************
******************************** */
.header { 
    background: var(--colorPrimary);
}

.header .container {
    align-items: center; 
    justify-content: space-between;
}

.header_logo img {
    height: 60px;
}

.header_menu {
    display: flex; 
    align-items: center;
    gap: 50px; 
    list-style: none; 
    margin: 0; 
    padding: 0;
}

.header_item {
    position: relative;
    padding: 30px 0;
}

.header_link { 
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    text-transform: uppercase; 
    font-size: var(--textSize15);
    display: inline-block;
    padding: 12px 0;
}

.header_link:hover {
    color: var(--colorSecondary);
}

.header_cta {
    background: transparent; 
    border: 2px solid var(--colorSecondary);
    color: var(--colorSecondary);
    padding: 10px 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    font-size: var(--textSize15);
}

.header_submenu{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    background: var(--colorPrimary);
    padding: 8px;
    display: none;
    z-index: 9999;
    text-align: center;
}

.header_item:hover > .header_submenu {
    display: block;
}

.header_submenu li {
    width: 100%;
    list-style: none;
}

.header_submenu_link {
    display: block;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    font-size: var(--textSize15);
}

.header_submenu_link:hover {
    color: #fff; 
}

.header_toggle {
    cursor: pointer;
    display: none;
}

.header_toggle img{
    height: 20px;
}

.header_nav_close {
    display: none;
    cursor: pointer;
}

/*********************************
* *********** CONTENT *************
******************************** */
/* Banner Hero */
.banner {
    width: 100%;
    height: calc(100vh - 100px);
    background: url('../images/bg-hero.jpg') center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    /* position: sticky; */
    /* top: 0; */
}

.banner_content{
    text-align: center;
    justify-content: center;
}

.banner_content h1{
    font-size: var(--textSize90);
    line-height: 80px;
    color: var(--colorWhite);
}

/* About */
.about{
    position: relative;
    background: #FFFFFF;
}

.about_content{
    gap: 140px;
}

.about_header{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    gap: 60px;
}

.about_header h1{
    color: var(--colorPrimary);
}

.about_header span {
    font-size: var(--textSize28);
    color: var(--colorPrimary);
}

.about_wrapper{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.about_wrapper img{
    width: calc(50% - 70px);
}

.about_wrapper .about_result{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}

.about_wrapper .about_result h2{
    font-size: var(--textSize68);
    line-height: 66px;
    color: var(--colorPrimary);
}

.about_wrapper .result_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.about_wrapper .result_item {
    width: calc(33.33% - 40px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    text-align: center;
    gap: 20px;
    align-content: start;
}

.about_wrapper .result_item img{
    width: 76px;
}

.about_wrapper .result_item h3{
    font-weight: 400;
    color: var(--colorPrimary);
}

/* Results */
.results{
    position: relative;
    background: #FFFFFF;
}

.results_content {
    justify-content: space-between;
}

.results_item{
    width: calc(33.33% - 40px);
    text-align: center;
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

.results_item h3{
    font-weight: 400;
    color: var(--colorPrimary);
    font-size: var(--textSize22);
}

/* Methods */
.methods{
    position: relative;
    background: #FFFFFF;
}

.methods_content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.methods_header{
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.methods_header h1{
    color: var(--colorPrimary);
}

.methods_header span {
    font-size: var(--textSize28);
    color: var(--colorPrimary);
}

.method_buttons{
    width: 34%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.method_button{
    width: 100%;
    padding: 26px 30px;
    border: 1px solid var(--colorPrimary);
    color: var(--colorPrimary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--textSize24);
    text-decoration: none;
    transition: 0.3s;
}

.method_button img{
    height: 20px;
}

.method_button:hover{
    background: var(--colorPrimary);
    color: #fff;
}

.method_button_icon_white {
    display: none;
}

.method_button:hover .method_button_icon {
    display: none;
}

.method_button:hover .method_button_icon_white {
    display: inline-block;
}

/* Video */
.video{
    padding-bottom: 80px !important;
    background: #FFFFFF !important;
    position: relative;
}

.video_content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF !important;
}

.video_icon_play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* Reviews */
.reviews{
    background: #ebebeb;
    position: relative;
}

.reviews_content{
    gap: 170px;
}

.reviews_header {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.reviews_header h1{
    color: var(--colorPrimary);
}

.reviews_wrapper{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reviews_item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews_item .review_card {
    background: #fff;
    border-radius: 25px;
    position: relative;
}

.reviews_item .review_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 10px;
}

.reviews_item .review_avatar img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: -100px;
    border: 8px solid #FFFFFF;
}

.reviews_item .review_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 15px;
}

.reviews_item .review_name {
    font-size: var(--textSize28);
    color: var(--colorPrimary);
    font-weight: 500;
}

.reviews_item .review_stars {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.reviews_item .review_stars img{
    height: 28px;
}

.reviews_item .review_date {
    font-size: var(--textSize18);
    color: #232323;
}

.reviews_item .review_logo img {
    width: 34px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.reviews_item .review_text {
    font-size: var(--textSize18);
    color: var(--colorPrimary);
    text-align: center;
    padding: 30px;
}

/* Network */
.networks{
    position: relative;
    background: #FFFFFF;
    width: 100%;
}

.networks_content {
    gap: 90px;
}

.networks_header{
    width: 100%;
    text-align: center;
}

.networks_wrapper{
    width: 100%;
}

/* Schedule */
.schedule {
    position: relative; 
    background: url('../images/bg-copy.jpg') no-repeat top right;
    background-size: cover;
    width: 100%;
    overflow: hidden;
}

.schedule_content{
    padding: 300px 0;
}

.schedule_text{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.schedule_text h1{
    color: #FFFFFF;
}

.schedule_button {
    padding: 18px 26px;
    border: 1px solid var(--colorWhite);
    color: var(--colorWhite);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--textSize20);
    text-decoration: none;
    gap: 30px;
}

.schedule_button img{
    height: 20px;
}

.schedule_button:hover{
    background: #FFFFFF;
    color: var(--colorPrimary);
}

.schedule_button_icon_color {
    display: none;
}

.schedule_button:hover .schedule_button_icon {
    display: none;
}

.schedule_button:hover .schedule_button_icon_color {
    display: inline-block;
}

/* Footer */
.footer {
    background: var(--colorPrimary);
    padding: 100px 0;
}

.footer_content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
}

.footer_item{
    width: calc(28.33% - 80px);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer_item:last-child{
    width: 15%;
}

.footer_item_text{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 8px;
}

.footer_item_text span{
    font-size: var(--textSize18);
    color: #FFFFFF;
    line-height: 20px;
    font-weight: 300;
}

.footer_item_text b{
    font-weight: 500;
}

.footer_item_text_title{
    text-transform: uppercase;
    color: #c7c7c7 !important;
    font-weight: 300;
}

.footer_item_networks{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.footer_item_network{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--colorWhite);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_item_network img{
    height: 20px;
}

/*********************************
* ******** MEDIA QUERIES *********
******************************** */
/* Media Queries */
/* 1200 */
@media (max-width: 1200px) {
    /* Header */
    .header_content {
        padding: 20px 0;
    }

    .header_nav {
        width: 100%;
        height: 100vh;
        position: fixed;
        background: var(--colorPrimary);
        right: -100%;
        top: 0;
        z-index: 999;
    }

    .header_menu {
        margin: auto;
        width: 600px;
        max-width: 90%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .header_item{
        width: 100%;
        padding: 0;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header_submenu{
        width: 100%;
        position: relative;
    }

    .header_nav_close {
        display: block;
        position: absolute;
        right: 40px;
        top: 40px;
        stroke: #fff;
    }

    .header_toggle {
        display: block;
    }
}

/* 991 */
@media (max-width: 991px) {
    /* Padding container */
    .padding_container{
        padding: 100px 0;
    }

    /* Title */
    .title-section-h1{
        font-size: var(--textSize68);
        line-height: 62px;
    }

    /* About */
    .about_content {
        gap: 100px;
    }

    .about_header{
        gap: 40px;
    }

    .about_header span{
        font-size: var(--textSize24);
    }
    
    .about_wrapper{
        gap: 50px;
    }

    .about_wrapper img,
    .about_wrapper .about_result {
        width: 100%;
    }

    .about_image{
        height: 700px;
        object-fit: cover;
        object-position: top;
    }

    .about_wrapper .about_result h2{
        text-align: center;
    }

    /* Result */
    .results_content{
        gap: 50px;
    }

    .results_item{
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    /* Methods */
    .methods_content {
        gap: 50px;
    }

    .methods_header{
        width: 100%;
        text-align: center;
    }

    .method_buttons{
        width: 100%;
    }

    /* Video */
    .video_icon_play{
        height: 70px;
    }

    /* Review */
    .reviews_wrapper {
        grid-template-columns: 1fr;
        gap: 150px;
    }

    /* Schedule */
    .schedule::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    .schedule_content{
        position: relative;
        z-index: 2;
        padding: 200px 0;
    }

    .schedule_text{
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Footer */
    .footer{
        padding: 70px 0;
    }

    .footer_content{
        gap: 50px;
    }

    .footer_item,
    .footer_item:last-child{
        width: 100%;
    }

    .footer_item{
        justify-content: center;
    }

    .footer_item_text{
        text-align: center;
    }

    .footer_item_networks{
        justify-content: center;
    }
}

/* 560 */
@media(max-width: 560px){
    /* Banner hero */
    .banner_content h1{
        font-size: var(--textSize78);
        line-height: 70px;
    }

    /* Padding container */
    .padding_container{
        padding: 60px 0;
    }

    /* Title */
    .title-section-h1{
        font-size: var(--textSize54);
        line-height: 50px;
    }

    /* About */
    .about_content {
        gap: 50px;
    }

    .about_header{
        gap: 26px;
    }

    .about_header span{
        font-size: var(--textSize20);
        line-height: 22px;
    }

    .about_image{
        height: 500px;
    }

    .about_wrapper .about_result h2{
        font-size: var(--textSize50);
        line-height: 48px;
    }

    .about_wrapper .result_item{
        width: 100%;
    }

    /* Methods */
    .methods_content {
        gap: 40px;
    }

    .methods_header span {
        font-size: var(--textSize20);
        line-height: 24px;
    }

    .method_button{
        padding: 20px 30px;
    }

    /* Video */
    .video{
        padding-bottom: 60px;
    }

    /* Reviews */
    .reviews_content {
        gap: 90px;
    }

    .reviews_wrapper{
        gap: 80px;
    }

    .reviews_item .review_avatar img{
        width: 150px;
        height: 150px;
        margin-top: -50px;
    }

    .reviews_item .review_info{
        gap: 10px;
    }

    .reviews_item .review_name{
        font-size: var(--textSize22);
    }

    .reviews_item .review_stars img{
        height: 22px;
    }

    .reviews_item .review_header{
        margin-bottom: 0;
    }

    .reviews_item .review_text{
        padding: 24px;
    }

    /* Networks */
    .networks_content {
        gap: 50px;
    }

    /* Schedule */
    .schedule {
        background-position: 85% 50%;
    }

    .schedule_content{
        padding: 150px 0;
    }

    /* Footer */
    .footer{
        padding: 50px 0;
    }
    
    .footer_content{
        gap: 30px;
    }
}


.video-container {
      position: relative;
      padding-bottom: 56.25%; /* proporção 16:9 */
      height: 0;
      overflow: hidden;
      max-width: 100%;
      background: #000;
      border-radius: 12px;
    }

    /* Iframe ocupa toda a área do container */
    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }