﻿* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #1f1208;
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

/* TOPO */
.topo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  background: rgba(20, 11, 4, 0.96);
  border-bottom: 1px solid #5c3317;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.logo span {
  color: #d49a3a;
}

.topo nav {
  display: flex;
  gap: 24px;
}

.topo nav a {
  color: #f5d7a1;
  font-weight: 700;
  font-size: 16px;
  transition: 0.25s;
}

.topo nav a:hover {
  color: #d49a3a;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 150px 8% 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(20, 11, 4, 0.78), rgba(20, 11, 4, 0.92)),
    url("./assets/montagem-bg.jpeg");
  background-size: contain;
  background-position: center 58%;
  background-repeat: no-repeat;
  background-color: #140b04;
}

.hero-texto {
  max-width: 950px;
  background: rgba(20, 11, 4, 0.72);
  padding: 45px 35px;
  border-radius: 22px;
  border: 1px solid rgba(212, 154, 58, 0.45);
  backdrop-filter: blur(4px);
}

.etiqueta {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid #d49a3a;
  color: #f5d7a1;
  border-radius: 30px;
  margin-bottom: 24px;
  font-size: 15px;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.08;
  color: #d49a3a;
  margin-bottom: 24px;
}

.hero p {
  font-size: 22px;
  line-height: 1.5;
  color: #f5ead8;
  margin-bottom: 30px;
}

.botoes {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  min-width: 220px;
  padding: 15px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  transition: 0.25s;
}

.principal {
  background: #25d366;
  color: #fff;
}

.principal:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.secundario {
  background: transparent;
  color: #f5d7a1;
  border: 1px solid #d49a3a;
}

.secundario:hover {
  background: #d49a3a;
  color: #1f1208;
}

/* SEÇÕES */
section {
  padding: 90px 8%;
  text-align: center;
  scroll-margin-top: 90px;
}

.sobre,
.contato,
.galeria,
.horarios {
  background: #2c1a0e;
}

.avaliacoes {
  background: #1f1208;
}

section h2 {
  font-size: 38px;
  margin-bottom: 18px;
  color: #d49a3a;
}

section p {
  max-width: 840px;
  margin: 0 auto 30px;
  font-size: 19px;
  line-height: 1.7;
  color: #f5ead8;
}

/* SERVIÇOS ESPECIALIZADOS */
.servicos-especializados {
  padding: 90px 8%;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.06) 0,
      rgba(0, 0, 0, 0.06) 1px,
      transparent 1px,
      transparent 35px
    ),
    #5c3317;
  text-align: left;
}

.servicos-conteudo {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #f5d7a1;
}

.servicos-especializados h2,
.diferenciais h2 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 40px;
  color: #fff3df;
  font-family: Georgia, "Times New Roman", serif;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.servico-card {
  background: #2a1509;
  border-top: 3px solid #8b4513;
  padding: 30px 26px;
  min-height: 220px;
  text-align: left;
  transition: 0.25s;
}

.servico-card:hover {
  transform: translateY(-5px);
  border-top-color: #d49a3a;
}

.servico-card span {
  display: block;
  font-size: 30px;
  margin-bottom: 14px;
}

.servico-card h3 {
  color: #d49a3a;
  font-size: 20px;
  margin-bottom: 10px;
}

.servico-card p {
  color: #d8c1a0;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* DIFERENCIAIS */
.diferenciais {
  padding: 90px 8%;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.06) 0,
      rgba(0, 0, 0, 0.06) 1px,
      transparent 1px,
      transparent 42px
    ),
    #8b4513;
  text-align: left;
}

.diferenciais-conteudo {
  max-width: 1100px;
  margin: 0 auto;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.diferencial-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #2c1a0e;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #5c3317;
}

.diferencial-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #1f1208;
  border: 1px solid #d49a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.diferencial-item h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 6px;
}

.diferencial-item p {
  color: #f5ead8;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* GALERIA */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 420px));
  justify-content: center;
  gap: 24px;
  margin-top: 35px;
}

.foto {
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #5c3317;
  background: #000;
}

.foto video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

/* CARDS */
.cards,
.contato-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.card,
.contato-card {
  background: #2c1a0e;
  padding: 32px 24px;
  border-radius: 14px;
  border: 1px solid #5c3317;
  transition: 0.25s;
}

.card:hover,
.contato-card:hover {
  transform: translateY(-4px);
  border-color: #d49a3a;
}

.card h3 {
  color: #d49a3a;
  font-size: 24px;
  margin-bottom: 12px;
}

