* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Helvetica', 'Arial', sans-serif;
}
html {
  scroll-behavior: smooth;
}
button,
a,
input,
textarea {
	outline: none;
	-webkit-tap-highlight-color: transparent;
	/* Remove highlight azul em mobile */
	-webkit-focus-ring-color: transparent;
}
.banner-overlay.homepage{
    background:transparent;border-left: 40px solid #fff;border-right: 40px solid #fff;
}
.services-container.internal--page {
    margin-bottom: 60px;
}
/* Link ativo normal */
.menu a.active {
  color: #ddd1c6; /* ou qualquer outra cor de destaque */
}

/* Botão Contact Us ativo: com fundo preto e texto branco */
.contact-us--btn.active-contact {
  background: #000 !important;
  color: #fff !important;
}

/*SLIDE BANNER*/
.announcement-bar {
  width: 100%;
  overflow: hidden;
  position: relative;
  align-items: center;
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.track {
  display: flex;
  width: max-content;
  animation: scroll-left 180s linear infinite;
  animation-play-state: running;
  cursor:pointer;
}

.marquee:hover .track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
section{
    max-width:100%!important;
    padding:0 80px!important;
    padding-top: 80px !important;
}
@media only screen and (max-width: 768px) {
  .track {
    animation: scroll-left 190s linear infinite;
  }
}

@media only screen and (max-width: 768px) {
  .info-bar {
    font-size:9px!important;
  }
}
.messages {
  display: flex;
  flex-direction: column; /* Empilha as mensagens verticalmente */
  animation: slide 9s infinite; /* Animação que alterna as mensagens */
}

@keyframes slide {
    0%, 25% { transform: translateY(0); } /* Mostra a primeira mensagem */
    25.01%, 50% { transform: translateY(-30px); } /* Move para a segunda mensagem */
    50.01%, 75% { transform: translateY(-60px); } /* Move para a terceira mensagem */
    75.01%, 100% { transform: translateY(-90px); } /* Move para a quarta mensagem */
}
#services,
#t-labb,
#contact {
  scroll-margin-top: 100px;
}
.t-labb-section h3{
font-size: 1.7rem;
    margin-bottom: 0px;
    color: #000;
    font-weight: 100;
}
.services-section h3{
max-width: 1200px !important;
    width: 100%;
    margin: 0 auto 15px;
font-size: 2.4rem;
    color: #000;
    font-weight: 100;
}
.contact-us--btn{
    border: 1px solid #000;
    padding: 10px 20px!important;
    color:#000!important;
    text-decoration:none!important;
    width:fit-content;
    font-weight:100;
}
.contact-us--btn:hover{
    background:#000;
    transition: background 1s ease, color 1s ease;
    color:#fff!important;
}
button.contact-us--btn{
    border: 1px solid #000;
    padding: 10px 20px!important;
    color:#000!important;
    text-decoration:none!important;
    width:fit-content;
    font-weight:100;
}
button.contact-us--btn:hover{
    background:#000;
    transition: background 1s ease, color 1s ease;
    color:#fff!important;
}
.explore-more--container{
    padding-top:40px;
    width:100%;
    text-align:left;
}
.generic-btn{
    color: #000;
    text-decoration: none;
    font-size: 15px;
    padding: 0 10px;
    border-left: 4px solid #ddd1c6;
}
.generic-btn:hover{
    color: #ddd1c6;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.section-reveal {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
	will-change: opacity, transform;
}

.section-reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.footer-left-info p {
	margin-bottom: 7px;
}

/* BOTÃO MENU */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
	z-index: 1100;
	transition: transform 0.3s ease;
}

.menu-toggle button {
	display: block;
	width: 30px;
	height: 3px;
	border: 1px solid #000;
	border-radius: 3px;
	background: transparent;
	transition: all 0.3s ease;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	/* Remove highlight azul em mobile */
	-webkit-focus-ring-color: transparent;
/* Quando o botão está ativo (menu aberto) */
}
.header.scrolled .menu-toggle button {
  border-color: black;
}

.menu-toggle.active button:nth-child(1) {
	transform: rotate(45deg) translate(2px, 3px);
	border-color: #000;
}

.menu-toggle.active button:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active button:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -9px);
	border-color: #000;
}

