@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/* 1. Box-sizing universal — isso é ok */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 2. Reset de margem e padding em elementos mais comuns */
body,
h1,
h2,
h3,
p,
ul,
ol,
li {
    margin: 0;
    padding: 0;
}

/* 3. Estilos específicos para links, botões e textos */
a {
    text-decoration: none;
    outline: none;
}

button,
input,
textarea {
    border: none;
    outline: none;
}

p,
span,
h1,
h2,
h3 {
    text-transform: capitalize;
    transition: color 0.2s linear;
}

/* 4. Variáveis CSS no :root */
:root {
    --primary-color: #121A25;
    --secondary-color: rgb(5, 238, 21);
    --primary-navbar-color: rgba(18, 26, 37, 0.7);
    --secondary-navbar-color: rgba(5, 238, 21, 0.7);
    --font-color: #aaa;
    --hover-font-color: #000;
    --btn-font-color: #000;
}

/* 5. Fonte e estilos base */
html,
body {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

html {
    font-size: 45%;
    scroll-behavior: smooth;
}

body {
    background: var(--primary-color);
}


#menu-btn {
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s ease; /* Isso cria a animação */
}

#menu-btn.fa-times {
    transform: rotate(180deg);
}

.header {
    padding: 1.3rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10000;
    background: var(--primary-navbar-color);
}

.header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--primary-navbar-color);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.header .navbar a {
    display: inline-block;
    padding: 1.5rem 2rem;
    font-size: 1.3rem;
    color: var(--font-color);
    text-shadow: 1px 0 2px #000;
}

.header .navbar a:hover {
    background: var(--secondary-color);
    color: var(--hover-font-color);
    border-radius: 5px;
}


.header .logo {
    font-weight: bolder;
    color: var(--font-color);
    font-size: 2rem;
    margin-top: 2%;
}

.header .logo span {
    color: var(--secondary-color);
}

.header .navbar.active {
    border-bottom: 0.1rem solid var(--secondary-color);
}


section {
    padding: 1rem 0.5rem;
}


/*Cabeçalho das sessões*/
.heading {
    height: 15rem;
    display: flex;
    /* ativa flexbox */
    justify-content: center;
    /* centraliza horizontalmente */
    align-items: center;
    /* centraliza verticalmente */
    text-align: center;
    /* centraliza texto em múltiplas linhas */
    position: relative;
    text-shadow: 1px 0 2px #000;
    font-size: 2.5rem;
    color: #ffffff;
}



.heading span {
    font-size: 6rem;
    color: #fff;
    padding: .5rem .5rem;

}



.home {
    padding: 0;
    margin-top: 8rem;
    text-align: center;
}

.conteudo {
    position: relative;
    /* Importante para que o conteúdo fique sobre o vídeo */
    z-index: 100;
    /* Garante que o conteúdo fique na frente do vídeo */
    color: white;
    /* Cor do texto para melhor visualização sobre o vídeo */
}

.conteudo h1 {
    font-size: 2.2rem;
}

.conteudo p {
    margin-top: 1rem;
    font-size: 1.8rem;
}



.HowWeWork {
    display:flexbox;
    padding: 0; /* Remova padding lateral */
    width: 100vw; /* Garante largura total */
    height: 99vh;
    box-sizing: border-box; /* Para considerar padding/margin no tamanho */
    text-align: center;
}


.panelContainer {
    position: relative;
    display: flex;
    width: 100vw;
    height: 100vh;
    gap: 15px;
    margin-bottom: -14rem;

    align-items: center;
}

.panel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    color: #fff;
    cursor: pointer;
    flex: 0.5;
    position: relative;
    transition: flex 0.7s ease-in;
}

.panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        #121A25 0%,                    /* cor escura nas bordas topo */
        rgba(18, 26, 37, 0.8) 40%,    /* centro começa a escurecer */
        rgba(18, 26, 37, 0.8) 60%,    /* centro mantém escuro */
        #121A25 100%                  /* cor escura na borda inferior */
    );
    pointer-events: none;
    z-index: 1; /* abaixo do gradiente */
}

/* Gradiente linear no topo e na base */
.panel::after {
    content: "";
    position: relative;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        var(--primary-color) 0%,       /* cor no topo */
        rgba(0, 0, 0, 0) 10%,          /* transparente após 20% */
        rgba(0, 0, 0, 0) 90%,          /* transparente até 80% */
        var(--primary-color) 100%      /* cor na base */
    );
}