.card p {
  color: #f5ead8;
  line-height: 1.6;
}

.avaliacoes .card h3 {
  color: #ffc107;
}

.avaliacoes strong {
  display: block;
  margin-top: 16px;
  color: #d49a3a;
}

/* HORÁRIOS */
.tabela-horarios {
  max-width: 650px;
  margin: 0 auto;
  background: #1f1208;
  border: 1px solid #5c3317;
  border-radius: 14px;
  overflow: hidden;
}

.tabela-horarios div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid #5c3317;
}

.tabela-horarios div:last-child {
  border-bottom: none;
}

.tabela-horarios span {
  color: #f5ead8;
}

.tabela-horarios strong {
  color: #d49a3a;
}

/* CONTATO */
.contato-card {
  background: #1f1208;
  color: #fff;
}

.contato-card span {
  display: block;
  font-size: 34px;
  margin-bottom: 12px;
}

.contato-card h3 {
  color: #d49a3a;
  font-size: 22px;
  margin-bottom: 8px;
}

.contato-card p {
  color: #f5ead8;
  font-size: 16px;
  margin: 0;
}

.mapa {
  margin: 45px auto 0;
  width: 90%;
  max-width: 760px;
  height: 340px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #5c3317;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* RODAPÉ */
footer {
  background: #140b04;
  padding: 30px 8%;
  text-align: center;
  color: #c9b18c;
  border-top: 1px solid #5c3317;
}

.footer-conteudo {
  max-width: 900px;
  margin: 0 auto;
}

.footer-conteudo h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-conteudo h3 span {
  color: #d49a3a;
}

.footer-conteudo p {
  color: #c9b18c;
  margin-bottom: 18px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer-links a {
  color: #f5d7a1;
  font-weight: 700;
}

.footer-links a:hover {
  color: #d49a3a;
}

.footer-conteudo small {
  color: #8f7a5f;
}

/* WHATSAPP FIXO */
.whatsapp-fixo {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  z-index: 99;
  transition: 0.25s;
}

.whatsapp-fixo:hover {
  background: #1da851;
  transform: scale(1.06);
}

.whatsapp-fixo svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .cards,
  .contato-cards,
  .servicos-grid,
  .diferenciais-grid {
    grid-template-columns: 1fr;
  }

  .diferenciais,
  .servicos-especializados {
    text-align: center;
  }

  .servico-card {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .topo {
    flex-direction: column;
    gap: 10px;
    padding: 14px 5%;
  }

  .topo nav {
    justify-content: center;
    gap: 18px;
    width: 100%;
  }

  .topo nav a {
    font-size: 14px;
  }

  .hero {
    padding: 150px 6% 90px;
    background-size: cover;
    background-position: center;
  }

  .hero-texto {
    padding: 35px 22px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 18px;
  }

  .botoes {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .btn {
    width: 100%;
    padding: 17px 22px;
    font-size: 18px;
  }

  section {
    padding: 75px 6%;
  }

  section h2 {
    font-size: 34px;
  }

  section p {
    font-size: 17px;
  }

  .galeria-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 35px auto 0;
  }

  .foto {
    height: 300px;
  }

  .tabela-horarios div {
    flex-direction: column;
    gap: 6px;
  }

  .mapa {
    height: 300px;
  }

  .whatsapp-fixo {
    width: 50px;
    height: 50px;
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-fixo svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 17px;
  }

  .etiqueta {
    font-size: 14px;
  }

  .servicos-especializados h2,
  .diferenciais h2 {
    font-size: 34px;
  }
}/* TOPO AJUSTADO PARA CELULAR */
@media (max-width: 768px) {
  .topo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 5%;
    background: rgba(20, 11, 4, 0.98);
    z-index: 999;
  }

  .logo {
    font-size: 24px;
    text-align: center;
  }

  .topo nav {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 14px;
    width: 100%;
    flex-wrap: wrap;
  }

  .topo nav a {
    font-size: 14px;
    color: #f5d7a1;
    white-space: nowrap;
  }

  .hero {
    padding-top: 170px;
  }
}

@media (max-width: 390px) {
  .topo nav {
    gap: 10px;
  }

  .topo nav a {
    font-size: 13px;
  }

  .logo {
    font-size: 22px;
  }
}
/* BOTÃO FIXO DO WHATSAPP */
.whatsapp-fixo {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  z-index: 999;
  transition: 0.25s;
}

.whatsapp-fixo:hover {
  background: #1da851;
  transform: scale(1.08);
}

.whatsapp-fixo svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  display: block;
}

