@charset "UTF-8";
/* CSS Document */
/* Reset e estrutura básica */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f4efe4;
  color: #333;
  line-height: 1.6;
}

.search .site-header {
  background-color: rgba(14, 26, 41, 1);
}

/*_______________________________________________________*/

/*IMPEDIR QUE O SITE TENHA ROLAGEM HORIZONTAL*/

body,
html {
  overflow-x: hidden;
}

/*=====================================
===========FONTES DO SITE==============
=====================================*/

/* Fonte padrão global */
body {
  font-family: 'Montserrat', sans-serif;

}
h1 {
  font-family: 'Montserrat', sans-serif;

}
h2 {
  font-family: 'Montserrat', sans-serif;

}
h3 {
  font-family: 'Montserrat', sans-serif;

}
h4 {
	font-family: 'Montserrat', sans-serif;
      font-weight: 400;
      font-size: .85em;
      margin-top: 20px;
      margin-bottom: 20px;
}
p {
	font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        font-size: .85em;
        margin-top: 20px;
      margin-bottom: 20px;
}

ol {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 20px;
  font-size: .85em;
}

li {
  margin-bottom: 0.5rem;

}
li::marker {
    font-size: .85em;

}
/*_______________________________________________________*/
/* === Header === */
/* === Cointainer do menu === */
.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 0;

}
/* === Elementos exclusivos do menu mobile === */
.menu_mobile {
	display: none !important;
}
.menu_mobile_titulo {
	display: none !important;
}
.contato-mobile {
	display: none !important;
}
@media (max-width: 768px) {
.menu_mobile {
	display: contents !important;
	color: red !important;
	margin-bottom: -15px !important;
	text-decoration: underline;
	
	}}
@media (max-width: 768px) {
	.normais {
	margin-bottom: -15px !important;
	text-decoration: underline;
	
	}}
@media (max-width: 768px) {
.menu_mobile_titulo {
	display: block !important;
	}}
@media (max-width: 768px) {
.contato-mobile {
	display: block !important;
	margin: 25px 0 0 0;
	background-color: #50a6dc;
	border-radius: 40px;
	max-width: 35vw;
	}
 .contato-mobile a {

	 margin-left: 34px;
	 color: #ffffff !important;
	 font-weight: 850;
	}}

/*_______________________________________________________*/
/* === CABEÇALHO DO SITE=== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(14, 26, 41, 0.2);
  border-bottom: .5px solid #6c6c6c;
  z-index: 999;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
	.site-header {
		background-color: rgba(14, 26, 41, 0.2);
	}}
.single .site-header {
	background-color: rgba(14, 26, 41, .40);
}

.site-header.scrolled {
  background-color: rgba(14, 26, 41, .9) !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.site-logo img {
  max-width: 120px;
  width: 100%;
  height: auto;
  margin-right: 56px;
}
@media (max-width: 768px) {
	.site-logo {
		justify-content: center;
		margin: 0 auto;
	}
    .site-logo img {
		margin: 0;
}
}
	
.main-nav {
  flex: 3;
}

.main-nav .menu {
  display: flex;
  list-style: none;
  gap: 50px;
  margin: 0;
  padding: 0;
}

.main-nav .menu li a {
  font-size: 12px;
  color: white;
  text-decoration: none;
  font-weight: 400;
  transition: color 1s;
}
.main-nav .menu li a:hover {
   color: #ffc40d;
}

.search-icon button,
.hamburger button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.header-cta .btn-contato {
  background: #ffc40d;
  color: #100a23;
  padding: 10px 20px;
  font-size: 11px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: all .4s;
}
.header-cta .btn-contato:hover {
	background: #50a6dc;
	color: #ffc40d;}

.desktop-search {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background-color: #0e1b29;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.desktop-search.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  color: #ffffff !important;
}
.desktop-search.active input {
	width: 90%;
	height: 50px;
	margin: 20px auto !important;
	border-radius: 20px 0px 0px 20px;
	padding: 20px;
	margin-right: -5px !important;
}
.desktop-search.active .search-bt {
	height: 47px;
	width: 47px;
	border-radius: 0px 20px 20px 0px;
	border: none;
	color: #100a23;
	background-color: #ffc40d;
	
}
.desktop-search.active .search-bt:hover {
	color: #ffc40d;
	background-color: #100a23;
	border: 1px solid #ffc40d;	
}

/* Menu mobile */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background-color: #0e1a29;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 998;
  display: flex;
  flex-direction: column;
  padding-top: 120px;
  padding-left: 35px;
}
.mobile-menu.active {
  transform: translateX(0%);
}

.mobile-menu .menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 -10px 0;
}

.mobile-menu .menu a {
  color: #ffc40d !important;
	font-family: 'Montserrat', sans-serif;
	font-weight: 450;
  text-decoration: none;
  align-content: right;
	margin-bottom: -15px !important;
}
.mobile-menu a {
  color: #ffc40d !important;
	font-family: 'Montserrat', sans-serif;
	font-weight: 450;
  text-decoration: none;
  align-content: right;
}

