/*
Theme Name: Marina Secaf
Text Domain: marina_secaf
Domain Path: /languages
Author: NascerWeb | Christiano Amaral
Author URI: http://nascer.net/
Description: Template desenvolvido exclusivamente para a arquiteta Marina Secaf, em parceria com a designer Viviane Silva.
Version: 1.0
*/
/*-------------------------------------------------------
WEBFONTS
-------------------------------------------------------*/
@font-face {
	font-family: 'Wotfard';
	src: url('assets/fonts/Wotfard-Thin.woff2') format('woff2');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Wotfard';
	src: url('assets/fonts/Wotfard-ThinItalic.woff2') format('woff2');
	font-weight: 100;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Wotfard';
	src: url('assets/fonts/Wotfard-ExtraLight.woff2') format('woff2');
	font-weight: 200;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Wotfard';
	src: url('assets/fonts/Wotfard-ExtraLightItalic.woff2') format('woff2');
	font-weight: 200;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Wotfard';
	src: url('assets/fonts/Wotfard-Light.woff2') format('woff2');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Wotfard';
	src: url('assets/fonts/Wotfard-LightItalic.woff2') format('woff2');
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Wotfard';
	src: url('assets/fonts/Wotfard-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Wotfard';
	src: url('assets/fonts/Wotfard-RegularItalic.woff2') format('woff2');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Wotfard';
	src: url('assets/fonts/Wotfard-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Wotfard';
	src: url('assets/fonts/Wotfard-MediumItalic.woff2') format('woff2');
	font-weight: 500;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Wotfard';
	src: url('assets/fonts/Wotfard-SemiBold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Wotfard';
	src: url('assets/fonts/Wotfard-SemiBoldItalic.woff2') format('woff2');
	font-weight: 600;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Wotfard';
	src: url('assets/fonts/Wotfard-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Wotfard';
	src: url('assets/fonts/Wotfard-BoldItalic.woff2') format('woff2');
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}

/*-------------------------------------------------------
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 */
	--color-bg: #F0EEE9;
	--color-bg-nav: #F0EEE9;
    --color-bg-cookies: #E6E5DC;
	--color-text: #333132;
	--color-text-muted: #BDBDB0;	
	--color-border: #BDBDB0;	
	--color-white: #FFFFFF;

	/* Tipografia */
	--font-base: 'Wotfard', Arial, sans-serif;
	--text-xs: 0.625rem;
    --text-xsm: 0.75rem;
	--text-sm: 0.875rem;
	--text-base: 1rem;
	--text-md: 1rem;
	--text-lg: 1.25rem;
	--text-xl: 1.75rem;	

	/* Layout */
	--nav-width: 48px;
	--container-width: 1264px;
    --padding-inline: max(16px, calc((min(96%, 1264px) - 1112px) / 2));
}
/*-------------------------------------------------------
GERAIS
-------------------------------------------------------*/
html{
	height:100%;    
}
body {
	font-family: var(--font-base);
    font-optical-sizing: auto;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
	background-color: var(--color-bg);
	color: var(--color-text);	
	min-height: 100%;
	padding-right: var(--nav-width);
    overflow-x: hidden;
    /* overflow-y: hidden; */
}
body.no-scroll{
    overflow-y: hidden;
}
h1, h2, h3, h4, h5, h6 {	   
	font-weight: 300;	
	line-height: 1.25em;
    position: relative;	
}
a{	
    
	text-decoration: none;
	transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease;
}
strong{
	font-weight: 500;	
	}
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;		
    padding-top: 70px;    
	position: relative;	
    z-index: 10;	
}
.logo-white main{        
    padding-top: 0;
}
section{	
	width: 100%;
	height: auto;
	position: relative;		
}
.inner {
    width: 96%;
    max-width: 1264px;
    height: auto;
    margin: 0 auto;
    position: relative;         
}
/*-------------------------------------------------------
TIPOGRAFIA
-------------------------------------------------------*/
.section__title{
	font-size: var(--text-lg);
	font-weight: 400;	
    line-height: 1.4;
	text-transform: uppercase;
	color: var(--color-text);
    margin-bottom: 1.2em;
}
.pull-quote{
	font-size: var(--text-lg);
	font-weight: 300;
	font-style: italic;
	line-height: 1.5;
	color: var(--color-text);
}
.pull-quote cite{
	display: block;
	margin-top: var(--spacing-md);
	font-size: var(--text-sm);
	font-style: normal;
	color: var(--color-text-muted);
}
.divider{
	width: 100%;
	height: 1px;
	background-color: var(--color-border);
	border: 0;
}
/*-------------------------------------------------------
BOTÕES
-------------------------------------------------------*/
.btn{
    width: max-content;
    min-width: 100px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 16px 5px;
	border: 1px solid var(--color-text);
	border-radius: 999px;
	font-size: var(--text-sm);
	font-weight: 500;	
    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-text-muted);
	border-color: var(--color-text-muted);
	color: var(--color-text);
}
.btn:hover{
	background-color: var(--color-text);
	color: var(--color-bg);
}
.btn--ghost:hover{
	border-color: var(--color-text);
}
/*-------------------------------------------------------
FORMULÁRIO
-------------------------------------------------------*/
.form-field{
	margin-top: 36px;
}
.form-field:first-of-type{
	margin-top: 0;
}
.form-field label{
    display: block;	
	font-size: var(--text-sm);
	font-weight: 400;	
    line-height: 1.5;
	text-transform: uppercase;
	color: var(--color-text-muted);
    margin-bottom: 2px;
}
input[type=text],
input[type=email],
textarea{ 
    border-bottom: 1px solid var(--color-text);
	width: 100%;
    height: 28px;	
	font-size: var(--text-base);
    line-height: 1.5;
	color: var(--color-text);
    outline: none; 
}
.form-field input::placeholder,
.form-field textarea::placeholder{
	color: var(--color-text);
}
textarea {
    border: 1px solid var(--color-text);
    height: 182px;
    padding: 12px;
    resize: none;   
}
.form-footer {
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
::placeholder {
    color: var(--color-text);
    opacity: 0.5;
}
:focus::placeholder{   
    opacity: 0;
}
/* ── Mensagens de erro CF7 ── */
.wpcf7-not-valid-tip {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text);
    margin-top: 5px;
}
.wpcf7-not-valid-tip::before{
	content: "🡡 ";
	font-weight: normal !important;
}
.wpcf7-not-valid {
    border-color: rgba(219, 50, 3, 1);  
    box-shadow: 0 0 0 3px rgba(219, 50, 3, 0.25);  
}
.wpcf7-response-output{
    border: 2px solid !important;    
    padding: 16px !important;   
    font-size: 1rem;
    font-weight: 500;
    text-align: center; 
    margin: 16px 0 0 !important;
}
.wpcf7 form.sent .wpcf7-response-output {
    background: rgba(128, 248, 192, 0.1);
    border-color: rgba(128, 248, 192, 1) !important;
    color: var(--color-text);
} 
.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: rgba(219, 50, 3, 0.1);
    border-color: rgba(219, 50, 3, 1) !important;
    color: var(--color-text);
} 
.wpcf7 form.spam .wpcf7-response-output {
    background: rgba(248, 197, 112, 0.1);
    border-color: rgba(248, 197, 112, 1) !important;
    color: var(--color-text);
}
/*-------------------------------------------------------
HEADER
-------------------------------------------------------*/
/* HEADER TRANSPARENTE E LOGO BRANCA */
.logo-white .site-header {
	background-color: transparent;   
}
.logo-white .logo svg path{
	fill: var(--color-white);
}
.site-header,
.site-header.visible {
	background-color: var(--color-bg);
    width: 100%;
	padding: 25px var(--nav-width) 25px 0;
	position: fixed;
    z-index: 30;	
    transition: background-color 300ms ease;
}
.site-header .inner{
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo{
	display: inline-flex;	
}
.logo svg{
	height: 20px;
	width: auto;
}
.logo svg path,
.site-header.visible .logo svg path{
	fill: var(--color-text-muted);
}
/*-------------------------------------------------------
NAV LATERAL
-------------------------------------------------------*/
.btn-menu{
    display: none;
}
/* NAVEGAÇÃO */
.site-nav{
	position: fixed;
	top: 0;
	right: 0;
	width: var(--nav-width);
	height: 100vh;
	background-color: var(--color-bg-nav);
	border-left: 1px solid var(--color-border);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	padding: 36px 0;  
	z-index: 100;
}
.site-nav__menu-container {
	border-bottom: 1px solid var(--color-border);
    width: 100%;
	padding: 0 0 36px;	
	display: flex;
	justify-content: center;
}
.site-nav__menu {
	display: flex;
	align-items: center;
	gap: 40px;
	writing-mode: vertical-rl;
}
.site-nav__menu a{
	font-size: 1rem;
	font-weight: 400;
    line-height: 1.5;	
	text-transform: uppercase;
	color: var(--color-text-muted);
}
.site-nav__menu a:hover{
	color: var(--color-text);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px
}
.site-nav__lang {
    border-bottom: 1px solid var(--color-border);
    width: 100%;
    padding: 30px 0;
    position: relative;	
}
.site-nav__lang ul{
    height: 70px;
    display: flex;
	flex-direction: column;
	align-items: center;
    justify-content: space-between;		
}
.site-nav__lang a{
	color: var(--color-text-muted);
    font-size: 1rem;	
    text-transform: uppercase;
}
.site-nav__lang ul li.current-lang a {
	font-weight: normal;
	color: var(--color-text);
	text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px
}
.site-nav__lang .site-nav__toggle {  
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    transform: translate(-50%,-50%);
    transition: transform 0.3s;
}
.site-nav__lang .site-nav__toggle.lang-pt{
    transform: translate(-50%,-50%) rotate(0deg);
}
.site-nav__lang .site-nav__toggle.lang-en{
    transform: translate(-50%,-50%) rotate(180deg);
}
/*-------------------------------------------------------
COOKIE BANNER
-------------------------------------------------------*/
.cookie-banner{
	position: fixed;
	left: 0;
	bottom: 0;
	width: calc(100% - var(--nav-width));
	background-color: var(--color-bg-cookies);	
	padding: 16px 24px;
	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: var(--text-md);
    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{
	display: flex;
	gap: 16px;
	flex-shrink: 0;
}
.cookie-banner.is-hidden{
	display: none;
}
/*-------------------------------------------------------
FOOTER
-------------------------------------------------------*/
.site-footer{
	background-color: var(--color-bg);    	
}
.site-footer .inner{   
    padding: 16px 0;
	display: flex;
    flex-direction: column;		
}
.site-footer__line{
    display: flex;
	align-items: start;
	justify-content: space-between;
}
.site-footer__logo{
	position: relative;
}
.site-footer__social{
	display: flex;
	gap: 20px;
}
.site-footer__social a.social__btn{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 5px;
	background-color: var(--color-border);
	color: var(--color-text);
}
.site-footer__social svg{
	width: 12px;
	height: auto;
}
.site-footer__social a.social__btn:hover{
    background-color: var(--color-text);	
}
.site-footer__social a.social__btn:hover path{
	fill: var(--color-bg);
}
.site-footer__legal{
	font-size: var(--text-xs);
	color: var(--color-text-muted);
	text-align: center;
}
.site-footer__legal br{
    display: none;
}
.site-footer__legal a{
	color: var(--color-text-muted);
}
.site-footer__legal a:hover{
	color: var(--color-text);
}
/* ============================================================
   HOME — index.html
   ============================================================ */
body.home{
    overflow-y: hidden;
}
.home main{    
    height: 100vh;
    padding-top: 0;
}
.home .site-footer{
    display: none;
}
.home-hero{	
    background: url(assets/img/bg-transparente.webp) repeat-x center 50px;
	height: 100vh;
    padding-top: 70px;
	display: flex;    
	align-items: center;     
}
.home-hero .inner{
    height: auto;
    max-height: calc((100vh - 70px) * 0.9 );
	display: flex;
	justify-content: center;
}
.hero-item{
    width: 100%;
    height: calc((100vh - 70px) * 0.9 );
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-hero__image{
	width: auto !important;
	max-width: 800px;
	height: auto;
    max-height: calc((100vh - 70px) * 0.9 );
} 
/* ============================================================
   PÁGINA INTERNA — hero de imagem cheia
   ============================================================ */
.page-hero__content {
    height: 100%;
	padding: 0 var(--padding-inline) 128px;	
	display: flex;
	align-items: end;
}
.page-hero__text {	
	font-size: var(--text-xl);
	font-weight: 200;
	line-height: 1.25;	
	max-width: 325px;
}
.page-hero__text.light{
	color: var(--color-text-muted);
}
.page-hero__text.dark{
	color: var(--color-text);
}
.inner-divider{
    width: 96%;
	max-width: var(--container-width);
	margin: 0 auto;
}
/* ============================================================
   ESCRITÓRIO — escritorio.html
   ============================================================ */
.page-hero.hero-office{
    background: no-repeat center bottom;
    height: 620px;	
}
.office .inner{
	padding: 128px var(--padding-inline);
}
.office__grid{
	display: grid;
	grid-template-columns: 340px 726px;
	gap: 46px;
	align-items: center;
}
.office__image{
	width: 100%;
	height: 422px;
    object-fit: cover;
}
.office__columns{
	column-count: 2;
	column-gap: 46px;
}
/* .office__columns p{
    break-inside: avoid;
} */
.process .inner{
	padding: 120px var(--padding-inline) 115px;
}
.process__intro{
	max-width: 544px;
	margin-bottom: 4rem;
}
.process__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px 46px;
}
.process__head{
	display: flex;
	align-items: center;
	gap: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--color-border);
	margin-bottom: 16px;
}
.process__number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 37px;
	height: 37px;
	flex-shrink: 0;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	font-size: var(--text-md);
	color: var(--color-text);
	font-weight: 400;
}
.process__title {
	font-size: var(--text-md);
	font-weight: 400;
	text-transform: uppercase;
	color: var(--color-text);
}
.about .inner{
	padding: 120px var(--padding-inline);
}
.about__grid{
	display: grid;
	grid-template-columns: 340px 726px;
	gap: 46px;
	align-items: center;
}
.about__image{
	width: 100%;
	height: 422px;
    object-fit: cover;
}
.about__columns{
	column-count: 2;
	column-gap: 46px;
}
.about__columns p{
    break-inside: avoid;
}
/* ============================================================
   CONTATO
   ============================================================ */
