@charset "utf-8";
/*
  Theme Name: WP Premium Theme
  Theme URI: https://github.com/alexmeninf/wp-premium-theme
  Author: Alexandre Menin
  Author URI: https://alexmenin.com.br/
  Description: Este tema é uma versão Premium, com vários recursos para um site completo, moderno e tudo conectado ao painel do wordpress. Com suporte para plugins como ACF, Polylang e Woocommerce.
  Requires at least: 5.9
  Tested up to: 5.9
  Requires PHP: 5.6
  Version: 5.3.1
  License: GNU General Public License v2 or later
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
  Text Domain: premiumtheme
*/
.cnpj-sidebar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Etapa atual */
.cnpj-sidebar a.atual {
  color: #31bd36;
}

/* Etapa concluída */
.cnpj-sidebar a.concluida {
  color: #007bff;
}
.cnpj-sidebar {
  background: #000000;
  border-radius: 22px;
  padding: 20px;
  width: 100%;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.cnpj-sidebar h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #31bd36;
}

.cnpj-sidebar ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.cnpj-sidebar li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cnpj-sidebar li:last-child {
  border-bottom: none;
}

.cnpj-sidebar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cnpj-sidebar a.atual {
  color: #31bd36;
}

.cnpj-sidebar a.concluida {
  color: #007bff;
}

.cnpj-welcome {
  font-size: 1rem;
  color: white;
  margin-bottom: 20px;
}

.cnpj-stars {
  color: #888;
  font-size: 14px;
  margin-top: 5px;
}

.cnpj-stars .fa-star {
  color: #31bd36;
  margin-right: 3px;
}

.cnpj-stars .fa-star.empty {
  color: #333;
}
.avatar-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.avatar-modal-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

.avatar-modal-content {
    background: white;
    padding: 30px 30px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    animation: fadeInUp 0.3s ease;
    width: 320px;
}

.avatar-modal-content img {
    border-radius: 50%;
    margin-bottom: 20px;
    width: 120px;
    height: 120px;
}

.avatar-modal-content button[type="button"] {
    background: #0f3efa;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
}

.avatar-modal-content button[type="button"]:hover {
    background: #0c2dcc;
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #eee;
    color: #333;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 18px;
    cursor: pointer;
    line-height: 28px;
    text-align: center;
}

/* 🎯 Estilos da Jornada de Etapas */

.etapa-card {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 20px;
}

.etapa-header {
  cursor: pointer;
}

.etapa-label {
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 10px;
}

.bloqueada {
  background: #555 !important;
  color: white !important;
}

.etapa-label.feita {
  background: #0f3efa !important;
  color: #fff !important;
}

.botao-proxima {
  background: #444;
  color: #bbb;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 30px;
  float: right;
  cursor: not-allowed;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.botao-proxima.ativa {
  background: #00e500;
  color: #fff;
  cursor: pointer;
}

.botao-proxima:hover:enabled {
  filter: brightness(1.1);
}

.curso-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 10px;
}

.curso-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.curso-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.curso-card h3 {
  margin: 0;
  font-size: 14px;
  padding: 10px;
  text-align: center;
  background: #f8f8f8;
  color: #333;
}

.curso-card.checked {
  border: 2px solid #00e500;
  transform: scale(1.02);
}

.imagem-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

.imagem-modal.show {
  display: flex;
}

.imagem-expandida {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.imagem-actions {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.imagem-actions a,
.imagem-actions button {
  background: #0f3efa;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.imagem-actions button {
  background: #333;
}

input#whatsapp-numero {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
}

#loading-msg {
  font-style: italic;
  color: #ccc;
}

/* =========================================================
   REMOÇÃO DE ÍCONES/FLUTUANTES NO CANTO INFERIOR DIREITO
   (Desktop + Mobile)
   — Oculta botões de WhatsApp/Messenger/Chat e "voltar ao topo"
   ========================================================= */

/* Botões “voltar ao topo” comuns */
#scrollUp,
#scroll-to-top,
#scroll_top,
#toTop,
#back-to-top,
#backTop,
.scrollup,
.scroll-to-top,
.scroll-top,
.lqd-scroll-to-top,
.elementor-widget-scroll-to-top,
.wpfront-scroll-top-container,
#wpfront-scroll-top-container {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Widgets de chat/WhatsApp/Messenger comuns */
.chaty,
#chaty-widget,
.getbutton,
.getbutton-widget,
.whatshelp,
.whatshelp-btn,
.whatsapp_float,
.floating-whatsapp,
.ht-ctc,
.ht-ctc-chat,
#whatsapp-chat,
.button-whatsapp,
.qlwapp-bubble,
.qlwapp-trigger,
.joinchat,
.joinchat__button,
.wa__btn,
.wa__btn_popup,
.wa__popup_chat_box,
.mdp-whatsapp-widget,
.facebook-messenger-plugin,
.fb-customerchat,
.fb_iframe_widget iframe[title*="chat"],
.tawk-min-container,
.tawkchat-minified,
.tawk-button,
#tawkchat-status,
#tawkchat-minified,
.callbell-widget,
#callbell-root,
.float-contact,
.sticky-social,
.sticky-social-icons,
.floating-social,
.sticky-action-buttons,
.essb-mobile-share-bottom,
.xoo-el-floating,
.sp-form-fixed,
.tiws-floating,
.fr-floating,
.icone-whatsapp-flutuante {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Fallback extra seguro: qualquer bolha de chat fixa no canto inferior direito */
[class*="chat"][style*="position:fixed"][style*="bottom"],
[class*="whats"][style*="position:fixed"][style*="bottom"],
[class*="whatsapp"][style*="position:fixed"][style*="bottom"],
[class*="messenger"][style*="position:fixed"][style*="bottom"],
[id*="chat"][style*="position:fixed"][style*="bottom"],
[id*="whats"][style*="position:fixed"][style*="bottom"],
[id*="whatsapp"][style*="position:fixed"][style*="bottom"],
[id*="messenger"][style*="position:fixed"][style*="bottom"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}