@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    color: white;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    display: flex;
    position: relative;
    background-color: rgb(15, 15, 15);
    font-family: 'Orbitron', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings:
        "cv11", "salt", "ss01", "ss03",
        "cv01", "cv02", "cv03", "cv04",
        "cv05", "cv06", "cv09", "cv10";
    overflow: hidden;
}

section {
    height: 100vh;
    max-height: 100vh;
    max-width: 100%;
    width: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    transform: scale(0);
    transition: filter 0.6s ease, transform 1.2s ease, opacity 0.5s ease;
}

button {
    cursor: pointer;
    transition: 0.5s;
}

a {
    text-decoration: none;
}

#fundo-loader {
    width: 100%;
    height: 100vh;
    background-color: rgb(15, 15, 15);
    position: fixed;
    top: 0;
    z-index: 9998;
}

#loader {
    height: 50px;
    width: 220px;
    background: rgb(15, 15, 15) url("http://localhost/simplifyweb.com.br/img/simplifyweb.png") center/cover no-repeat;
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.loading-animation {
    margin: auto;
    display: flex;
    justify-content: space-between;
    width: 80px;
    /* Ajuste conforme necessário */
    height: 50px;
    /* Ajuste conforme necessário */
    position: relative;
    transform: translateX(20px);
}

.ball {
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    /* Ajuste conforme necessário */
    height: 15px;
    /* Ajuste conforme necessário */
    border-radius: 50%;
    background-color: #bdbdbd;
    /* Cor da bola */
    opacity: 0;
    animation: moveRight 2s infinite linear;
}

@keyframes moveRight {
    0% {
        opacity: 0;
        transform: translateX(-80px);
    }

    25% {
        opacity: 0.7;
        transform: translateX(-60px);
    }

    50% {
        opacity: 1;
        transform: translateX(0);
    }

    75% {
        opacity: 0.7;
        transform: translateX(60px);
    }

    100% {
        opacity: 0;
        transform: translateX(80px);
    }
}

.ball1 {
    animation-delay: 0s;
    /* Tempo de atraso para a primeira bola */
}

.ball2 {
    animation-delay: 0.67s;
    /* Tempo de atraso para a segunda bola */
}

.ball3 {
    animation-delay: 1.33s;
    /* Tempo de atraso para a terceira bola */
}

.logo {
    position: absolute;
    border: none;
    top: 40px;
    left: 50px;
    background-color: transparent;
    padding: 7px 13px;
    z-index: 9997;
    color: white;
    font-family: 'Orbitron', sans-serif;
    transition: filter 1s ease, transform 0.8s ease;
}

.logo h1 {
    font-size: 22px;
    display: flex;
    align-items: baseline;
}

nav {
    margin-left: 10px;
    position: absolute;
    top: 170px;
    left: 60px;
    z-index: 9997;
    transition: filter 0.6s ease;
}

nav ul {
    list-style: none;
    padding: 0;
    color: white;
}

nav ul div {
    display: flex;
    align-items: center;
}

nav li {
    width: 10px;
    height: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 12px 0;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

nav li.clicked {
    background-color: white;
}

nav p {
    margin: 1px 0 0 15px;
    font-size: 13px;
    transition: 0.4s ease-in-out;
    opacity: 0.2;
    cursor: pointer;
    letter-spacing: 0.08em;
}

nav p:hover {
    opacity: 1;
}

nav p.clicked {
    opacity: 1;
}

.animation-container {
    position: absolute;
    left: 60px;
    margin-left: 25px;
    bottom: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 80px;
    z-index: 9996;
    transition: filter 0.6s ease;
}

.scroll-indicator {
    position: relative;
    width: 100%;
    height: 100%;
}

.scroll-icon-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.scroll-icon {
    width: 24px;
    height: 40px;
    position: relative;
    cursor: pointer;
}

.outer-border {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 1px solid #cccccc;
    box-sizing: border-box;
}

.inner-scroll {
    width: 0;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    border: 2px solid #cccccc;
    box-sizing: border-box;
    animation: scrollAnimation 1.5s infinite linear;
}

@keyframes scrollAnimation {
    0% {
        opacity: 1;
        transform: translate(-50%, -120%);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -45%);
    }

    100% {
        opacity: 0.1;
        transform: translate(-50%, 30%);
    }
}