/* MENU MOBILE */
.menu-wrapper {
	display: flex;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	width: 100%;
	background: #fff;
	/*backdrop-filter: blur(2px);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
	z-index: 1000;
	transition: top 0.3s ease;
}

.header-container {
	max-width: 100%;
	margin: auto;
	padding: 3px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo img {
    transition: all 0.3s ease;
	margin-top: 7px;
	height: 70px;
}
.header.scrolled .logo img {
	height: 40px !important;
}
.menu a {
	margin-left: 20px;
	text-decoration: none;
	color: #000;
	font-weight: 200;
}

.menu a:hover {
	color: #ddd1c6;
}
/* Header Scroll Style */
.header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	background-color: #fff!important;
}
/* Banner com parallax */
.banner-parallax {
	height: 100vh;
	background-image: url('imgs/scroll-homepage-1.jpg');
	background-size: cover;
	background-attachment: fixed;
	background-position: top center;
	/* <- garante que começa no topo */
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	background-color: #ddd1c6;
}
section#banner1 {
    height: 50vh !important;
}
/* Animação fade + zoom */
@keyframes fadeInZoom {
	0% {
		opacity: 0;
		transform: scale(0.95) translate(-50%, -50%);
	}

	100% {
		opacity: 1;
		transform: scale(1) translate(-50%, -50%);
	}
}

.banner-text {
	position: absolute;
	top: 50%;
	left:50%;
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-size: 8vh;
	font-weight: bold;
	color: #000;
	padding: 0;
	line-height: 1;
	text-align: center;
	opacity: 0;
	animation: fadeInZoom 1.2s ease-out 0.3s forwards;
	text-transform: uppercase;
}

#banner1 {
	background-image: url('imgs/home.png');
}

#banner2 {
	background-image: url('imgs/text-lab-homepage.png');
}

.banner-overlay {
	width: 100%;
	height: 100%;
	background: #fff;
	/* sempre presente */
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	padding: 20px;

	/* não animar o overlay */
	opacity: 1;
}

.banner-overlay.show {
	opacity: 1;
}

@keyframes fadeInOverlay {
	to {
		opacity: 1;
	}
}
@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.banner-title {
	font-size: 3rem;
	font-weight: bold;
    margin-bottom: 10px;
	opacity: 0;
	transition: opacity 1s ease, transform 1s ease;
}

.banner-title,
.banner-subtitle {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1s ease, transform 1s ease;
}

.banner-title.show,
.banner-subtitle.show {
	opacity: 1;
	transform: translateY(0);
}

.banner-subtitle {
	font-size: 2.4rem;
	font-weight: 300;
	color: #000;
	opacity: 0;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1s ease, transform 1s ease;
}



/* Texto que aparece */
.scroll-section {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #f7f7f7;
	text-align: center;
	padding: 20px;
}

.fade-text {
	opacity: 0;
	transform: translateY(20px);
	transition: all 1s ease;
	font-size: 2rem;
	margin-bottom: 10px;
}

.fade-text.visible {
	opacity: 1;
	transform: translateY(0);
}

.fade-text+.fade-text {
	font-size: 1.5rem;
}
.section-reveal.about-right.visible{
    width:50%;
}

.scrolling-text {
	font-size: 3rem;
	font-weight: normal !important;
	white-space: nowrap;
	transition: transform 0.1s linear;
	text-transform: uppercase;
}
.about-section h2{
    font-size: 4em;
    line-height: .9;
    letter-spacing: normal !important;
    font-weight: normal;
    text-align: left;
    margin-bottom:40px;
}
.about-section h2::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 15%;
  border-bottom: 5px solid #ddd1c6; /* ajuste como quiser */
}
.about-section {
    position: relative;
	height: 100%;
	max-width:1200px;
    padding:120px 0;
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about-container {
	max-width: 1200px;
	width: 100%;
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center !important;
	gap: 40px;
}

.services-container a span {
	font-weight: 100 !important;
	color: #fff !important;
	text-decoration: none !important;
	z-index: 9999;
	border-left: none;
	border-color: #ddd1c6 !important;
	padding-left: 10px;
}

.generic-section {
	height: 100%;
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 80px 20px;
}

.generic-container {
	max-width: 1200px;
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center !important;
	gap: 40px;
}

.generic-container-left h2 {
	font-size: 2.4em;
	line-height: .9;
	letter-spacing: -2px !important;
	font-weight: bold;
	text-align: left;
}

.generic-container-left {
	flex: 1;
}

.generic-container-left img {
	max-width: 425px;
	width: auto;
}

.generic-container-right h3 {
	font-size: 3.2rem;
	font-weight: 100;
	margin-bottom: 1rem;
	color: #444;
	letter-spacing: 1px;
}

.generic-container-right h2 {
	font-size: 2rem;
	font-weight: 100;
	color: #e1e1e1;
	text-transform: uppercase;
}

.generic-container-right p {
	font-size: 20px;
	line-height: 1.6;
	color: #555;
	font-weight: 100;
}

.contact-form input,
textarea:focus {
	outline: none;
	border-bottom: 1px solid #000;
}

li {
	list-style: none;
	/* remove bullet padrão */
	position: relative;
	padding-left: 25px;
	/* espaço para o ícone */
}

li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 17px;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background-image: url('imgs/tlabb-symbol.png');
	background-size: contain;
	background-repeat: no-repeat;
}

