body {
    width: 100vw;
    height: auto;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.all-content-post-on-hidden {
    height: 100vh;
    overflow: hidden;
}

/*------------------------------------------------ PreLoader ------------------------------------------------*/

/* Estilos do Preloader */
#preloader {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: url("imagens/Configs/noise.png"), radial-gradient(circle at right center, #4b296980, #563277, #4a378c 50%, #4a378c 70%, #32517380);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at center center, #000 20%, #00000080 50%, #0000);
    mask-image: radial-gradient(ellipse 80% 50% at center center, #000 20%, #00000080 50%, #0000);
    width: 100%;
    height: 100vh;
    color: #fff;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Animação de Entrada */
@keyframes PreloadmoveIn {
    0% {
        transform: translateY(-40%); /* A imagem começa acima da tela */
        opacity: 0;
    }
    100% {
        transform: translateY(0); /* A imagem permanece no centro */
        opacity: 1;
    }
}

/* Animação de Flutuação */
@keyframes float {
    0% {
        transform: translateY(0); /* Posição inicial */
    }
    50% {
        transform: translateY(-10px); /* Flutua para cima */
    }
    100% {
        transform: translateY(0); /* Volta para a posição original */
    }
}

/* Animação de Saída */
@keyframes moveOut {
    0% {
        transform: translateY(0); /* A imagem está na posição central */
        opacity: 1;
    }
    100% {
        transform: translateY(-40%); /* A imagem sobe para fora da tela */
        opacity: 0;
    }
}

/* Animações no Preloader */
#preloader img {
    width: 120px;
    animation: PreloadmoveIn 1s forwards ease-in-out, float 2s ease-in-out infinite; /* Entrada e flutuação */
}

#preloader img::selection {
    background-color: transparent;
}

/* Animação do texto */
#preloader span {
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    opacity: 0;
    animation: PreloadmoveIn 1s forwards ease-in-out, float 2s ease-in-out infinite; /* Entrada e flutuação */
    cursor: default;
}

#preloader span::selection {
    background-color: transparent;
}

/*------------------------------------------------ Post On Box ------------------------------------------------*/

@keyframes main-post-opening-animation {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes sub-post-opening-animation {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(0.8);
        opacity: 0,5;
    }
}

@keyframes post-on-opening-animation {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes main-post-closing-animation {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(0);
        opacity: 0;
    }
}

@keyframes sub-post-closing-animation {
    from {
        transform: scale(0.8);
        opacity: 0.5;
    }

    to {
        transform: scale(0);
        opacity: 0;
    }
}

@keyframes post-on-closing-animation {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

#post-on {
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(10px);
    background: #0f0f0fcc;
    position: fixed;
    z-index: 10000000;
    align-items: center;
    justify-content: center;

    display: none;
    opacity: 0;
}

.post-on-box {
    background: url("imagens/Configs/noise.png"), radial-gradient(circle at right center, #fff, #ddd, #eee 50%, #eee 70%, #fff);
    border-radius: 20px;
    aspect-ratio: 9 / 16;
    max-height: 90%; /* Limita a altura da caixa */
    height: 90%;
    padding: 40px;
    overflow: auto; /* Ativa a rolagem quando o conteúdo ultrapassar a altura */
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2),  
    0px 6px 20px rgba(255, 255, 255, 0.15),
    0px 8px 30px rgba(255, 255, 255, 0.1);
    position: relative;

    scrollbar-width: none;
}

.post-on-box-center {
    opacity: 0;
}

.post-on-box::-webkit-scrollbar {
    display: none;
}

.post-on-box-right, .post-on-box-left, .post-on-box-end  {
    transform: scale(0.8);
    overflow: hidden;
    opacity: 0;
}

.post-on-box-right::after, .post-on-box-left::after {
    content: "";
    background-color: transparent;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(3px);
}

.post-on-box-center-animation-enter-class {
    animation: main-post-opening-animation 1s ease-in-out;
    opacity: 1;
}

.post-on-box-sides-animation-enter-class {
    animation: sub-post-opening-animation 1s ease-in-out;
    opacity: 0.5;
}

.post-on-box-center-animation-close-class {
    animation: main-post-closing-animation 1s ease-in-out;
    opacity: 0;
}