.page-hero.hero-contact{
    background: url(assets/img/contato/contato.jpg) no-repeat center bottom;
    height: 440px;
}
.contact .inner{
	padding: 100px var(--padding-inline) 60px;
}
.contact__grid{
	display: grid;
	grid-template-columns: 644px 1fr;
    grid-auto-rows: min-content;
	gap: 132px;
}
.contact-list{
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.contact-list li{
	display: grid;
	grid-template-columns: 40px 1fr;	
	font-size: var(--text-sm);
	font-weight: 500;	
	text-transform: uppercase;
	color: var(--color-text);
}
.contact-list a{
	color: var(--color-text);
}
.contact-list a:hover{
	color: var(--color-text-muted);
}
.contact-list li span,
.contact-list li a,
.contact-list address{	
	line-height: 1.5;
}
.contact-list__icon{	
	font-size: var(--text-sm);	
}
/* ============================================================
   PROJETOS
   ============================================================ */
.projects-listing .inner {
  padding: 74px var(--padding-inline) 48px;
}
.projects-listing__intro{
	max-width: 524px;
    margin-bottom: 2rem;
}
.projects-filter{
	display: flex;
	gap: 24px;		
    margin-bottom: 2rem;
}
.projects-filter__item{
	font-size: var(--text-sm);
	font-weight: 500;	
	text-transform: uppercase;
	color: var(--color-text-muted);
	cursor: pointer;
}
.projects-filter__item.is-active{
	color: var(--color-text);
}
.projects-filter__item:hover{
	color: var(--color-text);
}
.projects-filter__mobile{
    display: none;
}
.projects-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0 31px;
}
a.project-card{
    width: 100%;
	height: auto;
    display: block;
}
.projects-listing .projects-grid .project-card{
	opacity: 0;
}
.project-card__title,
.project-card__infos{
    border-top: 1px solid var(--color-border);
    width: 100%;
    height: 32px;
    overflow: hidden;	
    opacity: 0;
    transition: opacity 300ms ease;
}
.project-card__title h3,
.project-card__infos p{
    width: max-content;
    font-size: var(--text-sm);
	font-weight: 500;	
    line-height: 31px;
	text-transform: uppercase;
	color: var(--color-text-muted);    
    margin-bottom: 0;
}
.projects-grid img{
	width: 100%;
	height: 472px;
	object-fit: cover;	
}
.project-card__infos{   
    border-top: none;
    border-bottom: 1px solid var(--color-border);      
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.project-card__infos p span.dot,
.project__links a span.dot {
	background-color: currentColor;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	display: inline-block;
	margin: 0 1rem 3px;
}
a.project-card:hover .project-card__title,
a.project-card:hover .project-card__infos{
    opacity: 1;
}	
.pagination{
    width: max-content;	
    max-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 16px 60px 0;
    position: relative;
    margin: 0 auto;
}
.pagination__item{
    border: 1px solid transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	font-size: var(--text-sm);
    font-weight: 500;
	color: var(--color-text);
    transition: border-color 300ms ease, color 300ms ease;
}
.pagination__item:hover,
.pagination__item.current{
	border: 1px solid var(--color-text);	
}
.pagination__arrow{
	color: var(--color-text);
	font-size: var(--text-md);
}
.pagination__arrow.arrow--left,
.pagination__arrow.arrow--right{
    position: absolute;
}
.pagination__arrow.arrow--left{    
    left: 0;
}
.pagination__arrow.arrow--right{
    right: 0;
}
/* ============================================================
   PROJETO (interna)
   ============================================================ */
.project .inner{
	padding: 0 var(--padding-inline) 100px;
}
.project__container {
	display: grid;
	grid-template-columns: 1fr 888px;
    grid-template-rows: max-content auto;
	grid-column-gap: 12px;
    grid-row-gap: 80px;	
	align-items: start;
}
.project__meta { 
    grid-area: 1 / 1 / 3 / 2;
}
.project__gallery { 
    grid-area: 1 / 2 / 2 / 3;
}
.project__article { 
    grid-area: 2 / 2 / 3 / 3;
    align-self: start;
}
/* BARRA LATERAL */
.project__meta{   
    padding: 50px 0 0;	  
}
.project__meta .section__title{
    margin-bottom: 1em;
}
.project__specs,
.project__links {
    padding: 0 16px 32px 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.project__specs dt,
.project__specs dd,
.project__links h3,
.project__links li a{
	font-size: var(--text-sm);		
}
.project__specs dt,
.project__links h3{
    font-weight: 500;	
    line-height: 1.4;
	text-transform: uppercase;	
}
.project__specs dd,
.project__links li a{
    font-weight: 400;	
    line-height: 1.5;	
}
.project__specs dd ul{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.project__group-title{
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 12px;
    font-size: var(--text-sm);		
    font-weight: 500;	
    line-height: 1.4;
	text-transform: uppercase;	
	margin-bottom: 1rem;
}
.project__links a {
	display: flex;
	align-items: start;
	justify-content: start;
	gap: 12px;
	color: var(--color-text);
}
.project__links a span.dot{
    margin: 10px 0 0;
}
.project__links a svg{
    flex-shrink: 0;
    margin-top: 6px;
    margin-left: auto;
}
.project__links a:hover{
	color: var(--color-text-muted);
}
.project__links a:hover path{
	fill: var(--color-text-muted);
}
/* GALERIA DE IMAGENS */
.project__gallery{
    min-width: 0;
	position: relative;
}
.project-carousel{
    width: 100%;
    height: calc( 100vh - 186px);
    z-index: 30;
}
.project-carousel .gallery-carousel__slide {
	width: 100%;
	height: calc( 100vh - 186px);   
	display: flex;
	align-items: end;
	justify-content: start;
    overflow: hidden;
}
/* O <a> só carrega o link de zoom do Fancybox; o clique acompanha a imagem. */
.project-carousel .gallery-carousel__slide a {
    display: block;
}
/* NAVEGAÇÃO SETAS */
.project__gallery-nav {
	width: 48px;
	height: 96px;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	justify-content: center;
    gap: 10px;
    position: absolute;
	right: 0;
	bottom: 0;
	z-index: 20;
}
.project__gallery-nav .btn-next-swiper,
.project__gallery-nav .btn-prev-swiper {
	width: 40px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.project__gallery-nav .btn-next-swiper:hover path,
.project__gallery-nav .btn-prev-swiper:hover path {
	fill: var(--color-text-muted);
}
/* NAVEGAÇÃO THUMBS */
.thumbs-project-carousel,
.thumbs-magazine-carousel{
    width: calc( 100% - 64px );
    height: 106px;
    padding-top: 10px;
    margin: 0;
    z-index: 10;
}
.thumbs-project-carousel .gallery-carousel__thumb,
.thumbs-magazine-carousel .gallery-carousel__thumb{
    background-color: var(--color-text-muted);
    cursor: pointer;
}
.thumbs-project-carousel .gallery-carousel__thumb img.project__thumb,
.thumbs-magazine-carousel .gallery-carousel__thumb img.project__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 300ms ease;
}
.thumbs-project-carousel .gallery-carousel__thumb:hover img.project__thumb,
.thumbs-magazine-carousel .gallery-carousel__thumb:hover img.project__thumb{
    filter: grayscale(100%);
    mix-blend-mode: multiply;
}
/* POPUP REVISTA */
.popup-revista{
    position: relative;
}
.popup-revista__container {
	width: 1112px;
	height: calc( 100vh - 70px );
	max-height: 720px;	   
}
.popup-revista__container .project__title {
	width: max-content;
	height: 26px;
	font-size: var(--text-sm);
	font-weight: 500;
	line-height: 1.4;
	text-transform: uppercase;
	color: var(--color-text);
	position: absolute;
	top: -26px;
}
.popup-revista__content{
    height: 100%;
    display: flex;  
	gap: 12px;	
} 
.popup-revista__container .project__meta {
    border-top: 1px solid var(--color-border);
    width: 212px;
	padding: 16px 0 0;
    position: relative;
}
.popup-revista__container .project__meta .project__specs {
	padding: 0 16px 0 0;	
}
.popup-revista__container .project__meta p{
    font-size: var(--text-sm);
	font-weight: 400;	   
}
.popup-revista-gallery{
    width: 888px;
    height: 100%;
	position: relative;
}
.magazine-carousel {
	height: calc( 100% - 106px );
}
.magazine-carousel .owl-stage-outer,
.magazine-carousel .owl-stage,
.magazine-carousel .owl-item {
	height: 100%;
}
.popup-revista-gallery .magazine-carousel .gallery-carousel__slide{
    height: 100%;
    display: flex;
    align-items: end;
}
.project-carousel .gallery-carousel__slide img.project__image,
.magazine-carousel .gallery-carousel__slide img.project__image {
	display: block;
	width: auto !important;
	max-width: 100%;	
	height: auto;
}
.project-carousel .gallery-carousel__slide img.project__image{
	max-height: calc( 100vh - 186px);	
}
.magazine-carousel .gallery-carousel__slide img.project__image {
	max-height: 100%;
}
/* INFORMAÇÕES DO PROJETO */
.project__article{
	width: 100%;
    padding: 0 114px;
}
.project__article h2,
.project__article h3{	
    font-size: var(--text-lg);
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--color-text);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}
.project__article h2:first-child{
    margin-top: 0;
    margin-bottom: 2rem;
}
.project__article h3{	
    font-size: var(--text-base);
    font-weight: 300;      
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}
.project__article h4{	
    font-size: var(--text-base);
    font-weight: 300;      
    font-style: italic;   
    margin-bottom: 1.5rem;
}
.project__article h2 + h4,
.project__article h3 + h4 {
	margin-top: -1.5rem;
}
.project__article p{
    margin-bottom: 1.5rem;
}
.project__article blockquote{
    padding: 2rem 0 3rem 224px;
    font-size: var(--text-lg);
    font-weight: 300;
    line-height: 1.4;	
}
.project__article blockquote p{
    margin-bottom: 0;
}
.project__article blockquote cite{
    font-size: var(--text-base);
    font-weight: 300;
    line-height: 1.5;
    font-style: normal;   
}
/* MAIS PROJETOS */
.project__more .inner {
	padding: 76px var(--padding-inline);
}
.project__more .section__title{	
	margin-bottom: 1rem;
}
.moreProjects-nav{
    display: none;
}
.project__more-cta{
	display: flex;
	justify-content: center;
	margin-top: 1rem;
}
/* FANCYBOX */
.fancybox-bg{
    background: var(--color-bg-cookies);    
    z-index: 1;
}
.fancybox-bg::after {
	content: "";
	background: url(assets/img/bg-transparente.webp) no-repeat;
	background-position: center center;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	opacity: 0.3;
}
.fancybox-is-open .fancybox-bg {
	opacity: 1;	
}
.fancybox-toolbar {
	right: 20px;
	top: 20px;
}
.fancybox-toolbar .fancybox-button {
	background: transparent;		
}
.fancybox-button svg path,
.fancybox-toolbar .fancybox-button[disabled]:hover svg path{
	fill: var(--color-text);	
}
.fancybox-toolbar .fancybox-button:hover svg path {
	fill: var(--color-text-muted);	
}
.fancybox-navigation .fancybox-button {	
    background: var(--color-bg);
    border-radius: 999px;
    width: 40px;
	height: 40px;
	top: calc(50% - 20px);	
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 300ms ease, opacity .25s ease 0s,visibility 0s ease 0s !important;
}
.fancybox-navigation .fancybox-button,
.fancybox-navigation .fancybox-button[disabled]:hover{
    background: var(--color-bg);
}
.fancybox-navigation .fancybox-button svg {			
	width: auto;
    height: auto;
}
.fancybox-navigation .fancybox-button:hover{
    background: var(--color-text-muted);
}
.fancybox-navigation .fancybox-button--arrow_left {
	left: 20px;
	padding: 0;
}
.fancybox-navigation .fancybox-button--arrow_right {
	right: 20px;
	padding: 0;
}
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    opacity: 0.25 !important;	
}
.fancybox-slide--image {	
	padding: 64px 80px;
}
.magazine__fancybox .fancybox-content {
    background: transparent;    
	padding: 26px 10px;	
}
/* ============================================================
   POLÍTICA DE PRIVACIDADE — politica-de-privacidade.html
   ============================================================ */
.policy .inner{
    padding: 86px var(--padding-inline);
}
.policy__grid{
    padding: 0 114px 0 0;
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 60px;
	align-items: start;
}
.policy__intro{
	position: sticky;
	top: 94px;
}
.policy__intro .section__title{
	display: block;
	margin-bottom: 1rem;
}
.policy__updated{
	font-size: var(--text-xsm);
	font-weight: 500;	
    text-transform: uppercase;	
	margin-bottom: 1.5rem;
}
.policy__intro a{
	color: var(--color-text);
	text-decoration: underline;
}
.policy__text{	
    counter-reset: contador-titulos;
}
.policy__text h2{
    border-bottom: 1px solid var(--color-border);
    min-height: 54px;
    padding: 8px 0 0 53px;
    position: relative;    
    font-size: var(--text-md);
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-text);
    margin-top: 3rem;
    margin-bottom: 1rem;
}
.policy__text h2:first-child{
    margin-top: 0;
}
.policy__text h2::before{
    counter-increment: contador-titulos;  
    content: counter(contador-titulos);  
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    flex-shrink: 0;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font-size: var(--text-md);
    color: var(--color-text);
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
}
.policy__text ul{
	list-style: disc;
	padding-left: 1.2em;
	margin-bottom: 1rem;
}
.policy__text ul:last-child{
	margin-bottom: 0;
}
.policy__text ul li {
	line-height: 1.5;
}
.policy__text a{
	color: var(--color-text);
	text-decoration: underline;
}
.policy__text a:hover{
    color: var(--color-text-muted);
}
/*-------------------------------------------------------
RESPONSIVIDADE
-------------------------------------------------------*/
@media only screen
and (max-width: 810px){
/*-------------------------------------------------------
VARIÁVEIS
-------------------------------------------------------*/
:root {
	/* Cores */
	--color-bg: #F0EEE9;
	--color-bg-nav: #F0EEE9;
    --color-bg-cookies: #E6E5DC;
	--color-text: #333132;
	--color-text-muted: #BDBDB0;	
	--color-border: #BDBDB0;	
	--color-white: #FFFFFF;

	/* Tipografia */
	--font-base: 'Wotfard', Arial, sans-serif;
	--text-xs: 0.625rem;
    --text-xsm: 0.75rem;
	--text-sm: 0.875rem;
	--text-base: 1rem;
	--text-md: 1rem;
	--text-lg: 1.25rem;
	--text-xl: 1.375rem;	

	/* Layout */
	--nav-width: 48px;
	--container-width: 1264px;
    --padding-inline: max(16px, calc((min(96%, 1264px) - 1112px) / 2));
}
/*-------------------------------------------------------
GERAIS
-------------------------------------------------------*/
body {	
	padding-right: 0;   
}
main {	
    padding-top: 64px;    	
}
.inner {
    width: calc( 100vw - 48px );
    max-width: calc( 100vw - 48px );    
}
/*-------------------------------------------------------
TIPOGRAFIA
-------------------------------------------------------*/
.section__title{
	font-size: var(--text-lg);
	font-weight: 400;	
    line-height: 1.4;
	text-transform: uppercase;
	color: var(--color-text);
    margin-bottom: 1.2em;
}
.pull-quote{
	font-size: var(--text-lg);
	font-weight: 300;
	font-style: italic;
	line-height: 1.5;
	color: var(--color-text);
}
.pull-quote cite{
	display: block;
	margin-top: var(--spacing-md);
	font-size: var(--text-sm);
	font-style: normal;
	color: var(--color-text-muted);
}
.divider{
	width: 100%;
	height: 1px;
	background-color: var(--color-border);
	border: 0;
}
/*-------------------------------------------------------
BOTÕES
-------------------------------------------------------*/
.btn{
    width: max-content;
    min-width: 100px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 16px 5px;
	border: 1px solid var(--color-text);
	border-radius: 999px;
	font-size: var(--text-sm);
	font-weight: 500;	
    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-text-muted);
	border-color: var(--color-text-muted);
	color: var(--color-text);
}
.btn:hover{
	background-color: var(--color-text);
	color: var(--color-bg);
}
.btn--ghost:hover{
	border-color: var(--color-text);
}
/*-------------------------------------------------------
FORMULÁRIO
-------------------------------------------------------*/
.form-field{
	margin-top: 36px;
}
.form-field:first-child{
	margin-top: 0;
}
.form-field label{
    display: block;	
	font-size: var(--text-sm);
	font-weight: 400;	
    line-height: 1.5;
	text-transform: uppercase;
	color: var(--color-text-muted);
    margin-bottom: 2px;
}
input[type=text],
input[type=email],
textarea{ 
    border-bottom: 1px solid var(--color-text);
	width: 100%;
    height: 28px;	
	font-size: var(--text-base);
    line-height: 1.5;
	color: var(--color-text);
    outline: none; 
}
.form-field input::placeholder,
.form-field textarea::placeholder{
	color: var(--color-text);
}
textarea {
    border: 1px solid var(--color-text);
    height: 182px;
    padding: 12px;
    resize: none;   
}
.form-footer{
	margin-top: 20px;
	display: flex;
	justify-content: end;
}
::placeholder {
    color: var(--color-text);
    opacity: 0.5;
}
:focus::placeholder{   
    opacity: 0;
}
/*-------------------------------------------------------
HEADER
-------------------------------------------------------*/
/* HEADER TRANSPARENTE E LOGO BRANCA */
.site-header,
.site-header.visible {
	width: 100svw;
	padding: 24px 0;
}
.logo svg{
	height: 16px;	
}
/*-------------------------------------------------------
NAV LATERAL
-------------------------------------------------------*/
/* BOTÃO MENU E BOTÕES DE ACESSO */
.btn-menu {	
	width: 24px;
	height: 24px;    
	display: block;
	position: fixed;
	top: 20px;
	right: 10px;
	z-index: 300;
}
.btn-menu .bar{
    background: var(--color-border);   
    display: block;
    position: absolute;    
    transition: transform 300ms ease, opacity 300ms ease, color 300ms ease;
    width: 22px;
    height: 2px;    
    right: 1px;
}
.page-escritorio .btn-menu .bar,
.page-contato .btn-menu .bar{
	background: var(--color-white);
}
.page-escritorio .btn-menu.visible .bar,
.page-contato .btn-menu.visible  .bar,
.btn-menu.active .bar{
	background: var(--color-border); 
}
.btn-menu .bar.bar-1{    
    top: 2px;   
}
.btn-menu .bar.bar-2,
.btn-menu .bar.bar-3{   
    top: 11px;         
    transform-origin: center center;
}
.btn-menu .bar.bar-4{  
    width: 11px;
    bottom: 2px;   
}
.btn-menu.active .bar.bar-1,
.btn-menu.active .bar.bar-4{    
    opacity: 0;
}
.btn-menu.active .bar.bar-2{
    transform: rotate(-45deg);
}
.btn-menu.active .bar.bar-3{
    transform: rotate(45deg);
}
/* NAVEGAÇÃO */
.site-nav{		
	padding: 80px 0 16px;  	
    transform: translateX(100%);
    transition: transform 300ms ease;
}
.site-nav.active{
    transform: translateX(0);
}
.site-nav__menu-container {
	border-bottom: 1px solid var(--color-border);
    width: 100%;
	padding: 0 0 36px;	
	display: flex;
	justify-content: center;
}
.site-nav__menu {
	display: flex;
	align-items: center;
	gap: 40px;
	writing-mode: vertical-rl;
}
.site-nav__menu a{
	font-size: 1rem;
	font-weight: 400;
    line-height: 1.5;	
	text-transform: uppercase;
	color: var(--color-text-muted);
}
.site-nav__menu a:hover{
	color: var(--color-text);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px
}
.site-nav__lang {
    border-bottom: 1px solid var(--color-border);
    width: 100%;
    padding: 30px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 1rem;	
	color: var(--color-text-muted);	
}
.site-nav__lang a{
	color: var(--color-text-muted);
}
.site-nav__lang a[aria-current="true"]{
	color: var(--color-text);
	text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px
}
.site-nav__lang .site-nav__toggle {  
    display: block;
    transition: transform 0.3s;
}
/*-------------------------------------------------------
COOKIE BANNER
-------------------------------------------------------*/
.cookie-banner{	
	width: 100vw;	
	padding: 32px 0;
	flex-direction: column;
	gap: 20px;
	flex-wrap: nowrap;	
}
.cookie-banner p,
.cookie-banner__actions{
    width: 90%;
    max-width: 300px;	
}
/*-------------------------------------------------------
FOOTER
-------------------------------------------------------*/
.site-footer .inner {
	padding: 12px 0;
	gap: 10px;
}
.site-footer__line{    
	align-items: end;	
}
.site-footer__logo {
	height: 16px;
}
.site-footer__legal br{
    display: inline;
}
.site-footer__legal span{
    display: none;
}
/* ============================================================
   HOME — index.html
   ============================================================ */