@media (max-width: 768px) {
.mobile-menu .menu .menu_mobile_titulo a {
	color: white !important;
	margin-bottom: -60px !important;
	font-size: 10px !important;
	}}
@media (max-width: 768px) {
.mobile-menu .menu .menu_mobile_titulo {
	margin-bottom: -20px !important;
	}}

/* Responsivo */
@media (max-width: 768px) {
  .main-nav,
  .search-icon,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: block;
  }

  #mobile-menu.active {
    display: flex;
  }
}

/* Esconde o hambúrguer no desktop */
.hamburger {
  display: none;
}
@media (max-width: 768px) {
.hamburger {
  display: block;
	}}
/* Busca no hambúrguer*/

.mobile-search {
	height: 60px;
	margin-bottom: 50px;
}
.mobile-search input {
	border-radius:40px;
    background-color: #fff;
	width: 50vw;
	height: 50px;
	padding: 15px;
}
.mobile-search .search-bt-mb {
	height: 50px;
	margin-left: -50px;
	background-color: #ffc40d;
	border-radius: 40px;
	width: 90px;
	color: #0E1B29;
	transition: background-color 1s;
}
.mobile-search .search-bt-mb:hover {
	color: #ffc40d;
	background-color: #0E1B29;
}

.close-mobile-menu {
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  z-index: 999;
}
/*=============================================
 * RELATIVO AO RODAPÉ DO SITE
 * ============================================*/
.site-footer {
  background-color: #0e1a29;
  color: white;
  padding-top: 0;
  font-size: 12.9px;

}

.site-footer a {
  color: white;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  color: #fdc924; /* opcional, tom de destaque */
}
/* Linha de topo com gradiente */
.footer-top-bar {
  height: 3px;
  background: #0E1B29;
background: linear-gradient(90deg, rgba(14, 27, 41, 1) 0%, rgba(255, 201, 59, 1) 50%, rgba(14, 27, 41, 1) 100%);
}

/* Layout Desktop */
.desktop-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 20px 60px 5px;
}

.footer-col {
    flex: 1;
}

.footer-col h2 {
  font-size: 16px;
  color: #ffc40d;
  text-decoration: underline !important;
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 5px;
}

.footer-col ul li a,
.footer-col p,
.footer-col a {
  color: white;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* Redes sociais */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-social a {
  font-size: 14px;
  padding: 1px 6px 1px 6px;
  color: #0e1a29;
  background-color: #ffc40d;
  border-radius: 6px;
}
.footer-social a:hover {
  font-size: 14px;
  padding: 1px 6px 1px 6px;
  color: #ffc40d;
  background-color: #50a6dc;
}


/* Rodapé base */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 2px 14px;
  background-color: #0e1a29;
  font-size: 12px;
}

.footer-bottom .footer-credit {
  text-align: right;
  flex: 1 1 200px;
	 font-size: 8px;
}
.footer-bottom .footer-copy p {
  font-size: 8.6px;
  text-align: left;
  flex: 1 1 200px;
}
/* Logo no rodapé mobile */
.footer-logo img {
  max-width: 110px;
  margin: 20px auto;
  display: block;
}

/* Mobile: esconde layout desktop */
.footer-mobile {
  display: none;
}

.mobile-only {
  display: none;
}

/* Accordion */
.footer-accordion {
  padding: 20px;
}

.accordion-item {
  border-bottom: 2px solid rgba(255,196,13,.5);
}

.accordion-toggle {
  background: none;
  border: none;
  color: #ffc40d;
  text-decoration: none !important;	
  font-weight: 600;
  text-align: left;
  padding: 20px 0;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  display: flex;                  /* organiza em linha */
  justify-content: space-between; /* título à esquerda, ícone à direita */
  align-items: center;            /* centraliza verticalmente */
}
.accordion-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
	text-decoration: none !important;
}