.language-translator {
    position: relative;
}

.language-translator .op-language {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
}

.language-translator:hover .op-language {
    display: block;
}

.language-translator .op-language a {
    display: block;
}

.language-translator .op-language button {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 3px;
    background-color: rgba(41, 41, 41, 0.5);
    border: none;
    transition: all 0.8s ease;
}

.language-translator .op-language button:hover {
    background-color: rgba(80, 80, 80, 0.5);
}

.op-language img {
    min-width: 30px;
    max-width: 40px;
    height: auto;
}

.toggle-menu,
.close-menu,
.language-translator {
    position: absolute;
    padding: 10px;
    font-size: 25px;
    border: none;
    background-color: transparent;
    color: white;
    z-index: 9997;
    transition: filter 1s ease, transform 0.8s ease;
}

.toggle-menu {
    top: 40px;
    right: 40px;
}

.close-menu {
    font-size: 35px;
    top: 30px;
    right: 40px;
    padding: 0;
}

.close {
    position: relative;
    width: fit-content;
    cursor: pointer;
}

.close-ring {
    transform: rotate(-90deg);
    position: relative;
}

.close-ring__circle {
    stroke-dasharray: 188.496;
    /* Circunferência do círculo completo (2 * π * raio) */
    stroke-dashoffset: 188.496;
    transition: stroke-dashoffset 0.6s;
    /* Ajuste o tempo da animação para 5 segundos */
}

.x {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -80%);
}

.toggle-menu svg {
    width: 38px;
    /* Defina a largura desejada */
    height: 16px;
    /* Defina a altura desejada */
}

.menu {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 9997;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 2s ease;
}

.menu ul {
    list-style: none;
    opacity: 0;
}

.menu ul li {
    font-family: 'Manrope', sans-serif;
    color: white;
    font-size: 50px;
    margin-bottom: 15px;
    font-weight: 900;
    cursor: pointer;
}

.menu ul li:hover {
    color: rgb(42, 217, 223);
}

.language-translator {
    top: 120px;
    right: 45px;
}

.language-translator img {
    height: 28px;
}

.logo:hover,
.toggle-menu:hover,
.language-translator:hover {
    transform: scale(0.9);
}

main {
    margin: 0 30px 0 60px;
    flex: 1;
    position: relative;
    display: flex;
}

.apresentacao-principal,
.section-box {
    margin: auto;
    position: relative;
}

.section-box {
    margin-top: 9vh;
    margin-bottom: 15vh;
    height: 76vh;
    width: 60%;
    transform: translateX(60px);
}

.section-box.contato {
    width: 65%;
}

.section-content {
    margin-top: 40px;
}

.apresentacao-principal {
    margin-top: 25vh;
    height: 75vh;
    width: 75%;
    user-select: none;
}

.cargo {
    color: black;
    margin-left: 10%;
    margin-top: 40px;
    font-size: 17px;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.1em;
}

.apresentacao-principal img {
    position: absolute;
    bottom: 7vh;
    right: 40px;
    height: 90vh;
    min-height: 400px;
    user-select: none;
    transition: transform 1.5s ease-out;
}

.apresentacao-principal h1 {
    font-family: 'Manrope', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.2em;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    left: 10%;
    z-index: 998;
}

.contato-submit-box {
    padding: 10px;
    height: fit-content;
    position: absolute;
    left: 10%;
    bottom: 70px;
}

.contato-submit {
    border: none;
    background-color: transparent;
    position: relative;
    color: black;
    font-family: 'Orbitron', sans-serif;
    padding-bottom: 10px;
    font-size: 14px;
}

.contato-submit::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 1px;
    background-color: black;
    transition: width 0.5s ease;
}

.contato-submit:hover::before {
    width: 100%;
    /* Largura que a linha se estenderá */
}

.descricao {
    position: absolute;
    display: flex;
    bottom: 0;
    right: -60px;
    width: 60%;
    height: fit-content;
    padding: 30px 40px;
    background-color: rgb(15, 15, 15);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.descricao p {
    font-family: 'Hind', sans-serif;
    color: rgb(220, 220, 220);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6em;
    margin: 0;
}

.section-title {
    color: rgb(42, 217, 223);
    height: fit-content;
}

#sobre .texto, #servico-popup .texto {
    font-size: 22px;
    line-height: 1.6em;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
}

