/* ============================================================
   MONDAX.CSS — Estilos globais da marca
   Padrão: CSS puro + jQuery (sem Tailwind)
   ============================================================ */

/* =============== GERAIS =============== */
html,
*,
*::before,
*::after {
  box-sizing: border-box;
  scroll-padding-top: 90px;
}

/* =============== VARIÁVEIS =============== */
:root {
  --verde-principal: #22C55E;
  --verde-principal-hover: #16A34A;
  --verde-claro: rgba(34, 197, 94, 0.10);
  --verde-borda: rgba(34, 197, 94, 0.30);
  --preto: #111827;
  --cinza-texto: #6B7280;
  --cinza-fundo: #F9FAFB;
  --cinza-borda: #E5E7EB;
  --cinza-escuro: #374151;
  --branco: #ffffff;
  --cinza-rodape: #111827;
  --cinza-rodape-texto: #D1D5DB;
  --cinza-rodape-borda: #374151;

  --fonte-body: 'Inter', sans-serif;
  --fonte-titulo: 'Poppins', sans-serif;

  --sombra-card: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.06);
  --sombra-hover: 0 10px 25px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --transicao: all 0.3s ease;
}

/* =============== RESET / BASE =============== */
* {
  margin: 0;
  padding: 0;
  outline: none;
}

a {
  text-decoration: none;
}

html {
  background: var(--branco);
  scroll-behavior: smooth;
}

body {
  font-family: var(--fonte-body);
  color: var(--preto);
  background: var(--branco);
  line-height: 1.6;
}

p {
  line-height: 180%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fonte-titulo);
  line-height: 1.2;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* =============== BOTÕES GLOBAIS =============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--fonte-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transicao);
  border: 2px solid transparent;
  text-align: center;
}

.btn-principal {
  background: var(--verde-principal);
  color: var(--branco);
  border-color: var(--verde-principal);
}

.btn-principal:hover {
  background: var(--verde-principal-hover);
  border-color: var(--verde-principal-hover);
  color: var(--branco);
}

.btn-outline {
  background: transparent;
  color: var(--verde-principal);
  border-color: var(--verde-principal);
}

.btn-outline:hover {
  background: var(--verde-principal);
  color: var(--branco);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* =============== TOPO / NAVEGAÇÃO =============== */
.topo {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--branco);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: var(--transicao);
}

.topo.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.main-nav .center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo a,
.logo img {
  display: block;
  height: 40px;
  width: auto;
}

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu li a {
  font-family: var(--fonte-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--preto);
  transition: var(--transicao);
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--verde-principal);
  transition: var(--transicao);
}

.nav-menu li a:hover {
  color: var(--verde-principal);
}

.nav-menu li a:hover::after {
  width: 100%;
}

/* Ações do nav */
.nav-acoes {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Botão hamburguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--preto);
  transition: var(--transicao);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============== POPUP INICIO =============== */

.popup {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.popup_content {
  position: relative;
  margin: auto;
  padding: 0;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  width: 80%;
  max-width: 650px;
  height: auto;
}

@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

.popup_imagem_full {
  width: 100%;
  height: 100%;
  float: left;
  position: relative;
  top: -35px;
}

.popup_imagem_full img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 7px;
  background: #ffffff;
  border-radius: 8px;
  box-sizing: border-box;
}

.popup_youtube_full {
  width: 100%;
  position: relative;
  padding-bottom: 60%;
  height: 0;
}

.popup_youtube_full video {
  padding: 7px;
  background: #ffffff;
  border-radius: 8px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.popup_youtube_full .legenda {
  bottom: -35px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 40%);
  text-align: center;
}

.popup .legenda {
  display: flex;
  justify-content: center;
}

.popup .legenda span {
  background: #000;
  color: #ffffff;
  padding: 5px 20px;
  border-radius: 17px;
  margin-top: 5px;
}

.close {
  color: #000;
  float: right;
  font-size: 2.1875em;
  z-index: 999;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
  position: relative;
  right: -14px;
  top: -16px;
  background: #ffffff;
  height: 38px;
  width: 38px;
  text-align: center;
  border-radius: 50%;
  border: solid 1px #c1c1c1;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  background: #dddddd;
}


/* =============== RODAPÉ =============== */
.rodape {
  background: var(--cinza-rodape);
  color: var(--cinza-rodape-texto);
  padding: 60px 0 0;
}

.rodape-colunas {
  padding-bottom: 40px;
}

.rodape-col h4 {
  font-family: var(--fonte-titulo);
  color: var(--branco);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.rodape-col p,
.rodape-col li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--cinza-rodape-texto);
}

.rodape-col a {
  color: var(--cinza-rodape-texto);
  transition: var(--transicao);
  font-size: 14px;
}

.rodape-col a:hover {
  color: var(--verde-principal);
}

.rodape-col ul li {
  margin-bottom: 8px;
}

.rodape-logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}

.rodape-base {
  border-top: 1px solid var(--cinza-rodape-borda);
  padding: 24px 0;
}

.rodape-base-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.rodape-base p {
  font-size: 13px;
  color: var(--cinza-rodape-texto);
}

.rodape-base ul {
  display: flex;
  gap: 24px;
}

.rodape-base ul li a {
  font-size: 13px;
  color: var(--cinza-rodape-texto);
  transition: var(--transicao);
}

.rodape-base ul li a:hover {
  color: var(--verde-principal);
}

/* =============== SCROLL TO TOP =============== */
.btn-voltar-topo {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--verde-principal);
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transicao);
  z-index: 998;
  border: none;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.btn-voltar-topo.show {
  opacity: 1;
  visibility: visible;
}

.btn-voltar-topo:hover {
  background: var(--verde-principal-hover);
  transform: translateY(-2px);
}

/* =============== RESPONSIVO — MENU MOBILE =============== */
@media (max-width: 768px) {
  .main-nav .center {
    height: 64px;
    position: relative;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--branco);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
    padding: 12px 0;
    z-index: 100;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    display: block;
    padding: 12px 24px;
    font-size: 15px;
    border-bottom: 1px solid var(--cinza-borda);
  }

  .nav-menu li:last-child a {
    border-bottom: none;
  }

  .nav-menu li a::after {
    display: none;
  }

  .nav-whatsapp {
    display: none;
  }

  .rodape-base-inner {
    flex-direction: column;
    text-align: center;
  }
}

em {
  color: #6dc135;
}

.title-lg p {
    margin: 0;
}

.title-lg p + p {
    margin-top: 0;
}