<link rel="stylesheet" href="style.css?v=2">

html {
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}
	
/* ===================== */
/* FORÇA POPPINS EM TODO O SITE */
/* ===================== */
body, body * {
    font-family: 'Poppins', sans-serif !important;
}

/* ===================== */
/* ESTILO CONSISTENTE */
/* ===================== */
h1 { font-size: 32px; font-weight: 600; }
h2 { font-size: 24px; font-weight: 600; }
h3 { font-size: 20px; font-weight: 500; }

p {
  font-size: 16px;
  margin: 0 0 10px 0;
}

a {
  color: #d35400;
  text-decoration: none;
}

a:hover {
  color: #bf360c;
}
/* ===================== */
/* TEXTO SERVIÇOS CENTRALIZADO E CONCENTRADO */
/* ===================== */
.servicos-topo p {
    max-width: 950px;       /* reduz a largura para centralizar melhor */
    margin: 0 auto 20px;    /* centraliza horizontalmente */
    text-align: justify;    /* justifica o texto */
    line-height: 1.8;       /* espaçamento entre linhas */
    padding: 0 15px;        /* espaço mínimo nas bordas */
}
.servicos-topo h1 {
    max-width: 650px;
    margin: 0 auto 15px;
    text-align: center;
    padding: 0 15px;
}
/* ===================== */
/* BANNER */
/* ===================== */

.banner h1,
.banner p,
.banner a {
    color: white !important;
}
.banner {
    position: relative;
    background: url('imagens/banner.jpg') no-repeat center center;
    background-size: cover;
    padding: -20px 20px;
    color: #ccc; /* letras cinza claro */
}

/* ===================== */
/* BOTÕES GERAIS */
.botao {
    display: inline-block;
    background: #d35400;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: background 0.3s;
    font-family: 'Poppins', sans-serif;
}

.botao:hover {
    background: #bf360c;
}


/* ===================== */
/* RESET / GERAL          */
/* ===================== */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: #333;
}

/* ===================== */
/* LAYOUT PRINCIPAL       */
/* ===================== */
.container {
    display: flex;
    align-items: flex-start;
    min-height: 100vh;

/* COLUNA ESQUERDA */
.sidebar {
    width: 220px;
    padding: 40px;
    position: sticky;
    top: 0;
    height: 100vh;
    background-image: url("imagens/pattern.png");
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
}
/* COLUNA DIREITA - CONTEÚDO PRINCIPAL */
.content {
    flex: 1;                 /* ocupa o resto da tela */
    padding: 40px 20px;
    box-sizing: border-box;
}
.logo {
    width: 200px;
    margin-bottom: 40px;
}

/* Centraliza o logotipo na coluna esquerda */
.sidebar .logo {
    display: block;       /* garante que seja tratado como bloco */
    margin: 0 auto 40px;  /* centraliza horizontalmente e mantém margem inferior */
}
/* ===================== */
/* BANDEIRAS LATERAIS */
/* ===================== */
.idiomas-lateral {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0; /* espaço entre logo e bandeiras */
    gap: 10px;       /* espaço entre bandeiras */
}

.idiomas-lateral img {
    width: 28px;    /* tamanho uniforme das bandeiras */
    height: auto;
    cursor: pointer;
    transition: transform 0.2s;
}

.idiomas-lateral img:hover {
    transform: scale(1.1);
}

/* MENU */
.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 200px;
}

.menu a {
    text-decoration: none;
    color: #555;
    padding: 12px 0;
    font-weight: 400;
    transition: color 0.3s;
}

.menu a.active,
.menu a:hover {
    color: #d35400;
}
/* ===================== */
/* REDES SOCIAIS LATERAL - SVG */
/* ===================== */
.social-imagens {
    display: flex;
    gap: 15px;              /* espaço entre imagens */
    justify-content: center;
    margin-top: 80px;       /* distância do menu */
}

.social-imagens img {
    width: 35px;            /* tamanho da imagem */
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.social-imagens img:hover {
    transform: scale(1.15); /* efeito ao passar o rato */
}
/* ===================== */
/* BANNER                 */
/* ===================== */

.content {
    flex: 1;       /* ocupa toda largura da direita */
    margin: 0;
    padding: 0;    /* sem padding para que a imagem do banner encoste nas bordas */
}

/* Banner preenchendo a coluna direita inteira */
.banner {
    width: 100%;                 /* preenche toda a coluna */
    height: 400px;               /* altura desejada */
    background-image: url("imagens/banner.jpg");
    background-position: center; /* centraliza a imagem */
    background-size: cover;      /* cobre toda a área sem deixar bordas */
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}
.banner-text {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-top: 150px;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center; /* CENTRALIZA OS TEXTOS */
}
.banner-text {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-top: 150px;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
}

.banner-text h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-family: inherit;
}

