/* =========================================================
   WebAdex - Estilos públicos
   Arquivo:
   /home/poraoclubedo/public_html/webadex-dev/includes-public/styles.css
========================================================= */


/* Estrutura geral */

.webadex-header {
  position: relative;
  z-index: 1000;
}

.webadex-main {
  min-height: 60vh;
}

.webadex-footer {
  font-size: .95rem;
}


/* Conteúdo */

.webadex-conteudo img,
.webadex-modulo img {
  max-width: 100%;
  height: auto;
}

.webadex-conteudo iframe,
.webadex-modulo iframe {
  max-width: 100%;
}

.webadex-conteudo p:last-child,
.webadex-modulo p:last-child {
  margin-bottom: 0;
}


/* Módulos */

.webadex-modulo {
  width: 100%;
}

.webadex-modulo-topo {
  margin-bottom: 0;
}

.webadex-modulo-lateral {
  position: relative;
}


/* Menus */

.menu-contextual .list-group-item {
  background: transparent;
}

.menu-rodape {
  background: #f8f9fa;
}


/* Botão flutuante WhatsApp */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
}

.whatsapp-float a {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.2rem;
  background: #25D366;
  color: #ffffff !important;
  font-weight: 700;
  line-height: 1;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  transition: transform .15s ease, box-shadow .15s ease;
}

.whatsapp-float a:hover {
  color: #ffffff !important;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}

.whatsapp-float i {
  font-size: 1.45rem;
  line-height: 1;
  flex-shrink: 0;
}


/* Mobile */

@media (max-width: 576px) {
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }

  .whatsapp-float a {
    padding: .75rem 1rem;
    font-size: .95rem;
  }

  .whatsapp-float i {
    font-size: 1.35rem;
  }
}