.home-hero{	
    background: url(assets/img/bg-transparente.webp) repeat-x center 50px;	
    padding-top: 0;	
}
.home-hero .inner{   
    width: 100vw;
    max-width: 100vw;
    max-height: calc((100vh - 64px) * 0.8 );
}
.hero-item{   
    height: calc((100vh - 64px) * 0.8 ); 
}
.home-hero__image{
	width: auto !important;
	max-width: 100vw;
	height: auto;
    max-height: calc((100vh - 64px) * 0.8 );
}
/* ============================================================
   PÁGINA INTERNA — hero de imagem cheia
   ============================================================ */
.page-hero__content {
	padding: 64px 0 80px;	
}
.page-hero__text {
	max-width: 250px;
}
.inner-divider{
    width: calc( 100vw - 48px );
	max-width: calc( 100vw - 48px );	
}
/* ============================================================
   ESCRITÓRIO — escritorio.html
   ============================================================ */
.page-hero.hero-office{    
    height: 506px;	
}
.office .inner {
	padding: 80px 0;
}
.office__grid{	
	grid-template-columns: 1fr;
	gap: 46px;	
}
.office__columns{
	column-count: 1;
	column-gap: 0;
}
.process .inner{
	padding: 80px 0;
}
.process__intro{
	max-width: 100%;
	margin-bottom: 2rem;
}
.process__grid {	
	grid-template-columns: 1fr;
	gap: 32px;
}
.about .inner{
	padding: 80px 0;
}
.about__grid{	
	grid-template-columns: 1fr;
	gap: 46px;	
}
.about__columns{
	column-count: 1;
	column-gap: 0;
}
/* ============================================================
   CONTATO
   ============================================================ */
