@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #4335A7;
    --blue2: #80C4E9;
    --blue3: #0d3e63;
    --whire: #FFF6E9;
    --orange: #F54E26;
    --bebas: "Bebas Neue", sans-serif;
    --roboto: "Roboto", sans-serif;
}

body {
    background-color: var(--blue3);
    padding-bottom: 100px;
    font-family: var(--roboto);
}

.chamada {
    text-align: center;
    padding: 50px 20px;
}

.btn-chamada {
    background: var(--orange);
    color: white;
    font-size: 2em;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 70px;
    font-family: var(--bebas);
}

section {
    padding: 50px 20px;
}

img {
    border-radius: 5px;
}

/* NAV */
nav {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    padding: 10px 20px;
    justify-content: space-between;
    background-color: var(--blue3);
    /* position: fixed; */
    width: 100%;
    top: 0;
}

.social {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
}

.social a {
    color: var(--orange);
}

.btn-nav {
    color: white;
    background-color: var(--orange);
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: 900;
    font-size: 1em;
    cursor: pointer;
}

nav h1 {
    color: var(--whire);
    font-family: var(--bebas);
    font-weight: 100;
}

/* GLOBAL */
header {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    padding: 80px 20px;
    background: url('../image/header_bg.jpg') no-repeat;
    background-position: right center;
    background-size: cover;
    min-height: 100vh;
    text-align: right;
}
header h1{
    font-size: 2em;
    color: white;
    font-family: var(--bebas);
    max-width: 250px;
    font-weight: 200;
    text-shadow: 2px 2px black;
}
/* Divisória */
.divisoria{
    background-color: var(--orange);
    height: 30px;
}
/* ESTRUTURA */
.estrutura {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.estrutura h2 {
    font-size: 2em;
    font-family: var(--bebas);
    color: var(--orange);
    text-shadow: 1px 1px black;
}

.estrutura p {
    color: var(--whire);
    text-shadow: 1px 1px black;
}

.estrutura-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    min-height: 100vh;
    flex-wrap: wrap;
}

.estrutura-img {
    max-width: 400px;
}

.estrutura img {
    width: 100%;
    box-shadow: -5px -5px var(--orange);
}

.estrutura-txt {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    gap: 30px;
    justify-content: center;
}

/* ESTRUTURA LISTAS */
.estrutura-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 1px 1px black;
}

.estrutura-list ul {
    max-width: 400px;
    list-style: none;
}

.estrutura-list span {
    color: var(--orange);
    font-size: 1.5em;
}

.estrutura-list h2 {
    margin-bottom: 30px;
}

.estrutura-list li {
    margin-bottom: 10px;
}

.estrutura-list img {
    width: 100%;
    box-shadow: 5px 5px var(--orange);
}

/* INFO */
.info {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info-txt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.info-card {
    max-width: 300px;
    height: 200px;
    padding: 30px;
    border-radius: 5px;
    border: 3px solid var(--orange);
    color: var(--whire);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Alunos */
.alunos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.alunos video {
    max-width: 400px;
    border-radius: 5px;
    box-shadow: 5px 5px var(--orange);
}

/* Loc */
.loc h2 {
    color: var(--orange);
    margin-bottom: 30px;
}