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

:root {
  --preto: #0F0E0D;
  --preto-claro: #191817;
  --grafite: #322D2B;
  --dourado: #C9A24A;
  --dourado-escuro: #9F7C2F;
  --dourado-claro: #E5C97A;
  --branco: #FFFFFF;
  --texto-claro: #D6D2CB;
  --gradiente-dourado: linear-gradient(135deg, #9F7C2F, #C9A24A, #E5C97A);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top, rgba(201,162,74,.08), transparent 40%),
    var(--preto);
  color: var(--branco);
  font-family: Georgia, "Times New Roman", serif;
}

/* CABEÇALHO */
.header {
  background: rgba(15, 14, 13, 0.98);
  border-bottom: 1px solid var(--dourado-escuro);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 70px;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.header__menu {
  list-style: none;
  display: flex;
  gap: 35px;
}

.header__menu a {
  color: var(--dourado-claro);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

.header__menu a:hover {
  color: var(--branco);
}

.btn-whatsapp-menu,
.btn-dourado {
  background: var(--gradiente-dourado);
  color: var(--branco);
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.header__hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--dourado-claro);
  font-size: 32px;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: 460px;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.25)),
    url("../assets/background1.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--dourado-escuro);
}

.hero__conteudo {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 68px);
  font-style: italic;
  font-weight: normal;
  color: #f4e7c2;
  line-height: 1.15;
}

.hero h1 span {
  color: var(--dourado);
}

.hero p {
  margin-top: 25px;
  font-family: Arial, sans-serif;
  font-size: 20px;
  color: var(--branco);
}

/* TÍTULOS */
.titulo-com-linhas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.titulo-com-linhas span,
.titulo-sobre span {
  width: 180px;
  height: 1px;
  background: var(--dourado);
}

.titulo-com-linhas h2,
.titulo-sobre h2 {
  color: var(--dourado-claro);
  font-size: 38px;
  font-style: italic;
  text-align: center;
}

/* SOBRE */
.sobre {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
  border-top: 1px solid var(--dourado-escuro);
  border-bottom: 1px solid var(--dourado-escuro);
}

.sobre__imagem img {
  width: 100%;
  max-width: 380px;
  display: block;
}

.titulo-sobre {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 25px;
}

.sobre__texto p {
  font-family: Arial, sans-serif;
  color: var(--texto-claro);
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 35px;
}

/* CONTATO */
.contato {
  padding: 60px 20px 80px;
  text-align: center;
}

.contato p {
  font-family: Arial, sans-serif;
  margin: 25px 0 35px;
  font-size: 18px;
  color: var(--texto-claro);
}

.btn-whatsapp-grande {
  display: inline-block;
  background: linear-gradient(135deg, #315c32, #5d8059);
  color: var(--branco);
  padding: 20px 45px;
  border-radius: 5px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
}

.btn-whatsapp-grande:hover,
.btn-whatsapp-menu:hover,
.btn-dourado:hover {
  opacity: 0.9;
}

/* RODAPÉ */
.rodape {
  background: #090909;
  padding: 25px 20px;
  border-top: 1px solid var(--dourado-escuro);
  text-align: center;
}

.linkEnderecoRodape {
  color: var(--texto-claro);
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.vetorPointMap {
  width: 20px;
}

/* BOTÃO FLUTUANTE WHATSAPP */

.whatsapp-float{
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 62px;
    height: 62px;

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

    background:#25D366;
    color:#fff;

    border-radius:50%;

    text-decoration:none;

    box-shadow:0 8px 25px rgba(0,0,0,.25);

    z-index:9999;

    transition:all .3s ease;
}

.whatsapp-float:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,.35);
}

.whatsapp-icon{
    width:32px;
    height:32px;
}

@media (max-width:768px){

    .whatsapp-float{
        width:58px;
        height:58px;
        right:18px;
        bottom:18px;
    }

    .whatsapp-icon{
        width:28px;
        height:28px;
    }

}

/* RESPONSIVO */
@media (max-width: 768px) {
  .header__hamburger {
    display: block;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #111;
    padding: 25px;
    flex-direction: column;
  }

  .header__nav.active {
    display: flex;
  }

  .header__menu {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    min-height: 430px;
    text-align: center;
  }

  .sobre {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sobre__imagem img {
    margin: auto;
  }

  .titulo-sobre {
    justify-content: center;
  }

  .titulo-com-linhas span,
  .titulo-sobre span {
    width: 70px;
  }

  .btn-whatsapp-grande {
    font-size: 18px;
    padding: 18px 25px;
  }

  .linkEnderecoRodape {
    flex-direction: column;
  }
}