.page-hero.hero-contact{    
    height: 314px;
}
.contact .inner {
	padding: 80px 0 48px;
}
.contact__grid {
	grid-template-columns: 1fr;
	gap: 48px;
}
.contact-list{
    border-top: 1px solid var(--color-border);
	padding-top: 48px;
	gap: 1rem;
}
.contact-list li{
	display: grid;
	grid-template-columns: 40px 1fr;	
	font-size: var(--text-sm);
	font-weight: 500;	
	text-transform: uppercase;
	color: var(--color-text);
}
.contact-list a{
	color: var(--color-text);
}
.contact-list a:hover{
	color: var(--color-text-muted);
}
.contact-list li span,
.contact-list li a,
.contact-list address{	
	line-height: 1.5;
}
.contact-list__icon{	
	font-size: var(--text-sm);	
}
/* ============================================================
   PROJETOS
   ============================================================ */
.projects-listing .inner {
	padding: 80px 0 16px;
}
.projects-listing__intro{
	max-width: 100%;
    margin-bottom: 3rem;
}
.projects-filter{
    display: none;
}
.projects-filter__mobile{
    width: max-content;
    display: block;
    position: relative;
    margin-bottom: 1rem;
}
.btn-filter{
    width: max-content;
    padding-right: 26px;
    display: block;   
    position: relative;
	font-size: var(--text-sm);
	font-weight: 500;
	text-transform: uppercase;
	color: var(--color-text-muted);
	cursor: pointer;
}
.btn-filter::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 10.937px;
	height: 5.546px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.937' height='5.546' viewBox='0 0 10.937 5.546'%3E%3Cpath d='M5.469,5.546,0,1.171.937,0,5.469,3.625,10,0l.937,1.171Z' fill='%23333132'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	transform: translateY(-50%);
	transition: transform 0.2s ease;
}
.btn-filter.active::after{
	transform: translateY(-50%) rotate(180deg);
}
.projects-filter__options {
    background-color: var(--color-bg);
    padding: 5px 20px 20px 0;
	display: flex;
	flex-direction: column;
	gap: 5px;	
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    transition: opacity 300ms ease, visibility 300ms ease;
}
.projects-filter__options.active{
    opacity: 1;
    visibility: visible;
}
.projects-grid{
	grid-template-columns: 1fr;
	gap: 20px;
}
.project-card__title,
.project-card__infos{  
    height: auto;
    min-height: 32px;
    padding: 6px 0;
    overflow: unset;	
    opacity: 1;    
}
.project-card__title h3,
.project-card__infos p{
    width: max-content;
    max-width: 100%;   
    line-height: 1.25;	
    transition: color 300ms ease;
}
a.project-card:hover .project-card__title h3,
a.project-card:hover .project-card__infos p {
	color: var(--color-text);
}
a.project-card:hover .project-card__infos path{
    fill: var(--color-text);
}
.pagination__arrow.arrow--left{
    margin-right: 0;
}
.pagination__arrow.arrow--right{
    margin-left: 0;
}
/* ============================================================
   PROJETO (interna)
   ============================================================ */