.post-on-box-sides-animation-close-class {
    animation: sub-post-closing-animation 1s ease-in-out;
    opacity: 0;
}

.post-on-box-end {
    display: none;
}

.post-on-box-socials {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    margin-bottom: 10px;
}

.post-on-box h2 {
    font-size: 40px;
    font-weight: bold;
    font-family: 'Montserrat';
    line-height: 40px;
    margin-bottom: 10px;
}

.blog-content-on-box-data-box {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #000;
    z-index: 2;
    gap: 10px;
    margin-bottom: 20px;
}

.blog-content-on-box-title {
    color: #fcfcfc;
    font-size: 1rem;
    line-height: 1.2rem;
    font-weight: bold;
    padding: 0px 40px;
    margin-bottom: 40px;
    z-index: 2;
}

.blog-content-on-box-point {
    background-color: #000;
    width: 3px;
    height: 3px;
    border-radius: 50%;
}

.blog-content-on-box-logo-img {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content-on-box-logo-img img {
    border-radius: 50%;
    height: 16px;
    width: 16px;
}

.post-on-box-main-img {
    margin: 20px 0px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    width: 100%;
    border-radius: 20px;
}

.post-on-box-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.post-on-box-options-back {
    background: linear-gradient(to right, #412772, #6E46BB);
    color: #fff;
    height: 30px;
    padding: 0px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: 200ms ease-in-out;
    font-size: 14px;
}

.post-on-box-options-back:hover {
    transform: translateY(-2px);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.post-on-box-options-from i {
    background: linear-gradient(to right, #412772, #6E46BB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
    cursor: pointer;
    transition: 200ms ease-in-out;
}

.post-on-box-options-from i:nth-child(1):hover {
    transform: translateX(-2px);
}

.post-on-box-options-from i:nth-child(2):hover {
    transform: translateX(2px);
}

.post-on-box-img-partnership {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.post-on-box-img-partnership img{
    height: 40px;
}

#post-on-box-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 14px;
    color: #0e0e0e;
    cursor: pointer;
}

/*------------------------------------------------ Adicionar Novo Post ------------------------------------------------*/
@keyframes add-post-form-opening-animation {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes add-post-form-closing-animation {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.add-post-form {
    background: url("imagens/Configs/noise.png"), radial-gradient(circle at right center, #fff, #ddd, #eee 50%, #eee 70%, #fff);
    border-radius: 20px;
    max-height: 90%; /* Limita a altura da caixa */
    max-width: 800px;
    height: 90%;
    padding: 40px;
    overflow: auto; /* Ativa a rolagem quando o conteúdo ultrapassar a altura */
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2),  
    0px 6px 20px rgba(255, 255, 255, 0.15),
    0px 8px 30px rgba(255, 255, 255, 0.1);
    scrollbar-width: none;
    flex-direction: column;
    margin: 50px;
    position: relative;

    display: none;
}

.add-post-form-animation-enter-class {
    animation: add-post-form-opening-animation 1s ease-in-out;
    display: flex;
    opacity: 1;
}

.add-post-form-animation-close-class {
    animation: add-post-form-closing-animation 1s ease-in-out;
    display: none;
    opacity: 0;
}

.add-post-form h1 {
    font-size: 40px;
    font-weight: bold;
    font-family: 'Montserrat';
    line-height: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.add-post-form-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.add-post-form input, textarea, select {
    background-color: #fcfcfc;
    outline: 1px solid #0e0e0e;
    border-radius: 2px;
    min-height: 40px;
    padding: 5px;
}

.add-post-form textarea {
    height: 100px;
}

#charCount {
    position: absolute;
    bottom: 0px;
    right: 10px;
    font-size: 12px;
    color: #0e0e0e;
    background-color: #fff;
    border-radius: 2px;
}

.add-post-form select {
    cursor: pointer;
}

.add-post-form-content-input {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
}

#newPost_img {
    display: none;
}

#newPost_img_box {
    width: 100%;
    position: relative;
}

#newPost_img_box img {
    width: 100%;
    border-radius: 5px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.add-post-form-options {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

#newPost_img_box_opacity {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0e0e0e22;
    backdrop-filter: blur(10px);
    border-radius: 5px;
    cursor: pointer;
    opacity: 0;
    transition: 200ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    text-transform: uppercase;
    color: #fcfcfc;
    font-family: 'Montserrat';
    font-weight: bold;
}

#newPost_img_box_opacity:hover {
    opacity: 1;
}

.add-post-form-options input {
    cursor: pointer;
    width: 50%;
    transition: 200ms ease-in-out;
}

.add-post-form-options input[type="submit"]:hover {
    background-color: #4CAF50;
}

.add-post-form-options input[type="reset"]:hover {
    background-color: #F44336;
}

/*------------------------------------------------ Cabeçalho ------------------------------------------------*/

/* Animação de Entrada do Header */
@keyframes headerMoveIn {
    0% {
        transform: translateY(-100%); /* Cabeçalho começa acima da tela */
        opacity: 0; /* Sem visibilidade */
    }
    100% {
        transform: translateY(0); /* Cabeçalho chega à posição final */
        opacity: 1; /* Cabeçalho visível */
    }
}

header {
    width: 100%;
    color: #ffffff;
    font-size: 14px;
    overflow: visible;
    position: fixed;
    z-index: 1000;
    outline: 1px solid #ffffff55;
    backdrop-filter: blur(10px);
    background: #0f0f0fcc;

    animation: headerMoveIn 1s ease-in-out forwards;
}

.header-part1 {
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 10px 0px 10px #000000;
    padding: 0% 10%;
}

.header-part1-left {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.header-part1-right {
    display: flex;
    align-items: center;
    gap: 1rem;

}

.header-part1-right a {
    color: var(--cor-branca);
    transition: 300ms;
    font-size: 16px;
}

.header-part1-right a:hover {
    color: #e0e0e0;
}

.header-part2 {
    height: 10vh;
    padding: 0% 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    overflow: visible;
}

.header-part2 img {
    height: 70%;
    cursor: pointer;
}

.header-navigator {
    display: flex;
    gap: 2rem;
    list-style-type: none;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: visible;
}

.header-navigator li {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

.header-navigator-li {
    color: var(--cor-branca);
    text-decoration: none;
    transition: 300ms;
    height: 50%;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.header-navigator-li:hover {
    color: #e0e0e0;
}

.header-btn-fale-conosco {
    background-color: #ffffff;
    color: var(--cor-primaria);
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid transparent;
    transition: 300ms;
}

.header-btn-fale-conosco:hover {
    color: #ffffff;
    background-color: var(--cor-primaria);
    border-color: var(--cor-branca);
}

.header-navigator-solucoes {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-navigator-li::after {
    content: " ";
    width: 0%;
    height: 2px;
    background: linear-gradient(to right, #e0e0e0, #fcfcfc);
    border-radius: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 150ms;
}

.header-navigator a:hover::after, .header-navigator p:hover::after{
    width: 100%;
}

.header-navigator-list {
    width: auto;
    height: auto;
    background-color: var(--cor-branca);
    position: absolute;
    top: 90%;
    z-index: 3;
    overflow: visible;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
    padding: 1rem;

    color: var(--cor-primaria);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: flex-start;

    gap: 1rem;
    display: none;
    transition: 500ms;
}

@keyframes header-navigator-list-animation-enter {
    0% {
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.header-navigator-list-animation-enter {
    animation: header-navigator-list-animation-enter ease-in-out 200ms;
    opacity: 1;
    display: flex;
}

@keyframes header-navigator-list-animation-over {
    0% {
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

.header-navigator-list-animation-over {
    animation: header-navigator-list-animation-over ease-in-out 200ms;
    opacity: 0;
    display: none;
}

.header-navigator-list::before {
    content: "";
    position: absolute;
    top: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent; /* Define a borda esquerda */
    border-right: 10px solid transparent; /* Define a borda direita */
    border-bottom: 10px solid var(--cor-branca); /* Define a cor do triângulo */
    border-top: 0; /* Remove a borda superior */
}    

.header-navigator-list-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 300px;
}

.header-navigator-list-div {
    width: 100%;
}

.header-navigator-list-div span {
    font-size: 1.1rem;
}

.header-navigator-list-div a {
    text-decoration: none;
    transition: 150ms ease-in-out;
    color: var(--cor-primaria);
}

.header-navigator-list-div a:hover {
    color: var(--cor-secundaria);
    transform: translateX(5px);
}

/* HEADER PARA MOBILE */

.header-navigator-mobile-box {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;

    display: none;
}

.header-navigator-mobile-box i {
    display: flex;
    align-items: center;
    font-size: 2rem;
    width: 2rem;
    color: white;
    overflow: visible;
    cursor: pointer;
}

.header-navigator-mobile {
    width: 100%;
    height: 85%;
    top: 15%;
    left: 0;
    z-index: 20;
    background: url(imagens/Configs/noise.png), 
    radial-gradient(circle at right center, #000, #2a2a2a, #1e1e1e 50%, #1a1a1a 70%, #0f0f0f);
    position: absolute;
    transform: translateX(-100%); /* Posição inicial fora da tela */
    transition: transform 0.3s ease-in-out; /* Transição suave */
    position: fixed; /* Fixa o menu */  
}

.header-navigator-mobile-li {
    width: 100%;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem;
    border-bottom: 1px solid #fcfcfc;
    font-size: 1.1rem;

    position: relative;
}

.header-navigator-mobile-li a {
    text-decoration: none;
    color: #fcfcfc;
}

#header-navigator-mobile-icon-close {
    display: none;
}

.header-navigator-mobile-li i {
    color: #fcfcfc;
    font-size: 1.5rem;
    right: 1rem;

    position: absolute;
}

.header-navigator-mobile-solucoes-dropdown-list {
    position: absolute;
    width: 100%;
    top: 100%; /* Coloca o dropdown logo abaixo da li */
    left: 0;
    transition: height 0.3s ease-in-out; /* Transição suave no ajuste do tamanho */
    overflow: hidden; /* Oculta o conteúdo quando fechado */
    height: 0; /* Altura inicial (fechado) */
}        

.header-navigator-mobile-li-solucoes {
    background-color: #fcfcfc22;
}

@keyframes mobile-li-dropdown-list-open {
    0% {
        top: calc(-85px * 2);
    }

    100% {
        top: 0;
    }
}

.header-navigator-mobile-solucoes-dropdown-list-open {
    height: calc(85px * 2); /* Altura total para exibir os itens do dropdown */
}

@keyframes mobile-li-dropdown-list-close {
    0% {
        top: 0;
    }

    100% {
        top: calc(-85px * 2);
    }
}

.header-navigator-mobile-solucoes-dropdown-list-close {
    height: 0; /* Altura do dropdown quando fechado */
}

body {
    background-color: black;
}

#home {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    background: url("imagens/Configs/noise.png"), radial-gradient(circle at right center, #4b296980, #563277, #4a378c 50%, #4a378c 70%, #32517380);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at center center,#000 20%,#00000080 50%,#0000);
    mask-image: radial-gradient(ellipse 80% 50% at center center,#000 20%,#00000080 50%,#0000);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

.home-content {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#home h1 {
    font-size: 4rem;
    width: 50%;
    line-height: 5rem;
    font-family: 'Montserrat';
    font-weight: bold;
    margin-bottom: 2rem;
    background: linear-gradient(to top, #ffffff80, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1000;

    animation: headerMoveIn 1s ease-in-out forwards;
}

#home p {
    color: #fff;
    width: 30%;
    margin-bottom: 2rem;

    animation: headerMoveIn 1s ease-in-out forwards;
}

.home-blog-content-box-icon a {
    width: 100%;
    height: 100%;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.home-blog-content-box i {
    font-size: 1.5rem;
    transition: 300ms;
    background-color: transparent;
    padding: 10px;
    border-radius: 50%;
    color: #ffffff;
    z-index: 2;

    animation: headerMoveIn 1s ease-in-out forwards;
}

.home-blog-content-box i:hover {
    background-color: var(--cor-branca);
    color: var(--cor-secundaria);
}

#blog-content {
    padding: 5% 0%;
    width: 100%;
    height: auto;
    background: #000;
    display: flex;
    justify-content: center;
}

.blog-content-container {
    max-width: 1200px;
    border-radius: 10px;
    border: 1px solid rgba(38,38,38,.7);
    background: #141414;
    display: flex;
    width: 80%;
    padding: 50px;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;

    background: url("imagens/Configs/noise.png"), radial-gradient(circle at right center, #000, #222, #111 50%, #111 70%, #000);
}

.blog-content-box {
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: 100ms;

    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s ease-in-out, transform 0.6s ease-in-out;
}

/* Quando o elemento está visível, a classe 'visible' será adicionada */
.blog-content-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-content-box:hover {
    box-shadow: 0px 0px 10px #444444;
}

.blog-content-box::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    pointer-events: none; /* Para não interferir em interações */
    z-index: 2;
    border-radius: 0px 0px 10px 10px;
    pointer-events: none;
}

.blog-content-box-img {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 10px;
    z-index: 1;
    object-fit: cover;
}

.blog-content-box-data-box {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
    z-index: 2;
    padding: 0px 40px;
    margin-bottom: 10px;
    gap: 10px;
    
}

.blog-content-box-title {
    color: #fcfcfc;
    font-size: 1rem;
    line-height: 1.2rem;
    font-weight: bold;
    padding: 0px 40px;
    margin-bottom: 40px;
    z-index: 2;
}

.blog-content-box-point {
    background-color: #ececec;
    width: 3px;
    height: 3px;
    border-radius: 50%;
}

.blog-content-box-logo-img {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content-box-logo-img img {
    border-radius: 50%;
    height: 16px;
    width: 16px;
}

.blog-content-credits {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fcfcfc;
    text-align: center;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.link-acess-login {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fcfcfc;
    text-align: center;
    font-size: 0.8rem;
    margin-bottom: 5px;
    text-decoration: underline;
}

/* --------------------------------------RESPONSIVIDADE--------------------------------------- */

@media (max-width: 1919px) /*Desktops médios e grandes (1367px a 1920px)*/ {
    .header-part1 {
        padding: 0% 5%;
    }

    .header-part2 {
        padding: 0% 5%;
    }
}

@media (max-width: 1366px) /*Desktops pequenos e laptops (1025px a 1366px)*/ {
    .header-part1-left {
        gap: 1rem;
        font-size: 0.6rem;
    }

    .header-part1-right a {
        font-size: 0.6rem;
    }

    .header-part2 img {
        height: 60%;
    }

    .header-navigator {
        font-size: 0.8rem;
    }

    .header-navigator-li::after {
        height: 1px;
    }

    .header-btn-fale-conosco {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

}

@media (max-width: 1025px) /*Tablets em retrato e paisagem (769px a 1024px)*/ {
    .header-navigator-mobile-box {
        display: flex;
    }
    
    .header-navigator {
        display: none;
    }

    .header-part2 img {
        height: 50%;
        border-radius: 5px;
    }

    .header-btn-fale-conosco {
        display: none;
    }

    #home h1 {
        font-size: 3rem;
        line-height: 3.5rem;
    }

    #home p {
        width: 60%;
    }

    .header-navigator-mobile {
        top: calc(5vh + 10vh);
        height: calc(100vh - 11vh);
    }

    .blog-content-container {
        grid-template-columns: 1fr 1fr;
    }

    .blog-content-box {
        height: 300px;
    }

    .post-on-box-left {
        display: none;
    }

    .post-on-box-right {
        display: none;
    }

    #post-on {
        padding: 20px;
    }
}

@media (max-width: 767px) /*Dispositivos móveis medios (480px a 768px)*/ {
    .header-part1 {
        height: 3vh;
        justify-content: center;
    }
    
    .header-part1-left {
        display: none;
    }

    .header-part2 {
        height: 8vh;
    }

    .header-part2 img {
        border-radius: 3px;
    }

    .header-navigator-mobile {
        top: calc(3vh + 8vh);
        height: calc(100vh - 11vh);
    }

    #home h1 {
        font-size: 2.5rem;
        line-height: 3rem;
        width: 85%;
    }

    #home p {
        width: 80%;
    }

    .blog-content-container {
        width: 90%;
        padding: 20px;
    }

    .blog-content-box {
        height: 250px;
    }

    .blog-content-container {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 479px) /*Dispositivos móveis pequenos (320px a 479px)*/ {
    .blog-content-box-title {
        padding: 0px 20px;
        margin-bottom: 20px;
    }

    .blog-content-box-data-box {
        padding: 0px 20px;
    }

    .blog-content-box {
        height: 200px;
    }

    .post-on-box {
        height: 100%;
        padding: 30px;
    }

    .post-on-box h2 {
        font-size: 30px;
        line-height: 30px;
    }
}