
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&family=Montserrat:wght@300;400;500;600;700;800;900&family=Chakra+Petch:ital,wght@0,400;0,700;1,400&display=swap&family=Michroma&display=swap'); */


/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
}


a {
    text-decoration: none;
}

:root {
    --cor-branca: #FFFFFF;
    --cor-amarelo: #FFB400;
    --cor-preto: #01080E;
    --cor-cinza-clato: #D3D3D3;
    --cor-verde-escuro: #2C6B2F;
    --cor-marrom: #8B4513;
}

/* PARA OS H2 */
#linha {
    color: var(--cor-amarelo);
}

.fa-regular {
    color: var(--cor-amarelo);
}

.sub-h2 {
    display: inline-block;
    color: #CBB05A;
    padding-bottom: 10px;
    letter-spacing: normal;
}
/* PARA OS H2 */

/* DIVISÕES */

.divisao {
    height: 3px;
    background-color: var(--cor-branca);
    border-radius: 0px 0px 500px 500px;
    position: relative; /* Para posicionar o triângulo corretamente */
}

.divisao::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 20px solid var(--cor-branca);
    position: absolute; 
    left: 50%;
    transform: translateX(-50%);
}
/* FIM DIVISÕES */

body {
    /* background-color: #01080E; */

    /* background: linear-gradient(#01080E, #0F1B2A); */
    background: var(--cor-preto);
    /* background: radial-gradient(circle, rgba(39,39,39,1) 0%, rgba(39,39,39,1) 9%, rgba(1,8,14,1) 63%); */
}

/* HEADER */
/* header {
    position: fixed;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    height: 80px;
    background: var(--cor-preto);
    color: #fff;
    box-shadow: var(--cor-amarelo) 0px 0px 10px 0px;
    border-radius: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
} */



header {
    position: fixed;
    top: 10px; /* ok */
    left: 0;
    width: 100%;
    height: 80px;

    /* background: var(--cor-preto); */
    color: #fff;

    z-index: 1000;
    transition: background 0.3s ease;
}

header .container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    height: 100%;

    display: flex;
    justify-content: space-evenly;
    align-items: center;
     box-shadow: var(--cor-amarelo) 0px 0px 10px 0px;
    border-radius: 50px;
    background: var(--cor-preto); /* opcional, para manter o fundo arredondado */
}



/* 
#header {
    transition: background 0.3s ease; 
}

header.scrolled {
    background: linear-gradient(140deg, #050000 0%, #01080E 100%);
} */



.menu-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: 0.4s;
}

.menu-hamburger .bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    transition: 0.4s;
}

.menu-hamburger.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-hamburger.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-hamburger.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.logo a img {
    padding: 10px;
    width: 120px;
    transition: .5s ease-in-out;
}

.logo a img:hover {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
}

.nav-menu img {
    display: none;
}


.nav-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.nav-menu ul li a {
    position: relative;
    color: #fff;
    text-decoration: none;
    transition: .5s ease-in-out;
    font-weight: bold;
    font-size: 16px;
}

.nav-menu ul li:nth-last-child(1) {
    position: relative;
    top: 1px;
}

.rede-sociais {
    display: flex;
    gap: 50px;
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  



.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
}

.social-icons li{
    list-style: none;
}

.rede-sociais a img {
    display: flex;
    gap: 10px;
    width: 20px;
}


.fa-instagram, .fa-whatsapp {
    font-size: 25px;
    color: #C2A14F;
}

.fa-instagram:hover, .fa-whatsapp:hover {
    font-size: 25px;
    color: #837b7b;
}