.banner-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: inherit;
}

.botao {
    display: inline-block;
    background: #d35400;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: background 0.3s;
    font-family: 'Poppins', sans-serif;
}

.botao:hover {
    background: #bf360c;
}

/* ===================== */
/* 3 QUADRADOS INICIAIS  */
/* ===================== */
.section-inner.three-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-inner.three-boxes .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.section-inner.three-boxes .box:nth-child(1) img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
}

.section-inner.three-boxes .box:nth-child(2) p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
    flex: 0.85;
    padding: 0 25px;
	hyphens: auto;
}

.section-inner.three-boxes .box:nth-child(3) .checklist {
    list-style: none;
    padding: 0;
    margin-top: 60px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

.section-inner.three-boxes .box:nth-child(3) .checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    text-align: justify;
}

.section-inner.three-boxes .box:nth-child(3) .checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d35400;
    font-weight: 700;
}

/* Link centralizado “TODOS OS SERVIÇOS” */
.todos-servicos {
    text-align: center;
    margin: 30px auto 40px auto;
}

.todos-servicos a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #d35400;
    text-decoration: none;
}

.todos-servicos a:hover {
    color: #bf360c;
}

.todos-servicos a .seta {
    display: none; /* remove seta */
}

.todos-servicos::before {
    content: none; /* remove qualquer ✓ antes do link */
}

/* ===================== */
/* GALERIA MINI INDEX     */
/* ===================== */

.galeria-index {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    overflow: hidden;
    box-sizing: border-box;
}

.slider-container {
    width: 100%;
    overflow: hidden;
}

.index-track {
    display: flex;
    gap: 30px;
    transition: transform 0.1s linear;
}

.index-track img {
    width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.index-track img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* RESPONSIVO */
@media (max-width: 1200px) {
    .index-track img { width: 320px; height: 210px; }
}

@media (max-width: 768px) {
    .index-track img { width: 250px; height: 160px; }
}

@media (max-width: 480px) {
    .index-track img { width: 180px; height: 120px; }
}
/* ===================== */
/* SEÇÃO 2 QUADRADOS MAIORES */
/* ===================== */
.section-inner.two-boxes {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: rgba(44,44,44,0.1);
    border-radius: 12px;
}

.section-inner.two-boxes .box {
    background: transparent;
    border: none;
    padding: 20px;
    flex: 1 1 48%;
    min-width: 300px;
    box-sizing: border-box;
    text-align: left;
}

.section-inner.two-boxes .box img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
    margin: 0 auto 20px auto;
}

.section-inner.two-boxes .box p,
.section-inner.two-boxes .box .check-text p {
    font-family: "Poppins", sans-serif;
    color: #333;
}

/* ===================== */
/* GALERIA SERVIÇOS            */
/* ===================== */


.galeria.servico .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
}

.galeria.servico .servico-item {
    flex: 1 1 calc(33.333% - 20px); /* 3 colunas desktop */
    box-sizing: border-box;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria.servico .servico-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* IMAGENS MAIORES */
.galeria.servico .servico-item img {
    width: 100%;
    height: 250px; /* altura aumentada */
    object-fit: cover;
    display: block;
}

/* TITULO E TEXTO */
.galeria.servico .servico-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 12px 0 8px 0;
    color: #d35400;
    font-family: 'Poppins', sans-serif;
}

.galeria.servico .servico-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    padding: 0 10px 20px 10px;
    font-family: 'Poppins', sans-serif;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .galeria.servico .servico-item {
        flex: 1 1 calc(50% - 20px); /* 2 colunas tablets */
    }
}

@media (max-width: 600px) {
    .galeria.servico .servico-item {
        flex: 1 1 100%; /* 1 coluna mobile */
    }
}

	
/* ===================== */
/* GALERIA GRANDES TRABALHOS */
/* ===================== */

.galeria-trabalhos {
    width: 100%;
    max-width: 1200px; /* ou ajusta conforme precisa */
    margin: 40px auto;
    overflow: hidden;
    box-sizing: border-box;
}

.trabalhos-container {
    width: 100%;
    overflow: hidden;
}

.trabalhos-track {
    display: flex;
    gap: 15px; /* espaçamento entre imagens */
    width: max-content;
    transition: transform 0.1s linear;
}

.trabalhos-track img {
    width: 980px;  /* tamanho grande */
    height: 680px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.trabalhos-track img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .trabalhos-track img { width: 220px; height: 150px; }
}

@media (max-width: 768px) {
    .trabalhos-track img { width: 180px; height: 120px; }
}

@media (max-width: 480px) {
    .trabalhos-track img { width: 140px; height: 90px; border-radius: 8px; }
}