.project .inner{
    width: 100vw;
    max-width: 100vw;
	padding: 0 0 80px;
}
.project__container {
    display: grid;   
    grid-template-columns: 1fr;    
    grid-column-gap: 0;
    grid-row-gap: 0;
    align-items: start;
}
.project__gallery {  
    height: 94vw;  
    grid-area: 1 / 1 / 2 / 2; 
    margin-bottom: 60px; 
}
.project__meta {       
    grid-area: 2 / 1 / 3 / 2;     
    margin-bottom: 48px; 
}
.project__article {     
    grid-area: 3 / 1 / 4 / 2;  
}
/* BARRA LATERAL */
.project__meta {
	padding: 0 24px;
}
.project__specs,
.project__links {
    padding: 0 36px 32px 0;	
}
.project__group-title{
    width: calc( 100% - 36px );   
}
/* GALERIA DE IMAGENS */
.project-carousel{
    width: 100vw;
    height: calc( 84vw - 4px );
}
.project-carousel .gallery-carousel__slide {	
	height: calc( 84vw - 4px );	
}
/* NAVEGAÇÃO SETAS */
.project__gallery-nav {
	width: 48px;
	height: 10vw;
    gap: 0;
}
/* NAVEGAÇÃO THUMBS */
.thumbs-project-carousel,
.thumbs-magazine-carousel{
    width: calc( 100% - 48px );
    height: calc( 10vw + 4px );
    padding-top: 4px;
}
/* POPUP REVISTA */
.popup-revista__container {
	width: 100vw;
	height: auto;
	max-height: unset;	   
}
.popup-revista__content{
    height: auto;
    flex-direction: column-reverse;	    
	gap: 48px;	
} 
.popup-revista__container .project__title {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 5px;
	width: 100%;
    height: auto;    
	min-height: 26px;
	position: relative;
	top: 0;
    margin-bottom: 16px;
}
.popup-revista__container .project__meta {
	border-top: none;
	width: 100%;
	padding: 0 60px 0 24px;
}
.popup-revista__container .project__meta .project__specs {
	padding: 0 16px 0 0;	
}
.popup-revista__container .project__meta p{
    font-size: var(--text-sm);
	font-weight: 400;	   
}
.popup-revista__container .project__meta .btn  {
    position: relative;
	left: 50%;
	transform: translateX(-50%);	
	margin-left: 18px;
}
.popup-revista-gallery {
	width: 100vw;
	height: 94vw;
}
.magazine-carousel {
    width: 100vw;
	height: calc( 84vw - 4px );
}
.popup-revista-gallery .magazine-carousel .gallery-carousel__slide{
    height: calc( 84vw - 4px );
    justify-content: start;
}
.project-carousel .gallery-carousel__slide img.project__image{
	max-height: calc( 84vw - 4px );
}
.magazine-carousel .gallery-carousel__slide img.project__image {	
	max-height: calc( 84vw - 4px );
}
/* INFORMAÇÕES DO PROJETO */
.project__article{
	width: 100vw;
    padding: 0 24px;
}
.project__article blockquote{
    padding: 2rem 0 3rem 5rem;   
}
/* MAIS PROJETOS */
.project__more .inner {
	padding: 76px 0;
}
.project__more .section__title{	
	margin-bottom: 1rem;
}
.project__more-container{
    position: relative;
}
.project__more .projects-grid {
    padding-bottom: 56px;
	display: block;
    position: relative;
}
.more-carousel .owl-dots{
    width: max-content;
    height: 40px;
    display: flex;
    gap: 16px;
    position: absolute;    
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    counter-reset: li;
}
.more-carousel .owl-dot{
    background: transparent !important;
    border: 1px solid var(--color-border) !important;
    width: 40px;
	height: 40px;
	border-radius: 999px;	
	display: block;
    position: relative;
    opacity: 1;
    counter-increment: li;
    transition: border-color 300ms ease, color 300ms ease;
}
.more-carousel .owl-dot span{
    display: none !important;
}
.more-carousel .owl-dot::before {
	content: counter(li);
	width: 40px;
	height: 40px;
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-text);
	position: absolute;
	top: -1px;
	left: -1px;	
	line-height: 40px;
	text-align: center;
}
.more-carousel .owl-dot:hover,
.more-carousel .owl-dot.active{
	border: 1px solid var(--color-text) !important;	
}
.moreProjects-nav {
	width: 100%;
	height: 40px;		
	display: flex;
	justify-content: space-between;
	align-items: center;
    position: absolute;
	bottom: 0;
	left: 0;
    z-index: 10;
    pointer-events: none;
}
.moreProjects-nav button{
    pointer-events: all;
}
.project__more-cta{
	display: flex;
	justify-content: center;
	margin-top: 1rem;
}
/* FANCYBOX */
.fancybox-bg::after{   
    background-position: center center; 
    width: 100%;    
    left: 0;     
}
.fancybox-toolbar {
	right: 0;
	top: 0;
}
.fancybox-navigation .fancybox-button {	   
	top: calc(100% - 84px);	  
}
.fancybox-navigation .fancybox-button--arrow_left {
	left: 50%;
	transform: translateX( calc( -100% - 20px ) );
}
.fancybox-navigation .fancybox-button--arrow_right {
	right: 50%;
	transform: translateX(calc( 100% + 20px ) );	
}
.fancybox-slide--image {	
	padding: 44px 0;
}
.magazine__fancybox .fancybox-slide--html {
	padding: 0;
}
.magazine__fancybox .fancybox-content{
    padding: 44px 0 0;
    vertical-align: top;
}
/* ============================================================
   POLÍTICA DE PRIVACIDADE — politica-de-privacidade.html
   ============================================================ */
