html {
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}
/* MENU */
nav {
  background-color: var(--CorFundo);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.containernav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 60px;
  font-family: var(--FonteTextos);
}
.logo-nav img {
  height: 40px;
  width: auto;
}
.menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: var(--CorFundo);
  padding: 16px;
  z-index: 10;
  list-style: none;
  padding: 16px;
  margin: 0;
  text-align: center;
}
.menu li a {
  padding: 12px 0;
  color: white;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.menu li {
  border-bottom: 1px solid var(--CorTextos);
}
.menu li a:hover {
  color: var(--CorTextos);
  text-decoration: none;
}

.menu.active {
  display: flex;
}

.btn-orcamentos-nav {
  display: none;
  height: 30px;
  width: 100px;
  background-color: transparent;
  border: 1px solid var(--CorTextos);
  color: white;
  font-size: 0.8rem;
  font-family: var(--FonteTextos);
  border-radius: 7px;
  cursor: pointer;
}
.btn-orcamentos-nav:hover {
  background: linear-gradient(to right, var(--CorTextos), var(--CorFundo));
}
.menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/*HERO*/

.hero {
  min-height: 60vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("Public/teste-fundo2.jpeg");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.container-div-hero {
  max-width: 600px;
  padding: 0 16px;
  color: white;
}
.container-div-hero h2 {
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-family: var(--FonteTitulo);
}

.container-div-hero h1 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  font-family: var(--FonteTitulo);
}

.container-div-hero p {
  font-size: 1rem;
  margin-bottom: 24px;
  font-family: var(--FonteTitulo);
}
.container-div-hero button {
  margin: 5px;
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background: linear-gradient(to right, var(--CorTextos), var(--CorFundo));
  color: white;
  font-family: var(--FonteTextos);
}
.container-div-hero button:hover {
  background: linear-gradient(to right, #010212, #a6855d);
}

/* DIV SEPARAÇÃO */
.div-separacao {
  background: linear-gradient(var(--CorTextos), var(--CorFundo));
  height: auto;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 6px 0;
}

.ul-separacao {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 10px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}

.ul-separacao li {
  list-style: none;
  font-size: 0.6rem;
  letter-spacing: 1px;
  color: white;
  padding: 2px 4px;
  white-space: nowrap;
}

.ul-separacao li:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
  color: white;
  opacity: 0.5;
}

/*NOSSA HISTORIA*/

.container-historia {
  width: 100%;
  padding: 40px 40px;
  background-color: var(--CorFundo);
}

.historia-topo {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.historia-conteudo h4 {
  color: white;
  font-family: var(--FonteTextos);
}
.historia-img img {
  width: 100%;
  border-radius: 7px;
}
.historia-conteudo ul li::marker {
  color: var(--CorTextos);
}
.historia-conteudo h2 {
  font-size: 1.8rem;
  font-family: var(--FonteTextos);
  color: white;
}
.historia-conteudo h3 {
  font-size: 1.8rem;
  font-family: var(--FonteTextos);
  color: white;
}

.historia-conteudo span {
  color: #a6855d;
  font-family: var(--FonteTextos);
}
.historia-conteudo p {
  color: white;
  font-family: var(--FonteTextos);
}
.timeline {
  position: relative;
  margin-top: 24px;
  padding-left: 24px;
}

.timeline li {
  position: relative;
  margin-bottom: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #a6855d;
}
.timeline .ano {
  font-size: 0.75rem;
  color: #a6855d;
}

.timeline h3 {
  font-size: 1rem;
  margin: 4px 0;
}

.timeline p {
  font-size: 0.8rem;
  color: #ccc;
}
.historia-numeros {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
  border: 1px solid #a6855d;
}
.numero {
  text-align: center;
  padding: 20px;
  border-right: 1px solid #a6855d;
  color: var(--CorTextos);
}
.numero:last-child {
  border-right: none;
}
.numero span {
  display: block;
  font-size: 0.8rem;
  color: white;
}
/*HISTORIA CASAL*/

.historia-casal {
  background: var(--CorFundo);
  border-bottom: 1px solid var(--CorTextos);
  box-shadow: 3px 0 0 0 var(--CorTextos);
  overflow: hidden;
}

.historia-casal-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 20px;
}

.historia-casal-imagens {
  position: relative;
  width: 100%;
  min-height: 560px;
  overflow: visible;
  flex-shrink: 0;
}

.img {
  position: absolute;
  width: 250px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.img1 {
  top: 0;
  left: 60px;
  transform: rotate(-8deg);
}
.img2 {
  top: 140px;
  left: 200px;
  transform: rotate(6deg);
}
.img3 {
  bottom: 0;
  left: 20px;
  transform: rotate(-4deg);
}

.btn-instagram {
  position: absolute;
  bottom: -54px;
  left: 100px;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  text-decoration: none;
  z-index: 10;

  margin: 5px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background: linear-gradient(to right, var(--CorTextos), var(--CorFundo));
  color: white;
  font-family: var(--FonteTextos);
}
.btn-instagram:hover {
  background: linear-gradient(to right, #010212, #a6855d);
}

.historia-casal-conteudo {
  color: #fff;
}
.historia-casal-conteudo h3 {
  font-size: 1rem;
  color: #a6855d;
  margin-bottom: 8px;
}
.historia-casal-conteudo h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.historia-casal-conteudo p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.badges {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badges span {
  border: 1px solid #a6855d;
  padding: 6px 12px;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: #fff;
}
.historia-casal-conteudo strong {
  color: var(--CorTextos);
}

/*NOSSOS SERVIÇOS*/

.servicos {
  background: var(--CorFundo);
  padding: 80px 20px;
  position: relative;
  font-family: var(--FonteTextos);
  border-bottom: 1px solid var(--CorTextos);
  box-shadow: 3px 0 0 0 var(--CorTextos);
  max-width: 100%;
  box-sizing: border-box;
}

.servicos-topo {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

.titulo span {
  color: #a6855d;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.titulo h2 {
  color: white;
  font-size: 2rem;
}

.titulo strong {
  color: #a6855d;
}

.descricao {
  color: #ccc;
  max-width: 400px;
}
.servicos-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  justify-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.card {
  border: 1px solid #a6855d;
  padding: 24px;
  border-radius: 10px;
  color: white;
  background: transparent;
  transition: 0.3s;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.card h3 {
  margin-bottom: 10px;
}

.card p {
  font-size: 0.9rem;
  color: white;
  margin-bottom: 20px;
}
.tag {
  border: 1px solid var(--CorTextos);
  padding: 4px 10px;
  font-size: 0.7rem;
  display: inline-block;
  border-radius: 7px;
}
/*PREMIOS*/
.premios {
  background: var(--CorFundo);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid var(--CorTextos);
  box-shadow: 3px 0 0 0 var(--CorTextos);
}
.premios-topo span {
  color: var(--CorTextos);
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-family: var(--FonteTitulo);
}

.premios-topo h2 {
  color: white;
  font-size: 2rem;
  margin: 10px 0;
  font-family: var(--FonteTitulo);
}

.premios-topo strong {
  color: var(--CorTextos);
  font-family: var(--FonteTitulo);
}

.premios-topo p {
  color: white;
  max-width: 500px;
  margin: 0 auto;
  font-family: var(--FonteTextos);
}
.premios-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.premio-card {
  border: 1px solid var(--CorTextos);
  padding: 20px;
  text-align: left;
  border-radius: 8px;
  color: white;
  transition: 0.3s;
  font-family: var(--FonteTextos);
}
.premio-card:hover {
  transform: translateY(-5px);
}
.premio-card h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.premio-card p {
  font-size: 0.85rem;
  color: white;
  line-height: 1.6;
}
/*NOSSOS TRABALHOS*/

.galeria {
  background: var(--CorFundo);
  text-align: center;
  padding: 60px 20px;
  border-bottom: 1px solid var(--CorTextos);
  box-shadow: 3px 0 0 0 var(--CorTextos);
}
.subtitulo {
  color: var(--CorTextos);
  font-size: 14px;
  letter-spacing: 2px;
  font-family: var(--FonteTextos);
}

.topo-galeria h2 {
  font-size: 36px;
  margin: 10px 0;
  line-height: 1.2;
  color: white;
  font-family: var(--FonteTitulo);
}

.topo-galeria h2 span {
  color: var(--CorTextos);
  font-family: var(--FonteTitulo);
}

.descricao {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 14px;
  color: white;
  font-family: var(--FonteTextos);
}
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.card {
  border: 1px solid var(--CorTextos);
  padding: 20px;
  margin-bottom: 10px;
  min-width: 180px;
  flex: 1 1 180px;
  max-width: 200px;
  font-size: 18px;
  font-weight: bold;
}
.card strong {
  display: block;
  color: var(--CorTextos);
  font-size: 22px;
}

.card span {
  display: block;
  font-size: 12px;
  color: white;
  margin-top: 5px;
}

.carrossel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}
.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  width: calc(100% / 3);
  flex-shrink: 0;
  padding: 5px;
  box-sizing: border-box;
  transition: transform 0.4s ease;
}

.slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  display: block;
  transition: 0.4s;
}

/* zoom central */
.slide.active {
  transform: scale(1.08);
  z-index: 2;
}

/* controles */
.controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.prev,
.next {
  background: transparent;
  border: 1px solid var(--CorTextos);
  color: var(--CorTextos);
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1rem;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.prev:disabled,
.next:disabled {
  opacity: 0.3;
  cursor: default;
}

.dots {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #555;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  display: inline-block;
}

.dot.active {
  background: var(--CorTextos);
  transform: scale(1.3);
}

.texto {
  color: white;
  margin-top: 28px;
  font-family: var(--FonteTextos);
}

.btn-insta {
  display: inline-block;
  margin-top: 15px;
  background: linear-gradient(to right, var(--CorTextos), var(--CorFundo));
  padding: 10px 20px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
}
.btn-insta:hover {
  background: linear-gradient(to right, #010212, #a6855d);
}
/*CTA*/
.cta {
  background: var(--CorFundo);
  text-align: center;
  padding: 100px 20px;
  border-bottom: 1px solid var(--CorTextos);
  box-shadow: 3px 0 0 0 var(--CorTextos);
}
.cta .subtitulo {
  color: var(--CorTextos);
  font-size: 14px;
  letter-spacing: 2px;
  font-family: var(--FonteTextos);
}

.cta h2 {
  font-size: 36px;
  margin: 10px 0;
  line-height: 1.3;
  color: white;
  font-family: var(--FonteTitulo);
}

.cta h2 span {
  color: var(--CorTextos);
  font-family: var(--FonteTitulo);
}

.cta .descricao {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 14px;
  color: white;
  font-family: var(--FonteTextos);
}
.botoes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 7px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  min-width: 220px;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(to right, var(--CorTextos), var(--CorFundo));
  color: white;
}
.btn-secondary {
  background: linear-gradient(to right, var(--CorTextos), var(--CorFundo));
  color: white;
}
.btn:hover {
  background: linear-gradient(to right, #010212, #a6855d);
  opacity: 0.9;
}
.infos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 12px;
  color: white;
  font-family: var(--FonteTextos);
}
.infos strong {
  color: var(--CorTextos);
}

/*FOOTER*/
.footer {
  background: #020617;
  color: #fff;
  padding: 60px 20px 20px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.footer-left {
  max-width: 300px;
}

.logo-footer {
  width: 140px;
  margin-bottom: 15px;
}

.footer-left p {
  font-size: 13px;
  color: #ccc;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.socials img {
  width: 28px;
  height: 28px;
  padding: 5px;
  border: 1px solid #c9a86a;
}
.divider {
  width: 1px;
  background: #c9a86a;
  height: 200px;
}
.footer-right {
  display: flex;
  gap: 60px;
  flex: 1;
}
.col h4 {
  color: #c9a86a;
  margin-bottom: 10px;
  font-size: 13px;
}

.col a p {
  color: #ccc;
  transition: 0.3s;
}
.col a {
  text-decoration: none;
}
.col a p:hover {
  color: var(--CorTextos);
  cursor: pointer;
}
.footer-bottom {
  border-top: 1px solid #c9a86a;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 12px;
  color: #aaa;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.socials a {
  width: 32px;
  height: 32px;
  border: 1px solid var(--CorTextos);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--CorTextos);
  text-decoration: none;
}

.socials svg {
  width: 18px;
  height: 18px;
  color: var(--CorTextos);
}

/*WHATSAPP*/
.btn-whatsapp-fixo {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.btn-whatsapp-fixo:hover {
  transform: scale(1.1);
}