#sobre .parceiros {
    margin-top: 80px;
}

#sobre .parceiros ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#sobre .parceiros ul li {
    display: inline-block;
    filter: grayscale(1);
    transition: filter 0.8s ease;
}

#sobre .parceiros ul li:hover {
    filter: grayscale(0);
}

#sobre .parceiros ul li img {
    height: 70px;
    width: auto;
}

#palazzo img {
    height: 100px !important;
    filter: saturate(220%);
}

#ultimate img {
    height: 90px !important;
}

#vip img {
    height: 50px !important;
}

.saiba-mais-box {
    position: fixed;
    bottom: 0;
    margin-left: 60px;
    margin-right: 30px;
    height: 100px;
    width: calc(100% - 90px);
}

.saiba-mais {
    width: 60%;
    transform: translateX(60px);
    margin: auto;
    display: flex;
    justify-content: center;
    transition: all 1.5s ease;
    opacity: 1;
}

.saiba-mais span {
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    background-color: transparent;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.18em;
    user-select: none;
}

.saiba-mais.fade {
    opacity: 0;
}

.menu-sobre {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 120px;
    backdrop-filter: blur(2px);
    z-index: 9998;
    transition: height 0.5s ease, transform 1.5s ease;
    transform: translateY(135px);
}

.menu-sobre.visivel {
    transform: translateY(0);
}

.opcoes {
    width: 60%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 60px), -50%);
}

.opcoes li {
    list-style: none;
    font-family: 'Hind', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    flex: 1;
    cursor: pointer;
    transition: all 0.8s ease;
    position: relative;
}

.opcoes li:hover {
    color: rgb(42, 217, 223);
}

.opcoes li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1px;
    /* Posicionamento da linha em relação ao li */
    transform: translateY(-50%);
    height: 50%;
    /* Altura da linha */
    width: 1px;
    /* Largura da linha */
    background-color: rgba(224, 224, 224, 0.1);
    /* Cor da linha */
}

#portfolio {
    height: calc(100vh - 20px);
    width: calc(100% - 10px);
    padding: 10px;
    padding-right: 0;
    overflow: hidden;
}

.portfolio {
    flex: 1;
    height: 100%;
    background-color: rgb(40, 40, 40);
    margin-right: 10px;
    position: relative;
}

.portfolio:hover {
    cursor: none;
}

.portfolio-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
}

.portfolio:hover img {
    filter: grayscale(1);
}

.portfolio h1 {
    position: absolute;
    left: 0;
    bottom: 60px;
    z-index: 2;
    font-family: 'Hind', sans-serif;
    font-size: 40px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 1);
    transition: all 0.8s ease;
}

.portfolio:hover h1 {
    transform: translateY(-220px);
}

.custom-cursor {
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: rgb(42, 217, 223);
    /* Cor do círculo */
    border-radius: 50%;
    /* Torna o elemento um círculo */
    color: rgb(15, 15, 15);
    /* Cor do texto */
    text-align: center;
    line-height: 120px;
    /* Centraliza verticalmente o texto */
    font-size: 16px;
    /* Tamanho da fonte do texto */
    display: none;
    /* Oculta o círculo por padrão */
    z-index: 3;
}

.servico {
    margin-bottom: 40px;
    position: relative;
    display: flex;
    align-items: center;
    width: 90%;
}

