@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 {
    display: inline-block;
}

#menu-btn.fa-times {
    transform: rotate(180deg);
}

#menu-btn {
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    display: inline-block;
}

.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: 70rem;
    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;
    margin-right: 4%;
}



.heading span {
    font-size: 6rem;
    color: #fff;
    padding: .5rem .5rem;
    
}



.home {
    padding: 0;
    margin-top: 5rem;
    
    
}

.home .slide {
    position: relative;
    justify-content: center;
    min-height: 100vh;
    background-size: cover !important;
    background-position: center !important;
    padding: 2rem 9%;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    z-index: 0; /* base */
}

/* Camada escura */
.home .slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4); /* camada escura semi-transparente */
    z-index: 1; /* abaixo do gradiente */
}

/* Gradiente linear */
.home .slide::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 2;
    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 */
    );
}

/* Conteúdo acima de tudo */
.home .slide > * {
    position: relative;
    z-index: 3;
    justify-content: center;
}


/* Ajustar o overlay preto sem afetar a vinheta */


/* Conteúdo fica acima de tudo */
.home .slide .content {
    position: relative;
    z-index: 3;
    width: 100vh;
    
}





.home .slide .content span {
    font-size: 6rem;
    color: rgb(5, 238, 21);
    display: flexbox;
    width: 100vw;
    /* text-shadow precisa de valores de deslocamento e cor */
    text-shadow: 2px 2px 4px #000; /* exemplo de sombra preta */
}

.home .slide .content h3 {
    font-size: 5rem;
    color: #fff;
    padding: 1rem 0;
    /* corrigido text-shadow com valores válidos */
    text-shadow: 1px 0 2px #000;
    margin-left: 2%;
    margin-right: 8%;
    margin-bottom: 5%;
}

.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;
}
.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,
        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 */
    );
}


.left-slide {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    margin: 0;
    padding: 0;
    transition: transform 0.5s ease-in-out;
}


.left-slide>div {
    height: 100.0769%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.left-slide h1 {
    font-size: 2rem;
    line-height: 1.7;
    text-align: center;
    text-shadow: 4px 0 6px #000;
    margin-bottom: 120%;
}

.left-slide p {
    font-size: 1.5rem;
    text-align: center;
    line-height: 2;
    text-shadow: 4px 0 6px #000;
    margin-bottom: 100%;
}

.left-slide span {
    font-size: 1.8rem;
    margin-top: 20%;
    text-align: center;
    line-height: 1.7;
    color: var(--secondary-color);
    text-shadow: 4px 0 6px #000;
}

.slider-container .action-buttons button {
    position: absolute;
    left: 31.5%;
    top: 50%;
    z-index: 99;
    width: 5rem;

}

.slider-container .action-buttons .down-button {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.slider-container .action-buttons .up-button {
    transform: translateY(-100%);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

button {
    background-color: #a89c9c6f;
    color: #121A25;
    cursor: pointer;
    font-size: 14px;
    padding: 7px;
    margin-left: 3.5%;
}

button:hover {
    background-color: #726868a4;
    color: #0a2241a1;
}

button:focus {
    outline: none;
}


.right-slide {
    position: absolute;
    top: 0;
    left: 35%;
    width: 65%;
    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%;
    
}



.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;
    margin-bottom: 40rem;

}


.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-color: rgba(0, 0, 0, 0.6); /* camada escura semi-transparente */
    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: 5px;
    border-radius: 5px;
    display: inline-block;
    font-size: 3rem;
    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: 2.2rem;
    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 */
}

.btnAlign {
    margin-bottom: 10px;

}

.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);
}

/* 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);
}


.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);
}

.logoWorktitle {
    font-size: 5rem;
    color: #fff;
    margin-top: -15rem;
    margin-bottom: 5rem;
    justify-content: center;     /* centraliza horizontalmente */
    align-items: center;         /* centraliza verticalmente */
    text-align: center;          /* centraliza texto em múltiplas linhas */
}

.logoWorkp {
    font-size: 2.5rem;
    line-height: 1.8;
    color: #aaa;
    padding: 4rem;
    margin-bottom: 18rem;
    margin-top: 10rem;
    text-align: center;
}


.lpWorktitle {
    font-size: 5rem;
    color: #fff;
    margin-bottom: 4rem;
    margin-top: 20rem;
    justify-content: center;     /* centraliza horizontalmente */
    align-items: center;         /* centraliza verticalmente */
    text-align: center;          /* centraliza texto em múltiplas linhas */
}



.lpWorkp {
    font-size: 2.5rem;
    line-height: 1.8;
    padding: 4rem;
    text-align: center;
    margin-top: 10rem;
    margin-bottom: 18rem;
    color: #aaa;
}


.work .slide {
    background: #111;
    margin-bottom: 7rem;
    border-radius: 50px;
}

