/*
Theme Name: Arise Agency (DARK)
Description: Arise UX Website 2026.
Version: 2.0
Author: Rodrigo Simoni
*/

/* Reset CSS */

.container-fluid {
  padding-left: 22px !important;
  padding-right: 22px !important;
}

/* Tela de loading */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  flex-direction: column;
}

/* Conteúdo central do loader */
.loader-content {
  text-align: center;
}

.loader-content img {
  width: 120px;
  height: auto;
}

/* Logo / nome */
.loader-logo {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  animation: fadePulse 1.5s infinite ease-in-out;
  text-transform: uppercase;
}

/* Barra de carregamento */
.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-progress {
  width: 0%;
  height: 100%;
  background: #fff;
  transition: width 0.2s ease;
}

/* Animação do texto */
@keyframes fadePulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Quando o site carregar */
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Aplica a seleção a todo o texto da página */
::selection {
  background-color: #fff; /* fundo preto */
  color: #000;            /* texto branco */
}

/* Para navegadores baseados em WebKit (Chrome, Safari) */
::-webkit-selection {
  background-color: #fff;
  color: #000;
}

/* Para Firefox */
::-moz-selection {
  background-color: #fff;
  color: #000;
}

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, img, 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;
}

/** Revela o conteúdo com a rolagem **/
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.noselect {
	user-select: none;          /* padrão moderno */
  -webkit-user-select: none;  /* Safari/Chrome */
  -moz-user-select: none;     /* Firefox */
  -ms-user-select: none;      /* Internet Explorer */
}

/** Reset das tags do HTML 5 **/
header, nav, section, article, aside, footer {display: block;}

img {
	max-width: 100%;
	height: auto;
}

body, html {
	height: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden !important;
	transition: background-color 0.3s ease;
	background: #000;
}

body {
	font-family: "Roboto Mono", monospace;
	width: 100%;
	height: auto;
	display: table;
}

body a:hover, button:hover {
	transition: 0.1s ease-in-out all;
	-webkit-transition: 0.1s ease-in-out all;
	-o-transition: 0.1s ease-in-out all;
}

/******* NAV *******/
.floating-menu {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px;
  background: rgba(0, 0, 0, 0.50);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  z-index: 9999;
  width: auto;
  max-width: 90%;
  border: 3px solid #222;
}

@keyframes fadeScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.menu-left {
  width: 90px;
  height: auto;
  margin-right: 5px;
  transition: 0.3s ease;
}

.menu-left a:hover {
  opacity: 0.7;
  transition: 0.2s ease;
}

.menu-center a.active {
	border: 1px solid #777;
}

/* Links desktop */
.menu-center {
  display: flex;
  gap: 8px;
}

.menu-center a {
  padding: 16px 16px;
  color: #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid #222;
  transition: 0.2s;
}

.menu-center a:hover {
	border: 1px solid #777;
  color: #fff;
}

/* Região direita (CTA + hambúrguer) */
.menu-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* CTA */
a.menu-cta {
  padding: 16px 16px;
  color: #000;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #222;
  transition: 0.2s;
  background: #D4E300;
}

.menu-cta:hover {
  border: 1px solid #777;
  color: #000;
  background: #fff;
}

/* --------- HAMBURGER BUTTON --------- */
.hamburger {
  width: 22px;
  height: 18px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* X menor e alinhado */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --------- FULLSCREEN MOBILE MENU --------- */
.menu-mobile-lista {
	margin-top: 62px;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
  transition: 0.4s ease;
  z-index: 9998;
}

.mobile-menu-overlay a {
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0;
  transform: translateY(25px);
  transition: 0.4s ease;
  text-transform: uppercase;
  margin: 4px 0;
}

/* Estado aberto (com slide + fade) */
.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-overlay.active a {
  opacity: 1;
  transform: translateY(0);
}


/* ------------------------- */
/* 📱 MOBILE */
/* ------------------------- */
@media (max-width: 768px) {

  /* A barra fica mais larga (com margens) */
  .floating-menu {
  	width: 90%;
    bottom: 22px;
    padding: 6px 10px;
    max-width: none;
  }

	.menu-left a {
  	padding: 10px 12px;
	}

  /* Some os links centrais */
  .menu-center {
    display: none;
  }

  /* Mostra o hambúrguer */
  .hamburger {
    display: flex;
  }

  /* Ajustes menores */
  .menu-right {
    gap: 10px;
  }

  a.menu-cta {
    padding: 10px 12px;
  }
}

/******* HEADER *******/

header {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  pointer-events: none;/
  z-index: 2;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1);
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
}