.servico h1 {
    width: fit-content;
    flex: 0.7;
    font-size: 24px;
    user-select: none;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.servico.left h1 {
    padding-right: 50px;
    font-size: 30px;
}

.servico.last h1 {
    font-size: 28px;
}

.servico.right h1 {
    padding-left: 60px;
}

.video-servico {
    flex: 1;
    height: 120px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.video-servico video {
    filter: grayscale(0);
    /* Inicialmente, o vídeo é colorido */
    transition: filter 0.8s ease;
}

.servico:hover video {
    filter: grayscale(100%);
}

.video-servico span {
    position: absolute;
    right: 15px;
    bottom: 10px;
    font-size: 13px;
    text-shadow: rgba(0, 0, 0, 0.8) 0.08em 0.08em 0em;
}

.servico:hover span {
    color: rgb(1, 181, 187);
    font-weight: bold;
    text-shadow: rgba(0, 0, 0, 0.8) 0.08em 0.08em 0em;
}

.popup-servicos {
    display: none;
    position: absolute;
}

#servico-popup .texto {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}

#servico-popup .title {
    margin-bottom: 30px;
}

.accordion-1 {
    padding: 0;
    font-family: 'Manrope', sans-serif;
    margin-top: 10px;
}

.accordion-1 li {
    font-weight: bold;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-content: center;
    cursor: pointer;
    width: 100%;
    padding: 15px 0px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    letter-spacing: 0.02em;
}

.accordion-1 li p {
    margin: 0px;
    max-width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mark {
    display: block;
    width: 8px;
    height: 8px;
    background-color: rgb(1, 181, 187);
    margin-right: 15px;
}

.accordion-1 .trabalho {
    color: rgb(220, 220, 220);
}

.explicacao {
    color: rgb(140, 140, 140);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease;
}

.trabalho.ativo .explicacao {
    max-height: 600px;
    animation: fade 1s ease-in-out;
}

.explicacao p {
    margin: 10px 0;
    margin-bottom: 5px;
}

.trabalho.ativo svg {
    transform: rotate(180deg);
}

.accordion-1 svg {
    margin-top: 10px;
    fill: rgb(15, 15, 15);
    transition: transform 1s ease-in;
}

.accordion-1 {
    width: 800px;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

#contato h1 {
    position: absolute;
    top: 10vh;
    left: 0;
    font-family: 'Hind', sans-serif;
    font-size: 8vh;
}

#contato h3 {
    font-weight: normal;
    max-width: 600px;
    position: absolute;
    bottom: 200px;
    font-family: 'Hind', sans-serif;
    color: rgba(255, 255, 255, 0.3);
}

#contato hr {
    position: absolute;
    bottom: 140px;
    width: 100%;
    height: 0.5px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
}

.foto-box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 140px;
    right: 50px;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    transform: translateY(50%);
    overflow: hidden;
}

.foto-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contatos {
    display: flex;
    position: absolute;
    left: 0;
    bottom: 20px;
}

.contato-btn {
    height: 60px;
    width: 160px;
    border-radius: 30px;
    border: 1px solid rgb(42, 217, 223);
    font-family: 'Hind', sans-serif;
    background-color: rgb(42, 217, 223);
    font-size: 17px;
}

.contato-btn:hover {
    background-color: transparent;
    color: white;
}

.redes-sociais {
    margin-left: 100px;
    display: flex;
    align-items: center;
}

.redes-sociais li {
    display: inline-block;
    margin-right: 40px;
}

.redes-sociais li button {
    border: none;
    font-size: 17px;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.6);
}

.redes-sociais li button:hover {
    color: rgba(255, 255, 255, 0.9);
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9997;
    background-color: rgb(15, 15, 15);
    padding-top: 40px;
}

.close-popup {
    position: absolute;
    padding: 10px;
    z-index: 9999;
    font-size: 35px;
    top: 30px;
    right: 40px;
    padding: 0;
}

.formulario {
    width: 800px;
    margin: 0 auto;
}

.formulario h3 {
    font-size: 20px;
    padding: 0 15px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Manrope', sans-serif;
}


#contato-form form {
    width: 100%;
    margin: auto;
}

#contato-form form button {
    margin-left: 15px;
    color: white;
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    font-family: 'Hind', sans-serif;
    font-size: 18px;
    padding-bottom: 6px;
}

#contato-form form button svg {
    margin-right: 10px;
}

#contato-form form button:hover {
    border-bottom: 2px solid white;
}

.row {
    display: flex;
}

.col,
.message-box {
    padding: 0 15px;
    flex: 1;
    margin-bottom: 20px;
}

.message-box {
    margin-bottom: 40px;
}

.col label {
    color: rgb(42, 217, 223);
    font-size: 12px;
}

.col input,
.message-box textarea {
    margin-top: 10px;
    display: block;
    width: 100%;
    color: white;
    background-color: rgb(15, 15, 15);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
    transition: all 0.8s ease;
}

.col input::placeholder,
.message-box textarea::placeholder {
    font-size: 18px;
    color: white;
}

.col input:focus,
.message-box textarea:focus {
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    outline: none;
}

.whatsapp-button {
    position: fixed;
    bottom: 40px;
    left: 60px;
    height: 50px;
    width: 18px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    display: flex;
    align-items: center;
    object-fit: cover;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 9997;
    transition: width 0.3s ease, background-color 0.3s ease;
    padding: 0 16px;
}

