@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: 30rem;
    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;
}



.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 */
    margin-bottom: -15rem;
}

.conteudo h1 {
    font-size: 2.2rem;
}

.conteudo p {
    margin-top: 3rem;
    font-size: 1.8rem;
}

.services {
    margin: 0;
    padding: 0; /* Remova padding lateral */
    width: 100vw; /* Garante largura total */
    box-sizing: border-box; /* Para considerar padding/margin no tamanho */
}

.slider-container {
    position: relative;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    border-radius: 10px;
}

.slider-container h1 {
    font-size: 1rem;
    padding: 2rem;
}
.slider-container p,
.slider-container span {
    font-size: .5rem;
}

.slider-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3); /* camada escura semi-transparente */
    pointer-events: none;
    z-index: 1; /* abaixo do gradiente */
}

/* Gradiente linear no topo e na base */
.slider-container::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 1;
    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 */
    );
}

/* Definições padrão para telas maiores que 991px (ou o seu breakpoint padrão) */

.right-slide-2 {
    background-image: url(/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/SlcPBDeskCvr.png);
}
.right-slide-3 {
    background-image: url(/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/PBSlc2.png);
}
.right-slide-4 {
    background-image: url(/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/PBSlc4.png);
}

.left-slide {
    position: absolute;
    z-index: 2;
    top: 0;
    width: 50%;
    height: 100%;
    padding: 0;
    text-align: center;
    transition: transform 0.5s ease-in-out;
}


.left-slide>div {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.left-slide h1 {
    font-size: 1.8rem;
    width: 80%;
    line-height: 1.7;
    text-align: center;
    text-shadow: 4px 0 6px #000;
    margin-bottom: 3%;
    margin-top: 3%;

}

.left-slide h2 {
    font-size: 1.6rem;
    width: 80%;
    line-height: 1.7;
    text-align: center;
    text-shadow: 4px 0 6px #000;
    margin-bottom: 3%;
    margin-top: 3%;

}

.left-slide h3 {
    font-size: 1.4rem;
    width: 80%;
    line-height: 1.7;
    text-align: center;
    text-shadow: 4px 0 6px #000;
}

.left-slide p {
    font-size: 1.2rem;
    text-align: center;
    line-height: 2;
    text-shadow: 4px 0 6px #000;
    padding: 0 3rem;
}


.slider-container .action-buttons button {
    position: absolute;
    left: 31.5%;
    top: 50%;
    z-index: 99;
    width: 5rem;

}

.slider-container .action-buttons .down-button {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.slider-container .action-buttons .up-button {
    transform: translateY(-100%);
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

button {
    background-color: #a89c9c6f;
    color: #121A25;
    cursor: pointer;
    font-size: 14px;
    padding: 7px;
    margin-left: 14%;
}

button:hover {
    background-color: #726868a4;
    color: #0a2241a1;
}

button:focus {
    outline: none;
}


.right-slide {
    position: absolute;
    top: 0; 
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    transition: transform 0.5s ease-in-out;
}

.right-slide>div {
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center center;
    height: 100%;
    width: 100%;
    
}

.midTitle {
    color: #ffffff;
    padding: 6rem;
    font-size: 2rem;
}

.midTitle2 {
    color: #ffffff;
    padding: 4rem;
    margin-top: -4rem;
    font-size: 2rem;
    text-align: center;
}

#Mid2 {
    color: #ffffff;
    padding: 4rem;
    margin-bottom: -5rem;
    font-size: 1.4rem;
}

.highlight-invert {
  position: relative; /* Adicionado */
  min-height: 60vh;
  display: flex; /* Corrigido para "flex" */
  border-radius: 10px;
  overflow: hidden; /* Evita transbordo */
}


.left-invert-panel h3 {
    font-size: 1.4rem;
    color: #ffffff;
    padding: 1rem;
    
}

.left-invert-panel p {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 2;
}


.left-invert-panel {
    position: absolute; /* corrigido typo de "abolute" para "absolute" */
    right: 0;
    max-width: 70%; /* ajuste conforme desejado */
    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/OurWork/SitePortPagImgs/Fotos/PresentBox/PBSlc5.png'); /* 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-texto-full h3 {
    font-size: 1.4rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-texto-full p {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 2;
}

.section-texto-full {
    padding: 1rem 1.5rem;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 2rem;
    border-radius: 1rem;
}

/* 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);
}

.mediatitle {
    font-size: 6rem;
    color: #fff;
    margin-top: 13rem;
    justify-content: start;
    /* centraliza horizontalmente */
    align-items: center;
    /* centraliza verticalmente */
    text-align: center;
    /* centraliza texto em múltiplas linhas */
}

.mediap {
    font-size: 2rem;
    line-height: 1.5;
    color: #aaa;
    padding: 4rem;
    margin-top: 8rem;
    margin-bottom: 15rem;
    text-align: center;
}

.carousel-thumbs {
    margin: auto;
}

.thumb-slider .swiper-slide {
    width: 60px;
    /* ou o tamanho desejado */
    height: 60px;
    opacity: 0.5;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: opacity 0.3s, border-color 0.3s;
}

.thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
    border-color: rgb(171, 41, 41);
    display: block;
    aspect-ratio: 1 / 1;
}

.thumb-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1 / 1;
}

