* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #0f0f0f;
  color: #f5f5f5;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* HEADER */

header {
  background: linear-gradient(135deg, #c8a96b, #1a1a1a);
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
}

header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  color: white;
}

header p {
  font-size: 1.1rem;
  max-width: 750px;
  margin: auto;
  line-height: 1.8;
  color: #f1f1f1;
}

.logo {
  width: 180px;
  height: 180px;

  object-fit: contain;

  border-radius: 50%;
  border: 5px solid #c8a96b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);

  margin: 25px auto;
  display: block;

  transition: 0.3s;

  background: #111;
}

.logo:hover {
  transform: scale(1.05);
}

/* NAV */

nav {
  background-color: #161616;
  padding: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #c8a96b;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: white;
}

/* SECTION */

section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: auto;
}

/* MINI TITULO */

.mini-titulo {
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: #c8a96b;
  font-weight: bold;
}

/* BOTÕES */

.btn,
.btn-curso,
.btn-mapa {
  text-decoration: none;
  color: black;
  background: #c8a96b;
  padding: 15px 35px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: bold;
  transition: 0.3s ease;
  display: inline-block;
}

.btn:hover,
.btn-curso:hover,
.btn-mapa:hover {
  transform: translateY(-4px);
  background: #d8bb84;
}

.whatsapp {
  background: #25d366;
  color: white;
}

.instagram {
  background: linear-gradient(
    135deg,
    #833ab4,
    #fd1d1d,
    #fcb045
  );
  color: white;
}

/* SOBRE */

.sobre {
  background: #121212;
}

.sobre-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.sobre-texto h2 {
  font-size: 3rem;
  line-height: 1.2;
  color: #c8a96b;
  margin: 20px 0;
}

.sobre-texto p {
  color: #d6d6d6;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.sobre-card {
  background: #1b1b1b;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid #2b2b2b;
}

.sobre-card h3 {
  color: #c8a96b;
  margin-bottom: 25px;
  line-height: 1.5;
}

.sobre-card ul {
  list-style: none;
}

.sobre-card li {
  margin-bottom: 15px;
  color: #e5e5e5;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.sobre-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c8a96b;
}

/* DESTAQUE */

.destaque {
  text-align: center;
}

.topo-avaliacao {
  margin-bottom: 20px;
}

.nota {
  background: #c8a96b;
  color: black;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: bold;
}

.texto-google {
  margin-left: 10px;
  color: #d6d6d6;
}