.policy .inner {
	padding: 80px 0;
}
.policy__grid{
    padding: 0;	
	grid-template-columns: 1fr;
	gap: 48px;	
}
.policy__intro{
	position: relative;
	top: 0;
}
.policy__intro .section__title{
	display: block;
	margin-bottom: 1rem;
}
.policy__updated{
	font-size: var(--text-xsm);
	font-weight: 500;	
    text-transform: uppercase;	
	margin-bottom: 1.5rem;
}
.policy__intro a{
	color: var(--color-text);
	text-decoration: underline;
}
.policy__text{	
    counter-reset: contador-titulos;
}
.policy__text h2{
    border-bottom: 1px solid var(--color-border);
    min-height: 54px;
    padding: 8px 0 0 53px;
    position: relative;    
    font-size: var(--text-md);
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-text);
    margin-top: 3rem;
    margin-bottom: 1rem;
}
.policy__text h2:first-child{
    margin-top: 0;
}
.policy__text h2::before{
    counter-increment: contador-titulos;  
    content: counter(contador-titulos);  
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    flex-shrink: 0;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font-size: var(--text-md);
    color: var(--color-text);
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
}
.policy__text ul{
	list-style: disc;
	padding-left: 1.2em;
	margin-bottom: 1rem;
}
.policy__text ul:last-child{
	margin-bottom: 0;
}
.policy__text ul li {
	line-height: 1.5;
}
.policy__text a{
	color: var(--color-text);
	text-decoration: underline;
}
.policy__text a:hover{
    color: var(--color-text-muted);
}
}
/*-------------------------------------------------------
TELA NA HORIZONRAL
-------------------------------------------------------*/
@media only screen
and (max-device-width : 1270px)
and (orientation : landscape) {
/* FANCYBOX */
.fancybox-bg::after{   
    background-position: center center; 
    width: 100%;    
    left: 0;     
}
.fancybox-toolbar {
	right: 0;
	top: 0;
}
.fancybox-navigation .fancybox-button {	   
	top: calc(50% - 20px);	      
}
.fancybox-navigation .fancybox-button--arrow_left {
	left: 16px;	
    transform: none;
}
.fancybox-navigation .fancybox-button--arrow_right {
	right: 16px;	
    transform: none;
}
.fancybox-slide--image {	
	padding: 0 72px;
}
}