.thumb-slider .swiper-slide img {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* mantém quadrado em qualquer largura */
    object-fit: cover;
    border-radius: 8px;
    display: block;
    transition: transform 0.2s;
}


.thumb-slider .swiper-slide:hover img {
    transform: scale(1.1);
}

.media .slide {
    background: linear-gradient(
        to bottom,
        rgba(18, 26, 37, 1) 0%,       /* cor escura nas bordas topo */
        rgba(17, 17, 17, 0.475) 40%,  /* centro começa com a cor semi-transparente */
        rgba(17, 17, 17, 0.475) 60%,  /* centro mantém a cor semi-transparente */
        rgba(18, 26, 37, 1) 100%      /* cor escura na borda inferior */
    );

    border-radius: 10px;
    align-items: center;
}


.media .slide .image {
    display: grid;
    place-items: center;
    /* Centraliza conteúdo horizontal e vertical */
    width: 100%;
    /* Ocupa toda a largura do slide */
    height: 100%;
    /* Altura fixa ou conforme o seu layout */
    overflow: hidden;
    border-radius: 10px;
    margin-top: 5%;

}

/* Limite a largura/altura da imagem e centralize visualmente */
.media .slide .image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
}


.media .slide .content {
    padding: 2rem;
}

.media .slide .content .link {
    padding-bottom: 1.5rem;
    font-size: 1.5rem;
}

.media .slide .content .link a {
    color: rgb(5, 238, 21);
}

.media .slide .content .link a:hover {
    color: #fff;
}

.media .slide .content .link span {
    color: #fff;
    padding: 0 1rem;
}

.media .slide .content h3 {
    font-size: 2rem;
    color: #fff;
    line-height: 1.5;
}

.media .slide .content p {
    font-size: 1.5rem;
    color: #aaa;
    line-height: 2;
    padding: 1rem 0;
}


/* Ícones das setas */
.prev-media::after,
.next-media::after {
    color: rgba(5, 238, 21, 0.383);
}



#banner1 {
    margin-top: 12rem;
    margin-bottom: 10rem;
    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);
}

.carousel-blogs {
    margin-bottom: 20rem;
}

.blogtitle {
    font-size: 6rem;
    color: #fff;
    margin-top: 25rem;
    justify-content: start;     /* centraliza horizontalmente */
    align-items: center;         /* centraliza verticalmente */
    text-align: center;          /* centraliza texto em múltiplas linhas */
}

.blogp {
    font-size: 2.5rem;
    line-height: 1.8;
    color: #aaa;
    padding: 4rem;
    margin-top: 10rem;
    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: #fff;
    line-height: 1.5;
}