.nav-menu ul li a:hover {
    color: #CBB05A;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px; 
    width: 0;
    height: 1px;
    background-color: #CBB05A; 
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

.btn {
    padding: 12px 24px;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    background: linear-gradient(40deg, #01080E 0%, #01080E 100%);
    letter-spacing: 2px;
    background-color: transparent;
    border: 1px solid #8B4513;
    transition: .3s ease-in-out;
    cursor: pointer;
    box-shadow: 1px 1px 8px 2px var(--cor-marrom);
    animation: piscar-shadow 1s infinite alternate;
    border-radius: 30px 15px 30px 15px;
}

/* --cor-branca: #FFFFFF;
    --cor-amarelo: #FFB400;
    --cor-preto: #01080E;
    --cor-cinza-clato: #D3D3D3;
    --cor-verde-escuro: #2C6B2F;
    --cor-marrom: #8B4513; */

@keyframes piscar-shadow {
    0% {
        box-shadow: 1px 1px 10px 10px var(--cor-marrom);
    }
    5% {
        /* box-shadow: 1px 1px 10px 10px var(--cor-branca); */
    }

     0% {
        box-shadow: 1px 1px 10px 10px var(--cor-marrom);
    }
}


.btn a {
    color: #ffffff;
}

.btn:hover {
    transform: scale(1.1);
}
/* FIM HEADER */

/* **************************************************** */


/* COOKIES */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    display: none;
    z-index: 1000;
  }
  
  .cookie-banner button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
  }
  
  .cookie-banner button:hover {
    background-color: #45a049;
  }
  

/* FIM COOKIES */



/* PRINCIPAL */
main {
   
    /* padding: 0px 20px; */
    text-align: center;
    margin-top: 80px;
    /* background-color: var(--cor-preto); */
}

