
@font-face {
	font-family: "Nexa";
	src: url("../data/fnt/Neo Sans Std Regular.woff") format("woff");
	font-weight: normal;
}
@font-face {
	font-family: "Nexa";
	src: url("../data/fnt/Neo Sans Std Bold.woff") format("woff");
	font-weight: bold;
}
:root {
	--white: #ffffff;
	--black: #543c24;
	--accent1: #ff780a;
	--font1: "Neo Sans", sans-serif;
    --border-radius: 0.25rem;
}


*,
*:after,
*:before {
	box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 0.5rem;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--accent1);
}
* {
  scrollbar-color: var(--accent1) transparent;
  scrollbar-width: thin;
}

html,
body {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	font-size: 19px;
	font-family: var(--font1);
	font-weight: 300;
	scroll-behavior: smooth;

	color: var(--black);
	background-color: var(--white);
    background-size: 100%;
    background-position: top center;
}
b,
strong {
	font-weight: bold;
}
a,
a:visited {
	color: var(--accent1);
    text-decoration: underline;
}
a:focus,
a:hover,
a:active {
	color: var(--accent1);
    text-decoration: none;
}
a.high-contrast {
    background: var(--white);
    font-weight: bold;
    padding: 0 0.25rem;
    border-radius: 0.25rem;
}
body {
	height: auto;
}
h1,
h2,
h3,
h4,
h5 {
	font-family: var(--font1);
    font-weight: bold;
	margin-top: 0;
}

h1 {
	margin: 0;
}
h2 {
	font-size: 2rem;
	text-align: center;
}
h3 {
	font-size: 1.5rem;
	text-align: center;
}
h4 {
	font-size: 1.25rem;

	text-align: center;
}
header {
	width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
	color: var(--black);
	z-index: 10000;
    height: 15rem;
    backdrop-filter: blur(0rem);
    transition: all 1s ease;
}
header.scrolled {

    backdrop-filter: blur(3rem);
    height: 5.5rem;
    background: rgba(255,255,255,0.125);
}
body.pt .hide-on-pt,
body.en .hide-on-en,
body.fr .hide-on-fr {
    display: none;
}
#logo {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 26rem;
    transition: all 1s ease;
}
header.scrolled #logo {
    filter: brightness(0) invert(1);
    width: 10rem;
    left: 1rem;
}
#menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    justify-content: flex-end;
    flex-wrap: wrap;
    transition: all 1s ease;
}
#menu hr {
    width: 100%;
    opacity: 0;
    margin: 0;
}
#menu a,
#menu a:visited {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    padding: 0 0.5rem;
}
#menu a:hover,
#menu a:active,
#menu a:focus {
    color: var(--white);
    text-decoration: underline;
}
#header-bg {
	width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center center;
    opacity: 0.55;
}
#header-bg video {
    width:100%; height:100%;
    object-fit: cover;
}
.video-grid {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background-image: url(../data/img/grid.webp);
	background-size: 476px;
	background-position: 0px 0px;
	background-repeat: repeat;
	background-attachment: fixed;
	animation: 30s video-grid-animation linear infinite;
	opacity: 0.75;
}
@keyframes video-grid-animation {
	0%	{background-position-y: 476px;}
	100%{background-position-y: 0px;}
}
.menu-icon {
    width: 1.5rem;
    height: auto;
}
#sobre {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
	background: url(../data/img/sobre.webp);
    background-size: cover;
    background-position: center center;
}

#sobre section {
    padding: 2rem;
    backdrop-filter: blur(0.25rem);
    color: var(--white);
    width: 100%;
    margin-left: calc(100% / 3);
    translate: -50% 0;
    margin-right: auto;
    max-width: 40rem;
    text-align: left;
    border-radius: var(--border-radius);
    background: rgba(255,255,255,0.125);
    box-shadow: 0rem 0.5rem 2rem rgba(0,0,0,0.10);
}
.about-image {
	width: calc(50% - 1rem);
	float: right;
	margin-left: 2rem;
	margin-bottom: 1rem;
}
#servicos {
    width: 100%;
    min-height: 100vh;
    z-index: 1000;
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem;
	background: url(../data/img/servicos.webp);
    background-size: cover;
    background-position: center center;
}
#servicos section {
    width: 100%;
    max-width: 50rem;
    display: flex;
    align-items: space-between;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