/* ===================== */
/* SOBRE NÓS             */
/* ===================== */

/* Conteúdo centralizado, sem invadir sidebar */
body.sobre-page main.content {
    text-align: center;   /* centraliza horizontalmente */
    max-width: 900px;     /* opcional: limita a largura do texto */
    margin: 0 auto;       /* centraliza o bloco dentro do rodapé */
}

/* Cabeçalhos da seção */
.sobre-topo h1 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

/* Parágrafos da seção */
.sobre-topo p,
.sobre-secao p {
    font-size: 16px;
    line-height: 1.8;
}

/* Imagem grande */
.imagem-grande {
    max-width: 1000px;
    margin: 20px auto;
    display: block;
    border-radius: 12px;
}

/* texto mais legível */
.sobre-topo p,
.sobre-secao p {
    max-width: 750px;
    margin: 15px auto;
    line-height: 1.8;
}

/* valores */
.sobre-valores {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.sobre-valores .item {
    width: 100%;
}

.sobre-valores .item h2 {
    font-size: 24px;
    color: #d35400;
}
body.sobre-page .container {
    flex-direction: column;
}

body.sobre-page main.content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
/* ===================== */
/* CONTATOS / MAPA       */
/* ===================== */

.mapa-atuacao {
    text-align: center;
}

.mapa-container {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
}

.mapa-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}


/* =============================== */
/* RODAPÉ COM TEXTO CENTRALIZADO */
/* =============================== */
.rodape-comum .rodape-textos {
    text-align: center;   /* centraliza horizontalmente */
    max-width: 900px;     /* opcional: limita a largura do texto */
    margin: 0 auto;       /* centraliza o bloco dentro do rodapé */
}

.rodape-comum .rodape-textos p {
    margin: 5px 0;
    font-size: 16px;
    color: white;
    text-align: center;   /* garante que cada parágrafo fique centralizado */
}

	
/* Link centralizado "TODOS OS TRABALHOS" */
.todos-servicos {
    text-align: center;
    margin: 30px 0 40px 0;
    list-style: none;   /* garante que não há bullets */
}

.todos-servicos a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #d35400;
    text-decoration: none;
    border: none;
}

.todos-servicos a:hover {
    color: #bf360c;
}

/* Remove pseudo-elementos indesejados só para este link */
.todos-servicos::before,
.todos-servicos::after,
.todos-servicos a::before,
.todos-servicos a::after {
    content: none !important;
    display: none !important;
}
.rodape-comum .rodape-textos {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;   /* força branco */
}

.rodape-comum .rodape-textos p {
    margin: 2px 0;
    font-size: 12px;
    color: #ffffff;   /* branco */
    text-align: center;
}

.rodape-comum .rodape-textos a {
    color: #ffffff;   /* links também brancos */
}

.rodape-comum .rodape-textos a:hover {
    color: #ffffff;   /* mantém branco ao passar o rato */
}
	.rodape-comum,
.rodape-comum p,
.rodape-comum a,
.rodape-comum span,
.rodape-comum h2 {
    color: #ffffff !important;
}
.rodape-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}	

.rodape-comum {
  background: #2c2c2c;
  color: #fff;
  padding: 40px 20px;
}

.rodape-bloco {
  flex: 1;
  text-align: center;
}

.rodape-bloco.esquerda {
  text-align: left - below;
}

.rodape-comum .rodape-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rodape-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rodape-bloco.direita {
  text-align: right;
}

.rodape-bloco img {
  width: 150px;
  height: auto;
}

.rodape-bloco.centro p {
  margin: 3px 0;
  font-size: 13px;
}

.rodape-bloco h2 {
  margin: 0 0 10px;
  font-size: 18px;
}
.contacto-destaque {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 50px auto;
  width: 100%;
  text-align: center;
}
.sobre-topo {
  text-align: center;
  margin: 40px auto;
  max-width: 900px;
  padding: 0 20px;
}

.sobre-topo h1,
.sobre-topo p {
  text-align: center;
}
.contacto-destaque .caixa {
  flex: 0 0 300px;
  background-color: #fff5f0;
  padding: 40px 20px;
  text-align: center;
  border-radius: 16px;
}
	
footer.rodape-comum {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}


.rodape-comum .centro h2 {
    margin-bottom: 10px;
}

.rodape-comum .centro .botao {
    margin-bottom: 20px;
}

.rodape-comum .centro p {
    margin-top: 15px;
}
	body {
    margin: 0;
}

.pagina-legal {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: justify;
}

.pagina-legal h1,
.pagina-legal h2 {
    text-align: center;
}

.pagina-legal ul {
    text-align: left;
    max-width: 700px;
    margin: 20px auto;
}

.pagina-legal p {
    text-align: justify;
    line-height: 1.8;
}
