
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Arial, sans-serif;
  color: var(--cor-texto);
  line-height: 1.6;
}
html {
  scroll-behavior: smooth;
}

/* VARIÁVEIS DE CORES */
:root {
  --cor-primaria: #A96E55;
  --cor-secundaria: #F9F2E8;
  --cor-destaque: #5D4F49;
  --cor-clara: #EBEBEB;
  --cor-texto: #5D4F49;
  --cor-texto-claro: #DDDDDE;
  --cor-texto-claro-2: #c2bec0;
  --cor-texto-medio: #CDC0B4;
  --cor-fundo: #F9F2E8;
  --cor-titulo: #A96E55;
  --cor-link: #A96E55;
}

@font-face{
  font-family: "Poppins";
  src: url('../fonts/Poppins-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Poppins Bold */
@font-face {
  font-family: 'arimo';
  src: url('../fonts/Arimo-Regular.woff2') format('woff2'),
       url('../fonts/Arimo-Regular.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* TIPOGRAFIA */
h1, h3 {
  color: var(--cor-titulo);
  margin-bottom: 1rem;
  
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--cor-link);
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

/* LAYOUT GLOBAL */
body {
  background-color: var(--cor-texto-claro);
  color: var(--cor-texto);
}

header, footer {
  padding: 20px;
  background-color: var(--cor-clara);
  
}
header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 1000;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8); /* Semitransparente */
      backdrop-filter: blur(5px); /* Borrão moderno */
  position: fixed;
  transition: transform 0.3s ease;
  will-change: transform;
}
header.hide {
  transform: translateY(-100%);
}
header h1, header p{
  width: 1px;
  height: 1px;
  position:absolute;
  overflow: hidden;
}
header img {
  max-width: 150px;
}

/* Menu padrão (desktop) */
.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-direction: row; /* <<< garante horizontal */
}

.nav-list li a {
  text-decoration: none;
  color: #5D4F49;
  font-weight: 600;
  transition: color 0.3s;
  font-family: 'Poppins', sans-serif;

}

.nav-list li a:hover {
  color: #A96E55;
}

/* Menu Hamburguer (aparece só no mobile) */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #5D4F49;
  cursor: pointer;
}

/* Hero Section */
#hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  max-height: 100vh;
  width: 100%;
  margin: 0px;
  top:0;
  color: #5D4F49; /* paleta da marca */
  text-align: center;
  overflow: hidden;
}

#hero p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
}
#hero img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.slide-text {
  position: absolute;
  top: 40%;
  left: 5%;
  transform: translate(0%, 0%); /* centraliza no meio da tela */
  max-width: 80%;
  text-align: center;

  /* Sombra para melhor leitura */
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.slide-text h2 {
  font-family: "Nata Sans", sans-serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 2px;
  width: 500px;
  text-align: center;
  font-size: 5rem;
  margin:0px;
  line-height: 1.2;
  color: #cdcdcd;
}
.slide-text h3 {
  font-family: "Nata Sans", sans-serif;
  font-weight: 600  ;
  text-align: center;
  font-size: 2rem;
  line-height: 0.7;

  color: #cdcdcd;
}
.slide-text p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  text-align: left;
  font-size: 0.7rem;
  color: #DDDDDE;
}

.slide-text a {
  color: var(--cor-texto);
  
}
.slide-text a {
  background: #fff;
  border: none;
  padding: 10px 20px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  width: 200px;
  text-transform: uppercase;
  cursor: pointer;
  transform: skew(-21deg);
}

.slide-text span {
  display: inline-block;
  transform: skew(21deg);
}

.slide-text a::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  left: 0;
  background: rgb(20, 20, 20);
  opacity: 0;
  z-index: -1;
  transition: all 0.5s;
}

.slide-text a:hover {
  color: #fff;
}

.slide-text a:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
}
.hero-slide .slide {
  position: relative; /* Para que o container_mouse fique absoluto dentro dele */
}

.container_mouse {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(122, 122, 124, 0.9);
  pointer-events: none; /* não atrapalha o clique */
  user-select: none;
  z-index: 10;
}

.mouse-btn {
  margin: 10px auto;
  width: 30px;
  height: 60px;
  border: 3px solid rgba(122, 122, 124, 0.9);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center; /* centraliza a bolinha verticalmente */
  background: transparent;
  box-sizing: border-box;
}

.mouse-scroll {
  width: 16px;   /* ligeiramente menor para mais elegância */
  height: 16px;
  background: linear-gradient(170deg, rgba(122, 122, 124, 0.9), rgb(123, 124, 124));
  border-radius: 50%;
  animation: scrolling13 1.2s linear infinite;
  /* centralizar horizontalmente */
  margin: 0 auto;
}

@keyframes scrolling13 {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  50% {
    opacity: 1;
    transform: translateY(10px);
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

/*Main*/

main {
  margin: 0px;
  width: 100%;
}

.nossos-servicos {
  padding: 4rem 2rem;
  width: 100%;
  background-color: #e0e0e0;
  text-align: center;
}

.nossos-servicos h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.seo-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
.card-servico {
  padding: 2rem;
  border-radius: 1rem;
  background: #e0e0e0;
  box-shadow: 15px 15px 30px #bebebe,
             -15px -15px 30px #ffffff;
  transition: transform 0.3s ease;
}

.card-servico:hover {
  transform: translateY(-5px);
}

.card-servico h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color:  var(--cor-titulo);
  font-family: 'Poppins', sans-serif;
}

.card-servico ul {
  list-style: none;
  font-family: 'Poppins', sans-serif;
  padding: 0;
  margin: 0;
  text-align: left;
}

.card-servico ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
  font-size: 1rem;
}

.card-servico ul li:last-child {
  border-bottom: none;
}
/* COMPONENTES */
.cta {
  margin-top: 20px;
  text-align: center;
}

.cta a,
.botao {
  background-color: var(--cor-primaria);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
}

.botao:hover,
.cta a:hover {
  background-color: #8c573f;
}

/* RODAPÉ */
footer a {
  color: var(--cor-destaque);
}

/* RESPONSIVIDADE */
img {
  max-width: 100%;
  height: auto;
}






#whatsapp-float-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366; /* Verde oficial do WhatsApp */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

#whatsapp-float-button:hover {
  background-color: #1ebe57;
}

#whatsapp-float-button img {
  width: 32px;
  height: 32px;
}

.sobre-nos{
  padding: 4rem 2rem;
  background-color: #f0f0f0;
  text-align: start;
}
.localizacao{ /* seção do site */
  padding: 4rem 2rem;
  background-color: #f0f0f0;
  text-align: start;
}
#hero-text{display: none;}
@media (max-width: 768px) {

  header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 1000;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Semitransparente */
        backdrop-filter: blur(5px); /* Borrão moderno */
    position: relative;
    transition: transform 0.3s ease;
    will-change: transform;
  }
  .menu-toggle {
    display: block;
  }
  #hero{
    display: none;
  }
  #hero-text{
    display: block;
    font-family: 'Poppins', sans-serif;
    padding: 20px;
    background-color: #f0f0f0;
  }
  .container_mouse{
    display: none;
  }
  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #F9F2E8;
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
  }

  .nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }

  main {
    padding: 10px;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
  }

  .slide-text h2 {
    text-align: start;
    font-size: 1.5rem;
    width: 170px;
  }
  .slide-text h3 {
    text-align: start;
    font-size: 1.0rem;
  }

  .slide-text a {
    font-size: 10px;
  }
}