#servicos h2 {
    width: 100%;
    color: var(--white);
}
#servicos p {
    width: calc(100% / 3 - 1rem);
    min-width: 10rem;
    backdrop-filter: blur(1rem);
    text-align: center;
    box-shadow: 0rem 0.5rem 2rem rgba(0,0,0,0.10);
    padding: 1rem 2rem 1rem 2rem;
	gap: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
	flex-direction: column;
    color: var(--white);
    transition: all 0.5s ease 0.25s;
    border-radius: var(--border-radius);
    background: rgba(255,255,255,0.125);
    background: rgba(84,60,36,0.25);
}
.services-icon {
	width: 5rem;
	padding: 0.5rem;
}
#servicos p[data-on-enter="false"] {
    translate: 0 2rem;
    opacity: 0;
}
#servicos p[data-on-enter="true"] {
    translate: 0 0;
    opacity: 1;
}



#contactos {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 100vh;
	background: url(../data/img/contactos.webp);
    background-size: cover;
    background-position: center center;
}
#contactos h2 {
    color: var(--white);
    margin: 0;
}
#contactos form {
    padding: 2rem;
    backdrop-filter: blur(2rem);
    color: var(--white);
    width: 100%;
    max-width: 30rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    background-color: #543c2422;
    box-shadow: 0rem 0.5rem 2rem rgba(0,0,0,0.10);
}
#contactos form a,
#contactos form a:visited,
#contactos form a:hover,
#contactos form a:focus,
#contactos form a:active {
    color: var(--white);
}
input,
textarea,
select {
	font-family: var(--font1);
    border: none;
    background: var(--white);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
}
input[type="checkbox"] {
    accent-color: var(--accent1);
}
input.button {
    background: var(--black);
    color: var(--white);
    cursor: pointer;
    font-weight: bold;
    transition: all 0.5s ease;
}
input.button[disabled=""] {
    pointer-events: none;
    opacity: 0.5;
}
#contactos-aviso {
    overflow: hidden;
    transition: all 0.5s ease;
    height: 0rem;
}
#contactos-aviso[data-status="active"] {
    height: 1.5rem;
    animation: 5s none-animation ease;
    text-align: center;
}
@keyframes none-animation {
    0%  {}
    100%{}
}
.alert-phone-call {
    font-size: 0.5em;
    margin-top: -0.25rem;
  display: block;
  margin-bottom: -1.5rem;
}
details {
    cursor: pointer;
    text-align: left;
}

body > footer {
    background: var(--black);
    color: var(--white);
    display: flex;
    flex-direction: row;
    padding: 2rem 2rem;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
}
footer p {
    margin: 0;
}
footer p .warning {
    font-size: 0.75rem;
}
#logo-footer {
    width: 15rem;
    height: min-content;
}
.copyright {
    width: 100%;
    text-align: center;
}


.quotes {
	background: var(--white);
	backdrop-filter: blur(4px);
	color: var(--black);
	font-size: 1.5rem;
	position: relative;
	padding: 0;
	overflow: hidden;
    border-top: 0.25rem solid var(--accent1);
    border-bottom: 0.25rem solid var(--accent1);
}

.quote-bar {
	display: flex;
	transition: translate 1s ease;
}
.quotes[data-total="2"] .quote-bar {width: 200%;}
.quotes[data-total="3"] .quote-bar {width: 300%;}
.quotes[data-total="4"] .quote-bar {width: 400%;}
.quotes[data-total="5"] .quote-bar {width: 500%;}
.quotes[data-total="6"] .quote-bar {width: 600%;}
.quotes[data-total="7"] .quote-bar {width: 700%;}
.quotes[data-total="8"] .quote-bar {width: 800%;}
.quotes[data-total="9"] .quote-bar {width: 900%;}

.quotes[data-quote="0"] .quote-bar {translate: 0%;}
.quotes[data-quote="1"] .quote-bar {translate: -100vw;}
.quotes[data-quote="2"] .quote-bar {translate: -200vw;}
.quotes[data-quote="3"] .quote-bar {translate: -300vw;}
.quotes[data-quote="4"] .quote-bar {translate: -400vw;}
.quotes[data-quote="5"] .quote-bar {translate: -500vw;}
.quotes[data-quote="6"] .quote-bar {translate: -600vw;}
.quotes[data-quote="7"] .quote-bar {translate: -700vw;}
.quotes[data-quote="8"] .quote-bar {translate: -800vw;}
.quotes[data-quote="9"] .quote-bar {translate: -900vw;}