.whatsapp-button i {
    font-size: 20px;
    transform: translateY(-1px);
    color: white;
}

.whatsapp-button span {
    transform: translateY(1px);
    margin: 0;
    width: 0;
    opacity: 0;
    font-family: 'Hind', sans-serif;
    color: white;
    transition: width 0.3s ease, opacity 0.15s ease 0.3s, padding-left 0.3s ease;
}

.whatsapp-button:hover span {
    width: 65px;
    padding-left: 10px;
    opacity: 1;
}

.whatsapp-button:hover {
    width: 90px;
    background-color: rgba(51, 51, 51, 0.8);
}

.whatsapp-button:not(:hover) span {
    transition: width 0.3s ease 0.15s, opacity 0.15s ease 0s, padding-left 0.3s ease 0.15s;
}

.whatsapp-button:not(:hover) {
    transition: width 0.3s ease 0.15s;
}

@media(max-width: 1024px) {
    .apresentacao-principal img {
        right: 0;
    }

    .apresentacao-principal h1 {
        font-size: 40px;
    }
}

@media(max-width: 1100px) {

    .logo,
    nav,
    .animation-container {
        left: 30px;
    }

    .toggle-menu,
    .close-menu,
    .language-translator {
        right: 30px;
    }

    .descricao p {
        font-size: 10px;
    }
}

@media(max-width: 900px) {

    nav p {
        font-size: 10px;
    }

    .animation-container {
        display: none !important;
    }

    .logo,
    nav,
    .animation-container {
        left: 30px;
    }

    .toggle-menu,
    .close-menu,
    .language-translator {
        right: 30px;
    }

    .descricao p {
        font-size: 9px;
    }
}

@media(max-width: 720px) {

    .cargo {
        font-size: 10px;
    }

    .apresentacao-principal h1 {
        font-size: 35px;
    }

    .apresentacao-principal img {
        right: -60px;
    }

    .contato-submit {
        font-size: 11px;
    }

    .descricao p {
        font-size: 9px;
    }
}

@media(min-height: 750px) {
    nav {
        top: 200px;
    }

    .animation-container {
        top: 540px;
    }
}

@media(min-height: 900px) {
    nav {
        top: 250px;
    }

    .animation-container {
        top: 690px;
    }
}

@media(max-height: 500px) {

    .menu ul li {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .animation-container {
        display: none !important;
    }

    .logo,
    .toggle-menu,
    .close-menu {
        top: 20px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .toggle-menu svg {
        width: 28px;
        height: 12px;
    }

    nav {
        top: 100px;
    }

    .apresentacao-principal h1 {
        font-size: 35px;
        top: 45%;
    }

    .cargo {
        font-size: 11px;
    }

    .contato-submit-box {
        left: 9%;
        bottom: 35px;
    }

    .descricao {
        padding: 18px 30px;
    }

    .contato-submit {
        font-size: 11px;
    }
}

@media(max-height: 390px) {

    .language-translator {
        top: 80px;
    }

    nav li {
        margin: 8px 0;
        width: 6px;
        height: 6px;
    }

    .apresentacao-principal img {
        min-height: 300px;
    }

    .apresentacao-principal h1 {
        font-size: 26px;
        top: 45%;
    }

    .cargo {
        font-size: 9px;
    }

    .contato-submit-box {
        left: 9%;
        bottom: 20px;
    }

    .contato-submit {
        font-size: 9px;
    }
}

@media(max-height: 320px) {
    nav {
        top: 70px;
    }

    nav li {
        height: 6px;
        width: 6px;
    }

    .apresentacao-principal img {
        min-height: 200px;
    }

    .apresentacao-principal {
        margin-top: 28vh;
        height: 72vh;
    }

    .cargo {
        margin-top: 20px;
    }

}

@media(max-height: 280px) {

    nav p {
        font-size: 9px;
    }

    .apresentacao-principal h1 {
        font-size: 24px;
    }

    .apresentacao-principal img {
        right: 15px;
    }

    .descricao p {
        font-size: 7px;
    }
}

.ativo {
    opacity: 1 !important;
}

.blur {
    filter: blur(15px);
}

.hidden {
    display: none;
    background-color: transparent;
}