header span {
  font-size: 14.7vw;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -18px;
  text-transform: uppercase;
  word-spacing: 0.5em;
  margin: -40px 0 0 -30px !important;
  white-space: nowrap;
}

@keyframes fadeScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/******* ABOUT *******/

.about {
	padding: 120px 0 0 0;
}

.about p {
	font-size: 32px !important;
	font-weight: 300;
	line-height: 120%;
	text-transform: uppercase;
	color: #fff;
	text-indent: 5em;
	margin-bottom: 62px;
}

.about span {
	color: #666;
	font-weight: 300;
}

/******* CLIENTES *******/

.clientes {
  position: relative;
  width: 100vw;
  overflow: hidden;
  background: #000;
  padding: 40px 0 80px 0;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.marquee {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.marquee img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
  height: 46px;
  opacity: 0.5;
}

.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

/******* SERVIÇOS *******/

.servicos {
	padding: 0 0 120px 0;
}

.servicos a {
	text-decoration: none;
}

.servicos p,
.servicos span,
.servicos h3 {
  color: #444; /* outros textos cinza escuro */
  transition: color 0.3s;
}

.servicos h2 {
  color: #fff;
  transition: color 0.3s;
}

.line-service {
	padding: 18px 12px;
	display: flex;
	cursor: pointer !important;
}

.border-bottom {
	border-bottom: 1px solid #333 !important;
}

.line-service span {
	font-size: 20px;
}

.line-service small {
	font-size: 44px;
	color: #99D3D4;
	margin-right: 20px;
}

.line-service h2 {
	font-size: 100px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: -6px;
}

.line-service p {
	font-size: 15px;
	line-height: 130%;
	font-weight: 300;
}

/******* SOBRE-2 *******/

.about-2 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 0;
}

.about-2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  pointer-events: none;
  z-index: 2;
}

.about-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
  pointer-events: none;
  z-index: 2;
}

.bg-video-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1);
  z-index: 0;
}

.overlay-about {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 1;
}