.quote {
	padding: 0rem 10%;
    min-height: 75vh;
  	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.quote blockquote {
margin: 0;
  padding: 1.5rem;
  border-radius: 2rem;
  background: var(--accent1);
  margin-bottom: 3rem;
  color: var(--white);
  position: relative;
}
.quote blockquote::after {
    content: " ";
    position: absolute;
    bottom: -2rem;
    border-left: 2rem solid var(--accent1);
    border-top: 0rem solid var(--accent1);
    border-right: 2rem solid transparentaliceblue;
    border-bottom: 2rem solid transparent;
    width: 2rem;
    height: 2rem;
    background: transparent;
    left: 2rem;
  }
  .quote blockquote::before {
    content: "“";
    position: absolute;
    font-size: 10rem;
    font-family: var(--font1);
    color: var(--black);
    top: -3rem;
    left: -1rem;
  }
.quotes-nav {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1000;
}

.quotes-nav-prev,
.quotes-nav-next {
	width: 50%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	text-align: left;
	font-size: 4rem;
	color: var(--accent1);
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 100%);
	background: linear-gradient(90deg, rgba(255,120,10,0) 0%, rgba(255,120,10,0) 100%);
	border-radius: 0;
	border: 0;
	padding: 2rem;
	cursor: pointer;
	transition: all 0.5s ease;
}
.quotes-nav-next {
	left: 50%;
	text-align: right;
}

.quotes-nav-prev:hover {
	background: linear-gradient(90deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 100%);
	background: linear-gradient(90deg, rgba(255,120,10,0.25) 0%, rgba(255,120,10,0) 100%);
}
.quotes-nav-next:hover {
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 100%);
	background: linear-gradient(90deg, rgba(255,120,10,0) 0%, rgba(255,120,10,0.25) 100%);
}
.photos {
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    gap: 1rem;
    padding: 3rem 0.5rem 3rem 0.5rem;
}
.photos h2 {
	width: 100%;
	margin: 0 auto;
}
.photos figure {
	padding: 0;
	margin: 0;
	width: calc(100% / 6 - 1rem);
	aspect-ratio: 1/1;
	cursor: pointer;
	filter: grayscale(10%) contrast(80%) brightness(80%);
	transition: filter 0.1s ease;
	overflow: hidden;
}
.photos figure:hover {
	filter: grayscale(0%) contrast(100%) brightness(100%);

}
.photos figure img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center center;
}
.photos figure figcaption {
	display: none;
}
#photos-viewer {
	position: fixed;
	z-index: 100000;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.5);
	top: 0;
	left: 0;
	backdrop-filter: blur(16px);
}
#photos-viewer-container {
	position: fixed;
	top: 3rem;
	left: 3rem;
	width: calc(100vw - 6rem);
	height: calc(100vh - 6rem);
}
#photos-viewer-exit,
#photos-viewer-previous,
#photos-viewer-next {
	top: 1rem;
	position: absolute;
	right: 1rem;
	z-index: 1000;
	margin: 0;
	color: var(--accent1);
	font-size: 3rem;
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	cursor: pointer;
	text-align: center;
    background: transparent;
    border: 0;
}
#photos-viewer-previous {
	top: calc(50% - 1rem );
	right: initial;
	left: 1rem;
}
#photos-viewer-next {
	top: calc(50% - 1rem );
}
#photos-viewer-exit:hover,
#photos-viewer-previous:hover,
#photos-viewer-next:hover {
    background: transparent;
}
#photos-viewer-container figure {
	width: calc(100% - 2rem);
	height: calc(100% - 2rem);
	position: absolute;
	top: 1rem;
	left: 1rem;
	overflow: hidden;
	margin: 0;
	opacity: 0;
	pointer-events: none;
	transition: all 0.25s ease;
}
#photos-viewer-container figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
}
#photos-viewer-container figure figcaption {
	position: absolute;
	bottom: 0;
	text-align: center;
	backdrop-filter: blur(4px);
	padding: 0.5rem 1rem;
	width: 100%;
	background: rgba(0,0,0,0.5);
	color: var(--white);
}
#photos-viewer-container[data-image='0'] figure[data-figure='0'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='1'] figure[data-figure='1'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='2'] figure[data-figure='2'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='3'] figure[data-figure='3'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='4'] figure[data-figure='4'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='5'] figure[data-figure='5'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='6'] figure[data-figure='6'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='7'] figure[data-figure='7'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='8'] figure[data-figure='8'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='9'] figure[data-figure='9'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='10'] figure[data-figure='10'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='11'] figure[data-figure='11'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='12'] figure[data-figure='12'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='13'] figure[data-figure='13'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='14'] figure[data-figure='14'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='15'] figure[data-figure='15'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='16'] figure[data-figure='16'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='17'] figure[data-figure='17'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='18'] figure[data-figure='18'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='19'] figure[data-figure='19'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='20'] figure[data-figure='20'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='21'] figure[data-figure='21'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='22'] figure[data-figure='22'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='23'] figure[data-figure='23'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='24'] figure[data-figure='24'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='25'] figure[data-figure='25'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='26'] figure[data-figure='26'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='27'] figure[data-figure='27'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='28'] figure[data-figure='28'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='29'] figure[data-figure='29'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='30'] figure[data-figure='30'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='31'] figure[data-figure='31'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='32'] figure[data-figure='32'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='33'] figure[data-figure='33'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='34'] figure[data-figure='34'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='35'] figure[data-figure='35'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='36'] figure[data-figure='36'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='37'] figure[data-figure='37'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='38'] figure[data-figure='38'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='39'] figure[data-figure='39'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='40'] figure[data-figure='40'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='41'] figure[data-figure='41'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='42'] figure[data-figure='42'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='43'] figure[data-figure='43'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='44'] figure[data-figure='44'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='45'] figure[data-figure='45'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='46'] figure[data-figure='46'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='47'] figure[data-figure='47'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='48'] figure[data-figure='48'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='49'] figure[data-figure='49'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='50'] figure[data-figure='50'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='51'] figure[data-figure='51'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='52'] figure[data-figure='52'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='53'] figure[data-figure='53'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='54'] figure[data-figure='54'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='55'] figure[data-figure='55'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='56'] figure[data-figure='56'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='57'] figure[data-figure='57'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='58'] figure[data-figure='58'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='59'] figure[data-figure='59'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='60'] figure[data-figure='60'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='61'] figure[data-figure='61'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='62'] figure[data-figure='62'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='63'] figure[data-figure='63'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='64'] figure[data-figure='64'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='65'] figure[data-figure='65'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='66'] figure[data-figure='66'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='67'] figure[data-figure='67'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='68'] figure[data-figure='68'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='69'] figure[data-figure='69'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='70'] figure[data-figure='70'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='71'] figure[data-figure='71'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='72'] figure[data-figure='72'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='73'] figure[data-figure='73'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='74'] figure[data-figure='74'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='75'] figure[data-figure='75'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='76'] figure[data-figure='76'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='77'] figure[data-figure='77'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='78'] figure[data-figure='78'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='79'] figure[data-figure='79'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='80'] figure[data-figure='80'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='81'] figure[data-figure='81'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='82'] figure[data-figure='82'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='83'] figure[data-figure='83'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='84'] figure[data-figure='84'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='85'] figure[data-figure='85'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='86'] figure[data-figure='86'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='87'] figure[data-figure='87'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='88'] figure[data-figure='88'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='89'] figure[data-figure='89'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='90'] figure[data-figure='90'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='91'] figure[data-figure='91'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='92'] figure[data-figure='92'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='93'] figure[data-figure='93'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='94'] figure[data-figure='94'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='95'] figure[data-figure='95'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='96'] figure[data-figure='96'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='97'] figure[data-figure='97'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='98'] figure[data-figure='98'] {opacity: 1;pointer-events: all;}
#photos-viewer-container[data-image='99'] figure[data-figure='99'] {opacity: 1;pointer-events: all;}


