/*RESET GENERIC CSS*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; }
ol, ul {list-style:none;}
blockquote, q{quotes:none;}
blockquote:before, blockquote:after, q:before, q:after{content:''; content:none;}
:focus {outline:0;}
a {outline:0;}
ins{text-decoration:none;}
del{text-decoration:line-through;}
.clear { clear: both; display: block; overflow: hidden; visibility: hidden; width:0px; line-height:0px; font-size:0px;}
a {
	cursor: url("../img/m2-cursor-a.png") 12 12, auto !important;
}
/*GENERIC PAGE CSS*/


/* FONTS */

@font-face {
    font-family: 'basier_circle_monoregular';
    src: url('basiercirclemono-regular-webfont.woff2') format('woff2'),
         url('basiercirclemono-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'basier_circle_monosemibold';
    src: url('basiercirclemono-semibold-webfont.woff2') format('woff2'),
         url('basiercirclemono-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/* CURSOR */

html {
cursor: url("../img/m2-cursor.png") 12 12, auto;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--color-snow: #fafbfc;
	--color-ice: #e8f4f8;
	--color-frost: #d4e9f2;
	--color-winter-blue: #846ccd;
	--color-slate: #5c5d5f;
	--color-charcoal: #5c5d5f;
	--color-white: #ffffff;
	--font-serif: 'basier_circle_monoregular';
	--font-sans: 'basier_circle_monoregular';
}

body {
    font-family: var(--font-sans);
    background: #fff;
    /* background: linear-gradient(129deg, rgba(61, 69, 71, 1) 0%, rgba(19, 20, 20, 1) 100%); */
    color: var(--color-charcoal);
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
	height: 0;
    /* background: rgba(255, 255, 255, 0.95); */
    /* backdrop-filter: blur(10px); */
    padding: 1.5rem 2rem;
    z-index: 1000;
    /* border-bottom: 1px solid rgba(123, 168, 189, 0.1); */
}

.nav-container {
	max-width: unset;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-top: 56px;
	height: 0;
}

.logo {
	display: inline-block;
	text-decoration: none;
	transition: color 0.3s ease;
	width: 10%;
	opacity: 1;
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}


.logo:hover {
	opacity: 0.6;
	color: var(--color-winter-blue);
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}


.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.nav-links a {
	text-decoration: none;
	color: var(--color-slate);
	font-family: 'basier_circle_monoregular';
	font-size: 20px;
	font-weight: 300;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: color 0.3s ease;
	position: relative;
	padding-top: 1.5rem;
}

.nav-links a::before {
	content: 'm2';
	background-image: url("../img/caracter-movel.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;

	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.85rem;
	color: #ffffff00;
	opacity: 0;
	transition: opacity 0.3s ease;
}


.nav-links a.active::before,
.nav-links a:hover::before {
	opacity: 1;
}

.nav-links a:hover {
	color: var(--color-winter-blue);
}

.nav-links a.active {
    border-bottom: 2px solid #846ccd;
    font-family: 'basier_circle_monosemibold';
	color: #846ccd;
}

/* Hero Section */
.hero {
	margin-top: 0;
	padding: 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(rgba(250, 251, 252, 0.85), rgba(232, 244, 248, 0.9));
	z-index: 1;
}

.hero::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(123, 168, 189, 0.05) 100%);
	z-index: 2;
	pointer-events: none;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	animation: heroSlide 18s infinite;
	opacity: 0;
}

.hero-bg {
	background-image: url('../img/rasgao.png');
	animation-delay: 0s;
}


@keyframes heroSlide {
	0% {
		opacity: 0;
	}

	5% {
		opacity: 1;
	}

	33% {
		opacity: 1;
	}

	38% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}


.hero-content {
    position: relative;
    /* min-height: 100vh; */
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: visible;
    height: 100%;

    position: relative;
    height: 370px;        /* altura fixa do hero */
    overflow: hidden;     /* corta o excesso em 4K */
}

.hero-content .home-bg {
    position: absolute;
    top: 0;
    left: 50%;
    height: 370px;        /* altura SEMPRE igual */
    width: auto;
    min-width: 2540px;    /* largura real da imagem */
    max-width: none;

    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.header-3840 {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 370px;
    width: auto;
    min-width: 100%;
}

.header-1920,.header-768,.header-480 {
    display: none;
}


/* conteúdo à frente */
.hero-content a {
    position: relative;
    margin-top: 0;
    z-index: 2;
    width: 206px;
    margin-top: 85px;
    margin: 85px 0 54px 0;
}

.hero-content a:hover {
    opacity:0.8;
}

.hero-content p {
position: relative;
    margin-top: 0;
    z-index: 2;
    text-spacing-trim: normal;
    text-transform: uppercase;
    font-size: 24px;
	color: #000;
    margin: 20px 0 0 0;
    padding: 0 2rem;
}

.hero-content p span {
    font-family: 'basier_circle_monosemibold';
	color: #846ccd;
}

.hero-content p img {
	height:16px;
}


.responsive-slogan-wrapper {
    display: none;
}



.header-separator {
    position: relative;
    border-block: 1px solid #846ccd;
    border-style: dashed;
    border-spacing: 100px;
    height: 1px;
    width: 100%;
    z-index: 2;
    height: 1px;
    width: 100%;
    border-top: 1px solid transparent;
    border-image: repeating-linear-gradient(to right, #846ccd 0, #846ccd 10px, transparent 10px, transparent 25px) 1;
}



/* Filter Section */

.filter-container {
	padding-top: 66px;
	text-align: center;
}

.filter-buttons {
	display: inline-flex;
	gap: 2.5rem;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 2rem;
}

.filter-btn {
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 18px;
    color: var(--color-slate);
	cursor: url("../img/m2-cursor-a.png") 12 12, auto;
    padding: 0 0 0.5rem 0;
    position: relative;
    letter-spacing: 1px;
    line-height: 0.5;
    display: block;
    text-transform: uppercase;
    font-weight: 300;
    transition: color 0.3s ease;
}

.filter-btn::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 100%;
	height: 1px;
	background: var(--color-winter-blue);
	transition: transform 0.3s ease;
}

.filter-btn:hover {
	color: var(--color-winter-blue);
}


.filter-btn.active {
    color: var(--color-winter-blue);
    /* border-bottom: 8px var(--color-winter-blue); */
    font-family: 'basier_circle_monosemibold';
    color: var(--color-winter-blue);
    /* padding-bottom: 12px; */
    /* text-decoration: none; */
    border-bottom: 2px solid;
}


/* Gallery Section */
.gallery-container {
	max-width: auto;
	margin: 0 auto;
	padding: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    /* gap: 1.5rem; */
    grid-auto-flow: dense;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	cursor: url("../img/m2-cursor-a.png") 12 12, auto;
	background: var(--color-white);
	box-shadow: 0 4px 20px rgba(123, 168, 189, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.gallery-item:nth-child(1) {
	animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
	animation-delay: 0.15s;
}

.gallery-item:nth-child(3) {
	animation-delay: 0.2s;
}

.gallery-item:nth-child(4) {
	animation-delay: 0.25s;
}

.gallery-item:nth-child(5) {
	animation-delay: 0.3s;
}

.gallery-item:nth-child(6) {
	animation-delay: 0.35s;
}

.gallery-item:nth-child(7) {
	animation-delay: 0.4s;
}

.gallery-item:nth-child(8) {
	animation-delay: 0.45s;
}

.gallery-item:nth-child(9) {
	animation-delay: 0.5s;
}

.gallery-item.tall {
	grid-row: span 2;
}

.gallery-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(123, 168, 189, 0.15);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
	transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: linear-gradient(to top, rgba(44, 62, 80, 0.8), transparent); */
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    text-align: left;
    font-family: 'basier_circle_monoregular';
    font-size: 16px;
    color: #846ccd;
    text-transform: uppercase;
    background: #dfdfea;
    /* width: 100%; */
    padding: 6px 20px;
    /* margin-bottom: 40px; */
}

.gallery-item:hover .gallery-overlay {
	transform: translateY(0);
}

.gallery-category {
    font-size: 0.75rem;
    color: var(--color-slate);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* font-weight: 300; */
	padding-bottom: 6px;
}

.project-images {
    display: none;
}

.project-description {
    display: none;
}

.project-prize {
    position: absolute;
    top: 0;         /* Colado ao topo */
    right: 0;       /* Colado à direita */
    width: 90px;   /* Tamanho exato que pediste */
    height: 90px;  /* Tamanho exato que pediste */
    z-index: 20;    /* Valor alto para ficar acima do overlay e das imagens */
	position: absolute;
    margin: 20px 20px 0 0;
    pointer-events: none; /* Importante: permite clicar na imagem por baixo do selo */
}

.project-prize img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.lightbox-description {
    display: block;
    margin-top: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #333;
}



/* Lightbox */
.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(250, 251, 252, 0.98);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.lightbox.active {
	display: flex;
	opacity: 1;
}

.lightbox-content {
    max-width: 80%;
    /* max-height: 85vh; */
    position: relative;
    animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    display: block;
    /* align-items: flex-start; */
    overflow: visible;
}

@keyframes zoomIn {
	from {
		transform: scale(0.9);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}


.lightbox-content img {
    max-width: 100%;
    /* width: 100%; */
    /* height: auto !important; */
    /* max-height: 30vw; */
	max-height: 700px;
	min-height: 700px;
    display: block;
    /* box-shadow: 0 20px 60px rgba(123, 168, 189, 0.2); */
}

.lightbox-info {
	text-align: center;
	margin-top: 2rem;

    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

.lightbox-info h3 {
    /* font-family: var(--font-serif); */
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-winter-blue);
    /* font-weight: 300; */
    /* margin-bottom: 0.5rem; */
}

p#lightboxCategory {
	display: none;
}

.lightbox-info p {
    font-size: 12px;
    color: var(--color-slate);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* font-weight: 300; */
}

.lightbox-close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	background: none;
	border: none;
	font-size: 3rem;
	color: var(--color-slate);
	cursor: pointer;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	font-weight: 200;
}

.lightbox-close:hover {
	color: var(--color-winter-blue);
	transform: rotate(90deg);
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 50px;
	height: 50px;
	cursor: pointer;
	font-size: 1.5rem;
	color: var(--color-slate);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.lightbox-nav:hover {
	background: var(--color-white);
	color: var(--color-winter-blue);
}

.lightbox-prev {
	left: 2rem;
}

.lightbox-next {
	right: 2rem;
}

/* Footer */
footer {
    text-align: center;
    /* padding: 4rem 2rem 3rem; */
    margin-top: 8rem;
    /* border-top: 1px solid rgba(123, 168, 189, 0.1); */
}

footer p {
    color: var(--color-slate);
    font-size: 0.85rem;
    /* letter-spacing: 01px; */
    font-weight: 300;
    text-transform: uppercase;
}

footer a {
	color: var(--color-winter-blue);
	text-decoration: none;
	text-transform: uppercase;
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

footer a:hover {
	color:#5c5d5f;
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.logo-footer {
    display: inline-block;
    position: relative;
    text-decoration: none;
    z-index: 20;
}

.logo-footer img {
    display: block;
    width: 244px;
}

.hero-footer {
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: visible;
    height: 100%;
    position: relative;
    height: 394px;
    overflow: hidden;
}

.footer-symbol {
    height: 22px;
    margin: 18px 0;
    text-align: center;
}

.footer p img {
    height: 14px;
}

.footer-email {
    font-size: 18px;
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}


.footer-email:hover {
    color:#5c5d5f;
	opacity:1;
	-webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

p.footer-email {
    display: inline-block;
    position: absolute;
    margin: 108px 0 0 46px;
    vertical-align: middle;
}


p.footer-email img {
	height: 13px;
}



.hero-footer p {
    position: relative;
    margin-top: 0;
    z-index: 2;
    text-spacing-trim: normal;
    text-transform: unset;
    font-size: 14px;
    line-height: 1.3;
    color: var(--color-slate);
    margin: 112px 0 40px 0;
    padding: 0 2rem;
}

.hero-footer .footer-bg {
    position: absolute;
    top: 0;
    left: 50%;
    height: 784px;
    width: auto;
    min-width: 2540px;
    max-width: none;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.hero-footer p.footer-text {
    font-size: 12px;
    margin: 21px 0;
	text-transform: uppercase;
}


/* BACK TO TOP */

#return-to-top {
    position: fixed;
    bottom: 120px;
    right: 32px;
    width: 60px;
    height: 60px;
    z-index: 200;
    cursor: pointer;
    display: none;
    text-decoration: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition: background 0.2s ease-out;
    -moz-transition: background 0.2s ease-out;
    -o-transition: background 0.2s ease-out;
    transition: background 0.2s ease-out;
    background: url(../img/seta-1.svg) no-repeat left top;
}


#return-to-top:hover {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
  background: url(../img/seta-2.svg) no-repeat left top;
}




/* About Section */

.content-section {
    padding: 2rem;
    max-width: 1920px;
    margin: 0 auto;
	margin-top: 40px;
}

.page-title {
    display: inline-block;
    text-align: left;
    font-family: 'basier_circle_monosemibold';
    font-size: 24px;
    color: #846ccd;
    text-transform: uppercase;
    background: #dfdfea;
    padding: 6px 30px;
    margin-bottom: 40px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(680px, 1fr));
    gap: 2.5rem;
	margin-bottom: 3rem;
    grid-auto-flow: dense;
    font-size: 16px;
}

.text-grid {
    grid-template-columns: repeat(auto-fill, minmax(1200px, 1fr));
	max-width:680px;
    gap: 0;
}

h2 {
	text-transform: uppercase;
    padding: 30px 0 6px 0;
    font-family: 'basier_circle_monosemibold';
    color: #846ccd;
	font-size:18px;
}

h3 {
	text-transform: uppercase;
    font-family: 'basier_circle_monosemibold';
    padding: 6px 0 0 0;
}

strong {
    font-family: 'basier_circle_monosemibold';
}

p.policy-update{
    text-transform: uppercase;
    padding-bottom: 20px;
    font-family: 'basier_circle_monosemibold';
    color: #846ccd;
	font-size: 12px;
}

.content-grid ul {
    text-indent: 10px;
	padding: 20px 0 20px 30px;
}

.content-grid ul li {
    unicode-bidi: isolate;
    list-style-type: square;
}

.content-grid p span {
	color: #846ccd;
}

.content-grid p a,.content-grid a  {
	color: #846ccd;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.content-grid p a:hover,.content-grid a:hover {
	color: var(--color-slate);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}


.service-grid {
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
}

.service-title {
    display: inline-block;
    text-align: left;
    font-family: 'basier_circle_monoregular';
    font-size: 16px;
    color: #846ccd;
    text-transform: uppercase;
    background: #dfdfea;
	width: 100%;
    padding: 6px 20px;
    margin-bottom: 40px;
}

.content-item {
    cursor: unset;
    box-shadow: unset;
    overflow: visible;
}

.content-margin {
	margin-bottom: 2.5rem;
}

.content-grid img {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.about-section {
	max-width: 900px;
	margin: 6rem auto 0;
	padding: 0 2rem;
	text-align: center;
}

.about-section h2 {
	font-family: var(--font-serif);
	font-size: 3rem;
	font-weight: 300;
	color: var(--color-slate);
	margin-bottom: 2rem;
	letter-spacing: 2px;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-top: 3rem;
	text-align: left;
}

.about-text p {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--color-slate);
	margin-bottom: 1.5rem;
	font-weight: 300;
}

.about-image {
	width: 100%;
	height: 400px;
	background: var(--color-frost);
	border-radius: 2px;
	overflow: hidden;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 1.5rem;
}

.stat-box {
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(123, 168, 189, 0.15);
	border-radius: 2px;
	text-align: center;
	transition: all 0.3s ease;
}

.stat-box:hover {
	background: rgba(255, 255, 255, 0.9);
	border-color: var(--color-winter-blue);
	transform: translateY(-3px);
}

.stat-number {
	font-family: var(--font-serif);
	font-size: 2rem;
	font-weight: 400;
	color: var(--color-winter-blue);
	margin-bottom: 0.3rem;
}

.stat-label {
	font-size: 0.75rem;
	color: var(--color-slate);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 300;
}

/* Contact Section */
.contact-section {
	max-width: 700px;
	margin: 8rem auto 0;
	padding: 0 2rem;
	text-align: center;
}

.contact-section h2 {
	font-family: var(--font-serif);
	font-size: 3rem;
	font-weight: 300;
	color: var(--color-slate);
	margin-bottom: 1rem;
	letter-spacing: 2px;
}

.contact-section p {
	font-size: 1rem;
	color: var(--color-winter-blue);
	margin-bottom: 3rem;
	font-weight: 300;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-top: 2rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.form-group label {
	font-size: 0.85rem;
	color: var(--color-slate);
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 300;
}

.form-group input,
.form-group textarea {
	padding: 1rem;
	border: 1px solid rgba(123, 168, 189, 0.2);
	background: var(--color-white);
	font-family: var(--font-sans);
	font-size: 0.95rem;
	color: var(--color-charcoal);
	border-radius: 2px;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--color-winter-blue);
}

.form-group textarea {
	min-height: 150px;
	resize: vertical;
}

.submit-btn {
	padding: 1rem 3rem;
	background: var(--color-slate);
	color: var(--color-white);
	border: none;
	font-family: var(--font-sans);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 300;
	border-radius: 2px;
}

.submit-btn:hover {
	background: var(--color-winter-blue);
	transform: translateY(-2px);
}

.contact-info {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 3rem;
	flex-wrap: wrap;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--color-slate);
	font-size: 0.9rem;
	font-weight: 300;
}

.contact-item a {
	color: var(--color-slate);
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item a:hover {
	color: var(--color-winter-blue);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    /* font-size: 3.5rem; */
    color: #fff;
    background: var(--color-slate);
	z-index: 1;
    width: 60px;
    height: 60px;
	margin-top: 84px;
    border-radius: 10px;
    cursor: url(../img/m2-cursor-a.png) 12 12, auto !important;
	background: url(../img/mobile-menu.svg) no-repeat left top;
	-webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


.mobile-menu-btn:hover {
    background: var(--color-winter-blue);
	-webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	background: url(../img/mobile-menu-2.svg) no-repeat left top;
}

.mobile-menu-btn.open {
	background: url(../img/mobile-menu-3.svg) no-repeat left top;
}


.mobile-menu-btn img {
    width: 32px;
    margin-top: 2px;
}



/* Video */

.video-wrapper {
  width: 100%;
  grid-column: 1 / -1;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}
/*
.video-wrapper {
  aspect-ratio: 16 / 9;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}*/






/* Responsive */

@media (max-width: 7680px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 166px 2rem 2rem 2rem;
        gap: 1.5rem;
        display: none;
        box-shadow: 0 10px 30px rgba(123, 168, 189, 0.1);
    }

	/* Estado normal (fechado) */
	.nav-links {
    display: none;
	}

	/* Estado aberto */
	.nav-links.open {
		display: flex;
	}


	.nav-links li {
    text-align: center;
	}

	.nav-links a {
		padding-top: 0;
	}

	.nav-links a::before {
		display: none;
	}

	.nav-links.active {
		display: flex;
	}

}




@media (max-width: 1920px) {
.header-1920 {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 370px;
    width: auto;
    min-width: 100%;
}

.header-3840,.header-768,.header-480 {
    display: none;
}
}



@media (max-width: 1478px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  /* texto primeiro */
  .content-grid p {
    order: 1;
  }

  /* imagem depois */
  .content-grid .content-item {
    order: 2;
  }
}

@media (max-width: 1260px) {
	.lightbox-content img {
	min-height: unset;
	}
}



@media (max-width: 1066px) {
	p.footer-email {
    display: block;
    position: relative;
    margin: 0 auto;
    margin-top: 20px;
    vertical-align: middle;
	}
}


@media (max-width: 768px) {
	.hero {
		padding: 8rem 2rem 6rem;
	}

	.hero h1 {
		font-size: 3rem;
	}


	/*
	.mobile-menu-btn {
		display: block;
	}
*/


.header-768 {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 370px;
    width: auto;
    min-width: 100%;
}

.header-3840,.header-1920,.header-480 {
    display: none;
}


	.lightbox-nav {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}

	.lightbox-prev {
		left: 1rem;
	}

	.lightbox-next {
		right: 1rem;
	}

	.lightbox-close {
		top: 1rem;
		right: 1rem;
		font-size: 2rem;
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.about-stats {
		grid-template-columns: 1fr 1fr;
	}

	.about-section h2,
	.contact-section h2 {
		font-size: 2.5rem;
	}

	.contact-info {
		flex-direction: column;
		align-items: center;
	}
}


@media (max-width: 658px) {

	/* Ajuste para a grelha não ser maior que o telemóvel */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr)) !important;
        padding: 0;
    }

    .gallery-container {
        padding: 1rem; /* Reduz margens laterais no mobile */
    }

	.lightbox-content {
		max-width: 100%;
	}

	.nav-container {
		height: 0;
	}

	nav {
		padding: 1rem;
	}

	.nav-links {
   		padding: 100px 2rem 2rem 2rem;
	}

	.mobile-menu-btn {
		margin-top: 0px;
		width: 50px;
  		height: 50px;
	}

	#return-to-top {
		bottom: 46px;
		right: 1rem;
		width: 50px;
  		height: 50px;
	}

	.filter-container {
		padding-top: 20px;
	}


	.hero-content a {
    	width: 200px;
	}

    .hero-content p.normal-slogan {
        display:none;
    }

  	.responsive-slogan-wrapper {
    	display: grid;
    	grid-template-columns: auto auto auto;
    	align-items: center;
    	gap: 54px;                 /* espaço entre setas e texto */
    	width: fit-content;        /* 🔑 isto é o segredo */
    	margin: 0 auto;            /* centra o conjunto */
  	}

  	.hero-content p.responsive-slogan {
        transform: scale(0.7);
        margin: 0;
        padding: 0;
        word-break: break-word;
        font-size: 26px;
        line-height: 1.2;
		padding-top: 10px;
        /* width: 106%; */
        overflow: visible;
        /* margin: 0 auto !important; */
        margin-right: -90px !important;
        margin-left: -90px !important;
    	text-align: center;
    	white-space: normal;
    }

  	.seta-esquerda-header,
  	.seta-direita-header {
        width: 34px;
        padding-top: 0;
        height: auto;
        z-index: 2;
    	flex-shrink: 0;
		margin-top: -15px;
	}

	.hero-content {
		margin-top: -92px;
	}

	.hero-content a {
		margin: 128px 0 20px 0;
	}

	.content-section {
    margin-top: 10px;
	padding: 1rem;
	}

	.page-title {
    font-size: 20px;
	}

  	footer {
    margin-top: 3rem;
	}

  	.logo-footer img {
    width: 200px;
	}
    }



@media (max-width: 480px) {

	.header-480 {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 370px;
    width: auto;
    min-width: 100%;
	}

	.header-3840,.header-1920,.header-768 {
    display: none;
	}

	.hero {
		padding: 6rem 1.5rem 5rem;
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.hero p {
		font-size: 0.95rem;
	}

	.filter-buttons {
		gap: 1.5rem;
	}

	.filter-btn {
		font-size: 0.85rem;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.content-grid {
		grid-template-columns: 1fr;
	}

	.about-stats {
		gap: 0.75rem;
	}

	.stat-box {
		padding: 1rem;
	}

	.stat-number {
		font-size: 1.5rem;
	}

	.stat-label {
		font-size: 0.7rem;
	}

    .project-prize {
        width: 80px;
        height: 80px;
    }

	.lightbox-info {
		margin-right: 10px;
  		margin-left: 10px;
	}
}