.work .slide:hover .image img {
    transform: scale(1.1);
}

.work .slide .image {
    height: 25rem;
    width: 100%;
    overflow: hidden;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.work .slide .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.work .slide .content {
    padding: 2rem;
}

.work .slide .content .link {
    padding-bottom: 1.5rem;
    font-size: 1.5rem;
}

.work .slide .content .link a {
    color: rgb(5, 238, 21);
}

.work .slide .content .link a:hover {
    color: #fff;
}

.work .slide .content .link span {
    color: #fff;
    padding: 0 1rem;
}

.work .slide .content h3 {
    font-size: 2rem;
    color: #fff;
    line-height: 1;
    margin-top: 2rem;
}

.work .slide .content p {
    font-size: 1.5rem;
    color: #aaa;
    line-height: 2;
    padding: 4rem 0;
}


.box-container {
    display: grid;
    /*Vai cria o auto-fit também tenta 
    colocar quantas colunas der, expandindo os itens para caber no espaço disponível.
    E com controle do tamanho mínimo e máximo dos itens.*/
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
}

.box-container .box {
    background: #111;
}

.box-container .box.second {
    display: flex;
    flex-flow: column-reverse;
}

.box-container .box:hover .image img {
    transform: scale(1.1);
}

.box-container .box .image {
    height: 30rem;
    width: 100%;
    overflow: hidden;
}

.box-container .box .image img {
    height: 100%;
    width: 100%;
    /*a imagem é dimensionado para manter sua proporção e preencher 
    toda a caixa de conteúdo do elemento*/
    object-fit: cover;
}

.box-container .box .content {
    padding: 2rem;
    text-align: center;
}

.box-container .box .content img {
    height: 9rem;
    margin-bottom: 1rem;
    filter: invert(1);
}

.box-container .box .content h3 {
    font-size: 2rem;
    color: rgb(5, 238, 21);
}

.box-container .box .content p {
    line-height: 2;
    font-size: 1.5rem;
    color: #aaa;
    padding: 1rem 0;
}

.team .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(29rem, 1fr));
    gap: 1.5rem;
    margin-top: 8rem;
    margin-bottom: 8rem;
}

.team .box-container .box {
    height: 40rem;
    overflow: hidden;
    position: relative;
    border-radius: 50px;
}

.team .box-container .box:hover .content {
    transform: translateY(0);
}

.team .box-container .box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.team .box-container .box .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 2rem;
    transform: translateY(6.5rem);
}

.team .box-container .box .content span {
    font-size: 1.5rem;
    color: rgb(5, 238, 21);
}

.team .box-container .box .content h3 {
    font-size: 2rem;
    color: #fff;
    padding-top: .5rem;
}

.team .box-container .box .content .share {
    padding-top: 2rem;
    margin-top: 1.5rem;
    border-top: 0.1rem solid #aaa;
}

.team .box-container .box .content .share a {
    font-size: 2rem;
    color: #fff;
    margin-right: 1.5rem;
}

.team .box-container .box .content .share a:hover {
    color: rgb(5, 238, 21);
}

#banner1 {
    margin-top: 100rem;
    margin-bottom: -15rem;
    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;
}





#banner2 {
    margin-top: 20rem;
    margin-bottom: -15rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url(../imgs/BannerSimples/Banner3.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 30rem;
    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;
}


.review {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 25rem;
    
}

.review .information {
    flex: 1 1 35rem;
}

.review .information span {
    font-size: 4rem;
    color: rgb(5, 238, 21);
}

.review .information h3 {
    font-size: 4rem;
    color: #fff;
    padding-top: 1rem;
}

.review .information p {
    font-size: 1.5rem;
    line-height: 2;
    color: #aaa;
    padding: 1rem 0;
}

.review .review-slider {
    flex: 1 1 60rem;
}

.review .review-slider .slide {
    background: #111;
    padding: 2rem 3rem;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 5px;
}

.review .review-slider .slide p {
    font-size: 1.5rem;
    line-height: 2;
    color: #aaa;
}