@media (min-width: 769px) {
	.generic-container {
		flex-direction: row;
		align-items: flex-start;
	}

	.about-container {
		flex-direction: row;
		align-items: flex-start;
	}

	.services-container {
		flex-direction: row;
		justify-content: space-between;
	}

	.contact-container {
		flex-direction: row;
		align-items: flex-start;
		gap: 60px;
	}
}
.banner-parallax.home{
    height:50vh!important;
}
.arrow.right span{
    color:#fff!important;
    font-size:40px;
}
.arrow.left span{
    color:#fff!important;
    font-size:40px;
}
@media (max-width: 768px) {
    .footer {
        padding: 150px 20px 20px!important;
    }
    .services-title--container{
        bottom: 0px!important;
        left: -7px!important; 
    }
    .services-section h3{
        font-size: 1.7em;
    }
    .t-labb-section h3{
        font-size: 1.7em;
    }
    div.about-us--symbol img{
        margin-top:20px;
        margin-bottom: -10px;
        height:40px!important;
    }
    li::before{
        top:15px!important;
    }
    .about-right{
        padding-top:0!important;
    }
    section#banner1{
        height:35vh!important;
    }
    a.contact-us--btn {
        margin-top: 100px!important;
    }
    .t-labb-text.about-us--page .about-right{
        padding-top:50px;
    }
    .section-reveal.about-left.visible{
        justify-content: flex-start!important;
    }
    .about-us--symbol {
        padding-top: 30px;
    }
    .about-section .t-labb-text {
        flex-direction: column!important;
        padding-bottom:10px!important;
    }
    .contact-section{
        padding: 60px 20px 0 !important;
    }
    .contact-info p{
        font-size:17px!important;
    }
    section#t-labb{
        padding:60px 20px!important;
    }
    a.contact-us--btn{
        padding:10px 20px!important;
    }
    .section-reveal.about-right.visible{
        width:100%;
        padding-right:0;
    }
    .about-section {
        height: 100% !important;
        min-height: 100% !important;
        padding: 60px 20px!important;
    }
    .about-section h2{
        font-size: 2.6em;
        border-width:15px;
        margin-bottom:30px;
    }
    .about-left h1{
        font-size: 2.9rem;
        padding-right: 20px;
        line-height: 42px;
    }
    section#services {
        padding-top: 0;
        margin:0!important;
        padding-bottom: 0;
    }
    .banner-parallax.home{
        height:40vh!important;
    }
    .banner-overlay.homepage{
        background:transparent;border-left: 20px solid #fff;border-right: 20px solid #fff;
    }
    .footer-left-info img {
        margin: 20px 0;
    }
    #services,
    #t-labb,
    #contact {
      scroll-margin-top: 50px;
    }
    .footer-left-info p{
        font-size: 17px!important;
        font-weight:100!important;
        text-align:left;
    }
	.banner-title {
	    padding-right: 20px;
		font-size: 2.9rem;
	}

	nav.menu {
		display: flex;
		height: 100vh;
	}
    nav.menu a{
		font-weight:normal!important;
	}
	.menu-wrapper.show {
		display: flex;
		background: #fff;
		height: 100vh;
		transition: background 3s ease;
	}
	.menu-wrapper {
		display: none;
		position: absolute;
		top: 100%;
		right: 0;
		width: 100%;
		background: #fff;
		flex-direction: column;
		padding: 20px;
		transition: background 3s ease;
	}

	.menu {
		flex-direction: column;
	}

	.menu a {
		color: #000 !important;
		font-size: 2.6rem;
		margin-top: 26px;
		text-align: left !important;
		font-weight: 100;
		margin-left: 0 !important
	}

	.menu-toggle {
		display: flex;
	}

	.generic-section {
		height: 96vh !important;
	}

	.generic-container-left h2 {
		font-size: 1.5em !important;
	}

	.generic-container-right p {
		font-size: 1.2rem !important;
	}

	.services-container a span {
		font-size: 24px;
		border-left: none;
		padding-left: 10px;
	}

	.banner-text {
		width: 100%;
		left: 0!important;
		text-align:left!important;
		padding-left:20px;
		top:45%;
	}
    .banner-parallax.white{
        height:60vh;
    }
	.contact-container {
		flex-direction: column !important;
	}

	.contact-info h2 {
		font-size: 2.6em!important;
        border-width:15px!important;
        padding-right: 30px;
        margin-bottom:30px!important;
	}

	.services-container {
		flex-direction: column !important;
	}
    .about-container {
        margin-bottom: 50px;
        margin-top: 50px;
        align-items: flex-start!important;
    }
    p.about-us--symbol img {
        height: 60px;
    }
	.about-left h2 {
		font-size: 1em !important;
	}

	.about-right p {
		padding-left: 20px !important;
	}

	.scrolling-text {
		font-size: 2rem !important;
	}

	.t-labb-text p {
		font-size: 17px!important;
		padding-left:0!important;
	}

	.t-labb-text li {
		font-size: 17px !important;
	}

	.service-card {
		font-size: inherit !important;
	}

	.footer-container--info {
		display: flex;
		align-items: flex-start!important;
		flex-direction: column !important;
	}

	.contact-form {
		margin-bottom: -99px !important;
		bottom: 0 !important;
	}

	.copyright-footer--container {
		flex-direction: space-between!important;
		margin-top:20px;
	}

	div.copyright {
		text-align: right !important;
		padding-top: 20px;
	}

	div.copyright.right {
		padding-top: 20px;
	}

	div.copyright.left {
		padding-top: 20px !important;
		text-align:left!important;
	}

	p.social-links {
		text-align: left;
		margin-top: 60px;
	}
}

