/*
Theme Name: Juristas com Patrus
Text Domain: juristas_com_patrus
Author: NascerWeb | Christiano Amaral
Author URI: http://nascer.net/
Description: Template desenvolvido exclusivamente para Juristas com Patrus, em parceria com o designer Ronei Sampaio.
Version: 1.0
*/
/*-------------------------------------------------------
RESET
-------------------------------------------------------*/
/* 0. Remove margins and padding */
html, body,
html *, body * {
	margin: 0;
	padding: 0;
	border: 0;	
}
/* 1. Box sizing global */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* 2. Previne o aumento automático de fontes em dispositivos móveis */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
/* 3. Remove margens padrão e define o comportamento do scroll */
body, h1, h2, h3, h4, h5, h6 p, figure, blockquote, dl, dd {
  margin-block-end: 0;
}
/* 4. Remove estilos de lista apenas quando usamos o atributo 
   (Útil para acessibilidade sem perder o estilo padrão de textos longos) */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* 5. Configurações base do corpo do site */
body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; /* Melhora a renderização no macOS/iOS */
}
/* 6. Melhora a legibilidade em títulos e elementos interativos */
h1, h2, h3, h4, h5, h6,
button, input, label {
  line-height: 1.1;
}
/* 8. Evita espaços estranhos abaixo das imagens */
img,
picture {  
  display: block;
}
/* 9. Faz com que inputs e botões herdem as fontes do projeto */
input,
button,
textarea,
select,
address {
  font: inherit;
}
/* 10. Garante que textareas sem atributo 'rows' tenham um tamanho mínimo decente */
textarea:not([rows]) {
  min-height: 5em;
}
/* 11. limpa propriedades de campos de formulários */
input,
select,
textarea,
button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;   
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    outline: none;  
    background-color: transparent;
    box-shadow: none; 
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}
textarea {
    resize: vertical; /* Oculta o arrasto horizontal para não quebrar o layout, permite só vertical */
}
/* Remove o "X" de limpar que o Chrome/Safari injeta nos inputs de pesquisa */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}
/* Remove a setinha padrão do select em navegadores da Microsoft */
select::-ms-expand {
    display: none;
}
/* Adicionar cursor poninter em botões e submits */
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    cursor: pointer;
}
/* 12. Adiciona margem de scroll para links internos (âncoras) não ficarem "colados" ao topo */
:target {
  scroll-margin-block: 5ex;
}
/* 13. ACESSIBILIDADE: Respeita a preferência de movimento reduzido do utilizador */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*-------------------------------------------------------
VARIÁVEIS
-------------------------------------------------------*/
:root {
  /* Cores (paleta oficial do projeto) */
  --color-blue: #6956F1;
  --color-rose: #F8E7E7;
  --color-grey: #707070;
  --color-white: #FFFFFF;

  --color-bg: #F6F6F6;
  --color-bg-alt: var(--color-rose);
  --color-text: var(--color-grey);

  /* Tipografia (Adobe Fonts / Typekit) */
  --font-heading: 'basic-sans', 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-body: 'open-sans', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'redaction', Georgia, 'Times New Roman', serif;

  /* Bordas */ 
  --radius-full: 9999px;
}
/*-------------------------------------------------------
GERAIS
-------------------------------------------------------*/
html{
    background-color: var(--color-bg);
	height:100%;    
}
body {
    background-color: var(--color-bg);
	font-family: var(--font-body);
    font-optical-sizing: auto;
    font-size: 17px;   
    font-style: normal;	
	color: var(--color-text);	
	min-height: 100%;	
    overflow-x: hidden;   
}
body.no-scroll{
    overflow-y: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
}
a{	    
	text-decoration: none;
	transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease;
}
strong{
	font-weight: 600;	
	}