@media (max-width: 768px) {
  .whatsapp-fixo {
    width: 50px;
    height: 50px;
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-fixo svg {
    width: 28px;
    height: 28px;
  }
}/* TOPO CENTRALIZADO COM LOGO EM CIMA */
.topo {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 8%;
}

.logo {
  text-align: center;
}

.topo nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}
/* GALERIA COM VÍDEOS E FOTOS */
.galeria {
  background: #2c1a0e;
}

.galeria .section-label {
  text-align: center;
}

.galeria h2 {
  font-size: 42px;
  color: #d49a3a;
  margin-bottom: 14px;
}

.videos-subtitle {
  max-width: 680px;
  margin: 0 auto 42px;
}

.galeria-videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 460px));
  justify-content: center;
  gap: 32px;
  margin-bottom: 45px;
}

.video-card {
  background: #1f1208;
  border: 1px solid #5c3317;
  border-radius: 18px;
  padding: 18px;
  transition: 0.25s;
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: #d49a3a;
}

.video-card h3 {
  color: #d49a3a;
  font-size: 20px;
  margin-top: 16px;
}

.foto {
  height: 340px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid #5c3317;
}

.foto video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galeria-fotos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.galeria-fotos img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #5c3317;
  transition: 0.25s;
  background: #1f1208;
}

.galeria-fotos img:hover {
  transform: scale(1.03);
  border-color: #d49a3a;
}

.galeria-btn {
  margin-top: 36px;
}

@media (max-width: 900px) {
  .galeria-videos {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .galeria-fotos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .galeria-fotos {
    grid-template-columns: 1fr;
  }

  .galeria-fotos img {
    height: 320px;
  }

  .foto {
    height: 320px;
  }
}@media (min-width: 901px) {
  .galeria-fotos img:last-child {
    grid-column: 2 / 3;
  }
}
.instagram-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-icon svg {
  width: 34px;
  height: 34px;
  fill: #d49a3a;
}.instagram-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-icon svg {
  width: 34px;
  height: 34px;
  fill: #d49a3a;
}.contato {
  background: #341909;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.contato h2 {
  color: #f5a623;
  margin-bottom: 10px;
}

.contato > p {
  margin-bottom: 40px;
}

.contato-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.contato-card {
  border: 1px solid #8a4f10;
  border-radius: 14px;
  padding: 35px 25px;
  min-height: 190px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.contato-icone {
  font-size: 32px;
  color: #f5a623;
  margin-bottom: 18px;
}

.contato-card h3 {
  color: #f5a623;
  font-size: 24px;
  margin-bottom: 12px;
}

.contato-card p {
  color: #fff;
  font-size: 16px;
  margin: 0;
}

.instagram-link {
  text-decoration: none;
  color: inherit;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.instagram-link:hover h3,
.instagram-link:hover .contato-icone {
  color: #ffbd39;
}

@media (max-width: 900px) {
  .contato-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .contato-card {
    min-height: 170px;
  }
}
.instagram-link {
  text-decoration: none;
  color: inherit;

  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contato-icone {
  font-size: 32px;
  color: #f5a623;
  margin-bottom: 18px;
  display: block;
}

.instagram-icone i {
  font-size: 34px;
  color: #f5a623;
  display: block;
}
.contato {
  background: #341909;
  color: #fff;
  text-align: center;
  padding: 55px 20px;
}

.contato h2 {
  color: #f5a623;
  font-size: 32px;
  margin-bottom: 10px;
}

.contato > p {
  color: #fff;
  margin-bottom: 40px;
}

.contato-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1450px;
  margin: 0 auto;
}

.contato-card {
  border: 1px solid #8a4f10;
  border-radius: 14px;
  padding: 35px 25px;
  min-height: 190px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contato-card h3 {
  color: #f5a623;
  font-size: 24px;
  margin: 12px 0 8px;
}

.contato-card p {
  color: #fff;
  font-size: 16px;
  margin: 0;
}

.contato-icone {
  font-size: 34px;
  color: #f5a623;
  margin-bottom: 12px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-link {
  width: 100%;
  height: 100%;

  text-decoration: none;
  color: inherit;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.instagram-svg svg {
  width: 34px;
  height: 34px;
  fill: #f5a623;
  display: block;
}

.instagram-link:hover h3,
.instagram-link:hover .instagram-svg svg {
  color: #ffbd39;
  fill: #ffbd39;
}

@media (max-width: 900px) {
  .contato-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .contato-card {
    min-height: 170px;
  }
}