.principal {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    /* height: 520px; */
    padding: 100px;   
     max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.principal .texto {
    text-align: start;
    flex: 2 1 300px;
    /* background-color: red; */
}

.principal .texto h1 .span {
    color: var(--cor-amarelo);
    font-size: 40px;
    display: inline;
}

.principal .texto h1 {
    color: var(--cor-branca);
    font-size: 40px;
    line-height: 50px;
    font-weight: bold;
    padding-bottom: 20px;
    text-align: start;
}

.principal .texto span {
    display: inline-block;
    padding-bottom: 20px;
    color: var(--cor-branca);
    font-size: 16px;
    line-height: 19.2px;
    letter-spacing: normal;
    /* width: 90%;    */
}

/* .principal .imagem {
    position: relative;
} */

.principal-img {
    flex: 1 1 300px;
    position: relative;
    transition: all 0.5s ease;
}

.principal-img:hover {
    transform: scale(1.05);
}

.principal-img img {
    position: absolute;
    width: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    /* border-radius: 30% 70% 18% 82% / 30% 41% 59% 70% ; */
    /* background-color: var(--cor-verde-escuro); */
}

/* .animated {
    position: relative;
    top: -60px;
} */

/* FIM PRINCIPAL */

/* **************************************************** */


/* QUEM SOMOS */
.box {
    /* background-color: var(--cor-branca); */
}

.quem-somos {
     max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 100px 0;
}

.quem-somos .imagem {
    position: relative;
    z-index: 1;
}

.quem-somos .imagem .imagem-fundo {
    position: absolute;
    top: -20%;
    left: -55%;
    color: #F5003D03;
    font-size: 235px;
    font-weight: 800;
    line-height: 1.2em;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #F5003D63;
    stroke: #F5003D63;
    z-index: 1;
}

.quem-somos .imagem img {
    width: 450px;
    height: 400px;
}

.quem-somos .texto {
    width: 65%;
}

.quem-somos .texto h2 {
    color: white;
    padding-bottom: 20px;
}

.texto span {
    display: inline-block;
    color: #CBB05A;
    padding-bottom: 10px;
    letter-spacing: normal;
}

.texto p {
    color: #ccc;
    padding-bottom: 20px;
    letter-spacing: normal;
}
/* FIM QUEM SOMOS */

/* **************************************************** */

/* PROCESSOS */

.processos {
    text-align: center;
    padding: 100px 0;
    /* background-size: cover;
    background-position: 100%;
    background-attachment: fixed; */

    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.processos h2 {
    color: white;
    padding-bottom: 20px;
}

.processos-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.processos .passos {
    width: 350px;
    position: relative;
    text-align: center;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    background-color: transparent;
    background-image: linear-gradient(220deg, #272727 0%, #01080E 62%);
    transition: .5s ease-in-out;
    border: 1px solid transparent;
}

.processos .passos:hover {
    border: 1px solid #C7B54F;
}

.processos .passos img {
    width: 100px;
    margin: 0 auto;
}


.processos .passos h2 {
    color: #CBB05A;
    font-size: 25px;
}

.processos .passos span {
    display: inline-block;
    padding: 40px 0 10px;
    color: white;
    font-size: 18px;
}

/* FIM PROCESSOS */







/* **************************************************** */

/* NICHOS */

/* .nichos {
    text-align: center;
    padding: 100px 0;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.nichos h2 {
    color: var(--cor-branca);
    font-size: 1rem;
    padding: 20px 0;
}

.nichos h3 {
    color: white;
    font-size: 1.8rem;
    padding-bottom: 20px;
}

.nichos-box {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.nichos-img {
    width: 90px;
}

.nichos-img:hover {
    transform: scale(1.1);
    transition: 1s ease-in-out;
}

.nichos-img img {
    width: 100%;   
    
}

.nichos-img span {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    font-size: 16px;
}

.nichos-img .portfolios, .nichos-img .campanha-digital {
    color: #997EEE;
    font-weight: bold;
}

.nichos-img .contabilidade {
    color: #EB4936;
    font-weight: bold;
}

.nichos-img .bateria {
    color: #A9F20C;
    font-weight: bold;
}

.nichos-img .imobiliaria {
    color: #FF9501;
    font-weight: bold;
}

.nichos-img .advogados {
    color: #F94D39;
    font-weight: bold;
}
     */


/* FIM NICHOS */

/* *************************************************** */

/* NEGÓCIO INTERNET */
.negocio-internet {
    padding: 100px 0;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.negocio-internet-box {
    display: flex;
    justify-content: space-around;
}

.negocio-internet-box .texto span {
    font-size: 16px;
}

.negocio-internet-box .texto h2 {
    color: white;
    font-size: 30px;
    line-height: 40px;
    padding-bottom: 20px;
}

.negocio-internet-box .texto #p1 {
    font-size: 30px;
    line-height: 40px;
    color: white;
}

.negocio-internet-box .texto #p2 {
    font-size: 16px;
    color: white;
}

.negocio-internet-box .img {
    position: relative;
    z-index: 2;
}

.negocio-internet-box .img img {
    z-index: 2;
    width: 500px;
}

/* FIM NEGÓCIO INTERNET */

/* **************************************************** */

/* SOLUÇÕES EMPRESAS */
.solucoes-empresas {
    text-align: center;
    padding: 100px 0;

    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.solucoes-empresas-box {
    display: flex;
    /* padding: 4px 100px; */
    justify-content: space-between;
    /* background-color: red; */
}

.solucoes-empresas-box .img {
    top: 60px;
    /* width: 400px; */
    z-index: 2;
    flex: 1 1 200px;
}

.solucoes-empresas-box img img {
    width: 300px;
}

.solucoes-empresas .texto {
    text-align: start;
    flex: 1 1 300px;
}

.solucoes-empresas .texto span {
    font-size: 16px;
}

.solucoes-empresas .texto h2 {
    color: white;
    font-size: 30px;
    line-height: 40px;
    padding-bottom: 20px;
}

.solucoes-empresas .texto p {
    font-size: 16px;
    line-height: 19.2px;
    letter-spacing: 0.7px;
}

/* FIM SOLUÇÕES EMPRESAS */

/* **************************************************** */

/* MEUS SERVIÇOS */
.servicos {
    padding: 100px 0;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.servicos .titulo-servico {
    text-align: center;
}

.servicos .titulo-servico h2 {
    color: #F5003D03;
    font-size: 135px;
    font-weight: 800;
    line-height: 1.2em;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #8a8225;
    stroke: #8a2525;
}

.servicos .titulo-servico h3 {
    position: relative;
    top: -60px;
    color: white;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: normal;
}


.servicos .titulo-servico-box {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.servicos .titulo-servico-box .servico-box {
    padding: 30px;
    border-radius: 30px;
    width: 350px;
    background-color: transparent;
    background-image: linear-gradient(220deg, #272727 0%, #01080E 62%);
    border: 1px solid transparent;
    transition: .5s ease-in-out;   
}

.servicos .titulo-servico-box .servico-box:hover {
    border: 1px solid #C7B54F;
}

.servicos .titulo-servico-box .servico-box img {
    width: 100px;
    padding-bottom: 15px;
}

.servicos .titulo-servico-box .servico-box h2 {
    color: #f5003d;
    font-size: 25px;
    line-height: 25px;
    text-align: left;
    letter-spacing: normal;
    padding-bottom: 15px;
}

.servicos .titulo-servico-box .servico-box span {
    display: inline-block;
    font-size: 16px;
    line-height: 19.2px;
    text-align: left;
    letter-spacing: normal;
    color: #ffffff;
}
/* FIM MEUS SERVIÇOS */

/* PREÇO */
.preco {
    padding: 100px 0;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.preco-span {
    color: #C2A14F;
    margin: 0 auto;
}

.preco .h2 {
    color: #ddd;
    padding-top: 10px;
    margin: 0 auto;
}

.preco p {
    color: #C2A14F;
}

.preco-box {
    margin-top: 50px;
    border-radius: 10px;
    padding: 35px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: white;
}

.preco-box img {
    width: 60px;
}


.preco-box h2 {
    color: #fff;
    font-size: 20px;
    position: relative;
    top: -15px;
}

.preco-box h3 {
    font-size: 28px;
    color: #CBB05A;
    padding: 10px;  
}


.preco-pacotes {
    margin-top: 35px;
    display: flex;
    justify-content: space-evenly;

    flex-wrap: wrap;
}
 
.pacotes-box {    
    box-shadow: 3px 1px 8px 1px #845a5a;
    border-radius: 15px;
    transition: .5s ease-in-out;

    position: relative;
    padding-bottom: 100px;
    transition: .5s ease-in-out;
    width: 340px;
}

.pacotes-box:hover {
   transform: scale(1.02);
}


.pacote-1 {
    background: linear-gradient(140deg, #312f23 0%, #090907 100%);
    border-radius: 15px 15px 0 0;
}

.pacotes-box .faca-orcamento {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
    width: 60%;
}

.pacotes-box .faca-orcamento a .btn {
    font-size: 10px;
}

.pacote-1 > h2 {
    color: white;
}

.pacotes-box h2 {
    padding: 15px;
    color: white;
    font-size: 20px;
}

.pacotes-box h2 span {
    font-size: 10px;
}

.pacotes-box h3 {
    color: #c0c0c0;
    padding: 10px;
}

.pacotes-box p {
    padding: 2px 25px;
    font-size: 15px;
    text-align: start;
}

.pacotes-box .faca-orcamento {
    padding-top: 15px;
}
/* FIM PREÇO */

/* PORTFÓLIO */
.portfolio {
    padding: 100px 0;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.portfolio .meu-portfolio {
    text-align: center;
}

.portfolio .meu-portfolio h2 {
    color: #F5003D03;
    font-size: 135px;
    font-weight: 800;
    line-height: 1.2em;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #8a8225;
    stroke: #F5003D63;
}

.portfolio .meu-portfolio h3 {
    position: relative;
    top: -60px;
    color: white;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: normal;
}

.portfolio .meu-portfolio span {
    color: white;
    position: relative;
    top: -40px;
}


.portfolio h2 {
    margin-bottom: 2px;
}

.portfolio .portfolio-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 2.5rem;
}

.portfolio-container .portfolio-box {
    position: relative;
    display: flex;
    border-radius: 10px;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
    overflow: hidden;
}

.portfolio-box img {
    width: 100%;
    transition: .5s ease;
}

.portfolio-box:hover img {
    transform: scale(1.1);
}

.portfolio-box .portfolio-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0, .1), #8a2525);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 4px;
    opacity: 0;
    transition: .5 ease;
}

.portfolio-box:hover .portfolio-layer {
    opacity: 1;
} 


.portfolio-layer h3 {
    font-size: 26px;
}

.portfolio-layer p {
    font-size: 20px;
    margin: .3rem 0 1rem;
}

.portfolio-layer a i {
    font-size: 26px;
    color: #ffff;
    z-index: 2;
}

/* PORTFÓLIO */

/* FAQ */

.faq {
    /* background-color: #01080e; */
    padding: 100px 0;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.faq-box {
    background-color: var(--color-1);
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    margin: 0 auto;
}

.faq h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #C2A14F;
}

.faq-item {
    margin-bottom: 10px;
    color: #ccc;
}

.faq-item p {
    color: #8e8585;
}

.faq-item input[type="checkbox"] {
    display: none;
}

.faq-item label.faq-question {
    display: block;
    cursor: pointer;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.faq-item label.faq-question:hover {
    background-color: #272727;
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-radius: 0 0 4px 4px;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.faq-item input[type="checkbox"]:checked + label + .faq-answer {
    max-height: 300px;
    padding: 10px;
}

/* Estilo adicional */
.faq-item .faq-answer p {
    margin: 0;
}

/* FIM FAQ */

/* FIM DEPOIMENTO */

/*  RODAPE */

.rodape {
    background: url(../assets/imagens/rodape/rodape-imagem.svg) no-repeat;
    background-size: cover;
    background-position: 1%;
    background-color: #081924;
    padding: 60px 120px;
    text-align: center;
}

.rodape-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: start;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.rodape-info {
    width: 500px;
    text-align: start;
}

.rodape-info img {
    width: 120px;    
}

.rodape-info p {
    color: #d3d4e1;   
    font-weight: 200;
    font-size: 14px;
    line-height: 23.8px;
    text-align: start;
    letter-spacing: normal;
    height: 118px;
}


.rodape-contato {
    width: 65%;
}

.rodape-contato h2 {
    color: white;
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 15px;
}

.icon-p {
    display: flex;
    gap: 10px;
    padding-top: 5px;
}

.icon-p .fa-whatsapp {
    font-size: 25px;
}

.icon-p i {
    color: #d3d4e1;
    font-size: 20px;
}

.rodape-contato p, .rodape-menu {
    color: #d3d4e1;   
    font-weight: 200;
    font-size: 14px;
    line-height: 23.8px;
    text-align: start;
    letter-spacing: normal;
}

.rodape-menu {
    width: 30%;
}

.rodape-menu h2 {
    color: white;
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 18px;
}

.rodape-menu li {
    padding-top: 5px;
}

.rodape-menu ul li {
    list-style: none;
}

.rodape-menu ul li a {
    color: #d3d4e1;
}

.rodape-localizacao {
    width: 200px;
}

.rodape-localizacao h2 {
    color: white;
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 18px;
}

.rodape-localizacao iframe {
    width: 250px;
    height: 180px;
}


.copyright {
    display: flex;
    justify-content: space-between;
    color: #d3d4e1;
    border-top: 1px solid #d3d4e1;
    padding: 30px 0 0 0;
    margin: 20px 0 0 0;
    text-align: start;
}

.copyright a {
    color: #d3d4e1;
}

.copyright a:hover {
    color: #767781;
}



@keyframes pulsate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


/*  FIM RODAPE */


/* PÁGINA ORÇAMENTO */

.form-container .img {
    margin: 0 auto;
    width: 260px;
    padding: 30px;
}


.form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #121215;
    text-align: center;
}

.navigation-buttons {
    margin-top: 20px;
}
.navigation-buttons button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
}
.navigation-buttons button:disabled {
    background-color: #c0c0c0;
    cursor: not-allowed;
}


form {
    background: #081924;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(232, 225, 225, 0.1);
    width: 90%;
}

#question-container {
    margin-bottom: 20px;
    width: 100%;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #fff;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button, #submitBtn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

#submitBtn {
    margin: 20px auto;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

p {
    color: #fff;
}

/* FIM PÁGINA ORÇAMENTO */

/* PROPOSTA */
.container {
    margin: 20px;
    max-width: 600px;
    margin: 0 auto;
}


h1 {
    text-align: center;
}

#proposalContent {
    margin-top: 20px;
}

p {
    margin-bottom: 10px;
    font-weight: bold;
}

/* FIM PROPOSTA */