em{
	font-style: italic;
}
p {
	line-height: 1.5em;
	margin-bottom: 1em;
}
p:last-child{
	margin-bottom: 0 !important;
}
.clearfix{
	clear:both;
}
.clearbox::after{
	content: "";
	display: table;
	clear:both;
}
svg{
	display: block;	
}
svg path{
    transition: fill 300ms ease;
}
main {
	width: 100%;
	height: auto;		   
	position: relative;	
    z-index: 10;	
}
section{	
	width: 100vw;
	height: auto;
	position: relative;		
}
.inner {
    width: 1080px;   
    height: auto;
    margin: 0 auto;
    position: relative;         
}
#ps2id-dummy-offset{
    height: 75px;
}
/*-------------------------------------------------------
HEADER
-------------------------------------------------------*/
.site-header { 
    background: var(--color-bg);
    width: 100vw;
    height: auto;
    position: fixed;
    z-index: 30;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.site-header .inner{
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navigation ul{
    display: flex;
    align-items: center;
    gap: 40px;
}
.navigation ul li a{
    width: max-content;
    display: block;
    color: var(--color-blue);
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 700;
    line-height: 1;    
}
.navigation ul li.sign a{
    background-color: var(--color-blue);
    border-radius: var(--radius-full);
    padding: 5px 15px;
    color: var(--color-white);    
}
.navigation ul li a:hover{
    color: var(--color-grey);
}
.navigation ul li.sign a:hover{
    background-color: var(--color-grey);
    color: var(--color-white);    
}
.btn-menu{
    display: none;
}
/*-------------------------------------------------------
HOME
-------------------------------------------------------*/
.hero {
    position: relative;
    height: 100vh;  
    overflow: hidden;
}
.hero .inner {
    height: 100vh;
    z-index: 10;
}
.logo-hero{
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-190px);
}
.logo-hero-m,
.slogan-m{
    display: none;
}
.hero-bg {
    width: 100vw;    
    height: 100vh;  
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-img-d{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.hero-img-m{
    display: none;
}
/* Animação de entrada: a imagem desce do topo (top:0) até assentar com a base em bottom:0 */
#heroImage {
    animation: heroImgReveal 5.5s ease-out forwards;
}
@keyframes heroImgReveal {
    from {
        transform: translateX(-50%) translateY(calc(100% - 100vh));
    }
    to {
        transform: translateX(-50%) translateY(0);
    }
}
.hero-txt{
    position: absolute;
    top: 0;
    left: 500vw;
}
.hero__scroll {
    background: transparent;
    border-radius: var(--radius-full);
	border: 1px solid var(--color-blue);	
	width: 70px;
	height: 70px;	
	display: flex;
	align-items: center;
	justify-content: center;
    position: absolute;
	right: 0;
	bottom: 25px;
    transform: translateX(50%);
	z-index: 10;
    transition: background 300ms;
}
.hero__scroll:hover{
    background: var(--color-blue);
}
/* --- quemsomos --- */
.quemsomos {
  background-color: var(--color-bg); 
}
.quemsomos .inner {
	padding: 75px 0 120px;
	display: flex;
	justify-content: end;
	align-items: baseline;
	gap: 20px;
}
.quemsomos__heading {
    color: var(--color-blue);   
    font-weight: 700; 
    font-size: 72px;
    line-height: 1;
    text-align: right;
}
.quemsomos__text{
    width: 720px;
}
.btn-more{
    display: none;
}
/* --- point-one --- */
.propose {
    background-color: var(--color-bg-alt);    
}
.propose .inner {
    width: 1280px;
    padding: 20px 0 40px;
}
.propose__item {
    width: 100%;
    padding: 65px 100px 0;
    display: grid;
    grid-template-columns: 335px 1fr;
    gap: 25px;
}
.propose__marker {
    padding: 70px 0 0;
    position: relative;
}
.propose__number {
    background: transparent;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-white);	
    width: 135px;
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -65px;
    left: -50px;    
    color: var(--color-blue);
    font-family: var(--font-display);  
    font-weight: 400;
    font-size: 111px;    
    line-height: 1;
    text-align: center;
}
.propose__number::after{
    content: "";
    background: url(assets/img/icone-mapa.svg) no-repeat;
    width: 96px;
    height: 74px;
    display: block;
    position: absolute;
    bottom: -7px;
    left: -48px;
}
.propose__heading {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-blue);
  font-size: 30px;
  line-height: 1.2;
}
#owlPropostas .owl-stage-outer{
    margin-bottom: 50px;
}
#owlPropostas .owl-item:last-child .propose__marker{
    padding: 0;
}
#owlPropostas .owl-item:last-child .propose__number{
    display: none;
}
#owlPropostas .owl-nav {
    width: 100%;
    padding: 0 100px 0 460px;
	display: flex;
	justify-content: space-between;	
	position: relative;	
    pointer-events: none;
    z-index: 20;
    margin-bottom: -60px;
}
#owlPropostas .owl-nav.last-item{
    margin-bottom: 0;
}
#owlPropostas .owl-nav button {
    background-color: var(--color-rose);
    border: 2px solid var(--color-white);   
    width: 336px; 
    height: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;  
    gap: 5px; 
    position: relative;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 25px;
    border-radius: var(--radius-full);    
    color: var(--color-blue);
    pointer-events: all;
    transition: background 300ms;
}
#owlPropostas .owl-nav button span{
    font-weight: 700;
}
#owlPropostas .owl-nav button.owl-prev{
    padding: 0 0 0 140px !important;
    margin-right: auto;
    display: none;
}
#owlPropostas .owl-nav button.owl-next{
    padding: 0 140px 0 0 !important;
    margin-left: auto;
}
#owlPropostas .owl-nav button svg{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#owlPropostas .owl-nav button.owl-prev svg{
    left: 24px;
}
#owlPropostas .owl-nav button.owl-next svg{
    right: 24px;
}
#owlPropostas .owl-nav button.owl-prev:hover,
#owlPropostas .owl-nav button.owl-next:hover {
   background-color: #FFFFFF;
}
#owlPropostas .owl-nav button:hover path {
   fill: var(--color-blue);
}
#owlPropostas .owl-nav button.owl-prev.disabled,
#owlPropostas .owl-nav button.owl-next.disabled {
    display: none;
}
#owlPropostas .owl-dots {
	width: 100%;
    height: 60px;
	padding: 0 436px 0 460px;
	display: flex;
	justify-content: flex-start;
    align-items: center;
    gap: 20px;
	position: relative;	
}
#owlPropostas .owl-dots .owl-dot{
    background: var(--color-blue);
    border-radius: var(--radius-full);
    width: 12px;
    height: 12px;
    transition: background 300ms;
}
#owlPropostas .owl-dots .owl-dot.active{
    background: var(--color-grey);
}
/* --- manifesto --- */
.manifesto {
  background-color: var(--color-bg-alt);
  border-top: 2px solid var(--color-white);
}
.manifesto .inner{
    padding: 45px 0 70px;
}
.manifesto__intro {
    display: flex;
    justify-content: space-between;
    align-items: first baseline;
    margin-bottom: 70px;
}
.manifesto__title-container{
    width: 397px;
}
.manifesto__title { 
    border-bottom: 3px solid var(--color-white);
    width: max-content;
    color: var(--color-blue);
    font-size: 43px;
    font-weight: 700;   
    line-height: 1.2;  
    margin-bottom: 35px;
}
.logo-manifesto {
	width: 459px;
	margin: 0 0 0 -50px;
}
.manifesto__text{
    width: 628px;
}
.manifesto__text a {
  color: var(--color-blue);
  font-weight: 600;
  text-decoration: underline;
}
.manifesto-form{
    padding: 0 180px;
}
.form {
    border-top: 3px solid var(--color-white);
    padding-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.form__field {
    display: flex;
    flex-direction: column;
    gap: 12px;;
    width: 100%;
}
.form__label,
.form__question-label {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-blue); 
    display: block;   
}
.form__label legend {
	display: inline;
	font-weight: 200;
}
.form__input {
    width: 100%;
    height: 40px;
    padding: 0 20px;
    border-radius: 20px;
    background: var(--color-white);
    border: 1px solid var(--color-grey);
    font-size: var(--text-base);
    color: var(--color-text);
}
.form__input:focus {
  outline: none;
  border-bottom-color: var(--color-blue);
}
.form__question {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  max-width: 820px;
}
.checkbox{
    display: flex;
    gap: 20px;
}
.checkbox .wpcf7-list-item {
    height: 24px;
    padding: 0;
	position: relative;	
    margin: 0;
}
.checkbox .wpcf7-list-item label{
    display: block;
    position: relative;
}
.checkbox .wpcf7-list-item label input {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;   
    margin: 0;
    z-index: 10;
}
.checkbox .wpcf7-list-item label .wpcf7-list-item-label{
    height: 24px;
    padding: 0 0 0 30px;
    display: block;
	position: relative;	
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-grey);    
}
.checkbox .wpcf7-list-item label .wpcf7-list-item-label::before{
    content: "";
    background-color: var(--color-white); 
    border: 1px solid var(--color-grey); 
    border-radius: var(--radius-full);
    height: 24px;
    width: 24px;
    position: absolute;
    top: 0;
    left: 0;     
    transition: all 200ms ease-in;
}
.checkbox .wpcf7-list-item label .wpcf7-list-item-label::after{
    content: "";
    background-color: var(--color-white);    
    border-radius: var(--radius-full);
    height: 18px;
    width: 18px;
    position: absolute;
    top: 3px;
    left: 3px;     
    transition: background 200ms ease-in;
}
.checkbox .wpcf7-list-item label input:checked ~ .wpcf7-list-item-label::after {
    background-color: var(--color-blue);  
}
.form__submit {
  display: flex;
  justify-content: flex-end;
  padding-top: 20px;
}
.btn {
    background-color: var(--color-blue);
    width: 120px;
    height: 46px;
    color: var(--color-white);
    display: block;   
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 19px;
    text-transform: uppercase;
    border-radius: var(--radius-full);   
    transition: background 300ms ease, color 300ms ease;
}
.btn:hover {
    background-color: var(--color-grey);
    color: var(--color-white);
}
/* ── Mensagens de erro CF7 ── */
.wpcf7-not-valid-tip {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: rgba(185, 60, 60, 1); 
    margin-top: 5px;
}
.wpcf7-not-valid-tip::before{
	content: "🡡 ";
	font-weight: normal !important;
}
.wpcf7-not-valid.cf7-input,
.wpcf7-not-valid.cf7-select,
.wpcf7-not-valid.cf7-textarea {   
    box-shadow: 0 0 0 3px rgba(185, 60, 60, 0.25);  
}
.wpcf7-response-output{
    border: 2px solid !important;   
    border-radius: 20px; 
    padding: 20px !important;   
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    text-align: center; 
    margin: 16px 0 0 !important;
}
.wpcf7 form.sent .wpcf7-response-output {
    background: var(--color-white);
    border-color: var(--color-blue) !important;
    color: var(--color-blue);
} 
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    background: var(--color-white);
    border-color: rgba(185, 60, 60, 1) !important;
    color: rgba(185, 60, 60, 1);
    } 