.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: #11111140;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.pricing .plan.basic {
    background: #11111140;
    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 {
        margin-bottom: -15rem;
    }

    .conteudo h1 {
        color: #ffffff;
        font-size: 2.4rem;
        padding: 0 1rem;
    }

    .conteudo p {
        margin-top: 2rem;
        font-size: 2rem;
    }


    button {
        background-color: #a89c9c6f;
        color: #121A25;
        cursor: pointer;
        font-size: 16px;
        padding: 8px;
        margin-left: 14%;
    }

    .left-slide {
        width: 50%;
    }

    .left-slide h1 {
        color: #ffffff;
        font-size: 1.5rem;
        margin-top: 5%;
        margin-bottom: 5%;
    }

    .left-slide h3 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-top: 1%;
        margin-bottom: 2%;
    }

    .left-slide p {
        font-size: 1rem;
        max-width: 90%;
    }

    .right-slide-2 {
        background-image: url(/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/SlcPBDeskCvr.png);
    }
    .right-slide-3 {
        background-image: url(/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/PBSlc2.png);
    }
    .right-slide-4 {
        background-image: url(/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/PBSlc4.png);
    }

    .left-invert-panel {
        max-width: 70%;
    }

    .left-invert-panel h3 {
        font-size: 1.5rem;
        color: #fcfcfc;
    }

    .left-invert-panel p {
        font-size: 1rem;
        color: #ffffff;
    } 

    .section-texto-full h3 {
        color: #ffffff;
        font-size: 1.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .section-texto-full p {
        color: #ffffff;
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        text-align: center;
        line-height: 2;
    }

    .carousel-thumbs {
        width: fit-content;
        /* ajusta para o tamanho do conteúdo */
        margin: 0 auto;
    }

    .thumb-slider .swiper-slide:hover img {
        transform: scale(1.1);
    }

    .thumb-slider .swiper-slide-thumb-active {

        opacity: 1;
        border-color: rgb(171, 41, 41);

    }  

}