.panel h3 {
    color: #fff;
    padding: 1rem;
    border-radius: 5px;
    display: inline-block;
    font-size: 1.8rem;
    position: absolute;
    top: 6rem;
    left: 20px;
    margin: 0;
    margin-top: 5rem;
    opacity: 0;
    text-shadow: 4px 0 6px #000;
    z-index: 2; /* abaixo do gradiente */
}

.panel p {
    color: #fff;
    padding: 5px;
    display: block;
    justify-content: center;
    font-size: 1.6rem;
    line-height: 1.5;
    position: absolute;
    bottom: 18rem;
    left: 5rem;
    text-align: center;
    margin: 0 10% 0 0;
    opacity: 0;
    text-shadow: 6px 0 8px #000;
    z-index: 2; /* abaixo do gradiente */
}

.panel.active {
    flex: 10;
}

.panel.active h3 {
    opacity: 1;
    transition: opacity 0.4s ease-in 0.5s;
    /* smooth trasnsition */
}

.panel.active p {
    opacity: 1;
    transition: opacity 0.5s ease-in 0.6s;
    /* smooth trasnsition */
}


.progressContainer {
    display: inline;
    position: relative;
    justify-content:start;
}


.progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 100%;
    width: 350px;
    opacity: 0;
}


.progress {
    background-color: var(--line-border-fill);
    position: relative;
    height: 4px;
    width: 0%;
    z-index: -1;
    transition: 0.4s ease;
}

.circle {
    background-color: #fff;
    color: #999;
    border-radius: 50%;
    height: 0px;
    width: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--line-border-empty);
    transition: 0.4s ease;
}

.circle.active {
    border-color: var(--line-border-fill);
}

#next {
    margin-left: 1%;
}

.btnp {
    position: relative;
    background-color: #a89c9ca2;
    color: var(--secondary-color);
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
    padding: 4px 8px;
    font-size: 1.5rem;
    text-shadow: 2px 0 3px #000;
    z-index: 10;
    margin: 0;
}

.btnp:active {
    transform: scale(1.1);
    background-color: #726868c2;
}

.btnp:focus {
    outline: 0;
}

.btnp:disabled {
    background-color: #7268682f;
    color: #7268682f;
    cursor: not-allowed;
    border: 2px solid var(--primary-color);
}

