@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* ── Loader ── */
#loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}
.loader-symbol { width: 130px; height: 80px; }
.loader-path {
  fill: none; stroke: #1a1a1a; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.loader-draw-1 { animation: loaderDraw 0.9s ease forwards; }
.loader-draw-2 { animation: loaderDraw 0.9s 0.3s ease forwards; }
@keyframes loaderDraw { to { stroke-dashoffset: 0; } }
.loader-fill-path { fill: #1a1a1a; stroke: none; }
.loader-fill-rect {
  transform: translateY(126px);
  transition: transform 0.4s ease;
}

/* Normal (Ultralight) */
@font-face {
    font-family: 'PP Editorial New';
    src: url('../fonts/PPEditorialNew-Ultralight-BF644b21500d0c0.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

/* Italic (Ultralight Italic) */
@font-face {
    font-family: 'PP Editorial New';
    src: url('../fonts/PPEditorialNew-UltralightItalic-BF644b214ff1e9b.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
}

/* Regular */
@font-face {
    font-family: 'PP Editorial New';
    src: url('../fonts/PPEditorialNew-Regular-BF644b214ff145f.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

/* Regular Italic */
@font-face {
    font-family: 'PP Editorial New';
    src: url('../fonts/PPEditorialNew-Italic-BF644b214fb0c0a.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
}

/* Ultrabold */
@font-face {
    font-family: 'PP Editorial New';
    src: url('../fonts/PPEditorialNew-Ultrabold-BF644b21500840c.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

/* Ultrabold Italic */
@font-face {
    font-family: 'PP Editorial New';
    src: url('../fonts/PPEditorialNew-UltraboldItalic-BF644b214faef01.woff2') format('woff2');
    font-weight: 800;
    font-style: italic;
}

html {
  scroll-behavior: smooth;
}

/* Lenis smooth scroll */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
html, body{
	background-color: #FFFFFF;
	overflow-x: clip;
}

/* Prevenir overflow horizontal */




* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Prevenir overflow horizontal - removido para não interferir com sticky */

.container{
	position: relative;
	z-index:1;
	background-color: #FFFFFF;
	width: 100%;
	box-sizing: border-box;
}

/* Main Button - Reutilizável em todo o site */
.main-button{
  display:inline-flex;
  align-items:flex-end; /* align arrow with end of underline */
  gap:25px; /* extra gap between text and arrow */
  color:#2d2c2c;
  text-decoration:none;
  padding-top: 20px;
  padding-right: 5px;
  position: relative;
  overflow: hidden;
}

.main-button span{
  font-size:15px;
  letter-spacing: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: #0d5c49;
  padding-bottom:2px;
  display:inline-block;
  position: relative;
}

.main-button span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #8fc3b6;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.main-button svg{ 
  width:18px; 
  height:18px; 
  color: currentColor; 
  transform: translateY(-3px); 
  transition: transform 0.4s ease 0.2s;
  opacity: 1;
}

.main-button:hover span::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-button:hover svg {
  transform: translateY(-7px) translateX(4px);
}




.hero-text .main-button svg {
    width: clamp(1rem, 0.5vw + 0.8rem, 1.125rem); /* 16px - 18px */
    height: clamp(1rem, 0.5vw + 0.8rem, 1.125rem); /* 16px - 18px */
}

/* Botões transparentes genéricos */
.transparent-button {
	background: transparent;
	border: none;
	padding: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.transparent-button:hover {
	opacity: 0.8;
	transform: scale(1.05);
}

.animate-in {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

/* ========== NAVIGATION MENU ========== */
.nav-wrapper {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.nav-wrapper.nav-hidden {
    transform: translateX(-50%) translateY(-100px);
    pointer-events: none;
}

.nav-container {
    width: 800px;
    max-width: calc(100vw - 40px);
    min-height: 52px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 20px 0px;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
}

.nav-logo svg {
    height: 22px;
    width: auto;
}

.nav-logo svg path {
    fill: #000;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-links a.active {
    font-weight: 500;
}

.nav-lang {
    display: flex;
    align-items: center;
}

.nav-lang button,
.nav-lang a {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.nav-lang svg {
    width: 20px;
    height: 20px;
    color: #000;
}

.nav-lang-text {
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    font-weight: 300;
    font-style: italic;
    color: #000;
    margin-left: 5px;
}

/* Nav transitions for smooth color change */
.nav-container {
    transition: background-color 0.3s ease;
}

.nav-logo svg path {
    transition: fill 0.3s ease;
}

.nav-links a {
    transition: color 0.3s ease, opacity 0.2s ease;
}

.nav-lang svg {
    transition: color 0.3s ease;
}

.nav-lang-text {
    transition: color 0.3s ease;
}

/* Nav Right - wrapper for lang + hamburger */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    gap: 4px;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 1px;
    background-color: #000;
    transition: all 0.3s ease, background-color 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

/* Mobile Menu Dropdown */
.mobile-menu {
    display: none;
    width: 100%;
    max-width: calc(100vw - 40px);
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 20px 0px;
    margin-top: 8px;
    pointer-events: none;
    transform-origin: top center;
}

.mobile-menu.active {
    display: block;
    pointer-events: auto;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.mobile-menu ul li a {
    color: #000;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
    transition: opacity 0.2s ease;
}

.mobile-menu ul li a svg {
    width: 12px;
    height: 12px;
    color: currentColor;
    transition: transform 0.3s ease;
}

.mobile-menu ul li a:hover {
    opacity: 0.7;
}

.mobile-menu ul li a:hover svg {
    transform: translate(3px, -3px);
}

/* Nav Light Mode - Mobile Menu */
.nav-wrapper.nav-light .hamburger span {
    background-color: #fff;
}

.nav-wrapper.nav-light .mobile-menu {
    background-color: rgba(255, 255, 255, 0);
}

.nav-wrapper.nav-light .mobile-menu ul li a {
    color: #fff;
}

/* Nav Light Mode - for dark backgrounds */
.nav-wrapper.nav-light .nav-container {
    background-color: rgba(255, 255, 255, 0);
}

.nav-wrapper.nav-light .nav-logo svg path {
    fill: #fff;
}

.nav-wrapper.nav-light .nav-links a {
    color: #fff;
}

.nav-wrapper.nav-light .nav-lang svg {
    color: #fff;
}

.nav-wrapper.nav-light .nav-lang-text {
    color: #fff;
}

/* Mobile Menu */
@media only screen and (max-width: 768px) {
    .nav-container {
        padding: 10px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 12px;
    }
}

@media only screen and (max-width: 600px) {
    .nav-wrapper {
        top: 10px;
    }

    .nav-container {
        padding: 10px 15px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 11px;
    }

    .nav-logo svg {
        height: 18px;
    }
}


.hero {
	max-width: 1500px;   /* não cresce mais que isto */
    width: 100%;         /* ocupa todo o espaço até o max-width */
    margin: 0 auto;    /* centraliza */
    padding-left: 100px;   /* valor fixo, não vw */
    padding-right: 100px;  /* valor fixo, não vw */
    box-sizing: border-box;

	padding-top: 130px; /* 50px + 80px para nav */
	padding-bottom: 100px;

	    position: relative;  /* todo o conteúdo fica acima do SVG */
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    position: relative;
    align-items: center;
}

.hero-content h1 {
    grid-column: 1 / -1;
    grid-row: 1;
    position: relative;
    color: #000;
    font-family: 'PP Editorial New';
    font-size: 110px;
    font-style: normal;
    font-weight: 400;
    line-height: .9;
    letter-spacing: -0.1rem;
    text-align: center;
    z-index: 2;
}

.hero-content h1 .line {
    display: block;
}

.hero-image-left {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-self: start;
    z-index: 1;
}

.hero-image-left img {
    width: clamp(180px, 16.5vw, 280px);  /* 16.5vw reaches 280px at 1700px viewport */
    height: auto;
    object-fit: cover;
}

.hero-image-right {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    justify-self: end;
    margin-top: -100px;
}

.hero-image-right img {
    width: clamp(200px, 18.8vw, 320px);  /* 18.8vw reaches 320px at 1700px viewport */
    height: auto;
    object-fit: cover;
}

.hero-description {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 250px;
    align-self: center;
}

.hero-line {
    display: block;
    height: 1px;
    background-color: #000;
}

.hero-description p {
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.1;
    margin: 0;
}



/* Dark Section */
.hero2-section {
    position: relative;
    background-image: url('../images/Hero2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 80px 0;
    max-width: 1500px;
    width: 100%;
    margin: 100px auto;
    padding-left: 100px;
    padding-right: 100px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 180px;
}

.hero2-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 38, 7, 0.45);
    z-index: 1;
}

.hero2-section > * {
    position: relative;
    z-index: 2;
}

.hero2-section .hero2-text {
    flex: 1;
    max-width: 50%;
}

.hero2-section .hero2-text p {
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.1;
}

.hero2-section .hero2-title {
    flex: 1;
    text-align: right;
}

.hero2-section .hero2-title h2 {
    color: #fff;
    font-family: 'PP Editorial New';
    font-size: 150px;
    font-weight: 400;
    line-height: 0.6;
    letter-spacing: -0.05rem;
    margin: 0;
}

.hero2-section .hero2-title h2 .title-line {
    display: block;
}

.hero2-section .hero2-title h2 em {
    font-style: italic;
}



.about-us {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
	position: relative;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	overflow: hidden;
	background-color: #F0F0F0;
	box-sizing: border-box;
}
.about-us .container {
  background: transparent;
}

.section-h2 {
	font-family: 'Roboto', sans-serif;
	font-size: clamp(10px, 1.2vw, 16px);  /* 10px mobile, 16px desktop */
	font-weight: 300;
	color: #000000;
	padding-bottom: 10px;
	text-transform: uppercase;
	position: relative;
}

.section-line {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	background-color: #000;

}


/* About Header */
.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.about-text {
    margin-bottom: 20px;
}

.about-text h2 {
    position: relative;
    font-family: 'PP Editorial New', sans-serif;
    font-size: clamp(40px, 5vw, 65px);  /* 38px mobile, 65px desktop, escala suave */
    font-weight: 400;
    color: #000;
    text-align: center;
    border: none;
    text-transform: none;
	letter-spacing: -0.1rem;
}



.about-description {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-description p {
    color: #000;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.1;
    text-align: center;
    max-width: 600px;
}


.arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-link:hover .arrow {
    transform: translateX(5px);
}

/* Cards Grid com proporções corretas */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(85px, 170px));
	grid-auto-rows: 85px;
	gap: 20px;
	margin: 0 auto;       /* centra horizontalmente */
	justify-content: center; /* evita "colar" à esquerda */
	max-width: 1020px;    /* controla largura total */
	font-family: 'Roboto', sans-serif;
}

.cards-grid * {
	font-family: 'Roboto', sans-serif;
}

.cards-grid .card-number {
	font-family: 'PP Editorial New', sans-serif;
	letter-spacing: -0.1rem;
}
  
/* Removido - usa clamp() no .chart-container .card-number abaixo */

.card1 {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-content {
    text-align: left;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.card-label {
    font-size: clamp(12px, calc(0.52vw + 9.76px), 16px);  /* 12px a 430px, 16px a 1200px */
    font-weight: 300;
    line-height: 1.1;
    display: block;
    margin-bottom: 0;
    font-family: 'Roboto', sans-serif;
    position: absolute;
    top: 0;
    left: 0;
	letter-spacing: 1.1;
}

.card-number {
    font-family: 'PP Editorial New', sans-serif;
    font-size: clamp(75px, calc(3.25vw + 61px), 100px);  /* 75px a 430px, 100px a 1200px */
    font-weight: 400;
    display: block;
    line-height: 1;
    position: absolute;
    bottom: 0;
    right: 0;
	letter-spacing: -0.1rem;
}

/* Card Positioning com proporções corretas */
.card-1 {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 10px;
}

.card-2 {
    grid-column: 3 / span 2;
    grid-row: 1 / span 4;
    padding: 0;
    overflow: hidden;
}

.card-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.card-3 {
    grid-column: 5 / span 2;
    grid-row: 1 / span 3;
    color: #000;
    border: 1px solid #000000;
    border-radius: 10px;
    background: #FFFFFF;


}

.card-4 {
    grid-column: 1 / span 2;
    grid-row: 3 / span 4;
    background: #000;
    color: #fff;
    border-radius: 10px;

}

.card-5 {
    grid-column: 3 / span 2;
    grid-row: 5 / span 2;
    background: #ffffff;
    color: #000;
    border-radius: 10px;
    border: 1px solid #000000;



}

.card-6 {
    grid-column: 5 / span 2;
    grid-row: 4 / span 3;
    background: #FFFFFF;
    color: #000;
	border: 1px solid #000000;
	border-radius: 10px;
}

/* Card Colors */
.card-1 .card-number { color: #000; }
.card-3 .card-number { color: #000; }
.card-4 .card-number { color: #fff; }
.card-6 .card-number { color: #000; }

.card-4 blockquote {
    font-style: normal;
    font-size: clamp(12px, calc(0.52vw + 9.76px), 16px);  /* 12px a 430px, 16px a 1200px */
    line-height: 1.1;
    margin: 0;
    opacity: 0.9;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: left;
}

/* Chart Container */
.chart-container {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: clamp(15px, calc(3.25vw + 1px), 40px);  /* 15px a 430px, 40px a 1200px */
    position: absolute;
    bottom: 0;
    right: 0;
    flex-direction: row;
	padding-right: 5px;
}

.chart-container .card-number {
    position: static;
    margin: 0;
    font-size: clamp(50px, calc(6.5vw + 22px), 100px);  /* 50px a 430px, 100px a 1200px */
    line-height: 0.8;
}

.chart {
    display: flex;
    align-items: flex-end;
    gap: clamp(4px, calc(0.5vw + 2px), 8px);  /* 4px a 430px, 8px a 1200px */
    height: clamp(60px, calc(5.2vw + 38px), 100px);  /* 60px a 430px, 100px a 1200px */
}

.bar {
    width: clamp(20px, calc(2.6vw + 9px), 40px);  /* 20px a 430px, 40px a 1200px */
    background: #000000;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 1.5s ease-out;
}

.bar-1 { height: clamp(30px, calc(3.9vw + 13px), 60px); }
.bar-2 { height: clamp(45px, calc(5.8vw + 20px), 90px); }
.bar-3 { height: clamp(60px, calc(7.8vw + 26px), 120px); }

/* Logo Marquee */
.logo-marquee {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
    padding: 20px 0;
    margin-bottom: 50px;

}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 52s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
}

.marquee-content img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) contrast(1.4);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}


/* Per-logo size overrides (applies to both homepage marquee and services slider) */
.marquee-content img[alt="CM Matosinhos"],
.slide img[alt="CM Matosinhos"] { height: 18px; width: auto; }

.marquee-content img[alt="CM Lousada"],
.slide img[alt="CM Lousada"] { height: 26px; width: auto; }

.marquee-content img[alt="Buçaco"],
.slide img[alt="Buçaco"],
.marquee-content img[alt="Edifício Leões"],
.slide img[alt="Edifício Leões"],
.marquee-content img[alt="ENM"],
.slide img[alt="ENM"],
.marquee-content img[alt="S&S"],
.slide img[alt="S&S"],
.marquee-content img[alt="CM Felgueiras"],
.slide img[alt="CM Felgueiras"],
.marquee-content img[alt="Blandy"],
.slide img[alt="Blandy"] { height: 56px; width: auto; }

.marquee-content img[alt="Universidade do Porto"],
.slide img[alt="Universidade do Porto"] { height: 28px; width: auto; }

.marquee-content img[alt="CM Marco de Canaveses"],
.slide img[alt="CM Marco de Canaveses"] { height: 52px; width: auto; }

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* New Section */
.new-section {
    background: #FFFFFF;
    padding: 200px 100px;
    text-align: center;
}

.new-section .container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.new-section-title-top,
.new-section-title-bottom {
    font-family: 'PP Editorial New', sans-serif;
    font-size: clamp(50px, calc(8.2vw + 21px), 120px);  /* 50px a 350px, 120px a 1200px */
    font-weight: 400;
    color: #000;
    line-height: 1;
    letter-spacing: -0.05rem;
    margin: 0;
}

.new-section-title-top {
    position: relative;
    z-index: 1;
    margin-bottom: -250px;
}

.new-section-title-bottom {
    position: relative;
    z-index: 3;
    margin-top: -50px;
    margin-bottom: 10px;
}

.new-section-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.new-section-image img {
    max-width: 100%;
    height: auto;
    max-height: 750px;
    object-fit: contain;
}

.new-section-texts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 300px;
    max-width: 1000px;
    margin: 0 auto;
}

.new-section-texts p {
    color: #000;
    line-height: 1.1;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    text-align: left;
}



/* Tilt Container */
/* Garante que o tilt seja aplicado imediatamente ao carregar */
.tilt-container {
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1);
    transition: transform 0.3s ease-out;
    will-change: transform;
    height: 100%;
    width: 100%;
}


/* Parallax layers para animações suaves */
.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translateZ(20px) translateX(-50%) translateY(-51%);
	overflow: visible;
}
.parallax-layer .layer-2 {
    transform: translateZ(100px) translateX(-50%) translateY(-50%);
}

.parallax-layer .layer-3 {
    transform: translateZ(100px) translateX(-50%) translateY(-50%);
}
.parallax-layer .text {
    transform: translateZ(200px) translateX(-50%) translateY(-50%);
}

/* ===========================================
   ANIMATED BOX STYLES
   =========================================== */
   .animated-box {
    position: absolute;
    top: 80%;
    left: 80%;
    background: #28272C;
    color: #ffffff;
    padding: 10px;
    display: flex;
    align-items: center;

	opacity: 0;
	gap: 10px;
    animation: slideUpDown 20s infinite ease-in-out;
    z-index: 10;
	border-radius: 0px;
	white-space: nowrap;
}

.multiplier-text {
	font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 300;
    white-space: nowrap;
}

.multiplier-number {
    font-size: 2rem;
	font-family: 'PP Editorial New', sans-serif;
}
.animated-box-2 {
    top: 20%;
    left: 20%;

    animation: slideUpDown 20s infinite ;
    animation-delay: 10s; /* Atraso de 5 segundos para aparecer após a primeira */
}

/* Animação de transição para ambas as caixas */
@keyframes slideUpDown {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }
    1% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }
    1.5% {
        opacity: 1;
        transform: translateX(-50%) scale(1.0);
    }

    46% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    49% {
        opacity: 0;
        transform: translateX(-50%) scale(1);
    }
    
}

/* Removed old .new-image-container definition */



.seccao {
  position: relative; /* para que o SVG absolute seja relativo a esta secção */
  overflow-y: hidden;   /* corta tudo que sai da secção */
  	 max-width: 1700px;   /* não cresce mais que isto */
     width: 100%;         /* ocupa todo o espaço até o max-width */
     padding-left: 100px;   /* valor fixo, não vw */
     padding-right: 100px;  /* valor fixo, não vw */
     box-sizing: border-box;
	 margin: 0 auto;
}







.sticky-split-section { width: 100%; display: block;  padding-bottom: 100px; overflow: visible;position: relative; box-sizing: border-box;
background-color: #FFFFFF;
  background-image: radial-gradient(rgba(121, 120, 120, 0.171) 2px, transparent 0);
  background-size: 30px 30px;
  background-position: -5px -5px;
  background-attachment: fixed;

}




.sticky-split-container { display: grid; grid-template-columns: 1fr 1.7fr; gap: 100px; max-width: 1700px; margin: 0 auto; padding: var(--pad)   ;z-index: 1;

    width: 100%;         /* ocupa todo o espaço até o max-width */
    margin-left: auto;    /* centraliza */
    margin-right: auto;   /* centraliza */
    padding-left: 100px;   /* valor fixo, não vw */
    padding-right: 100px;  /* valor fixo, não vw */
    box-sizing: border-box;
}
.sticky-left { position: sticky; top: 24px; align-self: start; height: fit-content;z-index: 1}

@media (max-width: 900px) {
    .sticky-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sticky-left { position: relative; }
}

.sticky-split-section .ourexp{
	max-width: 1700px;   /* não cresce mais que isto */
    width: 100%;         /* ocupa todo o espaço até o max-width */
    margin-left: auto;    /* centraliza */
    margin-right: auto;   /* centraliza */
    padding-left: 100px;   /* valor fixo, não vw */
    padding-right: 100px;  /* valor fixo, não vw */
    box-sizing: border-box;
}


.eyebrow {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #0d5c49;
    padding-top: 50px;

    text-transform: uppercase; 
	max-width: 1700px;   /* não cresce mais que isto */
    width: 100%;         /* ocupa todo o espaço até o max-width */
    margin-left: auto;    /* centraliza */
    margin-right: auto;   /* centraliza */
    padding-left: 100px;   /* valor fixo, não vw */
    padding-right: 100px;  /* valor fixo, não vw */
    box-sizing: border-box;
	z-index: 1;
}
	
.left-title {
    font-family: 'PP Editorial New';
    font-size: clamp(40px, 5vw, 100px);
    line-height: .9;
    margin-top: 40px;
    max-width: 600px;
	font-weight: 400;
	letter-spacing: -0.1rem;
}

.sticky-left .main-button {
  padding-bottom: 50px;
}





.scroll-right { display: flex; flex-direction: column; gap: 200px; padding-top: 40px;}
.exp-item {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 16px;
    position: relative;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #000000;
    margin-bottom: 20px;
    width: 85%;
    margin-left: auto;
    min-height: 500px;
    border-radius: 10px;
}

@media (max-width: 900px) {
    .exp-item {
        width: 100%;
        margin-left: 0;
    }
    .scroll-right {
        gap: 50px;
    }
    .sticky-split-section {
        padding-bottom: 50px;
    }
    .exp-list {
        width: 85%;
    }
}

.exp-number {
    font-size: clamp(120px, 12vw, 200px);
    line-height: 0.9;
    font-weight: 400;
    font-family: 'PP Editorial New';
    letter-spacing: -0.1rem;
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #000;
}

.exp-title { font-size: clamp(40px, 4vw, 60px); font-weight: 400; margin: 0 0 8px 0;font-family: 'PP Editorial New',serif; line-height: .9; letter-spacing: -0.1rem;}
.exp-desc {
	margin: 0 0 12px 0;
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	padding-top: 20px;
	line-height: 1.1;
	padding-bottom: 50px;
}
.exp-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 35px;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 300;
  line-height: 1.1;
}

.exp-list li {
  display: flex;
  align-items: center;
  font-size: clamp(14px, 1.5vw, 18px);
  gap: 10px; /* espaço entre o ícone e o texto */
}

.check-icon {
  width: 20px;
  height: 20px;
  fill: #0d5c49; /* cor do tick */
  flex-shrink: 0;
   vertical-align: middle; /* reforço caso o flex não funcione */
}
.check-icon path {
  transform: scale(1);
  transform-origin: center;
}


@media (min-width: 901px) { .sticky-split-section { scroll-margin-top: 80px; } }





.recent-projects {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
      justify-content: center;
	  	padding-bottom: 150px;
      padding-top: 50px;
}

/* content-left agora em cima */
.content-left {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
    margin-bottom: 100px;
	max-width: 1700px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 100px;
    padding-right: 100px;
    box-sizing: border-box;

}

.content-left .section-h2 {
    grid-column: 1 / -1;
}

.content-left p {
    font-size: clamp(40px, 5vw, 65px);
    font-family: 'PP Editorial New';
    font-weight: 400;
	letter-spacing: -0.1rem;
	line-height: 0.9;
    max-width: 900px;
}

.content-left .main-button {
	justify-self: end;
    align-self: end;
    margin-bottom: 10px;
}





/* slider ocupa toda a largura */
.slide-container{
  max-width: 2500px;
  width: 100%;
  padding: 60px 16px 80px; /*ATENCAO*/
  margin: 0 auto;
}
.slide-content{
  margin: 0 auto; /* centra o conteúdo */
  width: 100%;
  overflow: hidden;
    height: auto; /* garante que só cresce conforme as cartas */
    max-height: 800px;

}
.card{
  max-width: 350px;
  height: 400px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
/* Texto no topo */
.card .card-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;

}

.card .card-content .name {
    flex: 1;
    margin-right: 25px;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 300;
    min-height: calc(14px * 1.1 * 2); /* reserva sempre espaço para 2 linhas */
}

.card .card-content .description {
   flex-shrink: 0;
   color: #000;
}

/* Imagem em baixo */
.card .image-content {
    width: 350px;
    height: 400px;   /* altura uniforme */
	object-fit: cover;
	justify-content: center;
    align-items: center;
	

}

.card .card-image .card-img{
    width: 350px;
    height: 400px;
    object-fit: cover;       /* corta sem distorcer */
    object-position: center;
}

:root {
--swiper-navigation-size: 24px !important;
}

.card-wrapper {
  -webkit-transition-timing-function:linear!important; 
  -o-transition-timing-function:linear!important;
  transition-timing-function:linear!important; 
}



#faq {
	
	padding-top: 50px; 
	padding-bottom: 100px;
	max-width: 1700px;   /* não cresce mais que isto */
    width: 100%;         /* ocupa todo o espaço até o max-width */
    margin-left: auto;    /* centraliza */
    margin-right: auto;   /* centraliza */
    padding-left: 100px;   /* valor fixo, não vw */
    padding-right: 100px;  /* valor fixo, não vw */
    box-sizing: border-box;
	background-color: #FFFFFF;
}

.faq-main {
  display:grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items:start;
 
}

.faq-main .left {
  padding-top: 40px;
	width: 90%;
	font-family: 'PP Editorial New';
	font-weight: 400;
	font-size: 80px;
	margin: 0;
	letter-spacing: -0.1rem;
	line-height: 0.9;

}


.faq-col-content{
  display:block;
}

.topic{
  padding-top:0px;
  padding-bottom:0px;
  border-bottom:solid 1px #ebebeb;
  	margin: 0;
}
.open{
  cursor:pointer;
  display:flex;
  align-items:center;
  padding:0px;
  gap: 10px;
}
.expanded{
  transition: all .6s ease-in-out;
}
.question{
  padding-top:40px;
  padding-right: 40px;
  padding-bottom:20px;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight:500;
  flex: 1 1 auto;
  margin: 0;
  	font-family: 'Roboto', sans-serif;

	font-style: normal;
	font-weight: 300;
}
.answer{
  font-size: clamp(14px, 1.3vw, 16px);
  line-height:1.1;
  display:none;
  margin-bottom:30px;
  text-align:justify;
  padding-left:20px;
  padding-right:20px;
  	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 300;
  
}
.faq-t{
  display:inline-flex;
  width:18px;
  height:18px;
  flex:0 0 18px;
  transition: transform .4s ease-in-out;
  order: 2;
  margin-left: auto;
  color: #000;
  transform: rotate(90deg);
}
.faq-t svg{width:100%;height:100%;fill:currentColor;}

.faq-o{ transform: rotate(0deg);
	  transition: transform .4s ease;

}

@media only screen and (max-width: 480px) {
  .faq-layout{ grid-template-columns: 1fr; gap:16px; }
  .question{
  padding-right: 0px;
}
  main{
  padding:10px;
}
  .answer{
  margin-bottom:30px;
  padding-left:0px;
  padding-right:0px;
}
}

/* Services Scroll Section */
.services-scroll {
	background: #f5f5f5;
	overflow: hidden;
}

.services-scroll-container {
	position: relative;
	padding: 50px 0 100px !important;
}

.services-scroll-header {
	max-width: 1700px;
	margin: 0 auto;
	padding: 0 100px;
	margin-bottom: 60px;
	box-sizing: border-box;
}

.services-scroll-header .section-h2 {
	margin-bottom: 40px;
}

.services-scroll-header p {
	font-size: clamp(40px, 5.2vw, 80px);
	font-family: 'PP Editorial New';
	font-weight: 400;
	letter-spacing: -0.1rem;
	line-height: 0.9;
	max-width: 900px;
	margin: 0;
	color: #000;
}

.services-scroll-header p em {
	font-style: italic;
}

.services-scroll-wrapper {
	overflow: visible;
	width: 100%;
}

.services-scroll-track {
	display: flex;
	gap: 30px;
	padding-left: calc((100vw - 1700px) / 2 + 100px);
	padding-right: 100px;
	width: max-content;
}

.service-card {
	width: 800px;
	min-width: 800px;
	height: 550px;
	background: #fff;
	border: 1px solid #000;
	border-radius: 10px;
	box-sizing: border-box;
	flex-shrink: 0;
	padding: 40px;
	position: relative;
	overflow: hidden;
}

.service-card .card-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.service-card .card-label {
	display: block;
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	font-weight: 300;
	color: #000;
	text-transform: uppercase;
	margin-bottom: 20px;
	position: relative;
	z-index: 3;
}

.service-card .card-title {
	font-family: 'PP Editorial New', sans-serif;
	font-size: 90px;
	font-weight: 400;
	line-height: 0.9;
	letter-spacing: -0.03em;
	margin: 0;
	color: #000;
	position: relative;
	z-index: 3;
}

.service-card .card-title em {
	font-style: italic;
}

.service-card .card-left {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 45%;
	z-index: 3;
}

.service-card .card-text p {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.4;
	color: #000;
	margin: 0 0 12px 0;
}

.service-card .card-text p:last-child {
	margin-bottom: 0;
}

.service-card .card-right {
	position: absolute;
	top: 0;
	right: 0;
	width: 55%;
	height: 100%;
	z-index: 1;
}

.service-card .card-right img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: right center;
}

/* Card Type 2 - Título em baixo, texto em cima */
.service-card.card-type-2 .card-left {
	position: absolute;
	left: 0;
	bottom: auto;
	width: 40%;
}

.service-card.card-type-2 .card-title {
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 100%;
  text-align: end;
}

.service-card.card-type-2 .card-right {
	top: 0;
	right: 0;
	width: 60%;
	height: 100%;
}

.service-card.card-type-2 .card-right img {
	object-position: center bottom;
}

/* Card Type 3 - Certificação com caixas em baixo */
.service-card.card-type-3 .card-wrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
}

.service-card.card-type-3 .card-bg-image {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	height: 95%;
	width: auto;
	object-fit: contain;
	z-index: 0;
}

.service-card.card-type-3 .card-main {
	display: flex;
	flex-direction: column;
	position: relative;
	margin-bottom: 20px;
	z-index: 1;
}

.service-card.card-type-3 .card-label {
	z-index: 1;
}


.service-card.card-type-3 .card-top {
	flex: 1;
	display: grid;
	grid-template-columns: 30% 65%;
	column-gap: 5%;
}

.service-card.card-type-3 .card-left {
	position: static;
	width: auto;
	display: flex;
	align-items: flex-start;
}

.service-card.card-type-3 .card-right {
	position: static;
	width: auto;
	height: auto;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
}

.service-card.card-type-3 .card-title {
	position: static;
	max-width: 100%;
	font-size: 90px;
	text-align: right;
}

.service-card.card-type-3 .card-boxes {
	display: flex;
	gap: 15px;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.service-card.card-type-3 .card-box {
	width: 150px;
	height: 150px;
	background-color: #fff;
	border: 1px solid #000;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-sizing: border-box;
}

.service-card.card-type-3 .card-box .box-number {
	display: block;
	font-family: 'PP Editorial New', sans-serif;
	font-size: 40px;
	font-weight: 400;
	color: #000;
	line-height: 1;
	margin-bottom: 8px;
}

.service-card.card-type-3 .card-box p {
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.3;
	color: #000;
	margin: 0;
}

/* Card Type 4 - Auditoria: imagem esquerda, texto direita, título sobrepõe */

.service-card.card-type-4 .card-wrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.service-card.card-type-4 .card-main {
	flex: 1;
	position: relative;
	display: grid;
	grid-template-columns: 50% 45%;
	column-gap: 5%;
}

.service-card.card-type-4 .card-left {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
}

.service-card.card-type-4 .card-left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
}

.service-card.card-type-4 .card-right {
	position: relative;
	width: 100%;
	height: auto;
	z-index: 2;
}

.service-card.card-type-4 .card-right .card-text {
	text-align: right;
}

.service-card.card-type-4 .card-right .card-text p {
	font-size: 14px;
}

.service-card.card-type-4 .card-title {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 3;
	font-size: 90px;
	text-align: right;
	max-width: 75%;
}

/* Card Type 5 - Commissioning: 2 colunas */
.service-card.card-type-5 .card-wrapper {
	display: grid;
	grid-template-rows: auto 1fr;
	height: 100%;
}

.service-card.card-type-5 .card-row-1 {
	margin-bottom: 20px;
}

.service-card.card-type-5 .card-row-2 {
	display: flex;
	gap: 10%;
	min-height: 0;
	height: 100%;
	align-items: stretch;
}

/* Lado esquerdo */
.service-card.card-type-5 .card-left {
	width: 50%;
	height: 100%;
	flex-shrink: 0;
	display: grid;
	place-content: center;
	gap: 20px;
}

.service-card.card-type-5 .card-left .card-title {
	font-size: 60px;
	line-height: 0.9;
	text-align: center;
}

.service-card.card-type-5 .card-left .card-text {
	text-align: center;
}

.service-card.card-type-5 .card-left .card-text p {
	font-size: 14px;
	line-height: 1.3;
}

/* Lado direito */
.service-card.card-type-5 .card-right {
	width: 47%;
	height: 100%;
	flex-shrink: 0;
	background-image: url('../images/Services5.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	box-sizing: border-box;
  gap: 50px;
}

.service-card.card-type-5 .card-right .card-title {
	font-size: 40px;
	line-height: 0.95;
	color: #fff;
}

.service-card.card-type-5 .card-numbers {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	width: 70%;
}

.service-card.card-type-5 .card-number {
	position: static;
	line-height: 1.3;
	letter-spacing: normal;
}

.service-card.card-type-5 .card-number span {
	font-family: 'PP Editorial New', serif;
	font-size: 20px;
	font-weight: 400;
	color: #fff;
	display: block;
	margin-bottom: 5px;
}

.service-card.card-type-5 .card-number p {
	font-family: 'Roboto', sans-serif;
	font-size: 11px;
	font-weight: 300;
	color: #fff;
	margin: 0;
	line-height: 1.3;
}

/*Contact Marquee*/
.contact-marquee {
	background-color: #FFFFFF;
	overflow: hidden;
	padding: 100px 0;
	position: relative;
	z-index: 1;
	position: relative;
	z-index: 6;
}

.marquee-link {
	display: block;
	text-decoration: none;
	color: #000;
	cursor: pointer;
}

.marquee-track {
	display: flex;
	width: fit-content;
	animation: marquee 20s linear infinite;
}

.marquee-link:hover .marquee-track {
	animation-play-state: paused;
}

.marquee-text {
	font-family: 'PP Editorial New';
	font-size: clamp(60px, 8vw, 120px);
	font-weight: 400;
	white-space: nowrap;
	padding-right: 50px;
	letter-spacing: -0.02em;
	line-height: 0.9;
}

.marquee-text em {
	font-style: italic;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@media only screen and (max-width: 768px){
  .footer-top{ grid-template-columns: 1fr; }
  .footer-inner{ padding-left:24px; padding-right:24px; }
  .footer-links,
  .footer-social {
    justify-self: left;
  }
}


/* Footer */
.site-footer{
	 position: sticky;
	 z-index: 0;
  background:#121212;
  color:#ffffff;
  font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	  bottom: 0;
  left: 0;
  
  
}
.site-footer a{ color:#ffffff; text-decoration:none; }
.site-footer a:hover{ text-decoration:underline; }

.footer-inner{
  max-width:1700px;
  padding-left:100px;
  padding-right:100px;
  padding-top:20px;
  margin:0 auto;
  box-sizing:border-box;
}

.footer-top{
  display:grid;
  grid-template-columns: 3fr 1fr 1fr;
  gap:40px;
  padding-top:48px;
  padding-bottom:32px;
}
.footer-col h3{
  margin:0 0 12px 0;
  letter-spacing:.06em;
  opacity:1;
  font-family: 'Roboto', sans-serif;
	font-size: clamp(10px, 1.2vw, 16px);
	font-weight: 300;
}
.footer-col ul{ list-style:none; padding:0; margin:0; }
.footer-col li{ margin:8px 0; }
.footer-intro p{
  font-family: 'PP Editorial New';
  font-size: clamp(50px, 5vw, 80px);
  line-height:0.9;
  margin:0;
  max-width: 600px;
  letter-spacing: -0.1rem;
}

.footer-links,
.footer-social{
  justify-self: right; /* centra horizontalmente a coluna no espaço da grid */
	text-transform: uppercase;
  font-size: 14px;
  letter-spacing:2px
}

.footer-sep{
  border:0;
  border-top:1px solid rgb(255, 255, 255);
  margin:24px 0;
}

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:80px;
  padding-top:40px;
  gap: 10px;
}
.brand{ display:flex; align-items:center; gap:14px; }
.brand svg{ height: clamp(35px, 4vw, 60px); width:auto; display:block; }
.brand span{ display:none; }

/* Prevent logo CSS from leaking to other SVGs */
.edigreen-logo .cls-1{ fill:#a51e22; }
.edigreen-logo .cls-2{ fill:#0f5c49; }
.edigreen-logo .cls-3{ fill:#ffffff; }


@media only screen and (max-width: 768px){
  .footer-top{ grid-template-columns: 1fr; }
  .footer-inner{ padding-left:24px; padding-right:24px; }
  .footer-links,
  .footer-social {
    justify-self: left;
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
	.content-right {
		width: calc(2 * 250px + 1 * 20px + 30px); /* Buffer for tablets */
	}

	.card {
		flex: 0 0 250px;
		min-width: 250px;
	}
}

@media (max-width: 768px) {
	.content-right {
		width: calc(200px + 20px); /* Buffer for mobile */
	}

	.card {
		flex: 0 0 200px;
		min-width: 200px;
		max-width: 200px;
		height: 280px;
	}

	.card .card-content .name,
	.card .card-content .description {
		font-size: 12px;
	}

	.card .card-content {
		margin-bottom: 10px;
	}

	.card .image-content {
		width: 200px;
		height: 180px;
	}

	.card .card-image .card-img {
		width: 200px;
		height: 180px;
	}

	.card img {
		height: 180px;
	}
}

/* ABOUT PAGE STYLES */

/* ===== ABOUT HERO SECTION ===== */

body.about-page {
	background-color: #000;
}


.about-page .header .left h1 {
	color: #fff;
}

/* Hamburger cor dinâmica no about-page */
.about-page .hamburger span {
	background: #000;
}

.about-page .nav-wrapper.nav-light .hamburger span {
	background: #fff;
}

.about-page:has(#check:checked) .left h1 {
	color: #000;
}

.about-page .header {
  background-color: #000;
}



.about-hero {
	background-color: #000;
	position: relative;
	overflow: hidden;
}
.about-hero .container {
	background-color: #000 !important;
}

.about-hero-content {
  justify-content: center;
	align-items: center;
	gap: 40px;
	max-width: 1700px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 100px;
    padding-right: 100px;
    box-sizing: border-box;
	text-align: center;
}

.about-label {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(10px, 1.2vw, 16px);
  font-weight: 300;
  color: #ffffff;
  padding-top: clamp(60px, 10vw, 150px);
  padding-bottom: clamp(20px, 4vw, 70px);
  text-transform: uppercase;
  position: relative;
}

.about-hero .main-title {
	color: white;
    font-family: 'PP Editorial New';
    font-size: clamp(40px, 8vw, 110px);
    font-style: normal;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.1rem;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero .main-title .line {
    display: block;
    opacity: 0; /* Hidden initially for animation */
}


.about-hero .main-description {
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(16px, 1.2vw + 0.5rem, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 1.1;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0; /* Hidden initially for animation */
}

.abstract-graphic {
    width: 100%;
    height: 700px;
    position: relative;
    margin-top: 5px;
    margin-bottom: 10px;
}

/* SVG Customization Styles */
.abstract-graphic svg {
    width: 110%;
    height: 110%;
    max-width: 990px; /* Controla o tamanho máximo do SVG */
    max-height: 660px; /* Controla a altura máxima do SVG */
    margin: 0 auto;
    display: block;
}
.abstract-graphic svg path,
.abstract-graphic svg line,
.abstract-graphic svg circle {
    fill: none;
    stroke: #fff;
    stroke-width: 0.8;
}

/* Circles */
.c0 { 
    stroke-dasharray: 1000; 
    stroke-dashoffset: 1000; 
    animation: drawLine 2s ease forwards, fadeOut 1s ease-in-out forwards;
    animation-delay: 0s, 6s;
}
.c1 { 
    stroke-dasharray: 1000; 
    stroke-dashoffset: 1000; 
    animation: drawLine 4s ease forwards, fadeOut 1s ease-in-out forwards;
    animation-delay: 0.3s, 6s;
}

/* Lines */
.l0 { 
    stroke-dasharray: 130; 
    stroke-dashoffset: 130; 
    animation: drawLine 2.55s ease forwards, fadeOut 1s ease-in-out forwards;
    animation-delay: 0.6s,6s;
}
.l1 { 
    stroke-dasharray: 127; 
    stroke-dashoffset: 127; 
    animation: drawLine 2s ease forwards, fadeOut 1s ease-in-out forwards;
    animation-delay: 0.9s,6s;
}
.l2 { 
    stroke-dasharray: 230; 
    stroke-dashoffset: 230; 
    animation: drawLine 2s ease forwards, fadeOut 1s ease-in-out forwards;
    animation-delay: 1.2s, 6s;
}
.l4 { 
    stroke-dasharray: 265; 
    stroke-dashoffset: 265; 
    animation: drawLine 2s ease forwards, fadeOut 1s ease-in-out forwards;
    animation-delay: 1.5s, 6s;
}

/* Paths */
.p0 { 
    stroke-dasharray: 1000; 
    stroke-dashoffset: 1000; 
    animation: drawLine 2s ease forwards, fadeOut 1s ease-in-out forwards;
    animation-delay: 1.8s, 6s;
}
.p1 { 
    stroke-dasharray: 1000; 
    stroke-dashoffset: 1000; 
    animation: drawLine 2s ease forwards, fadeOut 1s ease-in-out forwards;
    animation-delay: 2.1s, 6s;
}
.p2 { 
    stroke-dasharray: 1000; 
    stroke-dashoffset: 1000; 
    animation: drawLine 2s ease forwards, fadeOut 1s ease-in-out forwards;
    animation-delay: 2.4s, 6s;
}
.p3 { 
    stroke-dasharray: 1000; 
    stroke-dashoffset: 1000; 
    animation: drawLine 2s ease forwards, fadeOut 1s ease-in-out forwards;
    animation-delay: 2.7s, 6s;
}
.p4 { 
    stroke-dasharray: 1000; 
    stroke-dashoffset: 1000; 
    animation: drawLine 2s ease forwards, fadeOut 1s ease-in-out forwards;
    animation-delay: 3.0s, 6s;
}
.p5 { 
    stroke-dasharray: 1000; 
    stroke-dashoffset: 1000; 
    animation: drawLine 2s ease forwards, fadeOut 1s ease-in-out forwards;
    animation-delay: 3.3s, 6s;
}

.p6 { 
    stroke-dasharray: 1000; 
    stroke-dashoffset: 1000; 
    animation: drawLine 2s ease forwards, fillWhite 0.5s ease-in-out forwards;
    animation-delay: 4.5s,  6.5s;
    stroke-width: 1.5; 
}

.p7 { 
    stroke-dasharray: 1000; 
    stroke-dashoffset: 1000; 
    animation: drawLine 2s ease forwards, fillWhite 0.5s ease-in-out forwards;
    animation-delay: 4.8s, 6.5s;
    stroke-width: 1.5; 
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.p6 path.fill{
    fill: #ffffff;
    animation: fill 4s ease-in-out infinite;
}

@keyframes fill {
    30%,
    55% { fill: #ffffff; }

}

@keyframes fadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}


@keyframes fillWhite {
    0% {
        fill: transparent;
    }
    100% {
        fill: #ffffff;
    }
}


/* Responsive Design for About Hero */
@media (max-width: 768px) {
	.about-hero .abstract-graphic {
		height: 250px;
	}
}

@media (max-width: 480px) {
	.about-hero .abstract-graphic {
		height: 200px;
	}
}

.about-main {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 50px 100px 50px;
    position: relative;

}


.about-main-right {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 30px;
	width: 100%;
}

.about-main-right h2 {
	color: #000;
	font-family: 'PP Editorial New';
	font-size: clamp(40px, 5.5vw, 80px);
	font-style: normal;
	font-weight: 400;
	line-height: 0.9;
	letter-spacing: -0.1rem;
	text-align: center;
	margin: 0;
}

.about-main-right h2 .highlight {
	text-decoration: none;
}

.about-main-right p {
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 1.1;
	text-align: center;
	margin: 0;
	max-width: 850px;
}



/* Cards Section */
.cards-section {
  max-width: 1700px;   /* não cresce mais que isto */
    width: 100%;         /* ocupa todo o espaço até o max-width */
    margin-left: auto;    /* centraliza */
    margin-right: auto;   /* centraliza */
    padding-left:100px;
    padding-right:100px;
    padding-bottom: 100px;
}

.cards-section .container {
  max-width: 1350px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

/* About2 Cards Grid */
.about2-cards-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 380px);
  grid-template-rows: 250px 510px;
  gap: 20px;
  margin: 0 auto;
  justify-content: center;
  max-width: 1100px;
}

.about2-card {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about2-card-content {
  text-align: left;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 60% 40%;
  grid-template-rows: 1fr;
  position: relative;
  color: #000000;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
}

/* Special layout for map card - header takes 30%, map takes 70% */
.card-map .about2-card-content {
  grid-template-columns: 30% 70%;
}

/* About2 Card Positioning */
.about2-cards-grid .card-text {
  grid-column: 1;
  grid-row: 1;
  background: #fff;
  border: 1px solid #000000;
  border-radius: 10px;
}

.card-map {
  grid-column: 1;
  grid-row: 2;
  background: #fff;
  border: 1px solid #000000;
  color: #000;
  border-radius: 10px;

}

/* Card Layout - Generic styles */
.cards-section .card-number{
  border: 1px solid #000000;
  background: #fff;
  border-radius: 10px;

}

.card-currency {
  grid-column: 2;
  grid-row: 1;
  background: #000;
  color: #fff;
  height: 380px;
  align-self: start;
  border-radius: 10px;

}

.card-currency .small-text {
  color: #fff;
}

.card-currency .big-number {
  color: #fff;
}

.cards-section .card-number {
  grid-column: 2;
  grid-row: 2;
  height: 380px;
  align-self: end;
}

.card-number .about2-card-content,
.card-currency .about2-card-content {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.card-number .number-group {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 10px;
  padding-right: 10px;
  gap: 8px;
}

.card-number .number-group .card-label {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  margin: 0 0 8px 0;
  letter-spacing: 0rem;
}

.card-currency .number-group {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 10px;
  gap: 8px;
}

.card-currency .number-group .card-label {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  margin: 0 0 8px 0;
  color: #fff;
}

.card-currency .big-number {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 10px;
  padding-right: 10px;
}

.card-number .small-text,
.card-currency .small-text {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin: 0;
  padding-bottom: 10px;
  padding-left: 10px;
}

.cards-section .card-number .big-number {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 10px;
  padding-right: 10px;
}

/* Generic Card Styles */
.big-number {
  font-family: 'PP Editorial New';
  font-size: clamp(65px, 11vw, 150px);
  font-weight: 400;
  line-height: 1;
}

.card-map .big-number {
  color: #000;
}

.about2-card-content p {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: flex-start;
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0rem;
  padding-left: 10px;
  padding-top: 10px;

}

.card-text .about2-card-content {
  grid-template-columns: 60% 40%;
  grid-template-areas: "texto numero";
}



.card-text .about2-card-content .number-group {
  grid-area: numero;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-right: 10px;
  padding-top: 10px;
  gap: 0;
}

.card-text .number-group .big-number {
  line-height: 1;
}

.card-text .big-number {
  font-size: clamp(75px, 14vw, 200px);
}

.card-text .number-group .card-label2 {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 300;
  
}

.card-map .small-text {
  color: #000;
}

/* About Content Section */
.about-content-section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 50px;
}

.about-content-container {
  display: grid;
  grid-template-columns: 60% 35%;
  gap: 5%;
  align-items: center;
}

.about-content-left {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  margin-right: -200px;
}

.about-content-left h2 {
  color: #000000;
  font-family: 'PP Editorial New';
  font-size: clamp(50px, 9vw, 130px);
  font-style: normal;
  font-weight: 400;
  line-height: .9;
  letter-spacing: -0.1rem;
  margin: 0;
}

.about-content-left h2 em {
  font-style: italic;
}

.about-content-right {
  display: flex;
  flex-direction: column;
  gap: 100px;
  align-items: center;
}

.about-content-right p {
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.1;
  margin: 0;
  text-align: left;
  width: 100%;
}

.about-content-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .about-content-container {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .about-content-left {
    margin-right: 0;
    z-index: 2;
    position: relative;
    margin-bottom: -60px;
    padding: 0 20px;
  }

  .about-content-right {
    flex-direction: column-reverse;
    gap: 20px;
    position: relative;
    z-index: 1;
    width: 100%;
  }

  .about-content-image {
    width: 100%;
    height: 280px;
    z-index: 1;
  }

  .about-content-right p {
    font-size: 16px;
    padding: 0 20px;
  }
}

/* Map Styles */
.map-header {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 10px;
  font-size: 50px; 
  padding-left: 10px;
}

.map-label {
  font-size: 14px;
  color: #000;
  margin-top: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
  text-align: left;
}

.map-container {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  overflow: hidden;
}

.portugal-map,
.map-dots {
  width: 100%;
}

.map-dots svg {
  width: 100%;
  height: auto;
  display: block;
}

.portugal-svg {
  width: 100%;
  height: auto;
  max-width: 300px;
  max-height: 200px;
  object-fit: contain;
}

.map-point:hover {
  fill: orange;
}





.mission {
	width: 100%;
	padding: 100px 0;
	box-sizing: border-box;
	background-color: #F0F0F0;
	display: flex;
	flex-direction: column;
}

.mission-container {
	max-width: 1700px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0 100px;
	box-sizing: border-box;
}

.mission-right {
	width: 38%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.mission-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}


.mission-content {
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	gap: 60px;
}

.mission-left {
	width: 55%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.mission-left .section-h2 {
	width: 100%;
	margin-bottom: 0;
}

.mission-content .mission-left h4 {
	color: #000;
	font-family: 'PP Editorial New';
	font-size: clamp(40px, 5.5vw, 80px);
	font-style: normal;
	font-weight: 400;
  line-height: 1;
  letter-spacing: -0.1rem;
  padding-top: 50px;
}

.mission-content .mission-left p {
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 1.1;
}

.our-values {
	max-width: 1350px;   /* não cresce mais que isto */
    width: 100%;         /* ocupa todo o espaço até o max-width */
    margin-left: auto;    /* centraliza */
    margin-right: auto;   /* centraliza */
    padding:100px;
    box-sizing: border-box;
	background-color: #FFFFFF;

}

.values {
	background: transparent;
	border: 1px solid #000;
	display: flex;
	flex-direction: column;
	padding-bottom: 100px;
	padding-top: 50px;
  gap: 20px;
  border-radius: 10px;
}

.values h4 {
	text-align: center;
	color: #000;
	font-family: 'Roboto';
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 120%; /* 19.2px */
	text-transform: uppercase;
}

.values h1 {
	color: #000;
	text-align: center;
	font-family: 'PP Editorial New';
	font-size: clamp(40px, 6vw, 80px);
	font-style: normal;
	font-weight: 300;
	line-height: 120%;
}

.values-content {
	display: flex;

	justify-content: space-around;
	align-items: center;
	margin-top: 50px;
}

.values-content-left,
.values-content-right {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.value-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 320px;
}

.value-card h2 {
	color: #000;
	font-family: 'PP Editorial New';
	font-size: 40px;
	font-style: normal;
	font-weight: 300;
	line-height: 120%; /* 28.8px */
}

.value-card p {
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
}

.value-card svg path {
	fill: #000;
}

/*animacao*/



/* Header Section */
body.services {
	background-color: #F0F0F0;
}
body.services .header {
  background-color: #F0F0F0;
}

.services-hero {
  background-color: #F0F0F0;
  padding-top: 160px; /* 80px + 80px para nav */
  padding-bottom: 80px;
  text-align: left;
  margin-bottom: 100px;
}

.services-hero .container {
  background-color: #F0F0F0;
  max-width: 1700px;   /* não cresce mais que isto */
    width: 100%;         /* ocupa todo o espaço até o max-width */
    margin-left: auto;    /* centraliza */
    margin-right: auto;   /* centraliza */
    padding-left:100px;
    padding-right:100px;

}
.main-title {
	color: #000;
	font-family: 'PP Editorial New';
	font-size: clamp(40px, 5.2vw, 80px);
	font-style: normal;
	font-weight: 400;
  line-height: 1;
  letter-spacing: -0.1rem;
  margin-bottom: 20px;
}

.subtitle {
  color: #000;
  font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 300;
	line-height: 1.1;
  margin-bottom: 60px;
}

.metrics-container {
  display: flex;
  justify-content: left;
  align-items: flex-end;
  gap: 40px;
  margin-top: 40px;
}

.metric-item {
  text-align: left;
  flex: 1;
}

.metric-number {
  font-family: 'PP Editorial New';
	font-size: 120px;
	font-style: normal;
	font-weight: 400;
  color: #000;
}

.metric-description {
  color: #000;
  font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
  margin: 0 auto;
}

.metric-divider {
  width: 1px;
  height: 200px;
  background-color: #000;
  display: block;
  flex-shrink: 0;
  align-self: flex-end;
}


/* Problems Section */
.problems-section {
  padding-top: 80px;
}

.problems-section .container {
  max-width: 1700px;   /* não cresce mais que isto */
  width: 100%;         /* ocupa todo o espaço até o max-width */
  margin-left: auto;    /* centraliza */
  margin-right: auto;   /* centraliza */
  padding-left:100px;
  padding-right:100px;
}


.problem-item {
  display: flex;
  align-items: stretch;
  gap: 30px;
  padding-bottom: 100px;
  padding-top: 20px;
  min-height: 80px;
  position: relative;
}

.problem-item:last-child {
  border-bottom: none;
}

.problem-number {
  color: #000;
	font-family: 'PP Editorial New';
	font-size: 200px;
	font-style: normal;
	font-weight: 400;
  letter-spacing: -0.1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  order: 2;
  flex-shrink: 0;
  min-width: 200px;
  margin-left: auto;
}

.problem-text {
  color: #000;
	font-family: 'PP Editorial New';
	font-size: 60px;
	font-style: normal;
	font-weight: 400;
  line-height: 1;
  letter-spacing: -0.1rem;
  flex: 1;
  order: 1;
  display: flex;
  align-items: flex-start;  max-width: 850px;
  
}


/* Companies Section */
.companies-section {
	border-top: 1px solid #2d2c2b;
	border-bottom: 1px solid #2d2c2b;
  max-width: 1500px;
  margin: 0 auto;
}

.companies-container {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0 auto;
      gap: 10px;
}

.companies-text {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 300;
	padding-bottom: 10px;
  padding-right: 5px;
	text-transform: uppercase;
	position: relative;
	color: #000;
	text-align: left;
  padding: 20px 0;
  white-space: nowrap; /* evita quebra dentro do texto */

}
.companies-slider {
  width: 100%;
  overflow: hidden;
  height: 80px;
  display: flex;
  align-items: center;
  position: relative;
}

.companies-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll 22s linear infinite;
}

.group {
  display: flex;
  align-items: center;
  gap: 0;
}

.slide {
  flex: 0 0 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  display: block;
  width: 50px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) contrast(4);
  opacity: 1;
  transition: opacity 0.3s ease, filter 0.3s ease;
}



/* Movimento contínuo de 0 até -33.333% (1/3 do track, porque temos 3 cópias) */
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.3333%); }
}


/* Solutions Section */
.solutions-section {
  background-color: #000000;

  padding: 80px 0;
}

.solutions-title {
  
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  font-family: 'PP Editorial New', sans-serif;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.1rem;

}

.solutions-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.solutions-divider {
  width: 100%;
  height: 1px;
  background-color: #000000;
  margin-bottom: 40px;
}

.solution-row {
  display: flex;
  align-items: center;
  gap: 60px;
}
.solution-label {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

.solution-text {
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
  flex: 1;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
}

/* ========= CONTACT SECTION ========= */

body.contacts {
  background-color: #fff;
}

body.contacts .header {
  background: transparent;
}

body.contacts .site-footer {
  position: relative;
  z-index: 1;
  background-color: #000000;
}


.contacts-main {
	padding-top: 160px; /* 80px + 80px para nav */
	min-height: 100vh;
	background-color: #fff;
	position: relative;
	z-index: 2;
	max-width: 1700px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 100px;
    padding-right: 100px;
    overflow: hidden;
}

.contacts-container {
	max-width: 1700px;
  position: relative;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 26% 74%;
	align-items: start;
	min-height: calc(100vh - 80px);
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: fit-content;
  position: relative;
  z-index: 3;
}

.contact-details {
	margin-top: 100px;
}

/* ========= LEFT SIDE - CONTACT INFO ========= */
.contact-info h3 {
	color: #000000;

	/* Heading/Desktop/H1 */
	font-family: 'PP Editorial New';
	font-size: clamp(52px, 6.77vw, 75px);
	font-style: normal;
	font-weight: 300;
	line-height: 90%; /* 67.5px */
  letter-spacing: -0.1rem;

}

.contact-description {
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 1.1;
}



.contact-item .contact-text p {
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
}


/* ========= RIGHT SIDE - IMAGE SPACE ========= */
.contact-image {
  position: absolute;
  top: 50%;
  left: 26%;
  width: 74%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.map-image {
  width: 100%;
  height: auto;
}

/* ========= CONTACT SECTIONS ========= */
.contact-details {
	display: flex;
	flex-direction: column;
	gap: 70px;
}

.contact-section {
	margin-bottom: 0;
}



.contact-item p {
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
}

/* ========= RESPONSIVE DESIGN ========= */
@media (max-width: 768px) {
	.contacts-container {
		grid-template-columns: 1fr;
		padding: 0 20px;
	}
	
	.contact-image {
		display: none;
	}

	.image-placeholder {
		height: 300px;
	}


	.contact-description {
		margin-bottom: 30px;
	}

	.contact-details {
		gap: 25px;
	}

	.contact-form {
		padding-left: 0;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.form-footer {
		flex-direction: column;
		gap: 20px;
		align-items: flex-start;
	}

	.main-button {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.contacts-main {
		padding: 50px 0;
	}

	.contacts-container {
		padding: 0 15px;
	}
	
	.image-placeholder {
		height: 250px;
	}


	.form-group input,
	.form-group textarea {
		padding: 12px 15px;
	}
}

@media (max-width: 768px) {
	.about-us,
	.our-expertise,
	.recent-projects,
	.faq,
	.about-hero,
	.about-main,
	.about-pricing,
	.mission,
	.our-values,
	.services-up,
	.services-bottom,
	.portfolio-main,
	.portfolio-gallery,
	.utility,#faq {
		padding: 40px;
	}
	.header{
		padding: 15px 30px;
	}

	.navPanel .nav-icon {
		left: 0;
		top: 110px;
	}

	.right .nav-socials ul {
		top: 95%;
	}

	header .right {
		justify-content: center;
		align-items: center;
	}

	.hero {
		padding: 40px 0;
	}

	.hero-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero2-section {
		padding: 60px 0;
	}

	.hero2-section h2 {
		font-size: 36px;
	}

	.about-us p {
		font-size: 16px;
		position: relative;
	}

	.about-us button {
		bottom: -25px;
	}

	.about-description {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.our-expertise p {
		font-size: 30px;
	}

	.expertise-right {
		flex-direction: column-reverse;
	}

	.our-expertise .left img {
		width: 100%;
	}

	.recent-projects .content {
		flex-direction: column;
	}

	.recent-projects .content-left {
		width: 100%;
		flex-direction: column-reverse;
		padding-top: 15px;
	}

	.card p {
		font-size: 14px;
	}

	.faq-main .left {
		width: 100%;
	}

	.faq-main {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.faq .faq-main .left p {
		font-size: 40px;
		text-align: center;
	}

	.contact .heading {
		font-size: 35px;
		padding-top: 50px;
	}

	.contact .contact-details {
		padding: 0 20px;
		margin-top: 20px;
	}

	footer {
		flex-direction: column;
		gap: 10px;
	}

	footer .left {
		justify-content: center;
		align-items: center;
	}

	.navPanel .right ul li {
		font-size: 30px;
	}

	.navPanel {
		flex-direction: column-reverse;
	}

	/* about section responsive styles */


	.about-main-left {
		width: 0;
		height: 0;
	}

	.about-main {
		gap: 0;
	}

	.about-pricing h3 {
		font-size: 30px;
	}

	.about-pricing {
		justify-content: unset;
		align-items: unset;
	}

	.about-pricing .pricing-cards {
		flex-direction: column;
		align-items: center;
	}

	.mission-left {
		width: 100%;
		gap: 15px;
	}
	
	.mission-right {
		width: 100%;
		margin-top: 30px;
	}
	
	.mission-image {
		width: clamp(17.5rem, 25vw + 5rem, 31.25rem); /* 280px - 500px */
		height: clamp(21rem, 30vw + 6rem, 37.5rem); /* 336px - 600px */
		max-width: 100%;
	}

	.mission-content .mission-left h4 {
		font-size: 40px;
	}

	.values-content {
		flex-direction: column;
	}

	/* Services page  */

	.services-up-bottom {
		flex-direction: column;
		gap: 20px;
	}

	.services-bottom .border {
		flex-direction: column;
	}

	.services-up-bottom h2 {
		font-size: 40px;
	}

	.services-up-top .buttons {
		gap: 10px;
		/* padding: 0 10px; */
	}

	.services-up-top .buttons .button {
		font-size: 10px;
		padding: 6px 12px;
	}

	.portfolio-main .main-content .main-content-text {
		flex-direction: column;
	}

	.portfolio-main .main-content .main-content-text button {
		padding: 10px 0;
	}

	.utility h2 {
		padding: 0;
	}
}
@media (max-width: 768px) {
    .container {
        padding-left: 0;
        padding-right: 0;
    }

    /* Reduzir paddings das seções para 20px em mobile */
    .hero,
    .hero2-section,
    .border-line,
    .eyebrow,
    .nav-bottom,
    #faq,
    .contact,
    .footer-inner,
    .about-hero,
    .about-main,
    .about-pricing,
    .mission,
    .our-values,
    .contacts-main,
    .contacts-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .sticky-split-section .sticky-split-container,
    .sticky-split-section .ourexp {
        padding-left: 0;
        padding-right: 0;
    }

    .mission .mission-container,
    .about-content-section .about-content-container,
    .about-hero .container,
    .about-hero-content,
    .our-values .values {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 1024px) {
    .card img { height: 280px; }
    .card-scroller { gap: 15px; }
}

@media (max-width: 768px) {
    .content { flex-direction: column; gap: 20px; padding-bottom: 50px;}
    .content-left { min-width: auto; }
    .content-right { min-width: 100%;padding-top: 50px; }
    .card img { height: 180px; }
    .arrow-btn { width: 40px; height: 40px; }
    
    .new-section-texts {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* PORTFOLIO PAGE STYLES */

/* ===== PORTFOLIO HERO SECTION ===== */

body.portfolio-page {
	background-color: #000;
}

.portfolio-page .header .left h1 {
	color: #fff;
}

/* Hamburger cor dinâmica no portfolio-page */
.portfolio-page .hamburger span {
	background: #000;
}

.portfolio-page .nav-wrapper.nav-light .hamburger span {
	background: #fff;
}

.portfolio-page:has(#check:checked) .left h1 {
	color: #000;
}

.portfolio-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('../images/PortfHero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.portfolio-header {
  background: transparent !important;
}

.portfolio-header .icon {
  color: #fff;
}

.portfolio-header .hamburger span {
  background: #fff;
}

.portfolio-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 100px;
}

.portfolio-hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.portfolio-hero-title {
  font-family: 'PP Editorial New', serif;
  font-size: clamp(52px, 6.77vw, 110px);
  font-weight: 400;
  line-height: 0.95;
  color: #fff;
  letter-spacing: -0.1rem;
  margin: 0;
}

.portfolio-hero-title em {
  font-style: italic;
}


/* Portfolio Image Section */
.portfolio-image-section {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 100px;
  overflow: visible;
  height: 500px;
  display: flex;
  align-items: flex-end;
}

.portfolio-image-section .container {
  width: 100%;
  height: 700px;
  padding: 0;

}

.portfolio-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* Portfolio Grid Section */
.portfolio-grid-section {
  padding: 100px 0;
  max-width: 1700px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 100px;
  width: 100%;
  padding-top: 50px;
}

.portfolio-intro {
  margin-bottom: 50px;
  padding-top: 50px;
}

.portfolio-intro-text {
  font-family: 'PP Editorial New', serif;
  font-size: clamp(40px, 5.2vw, 60px);
  font-weight: 400;
  color: #000;
  line-height: 0.9;
  letter-spacing: -0.1rem;
  max-width: 900px;
}

.portfolio-intro-text em {
  font-style: italic;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-card {
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

/* Header row: location left, year right — hidden initially, slides up on hover */
.portfolio-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.portfolio-card-location,
.portfolio-card-year {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #000000;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.portfolio-card:hover .portfolio-card-location,
.portfolio-card:hover .portfolio-card-year,
.portfolio-card.active .portfolio-card-location,
.portfolio-card.active .portfolio-card-year {
  transform: translateY(0);
  opacity: 1;
}

/* Image container */
.portfolio-card-image {
  width: 100%;
  height: 450px;
  overflow: hidden;
  position: relative;
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.05);
}

/* Bottom info */
.portfolio-card-info {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}

.portfolio-card-title {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #000000;
  flex: 1;
  min-width: 0;
}

.portfolio-card-divider {
  width: 30px;
  height: 1px;
  background-color: #000;
  flex-shrink: 0;
}

.portfolio-card-category {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #666;
  flex-shrink: 0;
  white-space: nowrap;
}

.load-more-btn {
  display: flex;
  margin: 100px auto 0;
  background: transparent;
  border: none;
  cursor: pointer;
  justify-content: center;
}

.load-more-btn svg {
  transform: rotate(90deg)  translateX(-4px);
}

.load-more-btn:hover svg {
  transform: rotate(90deg) translateY(-4px) translateX(0px);
}

.portfolio-card.hidden {
  display: none;
}

.portfolio-card.revealing {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: revealCard 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes revealCard {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Text Section */
.text-section {
  background: white;
  padding: 200px 0 100px;
  position: relative;
  z-index: 1;
}

.text-section-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 100px;
}

.text-section-title {
  font-family: 'PP Editorial New', serif;
  font-size: 130px;
  font-weight: 400;
  line-height: 0.95;
  color: #000000;
  letter-spacing: -0.1rem;
  margin: 0 0 100px 0;
  text-align: center;
}

.text-section-title em.green {
  font-style: italic;
  color: #0d5c49;
}

.text-section-paragraphs p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.1;
  color: #000;
  margin-bottom: 20px;
  text-align: left;
}

/* Sticky Circle */
.sticky-circle {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 130px;
  height: 130px;
  border-radius: 100%;
  background-color: #E1DDE1;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.sticky-circle:hover {
  transform: scale(1.1);
}

/* SVG Circle Styles */
.circle-svg {
  width: 100%;
  height: 100%;
  transform-box: fill-box;
  fill: #000000;
}

/* Envelope Icon */
.envelope-icon {
  transform-origin: 50% 50%;
  scale: 0.8;
}



/* Rotating Text */
.rotating-text {
  color: #000000;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.1;
  animation: rotateText 20s linear infinite;
  transform-origin: 50% 50%;
  word-spacing: 8px;


}

.rotating-text.PT{
  font-size: 15.5px;
}

/* Animation for rotating text */
@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ========================================
   RESPONSIVE - HOMEPAGE
   ======================================== */

/* ===== TABLET LARGE (max-width: 1100px) ===== */
@media (max-width: 1100px) {
    .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .hero-image-left img {
        width: 160px;
    }

    .hero-image-right img {
        width: 180px;
    }
}

/* ===== TABLET LANDSCAPE (max-width: 1200px) ===== */
@media (max-width: 1200px) {
    .hero {
        padding-left: 60px;
        padding-right: 60px;
    }

    .hero-content h1 {
        font-size: 85px;
    }

    .hero2-section {
        padding-left: 60px;
        padding-right: 60px;
    }

    .hero2-section .hero2-title h2 {
        font-size: 110px;
    }
}

/* ===== TABLET PORTRAIT (max-width: 1024px) ===== */
@media (max-width: 1024px) {
    .hero {
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 65px;
    }

    .hero2-section {
        flex-direction: column;
        padding-left: 40px;
        padding-right: 40px;
        margin-bottom: 100px;
    }

    .hero2-section .hero2-text {
        max-width: 100%;
    }

    .hero2-section .hero2-title {
        text-align: left;
    }

    .hero2-section .hero2-title h2 {
        font-size: 90px;
    }

    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 100px;
    }

    .card-1 {
        grid-column: 1 / span 2;
        grid-row: 1 / span 2;
    }

    .card-2 {
        grid-column: 3 / span 2;
        grid-row: 1 / span 3;
    }

    .card-3 {
        grid-column: 1 / span 2;
        grid-row: 3 / span 2;
    }

    .card-4 {
        grid-column: 3 / span 2;
        grid-row: 4 / span 3;
    }

    .card-5 {
        grid-column: 1 / span 2;
        grid-row: 5 / span 2;
    }

    .card-6 {
        grid-column: 1 / -1;  /* ocupa todas as colunas */
        grid-row: 7 / span 1;
    }

    .card-6 .card-number {
        font-size: 70px;
        line-height: 0.5;
    }

    .new-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .recent-projects {
        flex-direction: column;
        padding-left: 40px;
        padding-right: 40px;
    }

    .content-left {
        min-width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .sticky-split-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .sticky-split-section .sticky-split-container,
    .sticky-split-section .ourexp {
        padding-left: 0;
        padding-right: 0;
    }

    .about-us,
    .seccao {
        padding-left: 40px;
        padding-right: 40px;
    }

    .about-us .seccao,
    .recent-projects .content-left {
        padding-left: 0;
        padding-right: 0;
    }

    .content-left {
        grid-template-columns: 1fr;
    }

    .content-left p {
        width: 100%;
    }

    .content-left .main-button {
        justify-self: start;
    }

    .faq {
        padding-left: 40px;
        padding-right: 40px;
    }

    .faq-main {
        flex-direction: column;
        gap: 30px;
    }

    .faq-main .left {
        width: 100%;
    }

    .faq-main .left p {
        font-size: 50px;
    }
}

/* ===== MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {
    .hero {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        width: 100%;
        gap: 15px;
    }

    .hero-content h1 {
        max-width: 500px;
        width: 100%;
        font-size: 50px;
        text-align: center;
        order: 1;
    }

    .hero-content h1 .line {
        display: inline;
    }

    .hero-image-left {
        display: block;
        position: absolute;
        left: 0;
        top: 70%;
        transform: translateY(-50%);
        z-index: -1;
    }

    .hero-image-left img {
        width: 140px;
    }

    .hero-image-right {
        display: block;
        order: 3;
        align-self: flex-end;
        margin-top: 40px;
    }

    .hero-image-right img {
        width: 140px;
    }

    .hero-description {
        order: 2;
        max-width: 500px;
        text-align: center;
        align-items: center;
    }

    .hero2-section {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 60px;
    }

    .hero2-section .hero2-title h2 {
        font-size: 60px;
    }

    .hero2-section .hero2-text p {
        font-size: 16px;
    }

    .about-us,
    .seccao,
    .new-section,
    .sticky-split-section,
    .faq,
    .recent-projects {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-us .seccao,
    .recent-projects .content-left {
        padding-left: 0;
        padding-right: 0;
    }

    .sticky-left .main-button {
        display: none;
    }

    .faq-main {
        grid-template-columns: 1fr;
    }

    .faq-main .left {
        width: 100%;
    }

    .marquee-content {
        gap: 40px;
        padding: 0 20px;
    }

    .marquee-content img {
        height: 30px;
    }

    .new-section-texts {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .new-section-texts p {
        text-align: justify;
    }

    .about-description {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .about-description .main-button {
        align-self: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== NEW SECTION SCALE (max-width: 700px) ===== */
@media (max-width: 700px) {
    .new-section {
        padding: 14vw 20px;
    }

    .new-section-title-top {
        margin-bottom: -35vw;
    }

    .new-section-title-bottom {
        margin-top: -7vw;
    }

    .new-section-image img {
        max-height: 107vw;
    }

    .new-section-texts {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .new-section-texts p {
        font-size: 16px;
        text-align: justify;
    }
}

/* ===== MOBILE SMALL (max-width: 480px) ===== */
@media (max-width: 480px) {
    .nav-container {
        min-height: 52px;
        padding: 0 20px;
        border-radius: 30px;
        gap: 8px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-logo svg {
        height: 18px;
    }

    .nav-lang svg {
        width: 16px;
        height: 16px;
    }

    .nav-lang-text {
        display: inline;
        font-size: 9px;
    }
}

/* ========================================
   RESPONSIVE - SERVICES PAGE
   ======================================== */

/* ===== TABLET LANDSCAPE (max-width: 1200px) ===== */
@media (max-width: 1200px) {
    .services-hero {
        padding-left: 60px;
        padding-right: 60px;
    }

    .services-hero .container {
        padding-left: 60px;
        padding-right: 60px;
    }

    .metric-number {
        font-size: 100px;
    }

    .metric-divider {
        height: 160px;
    }

    .problems-section .container {
        padding-left: 60px;
        padding-right: 60px;
    }

    .problem-number {
        font-size: 160px;
        min-width: 160px;
    }

    .problem-text {
        font-size: 50px;
    }
}

/* ===== TABLET PORTRAIT (max-width: 1024px) ===== */
@media (max-width: 1024px) {
    .services-hero {
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 130px;
        margin-bottom: 60px;
    }

    .services-hero .container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .metrics-container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .metric-item {
        flex: 1 1 calc(50% - 60px);
        min-width: 200px;
    }

    .metric-number {
        font-size: 80px;
    }

    .metric-divider {
        height: 120px;
        display: none;
    }

    .metric-divider:first-child {
        display: none;
    }

    .problems-section .container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .problem-item {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 60px;
    }

    .problem-number {
        font-size: 120px;
        min-width: auto;
        order: 1;
        margin-left: 0;
        justify-content: flex-start;
    }

    .problem-text {
        font-size: 40px;
        order: 2;
        max-width: 100%;
    }

    .companies-container {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .companies-text {
        text-align: center;
    }

    /* Services scroll cards */
    .services-scroll-header {
        padding-left: 40px;
        padding-right: 40px;
    }

}

/* ===== MOBILE LARGE (max-width: 768px) ===== */
@media (max-width: 768px) {
    .services-hero {
        padding: 100px 20px 60px;
        margin-bottom: 40px;
    }

    .services-hero .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .subtitle {
        margin-bottom: 30px;
    }

    .metrics-container {
        flex-direction: column;
        gap: 40px;
    }

    .metric-item {
        flex: 1 1 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        padding-bottom: 30px;
    }

    .metric-item:last-child {
        border-bottom: none;
    }

    .metric-number {
        font-size: 70px;
    }


    .problems-section {
        padding-top: 40px;
    }

    .problems-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .problem-item {
        padding-bottom: 40px;
        padding-top: 15px;
    }

    .problem-number {
        font-size: 80px;
    }

    .problem-text {
        font-size: 32px;
    }

    .companies-section {
        margin: 40px auto;
    }

    .companies-container {
        padding: 15px;
    }

    .companies-text {
        font-size: 14px;
    }

    .slide {
        flex: 0 0 100px;
    }

    .slide img {
        width: 40px;
    }

    /* Services scroll section */
    .services-scroll-header {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Service cards responsive */
    .service-card {
        min-width: 85vw;
    }

    .card-wrapper {
        padding: 30px;
    }

    .card-title {
        font-size: 35px;
    }

    .card-text p {
        font-size: 14px;
    }

    .card-label {
        font-size: 12px;
    }
}

/* ===== MOBILE SMALL (max-width: 480px) ===== */
@media (max-width: 480px) {
    .services-hero {
        padding: 90px 15px 40px;
    }

    .services-hero .container {
        padding-left: 15px;
        padding-right: 15px;
    }


    .metric-number {
        font-size: 55px;
    }


    .problems-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .problem-number {
        font-size: 60px;
    }

    .problem-text {
        font-size: 26px;
    }

    .services-scroll-header {
        padding-left: 15px;
        padding-right: 15px;
    }


    .service-card {
        min-width: 90vw;
    }

    .card-wrapper {
        padding: 20px;
    }

    .card-title {
        font-size: 28px;
    }

    .card-text p {
        font-size: 13px;
    }
}

/* ========================================
   RESPONSIVE - ABOUT PAGE
   ======================================== */

/* ===== TABLET LANDSCAPE (max-width: 1200px) ===== */
@media (max-width: 1200px) {
    .about-hero .container {
        padding-left: 60px;
        padding-right: 60px;
    }

    .cards-section {
        padding-left: 60px;
        padding-right: 60px;
    }

    .cards-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .about2-cards-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 380px 380px;
    }

    .mission-container {
        padding-left: 60px;
        padding-right: 60px;
    }


    .about-content-container {
        padding-left: 60px;
        padding-right: 60px;
    }


    .our-values {
        padding: 60px;
    }


    .value-card h2 {
        font-size: 35px;
    }
}

/* ===== TABLET PORTRAIT (max-width: 1024px) ===== */
@media (max-width: 1024px) {
    .about-hero {
        padding-top: 30px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .about-hero .container {
        padding-left: 0;
        padding-right: 0;
    }

    .about-hero-content {
        padding-left: 0;
        padding-right: 0;
    }

    .about-hero-content .main-description {
        max-width: 100%;
    }

    .about-main {
        padding-left: 40px;
        padding-right: 40px;
    }

    .cards-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .cards-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .mission-container {
        padding-left: 40px;
        padding-right: 40px;
    }


    .about-content-section {
        padding: 80px 0;
    }

    .about-content-container {
        padding-left: 40px;
        padding-right: 40px;
        flex-direction: column;
        gap: 40px;
    }

    .about-content-left {
        width: 100%;
    }

    .about-content-right {
        width: 100%;
    }


    .our-values {
        padding: 40px;
    }

    .values {
        padding: 40px 30px;
    }


    .values-content {
        flex-direction: column;
        gap: 40px;
    }

    .values-content-left,
    .values-content-right {
        gap: 30px;
        padding: 0 10px;
    }

    .value-card {
        width: 100%;
        max-width: 400px;
    }

    .value-card h2 {
        font-size: 30px;
    }
}

/* ===== MOBILE LARGE (max-width: 768px) ===== */
@media (max-width: 768px) {
    .about-hero .container {
        padding-left: 0;
        padding-right: 0;
    }

    .about-hero-content .main-title .line {
        display: block;
    }

    .abstract-graphic {
        max-width: 220px;
        margin: 0 auto;
    }

    .about-main {
        padding: 60px 20px;
    }

    .cards-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cards-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .about2-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* card-map: stack header and map vertically */
    .card-map .about2-card-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .map-header {
        grid-column: 1;
        grid-row: 1;
        font-size: 36px;
    }

    .map-container {
        grid-column: 1;
        grid-row: 2;
        justify-content: center;
        height: auto;
    }

    .map-dots svg {
        width: 100%;
        height: auto;
        max-width: 190px;
        display: block;
    }

    .mission {
        padding: 60px 0;
    }

    .mission-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .mission-content {
        flex-direction: row;
        gap: 20px;
    }

    .mission-left {
        width: 50%;
    }

    .mission-right {
        width: 50%;
        margin-top: 0;
        height: auto;
    }

    .mission-image {
        width: 100%;
        height: auto;
    }

    .mission-content .mission-left p {
        font-size: 14px;
    }

    .about-content-section {
        padding: 60px 0;
    }


    .our-values {
        padding: 20px;
    }

    .values {
        padding: 30px 20px;
    }

    .values h4 {
        font-size: 14px;
    }


    .values-content {
        margin-top: 30px;
    }

    .value-card h2 {
        font-size: 26px;
    }

    .value-card p {
        font-size: 14px;
    }
}

/* ===== MOBILE MEDIUM (max-width: 600px) ===== */
@media (max-width: 600px) {
    .about2-card-content p {
        font-size: 12px;
    }
}

/* ===== MOBILE SMALL (max-width: 480px) ===== */
@media (max-width: 480px) {
    /* Layout: card-text topo (largura toda), currency+map lado a lado, card-number fundo (largura toda) */
    .about2-cards-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .about2-cards-grid .card-text {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .card-currency {
        grid-column: 1;
        grid-row: 2;
        height: auto;
        align-self: stretch;
    }

    .card-map {
        grid-column: 2;
        grid-row: 2;
    }

    .cards-section .card-number {
        grid-column: 1 / -1;
        grid-row: 3;
        height: auto;
        align-self: stretch;
    }

    .cards-section .card-number .about2-card-content {
        grid-template-rows: auto auto;
    }

    .map-header {
        font-size: 22px;
    }

    .map-dots svg {
        max-width: 120px;
    }



    .value-card h2 {
        font-size: 22px;
    }
}

/* ===== MOBILE XS (max-width: 425px) ===== */
@media (max-width: 500px) {
    .mission-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .mission-content {
        flex-direction: column;
        gap: 30px;
    }

    .mission-left {
        width: 100%;
    }

    .mission-right {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   RESPONSIVE - PORTFOLIO PAGE
   ======================================== */

/* ===== TABLET LANDSCAPE (max-width: 1200px) ===== */
@media (max-width: 1200px) {
    .portfolio-hero-content {
        padding: 0 60px;
    }


    .portfolio-grid-section {
        padding-left: 60px;
        padding-right: 60px;
    }


    .portfolio-card-image {
        height: 380px;
    }

    .text-section-content {
        padding: 0 60px;
    }

    .text-section-title {
        font-size: 100px;
    }
}

/* ===== TABLET PORTRAIT (max-width: 1024px) ===== */
@media (max-width: 1024px) {
    .portfolio-hero {
        height: 80vh;
    }

    .portfolio-hero-content {
        padding: 0 40px;
    }


    .portfolio-hero-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .portfolio-image-section {
        padding: 0 40px;
        height: 400px;
    }

    .portfolio-image-section .container {
        height: 550px;
    }

    .portfolio-grid-section {
        padding-left: 40px;
        padding-right: 40px;
    }


    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .portfolio-card-image {
        height: 320px;
    }

    .text-section {
        padding: 150px 0 80px;
    }

    .text-section-content {
        padding: 0 40px;
    }

    .text-section-title {
        font-size: 80px;
        margin-bottom: 60px;
    }

    .sticky-circle {
        width: 100px;
        height: 100px;
        bottom: 30px;
        right: 30px;
    }
}

/* ===== MOBILE LARGE (max-width: 768px) ===== */
@media (max-width: 768px) {
    .portfolio-hero {
        height: 70vh;
    }

    .portfolio-hero-content {
        padding: 0 20px;
    }


    .portfolio-hero-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .portfolio-image-section {
        padding: 0 20px;
        height: 300px;
    }

    .portfolio-image-section .container {
        height: 400px;
    }

    .portfolio-grid-section {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 30px;
    }

    .portfolio-intro {
        margin-bottom: 30px;
        padding-top: 30px;
    }


    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-card-image {
        height: 280px;
    }

    .portfolio-card-title {
        font-size: 12px;
    }

    .portfolio-card-category {
        font-size: 12px;
    }

    .load-more-btn {
        margin: 60px auto 0;
    }

    .text-section {
        padding: 100px 0 60px;
    }

    .text-section-content {
        padding: 0 20px;
    }

    .text-section-title {
        font-size: 55px;
        margin-bottom: 50px;
    }

    .text-section-paragraphs p {
        font-size: 14px;
    }

    .sticky-circle {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== MOBILE SMALL (max-width: 480px) ===== */
@media (max-width: 480px) {
    .portfolio-hero {
        height: 60vh;
    }



    .portfolio-card-image {
        height: 220px;
    }

    .text-section-title {
        font-size: 40px;
    }

    .sticky-circle {
        bottom: 15px;
        right: 15px;
    }
}

/* ========================================
   RESPONSIVE - CONTACT PAGE
   ======================================== */

/* ===== TABLET LANDSCAPE (max-width: 1200px) ===== */
@media (max-width: 1200px) {
    .contacts-main {
        padding-left: 60px;
        padding-right: 60px;
    }

    .contacts-container {
        grid-template-columns: 35% 65%;
    }
}

/* ===== TABLET PORTRAIT (max-width: 1024px) ===== */
@media (max-width: 1024px) {
    .contacts-main {
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 130px;
    }

    .contacts-container {
        grid-template-columns: 45% 55%;
    }

    .contact-details {
        gap: 50px;
        margin-top: 60px;
    }
}

/* ===== MOBILE LARGE (max-width: 768px) ===== */
@media (max-width: 768px) {
    .contacts-main {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 140px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .contacts-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .contact-info {
        width: 100%;
    }

    .contact-details {
        gap: 40px;
        margin-top: 40px;
    }

    .contact-image {
        display: none;
    }
}

/* ===== MOBILE SMALL (max-width: 480px) ===== */
@media (max-width: 480px) {
    .contacts-main {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 140px;
    }


    .contact-details {
        gap: 30px;
        margin-top: 30px;
    }

    .contact-item p {
        font-size: 13px;
    }
}

/* ========================================
   RESPONSIVE - NAVIGATION (ALL PAGES)
   ======================================== */

/* ===== TABLET PORTRAIT (max-width: 1024px) ===== */
@media (max-width: 1024px) {
    .nav-container {
        padding: 12px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .nav-logo svg {
        height: 18px;
        width: auto;
    }

    .nav-lang svg {
        width: 18px;
        height: 18px;
    }

    .nav-lang-text {
        font-size: 12px;
    }
}

/* ===== MOBILE LARGE (max-width: 768px) ===== */
@media (max-width: 768px) {
    .nav-wrapper {
        padding: 15px 20px;
    }

    .nav-container {
        padding: 10px 15px;
        border-radius: 25px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 11px;
        padding: 4px 8px;
    }

    .nav-logo svg {
        height: 16px;
    }

    .nav-lang {
        gap: 4px;
    }

    .nav-lang svg {
        width: 16px;
        height: 16px;
    }

    .nav-lang-text {
        font-size: 11px;
    }
}

/* ===== MOBILE SMALL (max-width: 480px) ===== */
@media (max-width: 480px) {
    .nav-wrapper {
        padding: 10px 15px;
    }

    .nav-container {
        min-height: 52px;
        padding: 0 20px;
        border-radius: 30px;
        gap: 8px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-logo svg {
        height: 18px;
    }

    .nav-lang svg {
        width: 16px;
        height: 16px;
    }

    .nav-lang-text {
        display: inline;
        font-size: 9px;
    }
}
