
/* MENU SCROLL ANCORA */
html {
      scroll-behavior: smooth; /* rolagem suave */
    }

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

/* HEADER */
header {
  background: transparent;
  padding: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(1.0937rem, 1.130vw, 1.2rem);
  font-family : Arial,Tahoma,Verdana;
}


/* BOTÃO MENU */
.menu-btn {
  font-size: 25px;
  color: #2149d0;
  cursor: pointer;
  text-align: center;

}

/* MENU LATERAL */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 170px;
  height: 100%;
  background: #203055;
  padding-top: 60px;
  transition: 0.3s;
  z-index: 1;
}

/* MENU ATIVO */
.sidebar.active {
  left: 0;
}

/* LINKS */
.sidebar a {
  display: block;
  color: #d7def7;
  padding: 15px 20px;
  text-decoration: none;
  border-bottom: 1px solid #314061;
}

.sidebar a:hover {
  background: #4178f3;
  color: #ffffff;
}

/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(65,120,243,0.3);
  display: none;
  z-index: 0;
 }

.overlay.active {
  display: block;
}

/* FIM MENU PRINCIPAL */


img {
    max-width: 100%;
    height: auto;
}
/* WHATSAPP FLUTUANTE */


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

/* CONTEÚDO FAKE SÓ PRA TESTE */
body {
    height: 2000px;
    background: #ffffff;
}

/* CONTAINER */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

/* BOTÃO */
.whatsapp-float {
    width: 65px;
    height: 65px;
    background: linear-gradient(45deg, #25D366, #20b858);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    animation: pulse 1.8s infinite;
    transition: 0.3s;
    cursor: pointer;
}

.whatsapp-float img {
    width: 36px;
}

.whatsapp-float:hover {
    transform: scale(1.15);
}

/* POPUP */
.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 260px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    display: none;
    animation: fadeInUp 0.5s ease;
}

.whatsapp-popup strong {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.whatsapp-popup p {
    font-size: 13px;
    margin-bottom: 10px;
}

.whatsapp-popup a {
    display: block;
    background: #25D366;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* TEXTO EXTRA (gatilho) */
.whatsapp-popup .gatilho {
    font-size: 12px;
    color: #555;
    margin-top: 8px;
}

/* ANIMAÇÕES */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* FIM WHATSAPP FLUTUANTE */