.btnp:hover {
    transform: scale(1.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.highlight-container {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flexbox;
    border-radius: 10px;
    margin-bottom: 10rem;
}


.left-panel h1 {
    font-size: 2rem;
    color: #ffffff;
    padding:8rem 0;
}

.left-panel p {
    font-size: 1.8rem;
    color: #ffffff;
}

.left-panel {
    position: absolute; /* corrigido typo de "abolute" para "absolute" */
    max-width: 70%; /* ajuste conforme desejado */
    min-height: 100%;
    padding: 3rem 2rem;
    background: linear-gradient(
        to right,
        rgba(18, 26, 37, 0.9) 0%,   /* cor mais opaca no início */
        rgba(18, 26, 37, 0.8) 80%,  /* opacidade média no meio */
        rgba(18, 26, 37, 0) 100%    /* transparente no fim */
    );
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    color: #fff;
    box-sizing: border-box;
    font-size: 2rem;
}


.right-image {
    background-image: url('/imgs/BlogImgs/Content1/BlogUpscalled/Cntnt1-5.webp'); /* sua imagem */
    background-size: cover;
    min-height: 100%;
    width: 100%;
    background-position: center;
    position: absolute;
}

/* ESCURECIMENTO E GRADIENTE SOBRE A IMAGEM */
.right-image::before,
.right-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.right-image::before {
    background-color: rgba(0, 0, 0, 0.2); /* camada escura */
}

.right-image::after {
    background: linear-gradient(
        to bottom,
        rgba(18, 26, 37, 1) 0%,     /* cor escura nas bordas topo */
        rgba(18, 26, 37, 0.8) 40%,  /* centro começa a escurecer */
        rgba(18, 26, 37, 0.8) 60%,  /* centro mantém a cor */
        rgba(18, 26, 37, 1) 100%    /* cor escura na borda inferior */
    );
}

.midTile h1 {
    color: #ffffff;
}

.highlight-invert {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flexbox;
    border-radius: 10px;
    margin-bottom: 10rem;
}


.left-invert-panel h1 {
    font-size: 2rem;
    color: #ffffff;
    padding:8rem 0;
}

.left-invert-panel p {
    font-size: 1.8rem;
    color: #ffffff;
}

.left-invert-panel {
    position: absolute; /* corrigido typo de "abolute" para "absolute" */
    right: 0;
    max-width: 70%; /* ajuste conforme desejado */
    min-height: 100%;
    padding: 3rem 2rem;
    background: linear-gradient(
        to left,
        rgba(18, 26, 37, 0.9) 0%,   /* cor mais opaca no início */
        rgba(18, 26, 37, 0.8) 80%,  /* opacidade média no meio */
        rgba(18, 26, 37, 0) 100%    /* transparente no fim */
    );
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    color: #fff;
    box-sizing: border-box;
    font-size: 2rem;
}


.right-invert-image {
    background-image: url('/imgs/BlogImgs/Content1/BlogUpscalled/Cntnt1-6.webp'); /* sua imagem */
    background-size: cover;
    min-height: 100%;
    width: 100%;
    background-position: center;
    position: absolute;
    border: 4px solid #121A25
}

/* ESCURECIMENTO E GRADIENTE SOBRE A IMAGEM */
.right-invert-image::before,
.right-invert-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.right-invert-image::before {
    background-color: rgba(0, 0, 0, 0.3); /* camada escura */
}

.right-invert-image::after {
    background: linear-gradient(
        to bottom,
        rgba(18, 26, 37, 1) 0%,     /* cor escura nas bordas topo */
        rgba(18, 26, 37, 0.8) 40%,  /* centro começa a escurecer */
        rgba(18, 26, 37, 0.8) 60%,  /* centro mantém a cor */
        rgba(18, 26, 37, 1) 100%    /* cor escura na borda inferior */
    );
}

.section-frame.invertida h3 {
    font-size: 1.6rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: right;
}


.section-frame.invertida p {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: right;
}

#p1 {
    font-size: 1.2rem;
    margin-top: 2rem;
    text-align: center;
    margin-bottom: 6rem;
}

.imagem-frame {
    position: relative; /* ESSENCIAL! */
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.imagem-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    border-radius: 1.5rem;
    background: linear-gradient(
        to bottom,
        rgba(18, 26, 37, 1) 10%,     /* cor escura nas bordas topo */
        rgba(18, 26, 37, 0) 40%,  /* centro começa a escurecer */
        rgba(18, 26, 37, 0) 60%,  /* centro mantém a cor */
        rgba(18, 26, 37, 1) 90%    /* cor escura na borda inferior */
    );
}

.imagem-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2rem;

}

.imageD {
    filter: brightness(45%);
}

.sub2 {
    color: #ffffff;
    margin-top: 1rem;
    font-size: 1.8rem;
    margin-top: 6rem;
    margin-bottom: 1rem;
    text-align: center;
    z-index: 100
}

.texto-frame {
    padding: 1.5rem 1rem;
    font-size: 1.2rem;
    color: #fff;
    border-radius: 1rem;
    text-align: center;
}

.section-texto-full {
    padding: 8rem 1.5rem;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    border-radius: 1rem;
    min-height: 60vh;
}

.section-texto-full h3 {
    font-size: 1.6rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: left;
}