.destaque h2 {
  color: #c8a96b;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.destaque-card {
  position: relative;
  background: linear-gradient(135deg, #c8a96b, #1a1a1a);
  border-radius: 40px;
  padding: 30px;
  overflow: hidden;
}

.tag {
  position: absolute;
  top: 25px;
  left: 25px;
  background: rgba(0,0,0,0.8);
  color: #c8a96b;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
}

.imagem-principal {
  width: 100%;
  max-width: 700px;
  height: 550px;
  object-fit: cover;
  border-radius: 30px;
}

/* NÚMEROS */

.numeros {
  text-align: center;
}

.numeros h2 {
  color: #c8a96b;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.numero-card {
  background: #1b1b1b;
  padding: 40px 20px;
  border-radius: 30px;
}

.numero-card h3 {
  font-size: 3rem;
  color: #c8a96b;
  margin-bottom: 15px;
}

.numero-card p {
  color: #d6d6d6;
}

/* AVALIAÇÕES */

.avaliacoes {
  text-align: center;
}

.avaliacoes h2 {
  color: #c8a96b;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.avaliacoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.avaliacao-card {
  background: #1b1b1b;
  border-radius: 25px;
  padding: 35px 25px;
}

.avaliacao-card p,
.avaliacao-card span {
  color: #f1f1f1;
}

.avaliacao-card h3 {
  margin-bottom: 20px;
}

/* SERVIÇOS */

.servicos {
  background: #121212;
}

.titulo-servicos {
  text-align: center;
  margin-bottom: 50px;
}

.titulo-servicos h2 {
  color: #c8a96b;
  font-size: 2.8rem;
  margin: 15px 0;
}

.titulo-servicos p {
  color: #d6d6d6;
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.card {
  background: #1b1b1b;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  transition: 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.imagem-servico {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.servico {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.4s ease;
}

.card:hover .servico {
  transform: scale(1.05);
}

.card-conteudo {
  padding: 25px;
}

.card h3 {
  color: #c8a96b;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.card p {
  color: #d6d6d6;
  line-height: 1.7;
}

/* CONTATO */

.contato {
  background: linear-gradient(135deg, #151515, #222222);
  text-align: center;
  border-radius: 30px;
}

.contato h2 {
  color: #c8a96b;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contato p {
  color: #d6d6d6;
  margin-bottom: 35px;
}

.botoes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* CURSOS */

.cursos {
  background: #121212;
}

.cursos-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.cursos-texto h2 {
  font-size: 3rem;
  color: #c8a96b;
  margin: 20px 0;
}

.cursos-texto p {
  color: #d6d6d6;
  line-height: 1.8;
  margin-bottom: 20px;
}

.curso-card {
  background: #1b1b1b;
  padding: 40px;
  border-radius: 30px;
}

.curso-card h3 {
  color: #c8a96b;
  margin-bottom: 25px;
}

.curso-card ul {
  list-style: none;
}

.curso-card li {
  color: #e5e5e5;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.curso-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c8a96b;
}

/* ENDEREÇO */

.endereco {
  text-align: center;
}

.endereco h2 {
  color: #c8a96b;
  font-size: 2.3rem;
  margin-bottom: 25px;
}

.endereco p {
  color: #d6d6d6;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* RESULTADOS */

.resultados {
  text-align: center;
}

.resultados h2 {
  color: #c8a96b;
  font-size: 2.8rem;
  margin: 20px 0;
}

.resultado-texto {
  max-width: 700px;
  margin: auto;
  color: #d6d6d6;
  line-height: 1.8;
  margin-bottom: 50px;
}

.resultados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.resultado-card {
  overflow: hidden;
  border-radius: 25px;
}

.resultado-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.4s;
}

.resultado-card:hover img {
  transform: scale(1.05);
}

/* FOOTER */

footer {
  background: #c8a96b;
  color: black;
  text-align: center;
  padding: 25px;
  font-weight: bold;
  margin-top: 50px;
}

/* MOBILE */

@media (max-width: 600px) {

  body {
    overflow-x: hidden;
  }

  section {
    padding: 50px 15px;
    margin-top: 20px;
  }

  /* HEADER */

  header {
    padding: 35px 15px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  header h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  header p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .logo {
    width: 130px;
    height: 130px;
  }

  /* NAV */

  nav {
    gap: 12px;
    padding: 12px 10px;
  }

  nav a {
    font-size: 0.9rem;
  }

  /* SOBRE */

  .sobre {
    padding: 60px 15px;
  }

  .sobre-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .mini-titulo {
    font-size: 0.7rem;
  }

  .sobre-texto h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .sobre-texto p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .sobre-card {
    width: 100%;
    padding: 22px 18px;
    border-radius: 20px;
  }

  .sobre-card h3 {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .sobre-card li {
    font-size: 0.95rem;
  }

  /* SERVIÇOS */

  .servicos h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
  }

  .servicos-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin-top: 20px;
  }

  .card {
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
  }

  /* AQUI ESTÁ A CORREÇÃO DAS IMAGENS */

  .servico {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    background-color: #111;
    display: block;
  }

  .card h3 {
    font-size: 1.3rem;
    padding: 15px 15px 0;
    line-height: 1.4;
  }

  .card p {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 18px;
  }

  /* DESTAQUE */

  .destaque h2 {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .destaque-card {
    padding: 12px;
    border-radius: 25px;
  }

  .imagem-principal {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 20px;
  }

  .tag {
    top: 12px;
    left: 12px;
    font-size: 0.75rem;
    padding: 8px 14px;
  }

  /* NÚMEROS */

  .numeros {
    padding: 60px 15px;
  }

  .numeros h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .numeros-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .numero-card {
    padding: 22px 12px;
    border-radius: 20px;
  }

  .numero-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .numero-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  /* AVALIAÇÕES */

  .avaliacoes {
    padding: 60px 15px;
  }

  .avaliacoes h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .avaliacoes-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .avaliacao-card {
    padding: 25px 18px;
    border-radius: 20px;
  }

  .avaliacao-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* CONTATO */

  .contato {
    padding: 60px 15px;
  }

  .contato h2 {
    font-size: 2rem;
  }

  .contato p {
    font-size: 1rem;
  }

  .botoes {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn,
  .btn-curso,
  .btn-mapa {
    width: 100%;
    max-width: 280px;
    text-align: center;
    font-size: 0.95rem;
    padding: 14px 20px;
  }

  /* CURSOS */

  .cursos {
    padding: 60px 15px;
  }

  .cursos-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .cursos-texto h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .cursos-texto p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .curso-card {
    width: 100%;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .curso-card h3 {
    font-size: 1.3rem;
  }

  .curso-card li {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* ENDEREÇO */

  .endereco {
    padding: 60px 15px;
  }

  .endereco h2 {
    font-size: 1.8rem;
  }

  .endereco p {
    font-size: 0.95rem;
  }

  /* RESULTADOS */

  .resultados {
    padding: 60px 15px;
  }

  .resultados h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .resultado-texto {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  .resultados-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .resultado-card {
    border-radius: 18px;
  }

  .resultado-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  /* FOOTER */

  footer {
    padding: 18px 10px;
    font-size: 0.9rem;
  }

}