/* --- signers --- */
.signers {
  background-color: var(--color-blue); 
}
.signers .inner{
    padding: 48px 0;
}
.signers__header {
    display: flex;
    align-items: last baseline;
    gap: 6px;
    color: var(--color-white);
    margin-bottom: 30px;
}
.signers__count {
  font-family: var(--font-display);
  font-weight: 700;  
  font-size: 87px;
  line-height: 1.2;
  flex-shrink: 0;
}
.signers__caption {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  max-width: 685px;
}
#owlSigners {
	padding: 0 92px;
}
#owlSigners .owl-stage-outer{
    margin-bottom: 30px;
}
#owlSigners .owl-nav {
	width: 140px;
	padding: 0;
	display: flex;
	justify-content: space-between;
	position: relative;	
	left: 50%;
	transform: translateX(-50%);
}
#owlSigners .owl-nav button {
    background: transparent;
    border: none;   
    width: max-content; 
    height: max-content;
    display: block;   
}
#owlSigners .owl-nav button.owl-prev{   
    margin-right: auto;
}
#owlSigners .owl-nav button.owl-next{   
    margin-left: auto;
}
#owlSigners .owl-nav button:hover path {
   fill: var(--color-rose);
}
#owlSigners .owl-nav button.owl-prev.disabled,
#owlSigners .owl-nav button.owl-next.disabled {
    display: none;
}
.signers__list {	
	display: flex;
	flex-wrap: wrap;
    gap: 5px;
}
.signers__list li {
    break-inside: avoid;  
    padding-right: 10px;
    position: relative;
    white-space: nowrap;  
    text-overflow: ellipsis;
    font-size: 14px;
    color: var(--color-white);
    line-height: 1.8;
}
.signers__list li::after {
  content: '•';
  position: absolute;
  right: 0;
  color: var(--color-white);
}
.signers__list li:last-child{
    padding-right: 0;
}
.signers__list li:last-child::after {
  content: none;
}
/* === PÁGINA === */
.content  .inner {
	padding: 135px 0 70px;
	display: flex;
	justify-content: end;
	align-items: baseline;
	gap: 40px;
}
.title-content {
    width: 320px;
	color: var(--color-blue);
	text-align: right;
}
.content__text {
	width: 720px;
}
.content__text h2,
.content__text h3 {
  font-family: var(--font-heading);
  line-height: 1.25;
  margin: 1.5rem 0;
}
.content__text h2{
    font-size: 28px;
}
.content__text h3 {
	font-size: 24px;
}
.content__text h2:first-child,
.content__text h3:first-child {
	margin-top: 0;
}
.content__text p a{		
	text-decoration: underline;
}
.content__text ul,
.content__text ol{  
	padding: 0 0 0 20px;
	margin: 1.5rem 0;	
}
.content__text ol{
	counter-reset: li;
}
.content__text li{
	position: relative;
	line-height: 1.5em;	
    margin-bottom: 0.5rem;
}
.content__text ul li::before {
	content: "";
	background-color: var(--color-blue);  
    border-radius: var(--radius-full);  
	width: 6px;
	height: 6px;
	position: absolute;
	top: 12px;
    left: -15px;
}
.content__text ol li {
	counter-increment: li;
}
.content__text ol li::before {
	content: counter(li)'.';
    width: 25px;
    position: absolute;
	left: -30px;
	color: #3f3777;
	font-size: 1em;
	font-weight: 600;
    text-align: right;	
}
/* === FOOTER === */
.site-footer {
  background-color: var(--color-blue);
  border-top: 2px solid var(--color-white);
}