.section-texto-full p {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Swiper ocupa toda a largura e altura do container */
.swiper {
    width: 100%;
    height: 100%;
}

/* Bolinhas do Swiper */
.swiper-pagination-bullet {
    height: 2rem;
    width: 2rem;
    background: #fff;
    border-radius: 0;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgb(5, 238, 21);
}




#banner1 {
    margin-top: 12rem;
    margin-bottom: 100rem;
    height: 30rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url(/imgs/BannerSimples/Banner1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}


.banner span {
    font-size: 3rem;
    color: rgb(5, 238, 21);
}

.banner h3 {
    height: 10rem;
    margin-top: 4rem;
    color: #fff;
    text-transform: uppercase;
    font-size: 2rem;
}

.btn {
    position: relative;
    background-color: #a89c9ca2;
    color: var(--secondary-color);
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
    padding: 8px 16px;
    font-size: 2.5rem;
    text-shadow: 2px 0 3px #000;
    border: 1px solid var(--secondary-color);
    z-index: 10;
}

.btn:active {
    transform: scale(1.1);
    background-color: #726868c2;
}

.btn:focus {
    outline: 0;
}

.btn:disabled {
    background-color: #7268682f;
    color: #7268682f;
    cursor: not-allowed;
    border: 2px solid var(--primary-color);
}

.btn:hover {
    transform: scale(1.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.blogs h3{
    margin-top: 20rem;
}

.carousel-blogs {
    margin-bottom: 20rem;
}

.blogp {
    font-size: 2.5rem;
    line-height: 1.8;
    color: #aaa;
    padding: 4rem;
    margin-top: 1rem;
    margin-bottom: 18rem;
    text-align: center;
}


.blogs .slide {
    margin-bottom: 7rem;
    border-radius: 50px;
}

.blogs .slide:hover .image img {
    transform: scale(1.1);
}

.blogs .slide .image {
    height: 25rem;
    width: 100%;
    overflow: hidden;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.blogs .slide .image::before {
    content: "";
    position: absolute; 
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #11111140; /* filtro semitransparente */
    pointer-events: none; /* para permitir clique nos elementos abaixo */
    border-radius: 50px;
    z-index: 1; /* para ficar acima da imagem, mas abaixo de conteúdos que queira */
}

.blogs .slide .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blogs .slide .content {
    padding: 2rem;
    text-align: center;
}

.blogs .slide .content .link {
    padding-bottom: 1.5rem;
    font-size: 1.5rem;
}

.blogs .slide .content .link a {
    color: rgb(5, 238, 21);
}

.blogs .slide .content .link a:hover {
    color: #fff;
}

.blogs .slide .content .link span {
    color: #fff;
    padding: 0 1rem;
}

.blogs .slide .content h3 {
    font-size: 2rem;
    color: #ffffff;
    line-height: 1.5;
    margin-top: 1rem;
    margin-bottom: -3em;
}

.blogs .slide .content p {
    font-size: 1.5rem;
    color: #aaa;
    line-height: 2;
    padding: 1rem 0;
}

.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
}

.pricing .information span {
    font-size: 2rem;
    color: rgb(5, 238, 21);
}

.pricing .information {
    text-align: center;
    background: #11111140;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 3rem;
}

.pricing .information h3 {
    text-align: center;
    font-size: 3.8rem;
    padding-top: .5rem;
    color: #fff;
}

.pricing .information p {
    text-align: center;
    line-height: 2;
    padding: 1rem 0;
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 9.5px;

}

#subh3 {
    font-size: 1.4rem;
}

.pricing .information p i {
    padding-right: 1rem;
    color: rgb(5, 238, 21);
}

#btn-info {
    margin-bottom: 3rem;
}

.pricing .plan {
    text-align: center;
    padding: 2rem;
    background: #11111166;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.pricing .plan.basic {
    background: #11111166;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.pricing .plan h3 {
    font-size: 3.4rem;
    color: #fff;
}

.pricing .plan .price {
    font-size: 5rem;
    font-weight: bolder;
    color: rgb(5, 238, 21);
}

.pricing .plan .price span {
    color: #fff;
    font-size: 2rem;
}

.pricing .plan .list {
    padding: 1rem 0;
}

.pricing .plan .list p {
    line-height: 2;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: #aaa;
}

.pricing .plan .list p i {
    padding-right: 1rem;
    color: rgb(5, 238, 21);
}

.pricing .plan .list .share-icons {
    display: flex;
    /* Flexbox para alinhar os ícones */
    justify-content: center;
    /* Centraliza horizontalmente */
    margin-top: 1rem;
    /* Espaçamento entre o parágrafo e os ícones */
    margin-bottom: 3rem;
}

.pricing .plan .list .share-icons a {
    height: 4.5rem;
    /* Altura do link */
    width: 4.5rem;
    /* Largura igual à altura */
    font-size: 2rem;

    border-radius: 35%;
    /* Torna os links circulares */
    border: 2px solid #fff;
    margin: 0 0.5rem;
    /* Espaçamento entre os ícones */
    display: flex;
    /* Flexbox dentro do link */
    justify-content: center;
    /* Centraliza o conteúdo horizontalmente */
    align-items: center;
    /* Centraliza o conteúdo verticalmente */
    padding-top: 5.5px;
    /* Adiciona um padding no topo para descer os ícones */
}

/* Opcional: ajuste a altura do ícone se necessário */
.pricing .plan .list .share-icons span.icon img {
    width: 30px;
    height: 30px;
    margin-bottom: 2.5px;
}


.pricing .plan .list .share-icons a:hover {
    background: #aaaaaa5e;
    border: 2px solid rgb(5, 238, 21);
}

.pricing .plan .list .share-icons a.fiverr:hover .icon img {
    content: url("https://img.icons8.com/?size=100&id=a2bDUitpXGnO&format=png&color=D9D9D9");
}

.pricing .plan .list .share-icons a.upwork:hover .icon img {
    content: url("https://img.icons8.com/?size=100&id=fF39hkEhFlir&format=png&color=D9D9D9");
}


/*Responsividade*/

@media (min-width: 320px) and (max-width: 430px) {

    html {
        font-size: 55%;
    }

    .header {
        padding: 0 .5rem;
    }
    
    .conteudo {
        height: 20vh;
    }

    .conteudo h1 {
        color: #ffffff;
        font-size: 2.4rem;
        padding: 0 1rem;
    }

    .conteudo p {
        margin-top: 2rem;
        font-size: 2rem;
    }

    .left-panel {
        max-width: 60%;
    }

    .left-panel h1 {
        font-size: 2rem;
        color: #ffffff;
    }

    .left-panel p {
        font-size: 1.6rem;
        color: #ffffff;
    } 

    .left-invert-panel {
        max-width: 60%;
    }

    .left-invert-panel h1 {
        font-size: 2.2rem;
        color: #ffffff;
    }

    .left-invert-panel p {
        font-size: 1.6rem;
        color: #ffffff;
    } 
}

@media (min-width: 430px) and (max-width: 768px) {
    html {
        font-size: 65%;
    }

    #menu-btn {
        font-size: 1.5rem;
    }

    .header {
        padding: 0 0.5rem;
    }

    .header .logo {
        font-size: 1.5rem;
        margin-top: 1%;
    }

    .conteudo {

        margin-bottom: -1rem;
    }

    .conteudo h1 {
        font-size: 2.4rem;
        color: #ffffff;
        margin-bottom: 5rem;
    }

    .conteudo p {
        font-size: 2rem;
    }

    .right-image {
        background-image: url('/imgs/BlogImgs/Content1/BlogUpscalled/Cntnt1-1.webp'); /* sua imagem */
        background-size: cover;
        min-height: 100%;
        width: 100%;
        background-position: center;
        position: absolute;
    }


    .left-panel {
        max-width: 60%;
    }

    .left-panel h1 {
        font-size: 2rem;
        padding: 3rem 0;
    }

    .left-panel p {
        font-size: 1.6rem;
    }

    .right-invert-image {
        background-image: url('/imgs/BlogImgs/Content1/BlogUpscalled/Cntnt1-6.webp'); /* sua imagem */
        background-size: cover;
        min-height: 100%;
        width: 100%;
        background-position: center;
        position: absolute;
        border: 4px solid #121A25
    }


    .left-invert-panel {
        max-width: 60%;
    }

    .left-invert-panel h1 {
        font-size: 2rem;
        padding: 3rem 0;
    }

    .left-invert-panel p {
        font-size: 1.6rem;
    }

    #banner1 {
        margin-bottom: 1rem;
    }

    .banner span {
        font-size: 4rem;
    }

    .banner h3 {
        margin-top: 7rem;
        font-size: 2rem;
    }

    .blogs {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }

    .blogp {
        margin-bottom: 10rem;
    }

    .pricing {
        margin-top: -7rem;
    }

}


