/* CSS */

@font-face {
  font-family: "Sofia Pro";
  src: url("./fonts/sofiapro-light.otf");
}

:root {
  --cor-primaria: #8B5E3C;
  --cor-primaria-clara: #A47148;
  --cor-primaria-escura: #5C3A21;

  --cor-bege: #D9D3CC;
  --cor-cinza-claro: #F5F5F5;
  --cor-cinza: #AEB7C2;

  --cor-texto: #333333;
  --cor-preto: #000000;
  --cor-branco: #FFFFFF;
}

body {
  font-family: "Sofia Pro", sans-serif;
}

.site {
  max-width: 1200px;
  margin: auto;
}
.header {
  width: 100%;
  padding: 20px 0;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  width: 180px; /* controla o tamanho */
}

/* MENU */
.menu ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: #555;
  font-size: 16px;
}
.menu{
  z-index: 9999;
}

.menu a:hover {
  opacity: 0.7;
}

/* TEXTO */
.texto {
  padding: 80px 20px;
  text-align: center;
}

.texto .site {
  max-width: 800px;
  margin: 0 auto;
}

.texto p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* BANNER */
.banner {
  width: 100%;
  height: 100vh;
  background-image: url('../assets/img/banner.pingodecor.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



/* PARALLAX */
.parallax-padrao {
  height: 400px;
  background: url('../assets/img/parallax1jpg') center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}


.card {
  position: relative;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;              /* espaçamento maior entre os cards */
  padding: 60px 40px;     /* mais respiro nas laterais e em cima/baixo */
  max-width: 1400px;      /* aumenta a largura máxima da seção */
  margin: 0 auto;         /* centraliza na tela */
}

.card img {
  width: 100%;
  height: 600px;          /* altura maior das imagens */
  object-fit: cover;
  border-radius: 15px;
}


.card:hover img {
  transform: scale(1.03);
}

.card p {
  position: absolute;
  right: 15px;
  bottom: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  letter-spacing: 2px;
}



/* PARALLAX 2 */
.parallax-padrao-projetos2{
  height: 400px;
  background: url('../assets/img/_MG_7517.jpg') center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10%;
}

.parallax-padrao-projetos2 h2,
.parallax-projetos2 h2 {
  font-size: 25px;
  color: #3d3d3d;
}

/* FOOTER */
.footer {
  background-color: #ffffff;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  font-size: 16px;
}

.footer-item a{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #555;
}

.icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.footer-gallery img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  border-radius: 8px;
}


/* GALERIA */
.galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 60px;
}

.galeria img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 15px;
  transition: 0.4s ease;
}


/* TOPO DOS QUARTOS */
.topo-quarto {
  position: relative;
  text-align: center;
  margin: 40px 0;
}

.topo-quarto h1 {
  font-size: 28px;
}

/* PROJETOS */
.projetos {
  background: #f5f5f5;
  padding: 60px 20px;
}

.filtros {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.filtros button {
  background: transparent;
  border: 1px solid #ccc;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}

.filtros button:hover {
  background: #000;
  color: #fff;
}

/* SOBRE */
.sobre {
  padding: 80px 60px;
  background-color: #f1f1f1;
}

.container-sobre {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
}

.container-sobre img {
  width: 45%;
  height: 80vh;
  max-height: 750px;
  object-fit: cover;
  border-radius: 20px;
}

.texto-sobre {
  width: 55%;
}

.texto-sobre h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.texto-sobre p {
  margin-bottom: 25px;
  line-height: 1.7;
  color: #555;
}

/* GRID PROJETOS */
.projetos-linha {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 40px;
  background-color: #f7f7f7;
}

.projeto-card {
  text-decoration: none;
}

.projeto {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.projeto img {
  width: 100%;
  height: 750px;
  object-fit: cover;
}

.projeto p {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
}



.btn-voltar {

  display: inline-block;
  margin: 20px;

  padding: 10px 18px;
  background-color: #8B5E3C;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
}


.galeria {
  clear: both;
}

/*PUBLICACOES*/
.publicacoes {
  padding: 60px 20px;
  background: #f7f7f7;
}

.publicacoes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 por linha */
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARD */
.pub-card {
  text-decoration: none;
  color: #333;
}


.pub-img img {
  width: 100%;
  height: 400px; 
  object-fit: cover;
  border-radius: 16px;
}

/* TEXTO */
.pub-info {
  margin-top: 15px;
}

.pub-info h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.pub-info p {
  font-size: 14px;
  color: #666;
}


/* BOTÃO */
.btn-publicacao {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #8B5E3C;
  border-bottom: 1px solid #8B5E3C;
  padding-bottom: 3px;
  transition: all 0.3s ease;
}


.pub-card:hover .pub-img img {
  transform: scale(1.05);
}

.pub-card:hover .btn-publicacao {
  letter-spacing: 2px;
}


.card {
  position: relative;
  overflow: hidden;
}


.projeto {
  position: relative;
  overflow: hidden;
}

.projeto img {
  transition: 0.4s ease;
}

.projeto:hover img {
  transform: scale(1.05);
}


/* ===== PUBLICAÇÕES ===== */
.pub-card {
  display: block;
  transition: 0.3s;
}

.pub-img {
  overflow: hidden;
  border-radius: 12px;
}

.pub-img img {
  width: 100%;
  transition: 0.4s ease;
}

.pub-card:hover .pub-img img {
  transform: scale(1.05);
}
.contato{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px 20px;
    background:#e7eee6; /* verde suave */
}

/* pode apagar se remover o título do HTML */
.texto-contato h1{
    display:none;
}

.texto-contato p{
    max-width:600px;
    color:#666;
    font-size:18px;
    line-height:1.7;
    margin:auto;
}

.linha{
    width:80px;
    height:2px;
    background:#cfcfcf;
    margin:30px auto 50px;
}

.card-proposta{
    background:#b8c7b1;
    padding:50px;
    border-radius:20px;
    max-width:650px;
    width:100%;
}

.icone{
    width:70px;
    height:70px;
    background:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 25px;
}

.icone i{
    font-size:28px;
    color:#b98f8f;
}

.card-proposta h2{
    font-size:42px;
    color:#fff;
    font-weight:300;
    margin-bottom:20px;
}

.card-proposta p{
    color:#fff;
    font-size:17px;
    line-height:1.6;
    margin-bottom:35px;
}

.card-proposta a{
    display:inline-block;
    background:var(--cor-cinza-claro);
    color:#9b9b9b;
    text-decoration:none;
    padding:18px 35px;
    border-radius:10px;
    font-weight:bold;
    transition:0.3s;
}

.card-proposta a:hover{
    transform:scale(1.05);
}