/* (opcional) Girar ícone ao abrir */
.accordion-item.active .accordion-icon {
  transform: rotate(360deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content ul {
  padding-left: 0;
  margin: 10px 0;
  list-style: none;
  color: white;
}

.accordion-item.active .accordion-content {
  max-height: 500px; /* espaço suficiente para abrir */
}

.footer-contact,
.footer-newsletter {
  padding: 20px;
  text-align: left;
}

.footer-newsletter h2,
.footer-contact h2 {
  font-size: 16px;
  color: #ffc40d;
  text-decoration: underline !important;
  margin-bottom: 10px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .desktop-footer {
    display: none;
  }

  .footer-mobile {
    display: block;
  }

  .mobile-only {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 20px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2px; /* menor distância entre os blocos */
    padding: 10px 0 5px; /* reduz espaço acima/abaixo */
	
  }

  .footer-bottom .footer-copy,
  .footer-bottom .footer-credit  {
	  justify-content: center;
	  max-height: 30px;
    margin: 10px auto;
    padding: 2px 35px 2px 35px;;
    text-align: center !important; /* força centralização mesmo com inline styles */
  }
	.footer-bottom .footer-copy p {
		text-align: center;
	}
  .footer-bottom .footer-credit {
    margin-top: 2px !important; /* ajusta distância sutil entre copy e credit */
  }
}


.accordion-toggle .accordion-icon {
  right: 5px;
  margin-left: 8px;
  font-size: 15px;
}

/*===========================================
 * ========AVISO DE COOKIES==================
 * ========================================*/
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 520px;
    background: rgba(244,239,228,.95); /* mesmo tom do rodapÃ© */
    color: #051c2c;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    z-index: 9999;
    display: none;
}

.cookie-notice__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-notice p {
    font-size: 14px;
    line-height: 1.4;
}

.cookie-notice a {
    color: #051c2c;
    text-decoration: underline;
}

.btn-cookie {
    align-self: flex-start;
    background: #ffc40d;
    color: #051c2c;
    border: none;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
}

.btn-cookie:hover {
	color: #ffc40d;
	background: #50a6dc;
}

@media (min-width: 768px) {
    .cookie-notice {
        left: 30px;
        bottom: 30px;
    }
}

/*===================RELATIVO À HOMEPAGE=========================*/

/*---------HERO----------------*/

.servicos .secao-heroi {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 60px;
  color: #fff;
}

.servicos .heroi-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.servicos .secao-heroi .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 26, 41, 0.3);
  z-index: 1;
}

.servicos .heroi-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.servicos .heroi-content h3 {
  font-size: 1rem;
  color: #fff;
  font-weight: 400;	
  margin-bottom: 0.2rem;
}

.servicos .heroi-content h1 {
  font-size: 2.2rem;
  color: #ffc40d;
  font-weight: 550;
  margin-bottom: 1rem;
}

.servicos .heroi-content p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Responsivo - HERO */
@media (max-width: 768px) {
  .servicos .secao-heroi {
    position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: bottom;
  justify-content: center;
  padding: 40% 5% 25% 5%;
  color: white;
  }
  .heroi-content h1 {
    font-size: 1.2rem;
  }
  .heroi-content h3 {
    font-size: .8rem;
  }
 .servicos .secao-heroi .heroi-video {
  position: absolute;
  top: -80px;
  left: 0;
  width: 120%;
  height: 120%;
  object-fit: cover;
  z-index: -1;
	align-content: center;
  }
}
/*SEGUNDA SEÇÃO DA HOME*/

.treinamentos-intro {
    background: #0E1B29;
background: linear-gradient(134deg, rgba(14, 27, 41, 1) 88%, rgba(255, 196, 54, 1) 100%);
    margin: 0;
    padding: 45px;
    min-height: 25vh;
}
.treinamentos-intro-content {
    display: flex;
    justify-content: center;
    max-width: 480px;
    margin: 0 auto;
}
.treinamentos-intro-content p {
    color: #f9f7f2;
    font-size: 18px;
    text-align: center;
}
/* =========================
   SINGLE CONSULTOR
========================= */

.single-consultor .post-content {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 95px 20px 20px;
    background: white;
}

/* Título */
.single-consultor .post-title {
    font-size: 2.2em;
    font-weight: 200;
    margin-bottom: 10px;
}

/* Cargo */
.consultor-cargo {
    font-size: 0.9em;
    color: #80682B;
    margin-bottom: 40px;
    display: block;
}

/* Bio */
.single-consultor .post-body {
    font-size: 0.95em;
    line-height: 1.8;
    margin-bottom: 0px;
    overflow: hidden; /* ðŸ‘ˆ impede colapso */
}

/* =========================
   BLOCOS
========================= */

.consultor-bloco {
    margin-bottom: 60px;
}

/* Título dos blocos */
.consultor-bloco h2 {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 400;
    position: relative;
}

/* Linha sutil abaixo do título */
.consultor-bloco h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #80682B;
    margin-top: 8px;
}

/* Lista */
.consultor-bloco ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Itens */
.consultor-bloco li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.9em;
    line-height: 1.6;
}

/* Bullet custom */
.consultor-bloco li::before {
    content: "â€¢";
    position: absolute;
    left: 0;
    color: #80682B;
}

/* =========================
   SHARE
========================= */

.post-share {
    margin-top: 80px;
    text-align: center;
	margin-top: 80px;
}

.post-share p {
    font-size: 11px;
    margin-bottom: 10px;
}

.share-buttons {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-buttons li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #18182B;
    color: #fff;
    transition: .3s;
}


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 768px) {

    .single-consultor .post-title {
        font-size: 1.8em;
    }

    .consultor-cargo {
        font-size: 0.85em;
    }

    .consultor-bloco {
        margin-bottom: 40px;
    }

}
/* =========================
   FOTO DO CONSULTOR
========================= */

.consultor-foto {
    display: flex;
    justify-content: center;
    margin: 20px auto 20px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.consultor-foto-wrapper {
    width: 140px;
    height: 140px;
    min-width: 140px;
    min-height: 140px;
    max-width: 140px;
    max-height: 140px;
    border-radius: 50%;
    overflow: hidden;
    clip-path: circle(50%);
}

/* imagem */
.consultor-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
transform: scale(1.21);

}