@media (min-width: 768px) and (max-width: 991px) {
    html {
        font-size: 75%;
    }

    #menu-btn {
        font-size: 1.2rem;
    }

    .header {
        padding: 0.3rem;
    }

    .header .logo {
        font-size: 1.5rem;
        margin-top: 1%;
    }

    .conteudo {
        margin-bottom: -6rem;
    }

    .conteudo h1 {
        font-size: 2.6rem;
        margin-bottom: 5rem;
        color:#ffffff;
    }

    .conteudo p {
        margin-top: -4rem;
        font-size: 2.2rem;
        color:#ffffff;
    }

    .right-image {
        background-image: url('/imgs/BlogImgs/Content1/BlogUpscalled/Cntnt1-5.webp'); /* sua imagem */
        background-size: cover;
        min-height: 100%;
        width: 100%;
        background-position: center;
        position: absolute;
    }

    .left-panel h1 {
        font-size: 2rem;
        color: #ffffff;
    }

    .left-panel p {
        font-size: 1.6rem;
        color: #ffffff;
    }

    
    .right-invert-image {
        background-image: url('/imgs/BlogImgs/Content1/BlogUpscalled/Cntnt1-6.webp'); /* sua imagem */
        background-size: cover;
        min-height: 100%;
        width: 100%;
        background-position: center;
        position: absolute;
        border: 4px solid #121A25
    }

    .left-invert-panel h1 {
        font-size: 2rem;
        color: #ffffff;
    }

    .left-invert-panel p {
        font-size: 1.6rem;
        color: #ffffff;
    }

    .banner span {
        font-size: 4rem;
    }

    .banner h3 {
        margin-top: 7rem;
        font-size: 2rem;
    }

}

