@charset "UTF-8";
:root {
    --primary-color:#612674;
    --defaut-gap: 1rem;
}

html {
    font-family: sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Oxygen', sans-serif;
}

/*.max_width{
    max-width: 70.25em;
}*/

@media screen and (max-width: 48.75em) {

.container_header {
    text-align: center;
}

.top_header_nav {
    background-color: var(--primary-color);
}

.top_header_nav ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 0;
}

.top_header_nav li{
    padding: 0;
}

.top_header_nav a{
    color: white;
    text-decoration: none;
    display: block;
    padding: 1em;

}

.top_header_nav a:hover {
    background-color: color-mix(in srgb, var(--primary-color), white 10%)
}
}
@media screen and (min-width: 48.75em){

    .max_width {
        margin: auto;
    }
    .container_header {
        display: flex;
        justify-content: space-between;

    }
    
    .top_header_logo {
        margin-left: 1.5em;
    }

    .top_header_nav {
        background-color: initial;
        
    }

    .top_header_nav li {
        display: inline-block;
        padding: 0;
    }

    .top_header_nav a{
        color: var(--primary-color);
        text-decoration: none;
        padding: 1em;
        
    }

    .top_header_nav a:hover {
        background-color: color-mix(in srgb, var(--primary-color), white 60%)
    }
}

.heroBanner {
    text-align: center;
    background-color: #f6f6f6;
    padding: 1em;
    
}

.heroBanner_iconplay {
    height: 5em;
    width: 5em;
    display: none;
    
}

.heroBanner_iconplay img {
    width: 100%;
}

.heroBanner_title{
    color: var(--primary-color);
    font-size: 1.5em;
    margin: 1.5em 0;
}

.heroBanner_subtitle {
    font-size: 1em;
    color: color-mix(in srgb, var(--primary-color) , white 30%);
    line-height: 1.5;
}

.heroBanner_btn {
    display: inline-block;
    padding: .9em 2em;
    background-color: #58c4c4;
    text-decoration: none;
    color: white;
    border-radius: 5px;
}

@media screen and (min-width: 48.75em) {
    .heroBanner {
        background-color: var(--primary-color);
        color: white;
    }

    .heroBanner_title, .heroBanner_subtitle {
        color: white;
    }

    .heroBanner_iconplay {
        display: block;
        margin: auto;
    }
}

@media screen and (min-width:56.25em) {

    .heroBanner {
        background-image: url(images/bg_topo_1198x670.jpg);
        aspect-ratio: 1198 / 670;
        display: flex;
        justify-content: center;
        align-items: flex-end;


    }

    .heroBanner .max_width {
        margin: initial;
        margin-bottom: 4em;
        width: 75%;
    }
    
}

@media screen and (min-width:74em) {
    .heroBanner {
        background-image: url(images/bg_topo_1600x1374.jpg);
        background-blend-mode: soft-light;
        background-position: center top;
        background-color: var(--primary-color);
        background-repeat: no-repeat;

        max-height: 80vh;
        width: 100%;

        
    }

    .heroBanner .max_width {
        width: 50%;
    }
    
    .heroBanner_iconplay {
        width: 7em;
        height: 7em;
    }

    .heroBanner_title, 
    .heroBanner_subtitle {
        text-shadow: 4px 4px 2px rgb(0, 0, 0 / .8);
    }
}

.middleContent {
    background-color: #f6f6f6;
    text-align: center;
    padding: 2em;
}

.middleContent a{
    text-decoration: none;
    color: inherit;
}

.middleContent_title {
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: 1.25em;
}

.middleContent span[class^="icon-"] {
    color: var(--primary-color);
    font-size: 3.5em;
    
}

.middleContent p {
    line-height: 1.5;
}

/* 
min-width: 0 -> col-sn
min-width: 48.75em -> col-md
min-width: 56.25em -> col-lg
min-width: 74em -> col-xl
*/

.row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--defaut-gap);
}

.col {
    flex: 1 0 auto;
    width: 100%;
}

.col-sm-12{
    width: 100%;
}

@media screen and (min-width: 48.75em) { 
  
    .col-md-6 {
        width: calc(50% - var(--defaut-gap));
    }

}

@media screen and (min-width: 74em) {
    .col-xl-3 {
        width: calc(25% - var(--defaut-gap));
    }

    .col-xl-6 {
        width: calc(50% - var(--defaut-gap));
    }
}

.mainContent {
    padding: 2em;
}

.mainContent p{
    line-height: 1.2em;
}

.mainContent_title {
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: none;
    letter-spacing: .2em;
    font-size: 1.25em;
}

.mainContent_img img {
    width: 100%;
}

.mainContent .row {
    row-gap: 4em;
}

footer {
    text-align: center;
    color: #83969f;
    background-color: #25303e;
    padding: 2em;
}