@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: -15rem;        
    }

    .conteudo h1 {
        font-size: 2.4rem;
        color: #ffffff;
        margin-bottom: 2rem;
    }

    .conteudo p {
        font-size: 2rem;
    }

    .left-slide {
        width: 50%;
    }

    .left-slide h1 {
        color: #ffffff;
        font-size: 1.5rem;
        margin-top: 1%;
    }

    .left-slide h3 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-top: 1%;
        margin-bottom: 2%;
    }

    .left-slide p {
        font-size: 1rem;
        max-width: 90%;
    }

    .right-slide-2 {
        background-image: url(/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/SlcPBDeskCvr.png);
    }
    .right-slide-3 {
        background-image: url(/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/PBSlc2.png);
    }
    .right-slide-4 {
        background-image: url(/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/PBSlc4.png);
    }


    button {
        background-color: #a89c9c6f;
        color: #121A25;
        cursor: pointer;
        font-size: 16px;
        padding: 8px;
        margin-left: 14%;
    }    

    .right-invert-image {
        background-image: url('/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/PBSlc5.png'); /* 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 h3 {
        font-size: 1.5rem;
        color: #fcfcfc;
    }

    .left-invert-panel p {
        font-size: 1rem;
        color: #ffffff;
    } 

    .section-texto-full h3 {
        color: #ffffff;
        font-size: 1.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .section-texto-full p {
        color: #ffffff;
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        text-align: center;
        line-height: 2;
    }

    .carousel-thumbs {
        width: fit-content;
        /* ajusta para o tamanho do conteúdo */
        margin: 0 auto;
    }

    .thumb-slider .swiper-slide {
        width: 100px;
        /* ou o tamanho desejado */
        height: 100px;
    }

    .thumb-slider .swiper-slide:hover img {
        transform: scale(1.1);
    }

    .thumb-slider .swiper-slide-thumb-active {
        opacity: 1;
        border-color: rgb(171, 41, 41);
        display: block;
    }

    .media {
        margin-bottom: 30rem;
    }


    #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: -15rem;
    }

    .conteudo h1 {
        font-size: 2.6rem;
        margin-bottom: 5rem;
        color:#ffffff;
    }

    .conteudo p {
        margin-top: 1rem;
        font-size: 2.2rem;
        color:#ffffff;
    }


    .left-slide {
        width: 40%;
    }

    .left-slide h1 {
        color: #ffffff;
        font-size: 1.5rem;
        margin-top: 5%;
        margin-bottom: 2%;
    }

    .left-slide h2 {
        color: #ffffff;
        font-size: 1.3rem;
        margin-top: 1%;
        margin-bottom: 2%;
    }

    .left-slide h3 {
        color: #ffffff;
        font-size: 1.1rem;
        margin-top: 1%;
        margin-bottom: 2%;
    }

    .left-slide p {
        font-size: 1rem;
        margin-bottom: 8%;
        max-width: 90%;
    }

    .right-slide-2 {
        background-image: url(/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/SlcPBDeskCvr.png);
    }
    .right-slide-3 {
        background-image: url(/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/PBSlc2.png);
    }
    .right-slide-4 {
        background-image: url(/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/PBSlc4.png);
    }


    button {
        background-color: #a89c9c6f;
        color: #121A25;
        cursor: pointer;
        font-size: 18px;
        padding: 9px;
        margin-left: 6%;
    }

    .right-invert-image {
        background-image: url('/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/PBSlc5.png'); /* sua imagem */
        background-size: cover;
        min-height: 100%;
        width: 100%;
        background-position: center;
        position: absolute;
        border: 4px solid #121A25
    }

    .left-invert-panel {
        max-width: 50%;
    }

    .left-invert-panel h3 {
        font-size: 1.5rem;
        color: #fcfcfc;
    }

    .left-invert-panel p {
        font-size: 1rem;
        color: #ffffff;
    } 

    .section-texto-full h3 {
        color: #ffffff;
        font-size: 1.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .section-texto-full p {
        color: #ffffff;
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        text-align: center;
        line-height: 2;
    }

    .carousel-thumbs {
        width: fit-content;
        /* ajusta para o tamanho do conteúdo */
        margin: 0 auto;
    }

    .thumb-slider .swiper-slide {
        width: 110px;
        /* ou o tamanho desejado */
        height: 110px;
    }

    .thumb-slider .swiper-slide:hover img {
        transform: scale(1.1);
    }

    .thumb-slider .swiper-slide-thumb-active {
        opacity: 1;
        border-color: rgb(171, 41, 41);
        display: block;
    }

    .media .slide .image {
        display: grid;
        place-items: center;
        width: fit-content;
        /* ajusta para o tamanho do conteúdo */
        margin: 0 auto;
        /* Centraliza conteúdo horizontal e vertical */
        width: 95%;
        /* Ocupa toda a largura do slide */
        height: 95%;
        /* Altura fixa ou conforme o seu layout */
        overflow: hidden;
        border-radius: 10px;

        margin-top: -1px;

    }

    .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: -15rem;
    }

    .conteudo h1 {
        font-size: 2.8rem;
        color: #ffffff;
        margin-bottom: 2rem;
    }

    .conteudo p {
        font-size: 2.4rem;
    }

    
    button {
        background-color: #a89c9c6f;
        color: #121A25;
        cursor: pointer;
        font-size: 22px;
        padding: 11px;
        margin-left: 8%;
    }

    .left-slide {
        width: 40%;
    }

    .left-slide h1 {
        color: #ffffff;
        font-size: 1.8rem;
        margin-top: 35%;
        margin-bottom: 10%;
        text-align: center;
    }

    .left-slide p {
        font-size: 1.2rem;
        margin-bottom: 10%;
        text-align: center;
    }

    .right-slide-2 {
        background-image: url(/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/SlcPBDeskCvr.png);
    }
    .right-slide-3 {
        background-image: url(/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/PBSlc2.png);
    }
    .right-slide-4 {
        background-image: url(/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/PBSlc4.png);
    }


    .right-invert-image {
        background-image: url('/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/PBSlc5.png'); /* sua imagem */
        background-size: cover;
        min-height: 100%;
        width: 100%;
        background-position: center;
        position: absolute;
        border: 4px solid #121A25
    }

    .left-invert-panel {
        max-width: 50%;
    }

    .left-invert-panel h3 {
        font-size: 1.5rem;
        color: #fcfcfc;
    }

    .left-invert-panel p {
        font-size: 1rem;
        color: #ffffff;
    } 

    .section-texto-full h3 {
        color: #ffffff;
        font-size: 1.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .section-texto-full p {
        color: #ffffff;
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        text-align: center;
        line-height: 2;
        padding: 0 19%;
    }

    .carousel-thumbs {
        width: fit-content;
        /* ajusta para o tamanho do conteúdo */
        margin: 0 auto;
    }

    .thumb-slider .swiper-slide {
        width: 120px;
        /* ou o tamanho desejado */
        height: 120px;
    }


    .thumb-slider .swiper-slide:hover img {
        transform: scale(1.1);
    }

    .thumb-slider .swiper-slide-thumb-active {
        opacity: 1;
        border-color: rgb(171, 41, 41);
        display: block;
    }

    .media .slide {
        background: #11111143;
        margin-bottom: 5rem;
        border-radius: 50px;
        align-items: center;
    }


    .media .slide .image {

        width: fit-content;
        /* ajusta para o tamanho do conteúdo */
        margin: 0 auto;
        /* Centraliza conteúdo horizontal e vertical */
        width: 100%;
        /* Ocupa toda a largura do slide */
        height: 100%;
        /* Altura fixa ou conforme o seu layout */
        overflow: hidden;
        border-radius: 10px;

        margin-top: -1px;

    }

    /* Limite a largura/altura da imagem e centralize visualmente */
    .media .slide .image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 10px;
    }


    .media .slide .content {
        padding: 2rem;
    }

    .media .slide .content .link {
        padding-bottom: 1.5rem;
        font-size: 1.5rem;
    }

    .media .slide .content .link a {
        color: rgb(5, 238, 21);
    }

    .media .slide .content .link a:hover {
        color: #fff;
    }

    .media .slide .content .link span {
        color: #fff;
        padding: 0 1rem;
    }

    .media .slide .content h3 {
        font-size: 2rem;
        color: #fff;
        line-height: 1.5;
    }

    .media .slide .content p {
        font-size: 1.5rem;
        color: #aaa;
        line-height: 2;
        padding: 1rem 0;
    }


    /* Ícones das setas */
    .prev-media::after,
    .next-media::after {
        color: rgba(5, 238, 21, 0.383);
        max-width: 80%;
    }

    .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;
}
  