.review .review-slider .slide .user {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.review .review-slider .slide .user img {
    height: 5rem;
    width: 5rem;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 1rem;
}

.review .review-slider .slide .user h3 {
    font-size: 2rem;
    color: #fff;
}

.review .review-slider .slide .user span {
    color: rgb(5, 238, 21);
    font-size: 1.5rem;
}

.review .review-slider .slide .user i {
    font-size: 5rem;
    margin-left: auto;
    margin-right: 2rem;
    color: rgb(5, 238, 21);
}



.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 {
    background: #111;
    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 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blogs .slide .content {
    padding: 2rem;
}

.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: #111;
    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: #111;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.pricing .plan.basic {
    background: #111;
    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.8rem;
    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;

    background: #121A25;
    border-radius: 50%; /* Torna os links circulares */
    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: 10px; /* 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: #121a2573;
}

.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: 430px) and (max-width: 768px) {
    html {
        font-size: 65%;
    }

    #menu-btn {
        font-size: 1.5rem;
    }

    .header {
        padding: 0.5rem;
    }

    .header .logo {
        font-size: 1.5rem;
        margin-top: 1%;
    }

    .left-slide h1 {
        margin-top: 20%;
        margin-bottom: 80%;
    }

    .left-slide p {
        margin-bottom: 60%;
    }

    .left-slide span {
        margin-bottom: 20%;

    }

    button {
        background-color: #a89c9c6f;
        color: #121A25;
        cursor: pointer;
        font-size: 16px;
        padding: 8px;
        margin-left: 3.5%;
    }

    .logoWorktitle {
        font-size: 5rem;
        color: #fff;
        margin-top: -15rem;
        margin-bottom: 5rem;
        justify-content: center;     /* centraliza horizontalmente */
        align-items: center;         /* centraliza verticalmente */
        text-align: left;          /* centraliza texto em múltiplas linhas */
    }

    .lpWorktitle {
        font-size: 5rem;
        color: #fff;
        margin-bottom: 4rem;
        margin-top: 20rem;
        justify-content: center;     /* centraliza horizontalmente */
        align-items: center;         /* centraliza verticalmente */
        text-align: right;          /* centraliza texto em múltiplas linhas */
    }

    .banner span {
        font-size: 4rem;
    }

    .banner h3 {
        margin-top: 7rem;
        font-size: 2rem;
    }


}


@media (min-width: 768px) and (max-width: 991px) {
    html {
        font-size: 75%;
    }

    #menu-btn {
        font-size: 1.5rem;
    }

    .header {
        padding: 0.5rem;
    }

    .header .logo {
        font-size: 1.5rem;
        margin-top: 1%;
    }

    .left-slide h1 {
        margin-top: 30%;
        margin-bottom: 45%;
        text-align: center;
    }

    .left-slide p {
        margin-bottom: 35%;
        text-align: center;
    }

    .left-slide span {
        margin-bottom: 20%;

    }
    button {
        background-color: #a89c9c6f;
        color: #121A25;
        cursor: pointer;
        font-size: 18px;
        padding: 9px;
        margin-left: 3.5%;
    }

    .logoWorktitle {
        font-size: 5rem;
        color: #fff;
        margin-top: -15rem;
        margin-bottom: 5rem;
        justify-content: center;     /* centraliza horizontalmente */
        align-items: center;         /* centraliza verticalmente */
        text-align: left;          /* centraliza texto em múltiplas linhas */
    }
    .lpWorktitle {
        font-size: 5rem;
        color: #fff;
        margin-bottom: 4rem;
        margin-top: 20rem;
        justify-content: center;     /* centraliza horizontalmente */
        align-items: center;         /* centraliza verticalmente */
        text-align: right;          /* centraliza texto em múltiplas linhas */
    }

    .banner span {
        font-size: 4rem;
    }

    .banner h3 {
        margin-top: 7rem;
        font-size: 2rem;
    }

}

@media (min-width: 992px) {
    html {
        font-size: 85%;
    }

    #menu-btn {
        font-size: 1.5rem;
    }

    .header {
        padding: 0.6rem;
    }

    .header .logo {
        font-size: 1.5rem;
        margin-top: 1%;
    }

    button {
        background-color: #a89c9c6f;
        color: #121A25;
        cursor: pointer;
        font-size: 22px;
        padding: 11px;
        margin-left: 3.5%;
    }

    .left-slide h1 {
        font-size: 4rem;
        margin-top: 35%;
        margin-bottom: 20%;
        text-align: center;
    }

    .left-slide p {
        font-size: 2rem;
        margin-bottom: 15%;
        text-align: center;
    }

    .left-slide span {
        font-size: 2rem;
        margin-bottom: 30%;

    }

    .logoWorktitle {
        font-size: 5rem;
        color: #fff;
        margin-top: -15rem;
        margin-bottom: 5rem;
        justify-content: center;     /* centraliza horizontalmente */
        align-items: center;         /* centraliza verticalmente */
        text-align: left;          /* centraliza texto em múltiplas linhas */
    }
    .lpWorktitle {
        font-size: 5rem;
        color: #fff;
        margin-bottom: 4rem;
        margin-top: 20rem;
        justify-content: center;     /* centraliza horizontalmente */
        align-items: center;         /* centraliza verticalmente */
        text-align: right;          /* centraliza texto em múltiplas linhas */
    }

    .banner span {
        font-size: 4rem;
    }

    .banner h3 {
        margin-top: 7rem;
        font-size: 2rem;
    }
}