@media (min-width: 992px) and (max-width: 1023px) {
    html {
        font-size: 85%;
    }

    #menu-btn {
        font-size: 1.2rem;
    }

    .header {
        padding: 0.3rem;
    }

    .header .logo {
        font-size: 1.5rem;
        margin-top: 1%;
    }


    .conteudo {
        margin-bottom: .5rem;
    }

    .conteudo h1 {
        font-size: 2.8rem;
        color: #ffffff;
        margin-bottom: 5rem;
    }

    .conteudo p {
        font-size: 2.4rem;
    }

    .highlight-container {
        margin-top: -5rem;
    }

    .right-image {
        background-image: url('/imgs/BlogImgs/Content1/BlogUpscalled/Cntnt1-5.webp'); /* sua imagem */
        background-size: cover;
        min-height: 100%;
        width: 100%;
        background-position: center;
        position: absolute;
    }

    .left-panel h1 {
        font-size: 2.6rem;
        color: #ffffff;
    }

    .left-panel p {
        font-size: 2.2rem;
        color: #ffffff;
    }

    .right-invert-image {
        background-image: url('/imgs/BlogImgs/Content1/BlogUpscalled/Cntnt1-6.webp'); /* sua imagem */
        background-size: cover;
        min-height: 100%;
        width: 100%;
        background-position: center;
        position: absolute;
        border: 4px solid #121A25
    }

    .left-invert-panel h1 {
        font-size: 2rem;
        color: #ffffff;
    }

    .left-invert-panel p {
        font-size: 1.6rem;
        color: #ffffff;
    }

    .banner span {
        font-size: 4rem;
    }

    .banner h3 {
        margin-top: 7rem;
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    html {
        font-size: 95%;
    }

    .header {
        padding: 0 2rem;
    }

    .heading {
        height: 50rem;
        margin-top: 10rem;
        margin-bottom: 5rem;
    }

/* .conteudo h1 {
    font-size: 2.8rem;
}

.conteudo p {
    font-size: 2.4rem;
}
  
.left-panel h1 {
    font-size: 2.6rem;
}

.left-panel p {
    font-size: 2.2rem;
}
*/

    .conteudo {
        margin-bottom: 10rem;
    }

    .conteudo h1 {
        font-size: 2.8rem;
        color: #ffffff;
        margin-bottom: 6rem;
    }

    .conteudo p {
        font-size: 2.6rem;
    }

    .highlight-container {
        flex-direction: column;
    }

    .right-image {
        background-image: url('/imgs/BlogImgs/Content1/BlogUpscalled/Cntnt1-5.webp'); /* sua imagem */
        background-size: cover;
        min-height: 100%;
        width: 100%;
        background-position: center;
        position: absolute;
    }

    .left-panel {
        max-width: 40%;
    }

    .left-panel h1 {
        font-size: 2rem;
        color: #ffffff;
    }

    .left-panel p {
        font-size: 1.6rem;
        color: #ffffff;
    }

    .left-panel, .right-image {
        width: 100%;
        height: 50vh;
    }



    .right-invert-image {
        background-image: url('/imgs/BlogImgs/Content1/BlogUpscalled/Cntnt1-6.webp'); /* sua imagem */
        background-size: cover;
        min-height: 100%;
        width: 100%;
        background-position: center;
        position: absolute;
        border: 4px solid #121A25
    }

    .left-invert-panel {
        max-width: 40%;
    }

    .left-invert-panel h1 {
        font-size: 2rem;
        color: #ffffff;
    }

    .left-invert-panel p {
        font-size: 1.6rem;
        color: #ffffff;
    }

    .left-invert-panel, .right-invert-image {
        width: 100%;
        height: 50vh;
    }

}