.services-title--container {
	z-index: 9999;
	position: relative;
	bottom: 10px;
}

.footer-right-info p {
	margin-bottom: 5px;
	
}

.contact-section {
	padding: 80px;
	background: #f9f9f9;
}

.contact-container {
	max-width: 100%;
	margin: auto;
	display: flex;
	flex-direction: row;
	gap: 40px;
}

.contact-info {
	flex: 1;
}
.contact-info h2::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 15%;
  border-bottom: 5px solid #ddd1c6; /* ajuste como quiser */
}
.contact-info h2 {
    position:relative;
	font-size: 4em;
    line-height: .9;
    font-weight: normal;
    text-align: left;
    margin-bottom:40px;
}

.contact-info h3 {
	font-size: 2.4rem;
	margin-bottom: 20px;
	color: #555;
	font-weight: 100;
}

.contact-info p {
	margin-bottom: 12px;
	line-height: 1.5;
	font-weight: 100;
	font-size:19px;
}

.contact-info a {
	color: #333;
	text-decoration: none;
}

.contact-info a:hover {
	text-decoration: underline;
}

.contact-form input,
textarea::placeholder {
	font-weight: 100 !important;
}

.contact-form {
	flex: 1;
	background: #fff;
	padding: 30px;
	bottom: -200px;
	position: relative;
}

.contact-info h3 {
	margin-top: 20px;
	margin-bottom: 10px;
}

.contact-form form {
	display: flex;
	flex-direction: column;
}

.contact-form label {
	margin-bottom: 6px;
	font-weight: 100;
	color: #fff;
}

.contact-form input,
.contact-form textarea {
	margin-bottom: 20px;
	padding: 12px;
	border: none;
	border-radius: 0;
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-size: 1rem;
	border-bottom: 1px solid #e1e1e1;
}

.contact-form button {
	padding: 20px;
	background-color: transparent;
	color: #ddd1c6;
	border: none;
	border-radius: 0;
	font-weight: 100;
	text-transform: uppercase;
	cursor: pointer;
}