@media (orientation: portrait) {
    #sobre section {
        margin: auto;
        translate: 0 0;
    }
    #sobre,
    #servicos {
        background-size: cover;
        background-position: center center;
    }
    header {

        position: absolute;
    }
    #logo,
    header.scrolled #logo {
        filter: brightness(1) invert(0);
        width: 18rem;
        left: 50%;
        translate: -50%;
    }
    #menu,
    header.scrolled #menu  {
        top: 8rem;
        width: calc(100% - 4rem);
        flex-wrap: wrap;

        right: 50%;
        translate: 50%;
    }

header.scrolled {

    backdrop-filter: blur(0);
    background: transparent;
}
    #menu {
        flex-direction: column;
        align-items: center;
    }
    #logo-footer {
        margin-left: auto;
        margin-right: auto;
    }

    .quote {
        padding: 2rem 1rem;
    }
    .photos figure {
        width: calc(100% / 3);
    }
    #menu a {
        padding: 0.25rem;
    }
    .menu-language {
        order: 1000;
    }
    #sobre section {
        padding: 2rem 0.5rem;
    }
    #servicos {
        
        padding: 2rem 0.5rem;
    }
	#servicos p {
		padding: 0.5rem;
		min-width: 8rem;
	}
	#servicos section {
	    
	    gap: 0.5rem;
	}
	#contactos {
        padding: 2rem 0.5rem;
	    
	}
	body > footer {
        padding: 2rem 0.5rem;
	}
	.about-image {
		width: 80%;
		float: none;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
}