*/

    .conteudo {
        margin-bottom: -10rem;
        padding: 0 5rem 0 0;
    }

    .conteudo h1 {
        font-size: 2.8rem;
        color: #ffffff;
        margin-bottom: 6rem;
    }

    .conteudo p {
        font-size: 2.6rem;
    }

    button {
        background-color: #a89c9c6f;
        color: #121A25;
        cursor: pointer;
        font-size: 22px;
        padding: 11px;
        margin-left: 8%;
    }

    .left-slide {
        width: 40%;
    }

    .left-slide h1 {
        color: #ffffff;
        font-size: 2rem;
        margin-top: 35%;
        margin-bottom: -2%;
        text-align: center;
    }

    .left-slide p {
        font-size: 1.1rem;
        margin-bottom: 2%;
        text-align: center;
    }
    
    .right-slide-2 {
        background-image: url(/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/SlcPBDeskCvr.png);
    }
    .right-slide-3 {
        background-image: url(/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/PBSlc2.png);
    }
    .right-slide-4 {
        background-image: url(/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/PBSlc4.png);
    }

    .right-invert-image {
        background-image: url('/imgs/OurWork/SitePortPagImgs/Fotos/PresentBox/PBSlc5.png'); /* sua imagem */
        background-size: cover;
        min-height: 100%;
        width: 100%;
        background-position: center;
        position: absolute;
        border: 4px solid #121A25
    }

    .left-invert-panel {
        max-width: 50%;
        padding: 0 1.5rem 5rem 0;
    }

    .left-invert-panel h3 {
        font-size: 1.3rem;
        color: #fcfcfc;
    }

    .left-invert-panel p {
        font-size: .8rem;
        color: #ffffff;
    } 

    .section-texto-full h3 {
        color: #ffffff;
        font-size: 1.8rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .section-texto-full p {
        color: #ffffff;
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        text-align: center;
        line-height: 2;
        padding: 0 23%;
    }

    .carousel-thumbs {
        width: fit-content;
        /* ajusta para o tamanho do conteúdo */
        margin: 0 auto;
    }

    .thumb-slider .swiper-slide {
        width: 130px;
        /* ou o tamanho desejado */
        height: 130px;
    }

    .media .slide .image {
        width: fit-content;
        /* ajusta para o tamanho do conteúdo */
        margin: 0 auto;
        /* Centraliza conteúdo horizontal e vertical */
        width: 45%;
        /* Ocupa toda a largura do slide */
        height: 45%;
        /* Altura fixa ou conforme o seu layout */
        overflow: hidden;
        border-radius: 10px;
        margin-top: -1px;

    }

}