.site-footer .inner {
    padding: 40px 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}
/* === COOKIE BANNER === */
.cookie-banner{
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: var(--color-white);
	padding: 30px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	z-index: 200;
	transform: translateY(100%);
	opacity: 0;
	pointer-events: none;
	transition: transform 600ms ease, opacity 600ms ease;
}
.cookie-banner.show{
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}
.cookie-banner.slide-up{
	transform: translateY(-100%);
	opacity: 0;
}
.cookie-banner.slide-down{
	transform: translateY(100%);
	opacity: 0;
}
.cookie-banner p{
	font-size: 17px;
    font-weight: 300;
	color: var(--color-text);
	margin-bottom: 0;
}
.cookie-banner a{
	color: var(--color-text);
	text-decoration: underline;
}
.cookie-banner a:hover{
	color: var(--color-accent);
}
.cookie-banner__actions{
    padding-top: 15px;
    display: flex;
    gap: 16px;   
}
.cookie-banner.is-hidden{
	display: none;
}
.btn-cookie{
    width: max-content;
    min-width: 100px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	border: 1px solid var(--color-grey);
	border-radius: 999px;
    font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 600;	
    line-height: 1em;
	text-transform: uppercase;
	color: var(--color-text);
	background-color: transparent;	
	transition: background-color 300ms ease, border-color 300ms ease, color 300ms ease;
}
.btn--ghost{
    background-color: var(--color-grey);
	border-color: var(--color-grey);
	color: var(--color-white);
}
.btn-cookie:hover{
	background-color: var(--color-blue);
    border-color: var(--color-blue);
	color: var(--color-white);
}
.btn--ghost:hover{
	border-color: var(--color-blue);
}
@media (max-width: 768px) {
/*-------------------------------------------------------
GERAIS
-------------------------------------------------------*/
body {  
    font-size: 17px;     
}
.inner {
    width: calc( 100vw - 30px );         
}
/*-------------------------------------------------------
HEADER
-------------------------------------------------------*/
.site-header .inner{
    width: 100vw;
    padding: 15px;   
}
.logo {
	position: relative;
	z-index: 30;
}
.navigation{
    background: var(--color-bg);
    width: 100vw;
    padding: 110px 15px 55px;
    position: absolute;
    top: 0;
    left: 100vw;
    z-index: 10;
    transition: left 300ms ease;
}
.navigation::before{
    content: "";
    background: var(--color-bg);
    width: 100vw;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.navigation::after{
    content: "";
    background-color: rgba(255, 255, 255, 0.75);
    width: 100vw;
    height: 100vh;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;   
}
.navigation.active{
    left: 0;
}
.navigation ul{   
    flex-direction: column;
    align-items: start;
    gap: 30px;
    position: relative;
    z-index: 30;
}
.navigation ul li{
    position: relative;
}
.navigation ul li::before{
    content: "";
    background-color:  var(--color-grey);
    width: 31px;
    height: 1px;
    display: block;
    position: absolute;
    top: -15px;
    left: 0;
}
.navigation ul li a{
    width: max-content;
    display: block;
    color: var(--color-blue);
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 700;
    line-height: 1;    
}
.navigation ul li.sign a{
    background-color: var(--color-blue);
    border-radius: var(--radius-full);
    padding: 5px 15px;
    color: var(--color-white);    
}
.navigation ul li a:hover{
    color: var(--color-grey);
}
.navigation ul li.sign a:hover{
    background-color: var(--color-grey);
    color: var(--color-white);    
}
.btn-menu {	
    background: none;
    border: none;    
	width: 34px;
	height: 36px;	
    display: block;	  
    position: relative; 
    cursor: pointer;   
    z-index: 20;
}
.btn-menu-icone {    
	width: 34px;
	height: 22px;
    display: block;
    position: absolute;
    top: 0;
}
.btn-menu-icone .bar{
    background-color: var(--color-blue);      
    display: block;   
    position: absolute;    
    transform-origin: center center;   
    transition: transform 300ms ease, opacity 300ms ease;
}
.btn-menu-icone .bar{
    width: 34px;
    height: 4px;
    left: 0;
}
.btn-menu-icone .bar.bar-1{    
    top: 0px;
}
.btn-menu-icone .bar.bar-2{   
    top: 9px;         
}
.btn-menu-icone .bar.bar-3{   
    top: 9px;         
}
.btn-menu-icone .bar.bar-4{  
    top: 18px;
}
.btn-menu-label {
    display: block;
	color: var(--color-blue);
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	position: absolute;
	bottom: -2px;	
}
.btn-menu.active .bar.bar-1,
.btn-menu.active .bar.bar-4{    
    opacity: 0;
}
.btn-menu.active .btn-menu-icone .bar.bar-2{
    transform: rotate(-30deg);
}
.btn-menu.active .btn-menu-icone .bar.bar-3{
    transform: rotate(30deg);
}
/*-------------------------------------------------------
HOME
-------------------------------------------------------*/
.hero .inner {
	width: 100vw;	
}
.logo-hero{
    display: none;
}
.logo-hero-m {
    width: calc( 100vw - 30px );
    max-width: 500px;
	display: block;
	position: absolute;
	top: 70px;
	left: 50%;
	transform: translateX(-50%);	
}
.slogan-m{
    display: block;
    position: absolute;    
    right: 22px;  
    bottom: 130px; 
}
.hero-img-d{
    display: none;
}
.hero-img-m{   
    width: 225vw;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;   
}
/* Animação de entrada: a imagem desce do topo (top:0) até assentar com a base em bottom:0 */
#heroImage {
    animation: heroImgReveal 5.5s ease-out forwards;
}
@keyframes heroImgReveal {
    from {
        transform: translateY(calc(100% - 100vh));
    }
    to {
        transform: translateY(0);
    }
}
.hero__scroll {  
	right: 15px;
	bottom: 15px;
    transform: none;	
}
.hero__scroll:hover{
    background: var(--color-blue);
}
/* --- quemsomos --- */
.quemsomos .inner {
	padding: 35px 0 50px;
	justify-content: start;
	align-items: start;
	gap: 5px;
	flex-direction: column;
}
.quemsomos__heading {   
    text-align: left;
}
.quemsomos__text{
    width: 100%;
}
.quemsomos__text p {
    display: none;
}
.quemsomos__text p:first-child {
    display: block;
}
.quemsomos__text.active p {
    display: block;
}
.btn-more {
	width: 125px;
	height: 30px;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	color: var(--color-blue);
	font-family: var(--font-heading);
	font-size: 25px;
	font-weight: 700;
	transition: color 300ms ease;
	margin: 30px 25px 0 auto;
}
.btn-more svg{
    transition: transform 300ms ease;
}
.btn-more.active svg{
    transform: rotate(180deg);
}
.btn-more strong{
    font-weight: 900;
}
.btn-more:hover{
    color: var(--color-grey);
}
.btn-more:hover path{
    fill: var(--color-grey);
}
/* --- point-one --- */
.propose .inner {
    width: 100vw;
    padding: 20px 0 50px;
}
.propose__item {
    width: 100vw;
    padding: 0;    
    grid-template-columns: 1fr;
    gap: 20px;
}
.propose__marker {
    padding: 0;    
}
.propose__number {
	position: relative;
	top: 0;
	left: 15px;    
}
.propose__heading {
    padding: 10px 15px 0;
}
.propose__text{
    padding: 0 15px;
}
#owlPropostas .owl-nav {   
    padding: 0;	
	justify-content: center;
    margin-bottom: 48px			   
}
#owlPropostas .owl-nav button.owl-next {	
	margin-left: 0;
}
#owlPropostas .owl-dots {	
    height: 12px;
	padding: 0;	
	justify-content: center;
    align-items: end;   
}
/* --- manifesto --- */
.manifesto .inner{
    padding: 25px 0 60px;
}
.manifesto__intro {
    flex-direction: column;
    justify-content: start;
    align-items: start;   
    margin-bottom: 40px; 
}
.manifesto__title-container{
    width: 100%;
    margin-bottom: 30px;
}
.logo-manifesto {
	width: 340px;
	margin: 0;
}
.manifesto__text{
    width: 100%;
}
.manifesto-form{
    padding: 0;
}
/* --- signers --- */
.signers .inner{
    padding: 40px 0;
}
.signers__header {
    flex-direction: column;
    align-items: start;
    gap: 0;   
}
#owlSigners {
	padding: 0;
}
/* === FOOTER === */
/* === COOKIE BANNER === */
.cookie-banner{	
	width: 100vw;		
	flex-direction: column;
	gap: 20px;
	flex-wrap: nowrap;	
}
.cookie-banner p,
.cookie-banner__actions{
    width: 100%;
    max-width: 100%;;	
}
}
