/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

/* BODY */
body{
  background:#0b0b0b;
  color:white;
}

/* HEADER */
header{
  position:fixed;
  width:100%;
  background:#000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 20px;
  z-index:1000;
}

header h1{
  font-size:18px;
  color:#25D366;
}

.menu-icon{
  font-size:25px;
  cursor:pointer;
}

/* MENU */
.menu{
  position:fixed;
  top:0;
  left:-100%;
  width:250px;
  height:100%;
  background:#111;
  padding-top:80px;
  transition:0.4s;
  z-index:9999; /* FIX DO CLIQUE */
}

.menu a{
  display:block;
  padding:15px;
  color:white;
  text-decoration:none;
  border-bottom:1px solid #222;
}

.menu a:hover{
  background:#25D366;
}

/* HERO PROFISSIONAL */
.hero{
  position:relative;
  height:100vh;
  background:url("banner.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  animation:zoomBg 20s infinite alternate;
}

/* OVERLAY */
.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.7);
  top:0;
  left:0;
  z-index:1; /* IMPORTANTE */
}

/* CONTEÚDO HERO */
.hero-content{
  position:relative;
  z-index:2;
  max-width:800px;
  padding:20px;
  animation:fadeUp 1.5s ease;
}

.hero h1{
  font-size:40px;
  color:white;
  animation:fadeUp 1s ease;
}

.hero h2{
  color:#00ff88;
  margin:15px 0;
  animation:fadeUp 1.5s ease;
}

.hero p{
  color:#ccc;
  margin-bottom:20px;
  animation:fadeUp 2s ease;
}

/* BOTÃO */
.btn{
  background:#00ff88;
  color:black;
  padding:15px 30px;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
}

.btn:hover{
  background:white;
  transform:scale(1.05);
}

/* SECTIONS */
.section{
  padding:80px 20px;
  max-width:1000px;
  margin:auto;
}

.section h2{
  color:#25D366;
  margin-bottom:20px;
}

.section p{
  color:#ccc;
  margin-bottom:10px;
}

.section ul{
  margin-bottom:20px;
  line-height:1.8;
}

/* IMAGENS */
.section img{
  width:100%;
  border-radius:10px;
  margin-top:20px;
}

/* MAPA */
.mapa{
  margin-top:20px;
  border-radius:10px;
  overflow:hidden;
}

/* WHATSAPP */
.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  padding:15px;
  border-radius:50%;
  font-size:20px;
}

/* ANIMAÇÕES */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes zoomBg{
  from{
    background-size:100%;
  }
  to{
    background-size:110%;
  }
}








.contacto {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #000, #111);
}

.contacto-box {
  background: rgba(20,20,20,0.9);
  padding: 30px;
  border-radius: 15px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 0 30px rgba(0,255,136,0.3);
  border: 1px solid rgba(0,255,136,0.2);
}

/* Título */
.contacto-box h2 {
  color: #00ff88;
  margin-bottom: 15px;
}

/* Texto */
.contacto-box p {
  color: #ccc;
  line-height: 1.6;
}

/* Subtítulos */
.contacto-box h3 {
  color: white;
  margin-top: 20px;
}

/* Mapa */
.mapa {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

/* Botão */
.btn {
  display: inline-block;
  background: #00ff88;
  color: black;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
  transition: 0.3s;
}

.btn:hover {
  background: #00cc6a;
}











body {
  background: linear-gradient(to bottom, #000, #111);
  color: white;
  font-family: Arial, sans-serif;
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero-img {
  width: 100%;
  max-width: 400px;
  margin-top: 20px;
  border-radius: 10px;
}

/* BOTÃO */
.btn {
  display: inline-block;
  background: #00ff88;
  color: black;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 20px;
}

/* IMAGEM */
.imagem-home {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 30px auto;
  border-radius: 15px;
}

/* DESTAQUE */
.destaque {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.box {
  background: rgba(20,20,20,0.9);
  padding: 30px;
  border-radius: 15px;
  max-width: 700px;
  box-shadow: 0 0 30px rgba(0,255,136,0.2);
  border: 1px solid rgba(0,255,136,0.2);
}

/* SERVIÇOS */
.servicos {
  padding: 40px 20px;
  text-align: center;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #111;
  padding: 20px;
  border-radius: 12px;
}

/* FOOTER */
.footer {
  background: #000;
  text-align: center;
  padding: 20px;
  color: #777;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  padding: 15px;
  border-radius: 50%;
}








.hero-content h1,
.hero-content h2,
.hero-content p,
.btn {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.hero-content h2 {
  animation-delay: 0.3s;
}

.hero-content p {
  animation-delay: 0.6s;
}

.btn {
  animation-delay: 0.9s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




.fade-img {
  opacity: 1;
  transform: translateY(40px);
  transition: 1s;
}

.fade-img.show {
  opacity: 1;
  transform: translateY(0);
}



.hero-img {
  opacity: 0;
  transform: translateY(40px);
  animation: imgFade 1s ease forwards;
  animation-delay: 1.2s;
}

@keyframes imgFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}







.certificados-menu{
  display:none;
  padding:10px;
  background:#111;
}

.certificados-menu img{
  width:100%;
  max-width:180px;
  margin:10px auto;
  display:block;
  border-radius:10px;
}

.certificados-menu.show{
  display:block;
}






.menu{
  position:fixed;
  top:0;
  left:-100%;
  width:250px;
  height:100vh;
  background:#111;
  padding-top:80px;
  transition:0.4s;
  overflow-y:auto; /* 🔥 isto resolve o problema */
}