.text-content {
  position: relative;
  z-index: 3;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.about-2 p {
  font-size: 32px;
  font-weight: 300;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
  text-indent: 5em;
}

.about-2 span {
	color: #666;
	font-weight: 300;
}

@keyframes fadeScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/******* PROJETOS *******/

.projetos {
	padding: 120px 0 0 0;
}

.projetos a {
	color: #fff;
	text-decoration: none;
}

.projetos h3 {
	font-size: 24px;
	font-weight: 300;
	color: #fff;
	margin: 24px 0;
}

.projetos img {
	border-radius: 14px;
	transition: 0.3s ease;
}

.projetos img:hover {
	filter: brightness(80%);
  transition: 0.3s ease;
}

.line-case {
	margin: 24px 0;
}

/******* BLOG *******/

.blog {
	padding: 120px 0 0 0;
	align-items: center;
	justify-content: center;
	display: flex;
}

.blog img {
	border-radius: 14px;
	margin-bottom: 12px;
	transition: 0.3s ease;

}

.blog img:hover {
	filter: brightness(80%);
  transition: 0.3s ease;
}

.blog h2 {
	font-size: 22px;
	line-height: 130%;
	font-weight: 300;
	color: #fff;
	margin: 12px 0;
	padding-right: 32px;
}

.blog a {
	text-decoration: none;
}

@media (max-width: 768px) {
  .blog-thumb img {
    width: 100%;
    height: auto;
    border-radius: 10px;
   }

	.blog h2 {
		font-size: 18px;
		line-height: 130%;
		font-weight: 200;
		margin: 4px 0 52PX 0;
		padding-right: 0;
	}

}

/******* FOOTER *******/

footer {
	clear: both;
	padding: 0;
	border-top: 1px solid #333;
	margin: 200px 0 0 0;
	padding: 32px 0 0 0;
}

footer h3 {
	font-size: 14px;
	font-weight: 300;
	color: #777;
	margin-bottom: 10px;
}

footer p {
	font-size: 15px;
	font-weight: 300;
	line-height: 140%;
	color: #fff;
	padding-right: 62px;
	margin-bottom: 2px;
}

footer a {
	color: #fff;
	text-decoration: none;
}

footer a:hover {
	color: #fff;
	text-decoration: underline;
}

.reserved small {
	font-size: 13px;
	color: #777;
	margin-top: 32px;
	display: table;
}

footer h6 {
  font-size: 17vw;
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  white-space: nowrap;
  letter-spacing: -20px;
  text-transform: uppercase;
  word-spacing: 0.5em;
  margin: 0 0 0 -12px !important;
}

.linha-zebra {
  width: 100%;
  height: 30px;
  background: repeating-linear-gradient(
    90deg,
    black 0 20px,
    white 20px 40px
  );
  animation: zebra 1s linear infinite;
}

@keyframes zebra {
  0% { background-position: 0 0; }
  100% { background-position: 40px 0; }
}

/******* HEADER SOBRE *******/

.logo-interno a {
	font-size: 22px;
	font-weight: 400;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	margin-top: 22px;
	display: flex;
}

.header-sobre {
	width: 100%;
	display: table;
	padding: 120px 0;
}

.header-sobre h1 {
	font-size: 90px;
	font-weight: 400;
	line-height: 110%;
	color: #fff;
	text-transform: uppercase;
}

.header-sobre p {
	font-size: 24px;
	font-weight: 300;
	line-height: 130%;
	color: #fff;
	margin: 42px 0 80px 0;
}

.header-sobre img {
	width: 100%;
	height: auto;
	border-radius: 12px;
}

.main-sobre {
	width: 100%;
	display: flex;
	padding: 0;
}

.main-sobre h2 {
	font-size: 34px;
	font-weight: 400;
	line-height: 130%;
	color: #fff;
	text-transform: uppercase;
}

.main-sobre p {
	font-size: 20px;
	font-weight: 300;
	line-height: 150%;
	color: #ccc;
	margin-bottom: 42px;
}

@media (max-width: 768px) {

.logo-interno a {
	font-size: 20px;
	margin-top: 16px;
}

.header-sobre {
	padding: 80px 0;
}

.header-sobre h1 {
	font-size: 42px;
	line-height: 120%;
}

.header-sobre p {
	font-size: 20px !important;
	line-height: 130%;
}

.main-sobre h2 {
	font-size: 24px;
	margin-bottom: 32px;
}

.main-sobre p {
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 32px;
	}
}

/******* HEADER SERVIÇOS *******/

.header-servico {
	width: 100%;
	display: table;
	padding: 120px 0;
}

.header-servico h1 {
	font-size: 90px;
	font-weight: 400;
	line-height: 110%;
	color: #fff;
	text-transform: uppercase;
}

.header-servico p {
	font-size: 24px;
	font-weight: 300;
	line-height: 130%;
	color: #fff;
	margin: 42px 0 52px 0;
}

.main-servico {
	width: 100%;
	display: flex;
	padding: 0 0 120px 0;
}

.main-servico h3 {
	font-size: 34px;
	font-weight: 400;
	line-height: 130%;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 52px;
}

.main-servico h2 {
	font-size: 64px;
	font-weight: 300;
	line-height: 130%;
	color: #fff;
	letter-spacing: -3px;
	text-transform: uppercase;
}

.main-servico p {
	font-size: 18px;
	font-weight: 300;
	line-height: 150%;
	color: #ccc;
	margin-bottom: 52px;
}

.main-servico ul {
	font-size: 18px;
	font-weight: 300;
	line-height: 160%;
	color: #777;
	float: left;
	margin-right: 82px;
}

.main-servico li {
	list-style: none;
}

.line-main-service {
	padding: 62px 0;
}

.projetos-margin {
	margin-top: -120px !important;
}


@media (max-width: 768px) {

.header-servico {
	padding: 80px 0;
}

.header-servico h1 {
	font-size: 42px;
	line-height: 120%;
}

.header-servico p {
	font-size: 20px !important;
	line-height: 130%;
}

.main-servico h3 {
	font-size: 24px;
	margin-bottom: 12px;
}

.main-servico h2 {
	font-size: 32px;
	letter-spacing: 0;
	margin-bottom: 32px;
}

.main-servico p {
	font-size: 16px;
	line-height: 140%;
	margin-bottom: 32px;
	}

.main-servico ul {
	font-size: 16px;
	line-height: 150%;
	float: none;
	margin-right: 0;
}

.main-servico li {
	list-style: none;
}

.line-main-service {
	padding: 32px 0;
}

}

/******* HEADER PROJETOS *******/

.header-projetos {
	width: 100%;
	display: table;
	padding: 120px 0 0 0;
}

.header-projetos h1 {
	font-size: 90px;
	font-weight: 400;
	line-height: 110%;
	color: #fff;
	text-transform: uppercase;
}

.header-projetos p {
	font-size: 24px;
	font-weight: 300;
	line-height: 130%;
	color: #fff;
	margin: 42px 0 52px 0;
}

.main-projetos {
	width: 100%;
	display: flex;
	padding: 0 0 120px 0;
}

.servicos-interno {
	padding: 120px 0 0 0 !important;
}

@media (max-width: 768px) {

.header-projetos {
	padding: 80px 0 0 0;
}

.header-projetos h1 {
	font-size: 42px;
	line-height: 120%;
}

.header-projetos p {
	font-size: 20px !important;
	line-height: 130%;
}

.servicos-interno {
	padding: 80px 0 0 0 !important;
}

}

/******* HEADER BLOG *******/

.header-blog {
	width: 100%;
	display: table;
	padding: 120px 0 0 0;
	text-align: center;
}

.header-blog h1 {
	font-size: 90px;
	font-weight: 400;
	line-height: 110%;
	color: #fff;
	text-transform: uppercase;
}

.header-blog p {
	font-size: 24px;
	font-weight: 300;
	line-height: 130%;
	color: #fff;
	margin: 42px 0 52px 0;
}

.masonry {
	width: 100%;
	column-count: 3; 
	column-gap: 24px;
}

.masonry-item {
	width: 100%;
	break-inside: avoid;
	margin-bottom: 42px;
	display: inline-block;
}

.list-articles {
	width: 100%;
	display: table;
	padding: 80px 0 0 0;
}

.list-articles a {
	color: #fff;
	text-decoration: none;
}

.list-articles h3 {
	font-size: 20px;
	font-weight: 300;
	line-height: 120%;
	color: #fff;
	text-decoration: none;
	margin: 22px 32px 52px 0;
}

.list-articles img {
	border-radius: 12px;
	transition: 0.3s ease;
}

.list-articles img:hover {
	filter: brightness(80%);
  transition: 0.3s ease;
}

.line-article {
	margin-bottom: 52px;
}

.blog-interno {
	padding: 40px 0 0 0;
	align-items: center;
	justify-content: center;
	display: flex;
}

.blog-interno img {
	border-radius: 14px;
	margin-bottom: 12px;
	transition: 0.3s ease;
}

.blog-interno img:hover {
	filter: brightness(80%);
  transition: 0.3s ease;
}

.blog-interno h2 {
	font-size: 22px;
	line-height: 130%;
	font-weight: 300;
	color: #fff;
	margin: 12px 0;
	padding-right: 32px;
}

.blog-interno a {
	text-decoration: none;
}

@media (max-width: 768px) {

.header-blog {
	padding: 80px 0 0 0;
}

.header-blog h1 {
	font-size: 42px;
	line-height: 120%;
}

.header-blog p {
	font-size: 20px !important;
	line-height: 130%;
}

.masonry {
	column-count: 1;
	column-gap: 0;
}

.masonry-item {
	width: 108%;
	margin-bottom: 0;
	padding: 0;
}

.line-article {
	margin-bottom: 42px;
}

.blog-interno img {
	width: 100%;
	height: auto;
	border-radius: 14px;
	margin-bottom: 12px;
	transition: 0.3s ease;
}

.blog-interno h2 {
	font-size: 18px;
	line-height: 130%;
	font-weight: 200;
	margin: 4px 0 52PX 0;
	padding-right: 0;
}

.blog-interno a {
	text-decoration: none;
}

}

/******* HEADER SINGLE *******/

.header-single {
	width: 100%;
	display: table;
	padding: 120px 0 0 0;
}

.header-single h1 {
	font-size: 70px;
	font-weight: 400;
	line-height: 110%;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
}

.header-single ul {
	font-size: 16px;
	font-weight: 300;
	color: #777;
	margin: 42px 0;
	text-align: center;
}

.header-single ul li {
	list-style: none;
	display: inline-block;
	margin: 0 20px;
}

.main-single {
	width: 100%;
	display: table;
	padding: 80px 0 0 0;
}

.main-single h2 {
	font-size: 30px;
	font-weight: 300;
	line-height: 110%;
	color: #fff;
}

.main-single p {
	font-size: 20px;
	font-weight: 200;
	line-height: 170%;
	color: #fff;
	margin: 52px 0;
}

.main-single ul {
	font-size: 22px;
	font-weight: 200;
	line-height: 150%;
	color: #fff;
	margin: 52px 0 52px 22px;
}

.main-single ul li {
	list-style-type: disc;
	margin: 22px 0;
}

.main-single img {
	width: 100%;
	height: auto;
}

@media (max-width: 768px) {

.header-single {
	padding: 80px 0 0 0;
}

.header-single h1 {
	font-size: 34px;
	font-weight: 400;
}

.header-single ul {
	font-size: 16px;
	line-height: 150%;
	margin: 32px 0 0 0;
	text-align: center;
}

.header-single ul li {
	list-style: none;
	display: block;
	margin: 0;
}

.main-single {
	padding: 60px 0 0 0;
}

.main-single h2 {
	font-size: 26px;
	line-height: 110%;
}

.main-single p {
	font-size: 16px;
	line-height: 170%;
	margin: 42px 0;
}

.main-single ul {
	font-size: 16px;
	line-height: 170%;
	margin: 42px 0 42px 22px;
}

.main-single ul li {
	list-style-type: disc;
	margin: 32px 0;
}

}

/******* HEADER CASE *******/

.header-case {
	width: 100%;
	display: table;
	padding: 120px 0 0 0;
}

.header-case h1 {
	font-size: 90px;
	font-weight: 400;
	line-height: 110%;
	color: #fff;
	text-transform: uppercase;
}

.header-case p {
	font-size: 24px;
	font-weight: 300;
	line-height: 130%;
	color: #fff;
	margin: 42px 0 52px 0;
}

.main-case {
	width: 100%;
	display: flex;
	padding: 0 0 120px 0;
}

.main-case span {
	font-size: 16px;
	font-weight: 200;
	color: #fff;
	border: 1px solid #777;
	border-radius: 120px;
	padding: 6px 12px;
	display: inline-block;
	margin-bottom: 52px;
}

.main-case h3 {
	font-size: 30px;
	font-weight: 300;
	line-height: 110%;
	color: #fff;
}

.main-case p {
	font-size: 20px;
	font-weight: 200;
	line-height: 170%;
	color: #fff;
	margin: 52px 0;
}

.main-case img {
	width: 100%;
	height: auto;
	margin-bottom: 52px;
}

.cases-relacionados {
	padding: 0;
	align-items: center;
	justify-content: center;
	display: flex;
}

.cases-relacionados img {
	border-radius: 14px;
	margin-bottom: 12px;
	transition: 0.3s ease;
}

.cases-relacionados img:hover {
	filter: brightness(80%);
  transition: 0.3s ease;
}

.cases-relacionados h4 {
	font-size: 22px;
	line-height: 130%;
	font-weight: 300;
	color: #fff;
	margin: 12px 0;
	padding-right: 32px;
}

.cases-relacionados a {
	text-decoration: none;
}

@media (max-width: 768px) {

.header-case {
	padding: 80px 0 0 0;
}

.header-case h1 {
	font-size: 42px;
	line-height: 120%;
}

.main-case {
	padding: 0 0 80px 0;
}

.main-case span {
	font-size: 14px;
	padding: 6px 12px;
	display: inline-block;
	margin-bottom: 12px;
}

.header-case p {
	font-size: 20px !important;
	line-height: 130%;
}

.main-case h2 {
	font-size: 26px;
	line-height: 110%;
}

.main-case p {
	font-size: 16px;
	line-height: 170%;
	margin: 42px 0;
}

.main-case img {
	margin: 42px 0;
}

.cases-relacionados img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.cases-relacionados h4 {
	font-size: 18px;
	line-height: 130%;
	font-weight: 200;
	margin: 4px 0 52PX 0;
	padding-right: 0;
}

}
























.menu.mobile {
	display: none;
}

.services {
	display: none;
}

.cta-bottom {
	display: none;
}

/** MEDIA QUERIES **/

@media (max-width: 768px) {

.menu-interno {
	display: none;
}

/******* HEADER *******/

header {
  height: 100vh;
  text-align: center;
}

header span {
  font-size: 13.2vw;
  font-weight: 500;
  letter-spacing: -2px;
  margin: 5px 0 0 -10px !important;
  word-spacing: 0.2em;
  white-space: nowrap;
}

/******* ABOUT *******/

.about {
	padding: 80px 0 0 0;
}

.about p {
	font-size: 20px !important;
	line-height: 120%;
	text-indent: 0;
}

.about span {
	color: #666;
	font-weight: 300;
}

/******* CLIENTES *******/

.marquee {
	padding: 0;
  gap: 30px;
  animation: marquee 7s linear infinite;
}

/******* SERVIÇOS *******/

.servicos {
	display: none;
}

.services {
	width: 100%;
	padding: 0;
  background: #000;
  display: table;
  padding: 0;
}

.cta-servicos {
	font-size: 14px;
	font-weight: 500;
	line-height: 120%;
	color: #fff;
	border: 1px solid #777;
	padding: 14px 22px;
	text-align: center;
	text-decoration: none;
	margin: 22px 0 80px 0;
	width: 100%;
	display: table;
	text-align: center;
	text-transform: uppercase;
	border-radius: 12px;
}

.cta-servicos:hover {
	color: #fff;
}

.accordion-item {
	width: 100%;
	display: table;
  background: #000;
  cursor: pointer;
}

.accordion-title {
	font-size: 32px;
	font-weight: 400;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.accordion-icon {
  font-size: 22px;
  font-weight: 300;
  color: #777;
  transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 120%;
  overflow: hidden;
  color: #777;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  margin: 12px 0;
}

.accordion-item.active .accordion-content {
  opacity: 1;
}

/******* SOBRE-2 *******/

.about-2 {
	padding: 0;
}

.about-2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15%;
}

.about-2 p {
	font-size: 22px;
  text-indent: 0;
}

/******* PROJETOS *******/

.projetos {
	padding: 0;
}

.projetos {
	padding: 60px 0;
}

.projetos h3 {
	font-size: 22px;
	margin: 16px 0;
}

.projetos img {
	border-radius: 10px;
}

.line-case {
	margin: 12px 0;
}

/******* FOOTER *******/

footer {
	display: table;
	margin: 120px 0 80px 0;
	padding: 0;
	clear: none;
}

.cta-circulo {
	margin: -60px 0 0 0;
  width: 110px;
  height: 110px;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
}

footer h3 {
	font-size: 16px;
	margin: 22px 0 10px 0;
}

footer p {
	font-size: 16px;
	padding-right: 0;
	margin-bottom: 4px;
}

.reserved small {
	font-size: 16px;
	line-height: 120%;
	margin-bottom: 20px;
	display: table;
	margin-top: 32px;
}

footer h6 {
  font-size: 16vw;
  letter-spacing: -5px;
}

.linha-zebra {
  width: 100%;
  height: 30px;
  background: repeating-linear-gradient(
    90deg,
    black 0 20px,
    white 20px 40px
  );
  animation: zebra 1s linear infinite;
}

@keyframes zebra {
  0% { background-position: 0 0; }
  100% { background-position: 40px 0; }
}

.cta-bottom {
	width: 90%;
	position: fixed;
	bottom: 16px;
	left: 22px;
	right: 22px;
	z-index: 9999;
	display: table;
	text-align: center;
	background: #000;
	padding: 12px 0;
	font-size: 22px;
	font-weight: 400;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	border: 1px solid #777;
	border-radius: 16px;
	background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cta-bottom:hover {
	color: #fff;
	text-decoration: none;
}

.header-sobre {
  padding: 80px 0;
}

.header-sobre p {
	font-size: 32px;
}



}