.contact-form button:hover {
	color: #fff !important;
}

.about-left h2 {
	font-size: 2.4em;
	line-height: .9;
	letter-spacing: -2px !important;
	font-weight: bold;
	text-align: left;
}

.about-left {
	flex: 1;
}
.section-reveal.about-left.visible {
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-right {
	flex: 1;
	padding-top:0;
}

.about-right h3 {
	font-size: 2.4rem;
	font-weight: 100;
	margin-bottom: 1rem;
}
.t-labb-text.about-us--page {
    column-gap: 40px;
    padding:50px 0 80px;
    margin-left: 0 !important;
    max-width: 100%!important;
    margin-right: 0 !important;
}
/* Faixa de texto horizontal */
.scrolling-text-container {
	background: #ddd1c6;
	color: #fff;
	padding: 20px 0;
	overflow: hidden;
}

.scrolling-text {
	font-size: 2.5rem;
	font-weight: 100 !important;
	white-space: nowrap;
	transition: transform 0.1s linear;
	will-change: transform;
}

.services-section {
	background: #fff;
	padding:0 20px;
	margin:0 50px;
}

.services-container {
	max-width: 1200px;
	margin: auto;
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.service-card {
	position: relative;
	flex: 1;
	display: flex;
	align-items: flex-end;
	padding: 20px;
	color: white;
	font-size: 1.8rem;
	font-weight: bold;
	text-decoration: none;
	overflow: hidden;
	aspect-ratio: 4 / 4;
}

.service-card h3 {
	position: relative;
	z-index: 2;
}

.copyright-footer--container {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}

.footer {
	background: #000;
	color: #fff;
	padding: 40px 80px 20px;
	text-align: left;
}

.footer-container {
	max-width: 100%;
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 0.95rem;
}

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

.footer a:hover {
	text-decoration: underline;
}

.social-links a {
	margin: 20px 5px;
}

div.copyright {
	width: 100%;
	font-size: 9px;
	padding-top: 40px;
	color: #646464;
}

div.copyright.right {
	text-align: right;
}

div.copyright.left {
	text-align: left;
}

.t-labb-section {
	padding: 80px 20px;
	background: #fefefe;
	color: #333;
}

.t-labb-text .subtitle {
	font-size: 1.3rem;
	margin-bottom: 30px;
	color: #000;
	text-align: left;
}
.footer-left-info {
    font-size: 19px;
}
.footer-left-info p img{
    margin-bottom:30px;
    height:100px;
}
.t-labb-text p {
	margin-bottom: 16px;
	font-size: 19px;
	line-height: 1.6;
	color: #000;
	font-weight: 100;
}
section#t-labb{
    display: flex;
    align-items: center;
    padding:50px 120px;
    margin: 0 auto;
}
.about-section .t-labb-text {
    display: flex;
    align-items: center;
}
div.about-us--symbol img {
    height: 60px;
}
.t-labb-text ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 20px;
}

.t-labb-text li {
	margin-bottom: 10px;
	font-size: 19px;
	line-height: 1.6;
	color: #000;
	font-weight: 100;
}

/* Carousel */
.carousel {
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	padding: 10px 0;
	scroll-behavior: smooth;
	text-align: center
}

.carousel-track {
	display: inline-flex;
	gap: 20px;
	padding: 10px 0;
}

.carousel-track::-webkit-scrollbar {
	display: none !important;
}

.carousel-track img {
	height: 350px;
	width: 350px;
	object-fit: cover;
	border-radius: 5px;
	flex-shrink: 0;
}

.footer-container--info {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

p.social-links {
	margin-top: 40px;
}

.footer-right-info {
	margin-top: 40px;
}

#loading-screen {
	height: 100vh;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.2s ease;
	overflow: hidden;
}

#loading-logo {
	width: 20vw;
	max-width: 100px;
	height: auto;
	animation: rotate 2s linear infinite;
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.service-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
	transition: transform 0.5s ease;
}

.service-card[style]::after {
	background-image: inherit;
}

#main-content {
	display: none;
	padding: 20px;
}

/* zoom img */
.service-image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
	z-index: 0;
}

/* escurecer imagem */

/* texto */
.service-card h3 {
	position: relative;
	z-index: 2;
}

/* efeito zoom */
.service-card:hover .service-image {
	transform: scale(1.1);
}