/* =========================================================
    TIPOGRAFIA
   ========================================================= */
/*
Theme Name: One Home Design
Theme URI: https://blisq.pt
Author: Blisq Creative
Author URI: https://blisq.pt
Description: Tema WordPress personalizado para a One Home Design.
Version: 1.3.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: one-home-design
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');
/* =========================================================
    VARIAVEIS E RESETS
   ========================================================= */

:root {
    --white: #FFF;
    --black: #000;
    --charcoal: #1B1B1B;
    --graphite: #444444;
    --snow: #FDFDFD;
    --pearl: #EDEDED;
    --silver: #D5D5D5;
    --ash: #B1B1B1;
    --stone: #A3A3A3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
    display: block;
    background-color: var(--pearl);
}

body {
    font-family: "Inter", sans-serif;
    position: relative;
    display: block;
    background-color: transparent;
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

figure {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: #1B1B1B;
    color: #FDFDFD;
}

.block {
    display: block;
}

.none {
    display: none;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================================
    COMPONENTES REUTILIZAVEIS
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-wrap: nowrap;
    padding: 15px 30px;
    border: 1px solid var(--white);
    border-radius: 56px;
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 168.75%;
    letter-spacing: -0.32px;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease;
    z-index: 5;
}

.btn:hover {
    background-color: var(--white);
    color: var(--charcoal);
}

.btn--dark {
    border-color: var(--charcoal);
    color: var(--charcoal);
    background-color: transparent;
}

.btn--dark:hover {
    background-color: var(--charcoal);
    color: var(--white);
}

.btn--large {
    min-width: 380px;
}

/* =========================================================
    ANIMAÇÕES
   ========================================================= */
/* LAZY REVEAL - Imagens */
.lazy-reveal {
    opacity: 0;
    filter: blur(8px);
    transform: scale(1.03);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        filter 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.lazy-reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

/*STAGGER REVEAL - Portfolio Cards */
.portfolio-card.stagger-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.portfolio-card.stagger-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/*  HERO ANIMATION */
.hero-heading,
.hero__intro,
.portfolio-single-hero__title,
.portfolio-single-hero__year {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-heading.is-visible,
.hero__intro.is-visible,
.portfolio-single-hero__title.is-visible,
.portfolio-single-hero__year.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-single-hero__year.is-visible {
    transition-delay: 0.2s;
}

/* PROJECT META ANIMATION */
.project-meta__item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-meta__item.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/*#region header*/
/* =========================================================
    HEADER
   ========================================================= */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 40px;
}

.logo {
    display: block;
    flex-shrink: 0;
}

.logo__image {
    height: auto;
    width: 147px;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav .menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav .menu li a {
    color: var(--white);
    font-family: "Space Grotesk";
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    transition: opacity 0.2s ease;
}

.nav .menu li a:hover {
    opacity: 0.7;
}

.lang-switcher {
    position: relative;
    align-self: flex-end;
}

.lang-switcher__toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--white);
    font-family: "Space Grotesk";
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.lang-switcher__toggle::after {
    content: '';
    width: 8px;
    height: 8px;
    background-image: url('assets/icons/arrowWhite.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.2s ease;
}

.lang-switcher.is-open .lang-switcher__toggle::after {
    transform: rotate(180deg);
}

.lang-switcher__dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    list-style: none;
    background-color: var(--snow);
    opacity: 0;
    border-radius: 5px;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.lang-switcher.is-open .lang-switcher__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher__dropdown li a {
    display: block;
    padding: 6px 16px;
    color: var(--charcoal);
    font-size: 14px;
}

.lang-switcher__dropdown li a:hover {
    background-color: var(--silver);
}

.hamburger {
    display: none;
    position: relative;
    z-index: 20;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger__line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.header--dark .logo__image {
    filter: brightness(0) saturate(100%) invert(8%) sepia(3%) saturate(1472%) hue-rotate(314deg) brightness(95%) contrast(97%);
}

.header--dark .nav .menu li a {
    color: #1B1B1B;
}

.header--dark .lang-switcher__toggle {
    color: #1B1B1B;
}

.header--dark .lang-switcher__toggle::after {
    filter: brightness(0) saturate(100%) invert(8%) sepia(3%) saturate(1472%) hue-rotate(314deg) brightness(95%) contrast(97%);
}

.header--dark .hamburger__line {
    background-color: #1B1B1B;
}

/*#endregion*/

/*#region frontpage*/
/* =========================================================
    HERO
   ========================================================= */
.hero {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 98vh;
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.hero__content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 200px 40px 40px;
}

.hero-heading {
    color: var(--white);
    font-size: 55px;
    font-style: normal;
    font-weight: 500;
    line-height: 101.818%;
    letter-spacing: -3.3px;
    text-transform: uppercase;
}

.hero-heading--top {
    text-wrap: balance;
    max-width: 554px;
}

.hero-heading--bottom {
    max-width: 550px;
    text-align: right;
    text-wrap: balance;
}

.hero__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.hero__intro {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
}

.hero__text {
    color: var(--white);
    font-family: "Space Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 137.5%;
    letter-spacing: -0.48px;
    max-width: 413px;
}

/* =========================================================
    HIGHLIGHTS
   ========================================================= */

.highlights {
    padding-block: 170px 85px;
    margin: 0 auto;
}

.highlight-intro {
    max-width: 465px;
    margin: 0 auto;
    padding-bottom: 30px;
    text-align: center;
}

.highlight-intro__title {
    color: var(--charcoal);
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -1.2px;
    text-transform: uppercase;
}

.highlight-intro__text {
    margin-top: 5px;
    color: var(--graphite);
    text-align: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%;
    letter-spacing: -0.42px;
}

.highlights__grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-inline: 40px;
}

.highlight-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.highlight-card__media {
    width: 100%;
    height: 100%;
}

.highlight-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-card__title {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 1;
    color: var(--snow);
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 65%;
    letter-spacing: -2.4px;
    text-transform: uppercase;
}

/* =========================================================
    WHY CHOOSE US
   ========================================================= */

.why-choose-us,
.our-values {
    padding: 85px 40px;
    width: 100%;
    margin: 0 auto;
}

.whychoose-title,
.ourvalues-title {
    color: var(--silver);
    font-size: 80px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -4.8px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.media-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.media-split__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 0.38) 0%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.feature-card--tall {
    aspect-ratio: 1;
}

.feature-card:not(.feature-card--tall) {
    max-height: 551px;
    height: 100%;
}

.feature-card__media,
.feature-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
}

.feature-card__title {
    color: var(--white);
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -1.56px;
    text-transform: uppercase;
    max-width: 340px;
}

.feature-card__text {
    color: var(--white);
    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.45px;
    max-width: 445px;
}

/* =========================================================
    PORTFOLIO
   ========================================================= */
.portfolio {
    padding: 85px 40px;
    width: 100%;
    margin: 0 auto;
}

.portfolio__header {
    margin-bottom: 50px;
    max-width: 430px;
}

.portfolio__title {
    color: var(--charcoal);
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.2px;
    text-transform: uppercase;
    text-wrap: balance;
}

.portfolio__text {
    color: var(--graphite);
    font-family: "Space Grotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%;
    letter-spacing: -0.42px;
    max-width: 385px;
    margin-top: 11px;
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 30px;
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.portfolio-card__media {
    width: 100%;
    height: auto;
    aspect-ratio: 441 / 593;
    overflow: hidden;
    position: relative
}

.portfolio-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-card:hover .portfolio-card__image {
    transform: scale(1.08);
}

.portfolio-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    gap: 10px;
}

.portfolio-card__name,
.portfolio-card__year {
    color: var(--charcoal);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 173.333%;
    letter-spacing: -0.9px;
    text-transform: uppercase;
}

/* =========================================================
    CTA SECTION
   ========================================================= */
.cta {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 85px;
}

.cta__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.cta__title {
    color: var(--charcoal);
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.2px;
    text-transform: uppercase;
    max-width: 402px;
    margin-bottom: 30px;
    text-wrap: balance;
}

.cta__media {
    width: 47.7%;
    height: auto;
    aspect-ratio: 1;
    flex-shrink: 0;
    position: relative;
}

.cta__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*#endregion*/

/*#region footer*/
/* =========================================================
    FOOTER
   ========================================================= */
.footer {
    width: 100%;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 40px 60px;
    border-top: 1px solid #C4C4C4;
}

.footer-logo {
    display: block;
    flex-shrink: 0;
}

.footer-logo__image {
    height: auto;
    width: 157px;
}

.footer-top__left {
    display: flex;
    align-items: flex-start;
    gap: 153px;
}

.footer-address {
    max-width: 200px;
}

.footer-address__location {
    color: var(--charcoal);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 126.667%;
    letter-spacing: -0.9px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.footer-address__phone {
    display: block;
    color: var(--charcoal);
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 126.667%;
    letter-spacing: -0.9px;
    text-transform: uppercase;
}

.footer-address__phone strong {
    font-weight: 500;
}

.footer-address__note {
    display: block;
    color: var(--charcoal);
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    letter-spacing: -0.6px;
    text-transform: uppercase;
}
.footer-address__email {
    display: block;
    color: var(--charcoal);
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 126.667%;
    letter-spacing: -0.9px;
    text-transform: uppercase;
    margin-top:15px;
}
.footer-top__columns {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 100px;
    margin-right: 228px;
}

.footer-col__title {
    color: var(--charcoal);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 185.714%;
    letter-spacing: -0.84px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.footer-col__list,
.footer-col .footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.footer-col__list a,
.footer-col .footer-menu a {
    color: var(--charcoal);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 216.667%;
    letter-spacing: -0.36px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.footer-col__list a::after,
.footer-col .footer-menu a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--charcoal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-col__list a:hover,
.footer-col .footer-menu a:hover {
    opacity: 1;
}

.footer-col__list a:hover::after,
.footer-col .footer-menu a:hover::after {
    transform: scaleX(1);
}

.footer-middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px 60px;
}

.footer-middle__text {
    color: var(--ash);
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    letter-spacing: -0.39px;
    text-transform: uppercase;
}

.footer-middle__credit {
    color: var(--stone);
    text-align: right;
    font-family: "Red Hat Display", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 139%;
}

.footer-middle__credit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-middle__credit-logo {
    height: auto;
    width: 36px;
    transition: transform 0.2s ease;
}

.footer-middle__credit-logo:hover {
    transform: scale(1.1);
}

.footer-bottom {
    background-color: var(--charcoal);
    display: flex;
    justify-content: flex-end;
    padding: 30px 40px;
}

.footer-bottom__image {
    height: auto;
    width: 297px;
}

/*#endregion*/

/*#region 404*/
/* 404 PAGE */
.not-found {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 100vh;
    overflow: hidden;
    background-image: linear-gradient(180deg, rgba(237, 237, 237, 0) 0%, rgba(237, 237, 237, 0.48) 61.84%, #EDEDED 100%), url('assets/images/background404.webp');
    background-size: 100% 386px, cover;
    background-position: bottom, center;
    background-repeat: no-repeat, no-repeat;
}

.not-found::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: url('assets/images/front_image404.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.not-found__content {
    position: relative;
    height: 100%;
    max-width: 1065px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    margin-left: 19%;
}

.not-found__label {
    color: var(--charcoal);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 136.364%;
    letter-spacing: -0.88px;
    text-transform: uppercase;
    margin-bottom: 20px;
    z-index: 5;
}

.not-found__title {
    opacity: 0.9;
    background: linear-gradient(190deg, #FFF 60.13%, rgba(255, 255, 255, 0) 146.95%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: Inter;
    font-size: 135px;
    font-style: normal;
    font-weight: 500;
    line-height: 86.667%;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 34px;
}

.not-found__actions {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    justify-content: flex-end;
}

.not-found__text {
    color: var(--white);
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 137.5%;
    letter-spacing: -0.48px;
    max-width: 333px;
    z-index: 5;
}

/*#endregion*/

/*#region common pages*/
/* =========================================================
    COMMON PAGES
   ========================================================= */
.common-page {
    padding: 200px 0 145px;
}

.common-container {
    max-width: 920px;
    margin: 0 auto;
}

.common-title {
    color: var(--charcoal);
    text-align: center;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 132.353%;
    letter-spacing: -1.36px;
    text-transform: uppercase;
}

.common-content {
    margin: 20px auto 0;
}

.common-content p {
    color: var(--graphite);
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 166.667%;
    letter-spacing: -0.54px;
    margin-bottom: 15px;
}

.common-content h2 {
    counter-increment: section;
    color: var(--charcoal);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -0.88px;
    text-transform: uppercase;
    margin-block: 20px 2px;
}

.common-content h2::before {
    content: counter(section, decimal-leading-zero) ". ";
    color: #B5B5B5;
}

.common-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    padding-left: 10px;
}

.common-content li {
    position: relative;
    padding-left: 18px;
    color: var(--graphite);
    font-family: "Space Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 166.667%;
    letter-spacing: -0.54px;
}

.common-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--graphite);
}

.common-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.common-content th {
    padding: 0 20px 16px 20px;
    color: var(--charcoal);
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -0.13px;
    text-transform: uppercase;
    text-align: left;
    border-bottom: 1px solid var(--silver);
    border-right: 1px solid var(--silver);
}

.common-content td {
    padding: 22px 20px;
    color: var(--graphite);
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 166.667%;
    letter-spacing: -0.42px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--silver);
    border-right: 1px solid var(--silver);
}

.common-content th:first-child,
.common-content td:first-child {
    padding-left: 0;
}

.common-content th:last-child,
.common-content td:last-child {
    border-right: none;
    padding-right: 0;
}

.common-content tbody tr:last-child td {
    border-bottom: none;
}

.last-update {
    margin-top: 35px;
}

.last-update p {
    color: var(--graphite);
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 187.5%;
    letter-spacing: -0.48px;
}

/*#endregion*/

/*#region archive portfolio */
.portfolio.portfolio-archive {
    padding-block: 246px 0;
}

.portfolio-archive .portfolio__header {
    max-width: none;
}

.portfolio-archive .portfolio__title {
    color: var(--charcoal);
    font-size: 45px;
    font-style: normal;
    font-weight: 600;
    line-height: 66.667%;
    letter-spacing: -1.8px;
    text-transform: uppercase;
}

.portfolio-archive .portfolio__title-row {
    display: flex;
    align-items: center;
    gap: 35px;
}

.portfolio-archive .portfolio-filter__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    margin: 0;
    cursor: pointer;
    color: #CBCBCB;
    font-size: 45px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.8px;
    text-transform: uppercase;
    text-transform: uppercase;
    padding: 0 20px 0 0;
}

.portfolio-filter {
    position: relative;
    display: inline-flex;
    z-index: 31;
}

.portfolio-filter__trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0 20px 0 0;
    font-family: inherit;
}

.portfolio-filter__trigger-text {
    color: #DBDBDB;
    font-size: 45px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.8px;
    text-transform: uppercase;
    z-index: 40;
}

.portfolio-filter__trigger::before,
.portfolio-filter__trigger::after {
    content: '';
    position: absolute;
    right: 0;
    width: 10px;
    height: 6px;
    mask-image: url('assets/icons/chevronDown.svg');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background-color: var(--charcoal);
    pointer-events: none;
    z-index: 40;
}

.portfolio-filter__trigger::before {
    top: 40%;
    transform: translateY(-100%) rotate(180deg);
}

.portfolio-filter__trigger::after {
    bottom: 40%;
    transform: translateY(100%);
}

.portfolio-filter__panel {
    position: fixed;
    top: 0;
    bottom: 0;
    margin-left: -28px;
    width: 388px;
    background-color: var(--white);
    overflow-y: auto;
    z-index: 30;
}

.portfolio-filter__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.portfolio-filter__option {
    padding: 18px 28px;
    color: #DBDBDB;
    font-size: 45px;
    font-style: normal;
    font-weight: 600;
    line-height: 66.667%;
    letter-spacing: -1.8px;
    text-transform: uppercase;
    text-transform: uppercase;
    cursor: pointer;
    border-bottom: 1px solid #E6E6E6;
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.portfolio-filter__option:first-child {
    border-top: 1px solid #E6E6E6;
}

.portfolio-filter__option::before {
    content: '';
    position: absolute;
    left: 28px;
    width: 8px;
    height: 8px;
    border: 0.5px solid var(--black);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-filter__option:hover {
    padding-left: 55px;
}

.portfolio-filter__option:hover::before {
    opacity: 1;
    transform: scale(1);
}

.portfolio-filter__option[aria-selected="true"] {
    color: var(--charcoal);
}

html.filter-open,
body.filter-open {
    overflow: hidden;
    height: 100%;
}

/* PAGINATION */
.portfolio-archive .navigation.pagination {
    margin-top: 80px;
}

.portfolio-archive .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.portfolio-archive .nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    border-radius: 7px;
    color: var(--charcoal);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 142.857%;
    letter-spacing: -0.56px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.portfolio-archive .nav-links .page-numbers:hover {
    background-color: var(--white);
}

.portfolio-archive .nav-links .page-numbers.current {
    background-color: var(--white);
}

.portfolio-archive .pagination-track {
    position: relative;
    margin-top: 15px;
    height: 2px;
    background-color: #D9D9D9;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}

.portfolio-archive .pagination-track::after {
    content: '';
    position: absolute;
    top: 0;
    left: var(--track-position, 0%);
    width: var(--track-width, 20%);
    height: 100%;
    background-color: var(--charcoal);
}

/* CTA ARCHIVE SECTION */
.cta_archive {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 140px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta_archive__container {
    max-width: 947px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta_archive__title {
    color: var(--charcoal);
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.2px;
    text-transform: uppercase;
    margin: 0;
    max-width: 255px;
    text-wrap: balance;
}

/*#endregion*/

/*#region single portfolio*/
/* PORTFOLIO SINGLE HERO */
.portfolio-single-hero {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 100vh;
    overflow: hidden;
}

.portfolio-single-hero__media {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.portfolio-single-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-single-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(105.86% 41.09% at 50.97% 53.01%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.20) 100%);
}

.portfolio-single-hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 353px 40px 80px;
}

.portfolio-single-hero__title {
    color: var(--white);
    font-size: 55px;
    font-style: normal;
    font-weight: 500;
    line-height: 101.818%;
    letter-spacing: -3.3px;
    text-transform: uppercase;
    max-width: 533px;
}

.portfolio-single-hero__year {
    align-self: flex-end;
    color: var(--white);
    font-size: 55px;
    font-style: normal;
    font-weight: 500;
    line-height: 101.818%;
    letter-spacing: -3.3px;
    text-transform: uppercase;
}

/* PORTFOLIO SINGLE META */
.project-meta {
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    padding: 40px;
}

.project-meta__category,
.project-meta__location,
.project-meta__services li {
    color: var(--charcoal);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 126.667%;
    letter-spacing: -0.9px;
    text-transform: uppercase;
}

.project-meta__services {
    list-style: none;
}

/* PORTFOLIO SINGLE GALLERY */
.project-gallery {
    width: 100%;
    margin: 0 auto;
    padding-inline: 40px;
    padding-block: 100px;
}

.project-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-gallery__item {
    overflow: hidden;
    max-height: 890px;
}

.project-gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PORTFOLIO SINGLE STATEMENT */
.project-statement {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 133px;
    padding-inline: 40px;
    padding-block: 50px 45px;
}

.project-statement__text {
    display: flex;
}

.project-statement__text--left {
    align-items: flex-start;
    justify-content: flex-end;
    max-width: 450px;
    justify-self: flex-end;
    margin-top: 200px;
}

.project-statement__text--right {
    align-items: flex-end;
    justify-content: flex-start;
    text-align: start;
    max-width: 294px;
    margin-bottom: 200px;
}

.project-statement__text p {
    color: var(--charcoal);
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.2px;
    text-transform: uppercase;
}

.project-statement__media {
    position: relative;
    width: 365px;
    padding-block: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-statement__media::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--charcoal);
    transform: translateX(-50%);
    z-index: -1;
}

.project-statement__image {
    width: 100%;
    height: auto;
    display: block;
}

/* PORTFOLIO SINGLE FULL IMAGE */
.project-full-image {
    width: 100%;
    margin: 0 auto;
    padding-inline: 40px;
    padding-block: 100px 40px;
}

.project-full-image__media {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.project-full-image__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* OTHER PROJECT */
.other-project {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 40px 85px;
}

.other-project__card {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 50%;
}

.other-project__media {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.other-project__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 600px;
}

.other-project__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.other-project__name,
.other-project__year {
    color: var(--charcoal);
    text-align: right;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 173.333%;
    letter-spacing: -0.9px;
    text-transform: uppercase;
}

.other-project__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
}

.other-project__title {
    color: var(--silver);
    font-size: 80px;
    font-style: normal;
    font-weight: 500;
    line-height: 92.5%;
    letter-spacing: -4.8px;
    text-transform: uppercase;
    max-width: 546px;
}

/*#endregion*/

/*#region contact*/
/* CONTACT HERO */
.contact-hero {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 76.7vh;
    overflow: hidden;
}

.contact-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.32) 100%);
    z-index: 2;
    pointer-events: none;
}

.contact-hero__content {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 895px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 40px 90px;
}

.contact-hero__content::before {
    content: '';
    display: block;
    width: 98px;
    height: 98px;
    margin-bottom: 20px;
    margin-left: 40px;
    background-image: url('assets/images/logoIcon.webp');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
}

.contact-hero__title {
    color: var(--pearl);
    font-size: 80px;
    font-style: normal;
    font-weight: 500;
    line-height: 91.25%;
    letter-spacing: -4.8px;
    text-transform: uppercase;
    margin-bottom: 40px;
    margin-left: auto;
    max-width: 630px;
    text-wrap: balance;
}

.contact-hero__text {
    color: #DADADA;
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 144.444%;
    letter-spacing: -0.54px;
    max-width: 445px;
    margin-left: auto;
    margin-right: 80px;
}

/* CONTACT FORM */
.contact-form {
    padding: 135px 40px 75px;
    width: 100%;
    margin: 0 auto;
}

.contact-form-wrapper {
    max-width: 1530px;
    margin-right: auto;
}

.contact-form__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}

.contact-form__title {
    color: var(--silver);
    font-size: 80px;
    font-style: normal;
    font-weight: 500;
    line-height: 91.25%;
    letter-spacing: -4.8px;
    text-transform: uppercase;
    max-width: 704px;
    text-wrap: balance;
}

.contact-form__info {
    display: flex;
    gap: 76px;
    margin-right: 280px;
}

.contact-form__address {
    color: var(--charcoal);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 126.667%;
    letter-spacing: -0.9px;
    text-transform: uppercase;
    max-width: 200px;
}

.contact-form__phone {
    display: block;
    color: var(--charcoal);
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 126.667%;
    letter-spacing: -0.9px;
    text-transform: uppercase;
}

.contact-form__phone strong {
    font-weight: 500;
}

.contact-form__note {
    display: block;
    color: var(--charcoal);
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    letter-spacing: -0.6px;
    text-transform: uppercase;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form__field {
    margin-bottom: 20px;
}

.contact-form__field--full {
    grid-column: 1 / -1;
}

.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--charcoal);
    background: transparent;
    padding: 15px 20px;
    color: var(--stone);
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 144.444%;
    letter-spacing: -0.54px;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: var(--graphite);
}

.contact-form__field textarea {
    min-height: 284px;
    resize: none;
}

.contact-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 27px;
}

.contact-form__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.contact-form__checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 34px;
    height: 34px;
    border: 1px solid var(--charcoal);
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.contact-form__checkbox input[type="checkbox"]:checked {
    background-color: var(--charcoal);
}

.contact-form__checkbox input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 14px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg);
}

.contact-form__checkbox span {
    color: var(--graphite);
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 144.444%;
    letter-spacing: -0.54px;
}

.contact-form__checkbox a {
    font-weight: 700;
}

/*Contact faq*/
.faq-section {
    padding-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 465px;
}

.faq-title {
    color: var(--charcoal);
    text-align: center;
    font-size: 45px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.faq-subtitle {
    color: var(--graphite);
    text-align: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    letter-spacing: -0.48px;
}

.faq-content-box {
    background-color: #E0E0E0;
    width: 100%;
    max-width: 1220px;
    padding: 70px 50px 110px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.service-item {
    background-color: #f2f2f2;
    border-radius: 63px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.service-item[open] {
    background-color: transparent;
}

.service-item summary {
    padding: 19px 27px;
    color: var(--charcoal);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 136.364%;
    letter-spacing: -0.88px;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

details summary::-webkit-details-marker {
    display: none;
}

.service-item summary::after {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    background-image: url('assets/icons/chevronDown.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
}

.service-item[open] summary::after {
    transform: rotate(180deg);
}

.details-wrapper {
    padding: 0 27px 12px;
}

.details-wrapper p {
    margin: 0;
    color: var(--graphite);
    font-family: "Space Grotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%;
    letter-spacing: -0.42px;
}

.service-item::details-content {
    display: block;
    block-size: 0;
    overflow: hidden;
    transition: all 0.4s allow-discrete;
}

.service-item[open]::details-content {
    block-size: auto;
    block-size: calc-size(auto, size);
}

.faq-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.faq-footer-text {
    color: var(--graphite);
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    letter-spacing: -0.48px;
}

/*#endregion*/

/*#region about*/
/* ABOUT HERO */
.about-hero {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 98vh;
    overflow: hidden;
}

.about-hero__media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.about-hero__item {
    height: 100%;
}

.about-hero__item--mobile {
    display: none;
}

.about-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero__title {
    position: absolute;
    left: 40px;
    bottom: 57.4%;
    z-index: 1;
    color: var(--white);
    font-size: 55px;
    font-style: normal;
    font-weight: 500;
    line-height: 101.818%;
    letter-spacing: -3.3px;
    text-transform: uppercase;
    max-width: 533px;
    text-wrap: balance;
}

/* ABOUT INTRO */
.about-intro {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 70px 40px;
}

.about-intro__text {
    max-width: 910px;
    margin: 0 auto;
    text-align: center;
    color: var(--charcoal);
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.2px;
    text-transform: uppercase;
}

/* ABOUT DESIGN */
.about-design {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 170px 60px 215px;
}

.about-design__media {
    position: relative;
    width: 23.9vw;
    margin: 0 auto;
}

.about-design__image {
    width: 100%;
    height: auto;
    display: block;
}

.about-design__words {
    position: absolute;
    inset: 0;
}

.about-design__word {
    position: absolute;
    color: var(--silver);
    font-size: 4.17vw;
    font-style: normal;
    font-weight: 500;
    line-height: 92.5%;
    letter-spacing: -0.25vw;
    text-transform: uppercase;
    white-space: nowrap;
}

.about-design__word[data-word="firstWord"] {
    top: 20.5%;
    left: -42%;
}

.about-design__word[data-word="secondWord"] {
    top: 32.7%;
    left: -8.4%;
}

.about-design__word[data-word="thirdWord"] {
    top: 32.7%;
    right: 8%;
}

.about-design__word[data-word="fourWord"] {
    bottom: 43.3%;
    right: -1%;
}

.design-text__about {
    position: absolute;
    left: -145%;
    bottom: 8.4%;
    max-width: 23.33vw;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.design-text__about p {
    color: var(--graphite);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.94vw;
    font-style: normal;
    font-weight: 400;
    line-height: 144.444%;
    letter-spacing: -0.028vw;
}

/* ESTADO INICIAL - Tudo oculto */
.about-design__word,
.design-text__about {
    opacity: 0;
}

.design-text__about {
    transition: opacity 0.6s ease;
    gap: 10px;
    display: flex;
    flex-direction: column;
}

/* Máscara (cortina) */
/* Estado inicial - tapado em cima e em baixo */
.about-design__image {
    clip-path: inset(50% 0 50% 0);
}

/* revela imagem (faixa horizontal) */
.about-design__image.is-peek {
    clip-path: inset(49.9% 0 49.9% 0);
    transition: clip-path 0.4s ease;
}

/* revela totalmente "cortinas" */
.about-design__image.is-revealed {
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Transições para as palavras */
.about-design__word {
    transition: opacity 0.6s ease,
        left 4s cubic-bezier(0.25, 1, 0.5, 1),
        right 4s cubic-bezier(0.25, 1, 0.5, 1),
        top 4s cubic-bezier(0.25, 1, 0.5, 1),
        bottom 4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* visíveis */
.about-design__word.is-visible {
    opacity: 1;
}

/* posições finais */
.about-design__word.is-shifted[data-word="firstWord"] {
    left: -146%;
    top: 11%;
}

.about-design__word.is-shifted[data-word="secondWord"] {
    left: -112%;
    top: 24.7%;
}

.about-design__word.is-shifted[data-word="thirdWord"] {
    right: -111%;
}

.about-design__word.is-shifted[data-word="fourWord"] {
    right: -144%;
}

/* parágrafo */
.design-text__about.is-visible {
    opacity: 1;
}


/* ABOUT PROCESS */
.about-process {
    position: relative;
    width: 100%;
    margin: 0 auto 85px;
    height: 98vh;
    overflow: hidden;
}

.about-process::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0) 100%);
}

.about-process__video {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-process__content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 214px;
    padding: 0 40px 90px;
    max-width: 1588px;
    margin: 0 auto;
    z-index: 1;
}

.about-process__labels {
    display: flex;
    align-items: center;
    gap: 43px;
}

.about-process__labels::before {
    content: '';
    order: 2;
    flex: 1;
    height: 1px;
    background-color: var(--white);
}

.about-process__label:first-child {
    order: 1;
}

.about-process__label:last-child {
    order: 3;
}

.about-process__label {
    flex-shrink: 0;
    color: var(--white);
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.2px;
    text-transform: uppercase;
}

.about-process__text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
    margin-left: auto;
}

.about-process__text p {
    max-width: 410px;
    color: var(--white);
    text-align: right;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 122.727%;
    letter-spacing: -0.88px;
    text-transform: uppercase;
}

/* ABOUT TEAM */
.about-team {
    position: relative;
    width: 100%;
    margin: 85px auto 0;
    height: 98vh;
    overflow: hidden;
}

.about-team__media {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.about-team__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-team__title {
    position: absolute;
    left: 50%;
    bottom: 100px;
    transform: translateX(-50%);
    max-width: 727px;
    text-align: center;
    color: var(--white);
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.2px;
    text-transform: uppercase;
}

.cta-top {
    padding-top: 0;
}

/*#endregion*/

/* =========================================================
    RESPONSIVO
   ========================================================= */
@media screen and (max-height: 800px) {}

@media screen and (max-width: 1880px) {}

@media screen and (max-width:1800px) {

    /*#region contact RESPONSIVE*/
    .contact-form-wrapper {
        max-width: 1450px;
    }

    /*#endregion*/
}

@media screen and (max-width: 1600px) {

    /* Componentes reutilizaveis */
    .btn {
        padding: 14px 28px;
        font-size: 15px;
        letter-spacing: -0.3px;
    }

    .btn--large {
        min-width: 322px;
    }

    /*#region header RESPONSIVE*/
    .header {
        padding: 20px 40px;
    }

    .logo__image {
        width: 110px;
    }

    .header__right {
        gap: 27px;
    }

    .nav .menu {
        gap: 22px;
    }

    .nav .menu li a {
        font-size: 11px;
    }

    /*#endregion*/

    /*#region frontpage RESPONSIVE*/
    .hero {
        height: 94vh;
    }

    .hero__content {
        padding: 190px 38px 38px;
    }

    .hero-heading {
        font-size: 50px;
        letter-spacing: -3px;
    }

    .hero-heading--bottom {
        max-width: 500px;
    }

    .hero__bottom {
        gap: 36px;
    }

    .hero__intro {
        gap: 22px;
    }

    /*Highlights*/
    .highlights {
        padding-block: 158px 80px;
    }

    .highlight-intro__title {
        font-size: 28px;
        letter-spacing: -1.12px;
    }

    .highlights__grid {
        gap: 18px;
        padding-inline: 36px;
    }

    .highlight-card__title {
        font-size: 36px;
        letter-spacing: -2.16px;
    }

    /*Why Choose*/
    .why-choose-us,
    .our-values {
        padding: 80px 38px;
    }

    .whychoose-title,
    .ourvalues-title {
        font-size: 72px;
        letter-spacing: -4.32px;
    }

    .feature-card__title {
        font-size: 24px;
        letter-spacing: -1.44px;
    }

    .feature-card__text {
        font-size: 14px;
        letter-spacing: -0.42px;
    }

    .feature-card__content {
        padding: 36px;
    }

    /*Portfolio*/
    .portfolio {
        padding: 80px 38px;
    }

    .portfolio__title {
        font-size: 28px;
        letter-spacing: -1.12px;
    }

    .portfolio__header {
        margin-bottom: 44px;
    }

    /*CTA*/
    .cta {
        padding-top: 80px;
    }

    .cta__title {
        font-size: 28px;
        letter-spacing: -1.12px;
    }

    .cta__content {
        padding: 36px;
    }

    /*#endregion*/

    /*#region footer RESPONSIVE*/
    .footer-top {
        padding: 38px 38px 85px;
    }

    .footer-logo__image {
        width: 147px;
    }

    .footer-top__left {
        gap: 120px;
    }

    .footer-top__columns {
        gap: 80px;
        margin-right: 180px;
    }

    .footer-middle {
        padding: 0 38px 54px;
    }

    .footer-middle__text {
        font-size: 12.5px;
    }

    .footer-bottom {
        padding: 28px 38px;
    }

    .footer-bottom__image {
        width: 280px;
    }

    /*#endregion*/

    /*#region 404 RESPONSIVE*/
    /*404 page*/
    .not-found {
        background-size: 100% 340px, cover;
        height: 90.1vh;
    }

    .not-found__content {
        margin-left: 16%;
    }

    .not-found__label {
        font-size: 14px;
        letter-spacing: -0.56px;
        margin-bottom: 10px;
    }

    .not-found__title {
        font-size: 120px;
        margin-bottom: 20px;
    }

    .not-found__text {
        font-size: 14px;
        letter-spacing: -0.42px;
    }

    /*#endregion*/

    /*#region common pages RESPONSIVE*/
    /*Common pages*/
    .common-page {
        padding: 180px 0 125px;
    }

    .common-title {
        font-size: 32px;
        letter-spacing: -1.28px;
    }

    .common-content p {
        font-size: 17px;
        letter-spacing: -0.51px;
    }

    .common-content h2 {
        font-size: 21px;
        line-height: 38px;
        letter-spacing: -0.84px;
    }

    .common-content li {
        font-size: 17px;
        letter-spacing: -0.51px;
    }

    .common-content th {
        font-size: 12.5px;
        padding: 0 18px 15px 18px;
    }

    .common-content td {
        font-size: 13.5px;
        letter-spacing: -0.4px;
        padding: 20px 18px;
    }

    .last-update p {
        font-size: 15.5px;
        letter-spacing: -0.47px;
    }

    /*#endregion*/

    /*#region archive portfolio */
    .portfolio.portfolio-archive {
        padding-block: 202px 0;
    }

    .portfolio-archive .portfolio__title {
        font-size: 40px;
        letter-spacing: -1.6px;
    }

    .portfolio-archive .portfolio-filter__trigger-text {
        font-size: 40px;
        letter-spacing: -1.6px;
    }

    .portfolio-filter__panel {
        width: 360px;
    }

    .portfolio-filter__option {
        font-size: 40px;
        letter-spacing: -1.6px;
    }

    .portfolio__grid {
        column-gap: 15px;
        row-gap: 22px;
    }

    .portfolio-card__name,
    .portfolio-card__year {
        font-size: 14px;
    }

    .portfolio-card__footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 11px;
    }

    .cta_archive__container {
        max-width: 761px;
    }

    .cta_archive {
        padding: 100px 20px;
    }

    .cta_archive__title {
        font-size: 22px;
        letter-spacing: -1.12px;
    }

    /*#endregion*/

    /*#region single portfolio RESPONSIVE*/
    .portfolio-single-hero {
        height: 80vh;
    }

    .portfolio-single-hero__content {
        padding: 260px 40px 70px;
    }

    .portfolio-single-hero__title {
        font-size: 48px;
        letter-spacing: -2.88px;
        max-width: 470px;
    }

    .portfolio-single-hero__year {
        font-size: 40px;
        letter-spacing: -2.4px;
    }

    .project-meta {
        gap: 65px;
    }

    .project-meta__category,
    .project-meta__location,
    .project-meta__services li {
        font-size: 12px;
        letter-spacing: -0.72px;
    }

    .project-gallery {
        padding-inline: 38px;
        padding-block: 88px;
    }

    .project-gallery__item {
        max-height: 780px;
    }

    .project-statement {
        gap: 98px;
        padding-inline: 20px;
    }

    .project-statement__text p {
        font-size: 22px;
        letter-spacing: -0.88px;
    }

    .project-statement__text--left {
        max-width: 331px;
        margin-top: 147px;
    }

    .project-statement__text--right {
        max-width: 260px;
        margin-bottom: 147px;
    }

    .project-statement__media {
        width: 270px;
        padding-block: 90px;
    }

    .project-full-image {
        padding-block: 65px 30px;
    }

    .project-full-image__media {
        height: 87.5vh;
    }

    .other-project {
        gap: 58px;
        padding: 0 40px 11px;
    }

    .other-project__content {
        gap: 18px;
    }


    .other-project__card {
        width: 49.1%;
    }

    .other-project__footer {
        margin-top: 10px;
    }

    .other-project__name,
    .other-project__year {
        font-size: 14px;
        line-height: 136%;
        letter-spacing: -0.84px;
    }

    .other-project__title {
        font-size: 68px;
        letter-spacing: -4.08px;
        max-width: 470px;
    }

    /*#endregion*/

    /*#region contact RESPONSIVE*/
    .contact-hero {
        height: 59.5vh;
    }

    .contact-hero__content {
        max-width: 587px;
        padding: 0 36px 70px;
    }

    .contact-hero__title {
        font-size: 40px;
        letter-spacing: -2.4px;
        max-width: 353px;
        margin-bottom: 15px;
        margin-right: 100px;
    }

    .contact-hero__text {
        font-size: 14px;
        letter-spacing: -0.42px;
        max-width: 336px;
        margin-right: 0;
    }

    .contact-hero__content::before {
        width: 60px;
        height: 60px;
        margin-bottom: 4px;
        margin-left: 0;
    }

    .contact-form {
        padding: 60px 40px 50px;
    }

    .contact-form-wrapper {
        max-width: 1123px;
    }

    .contact-form__title {
        font-size: 60px;
        letter-spacing: -3.6px;
        max-width: 536px;
    }

    .contact-form__address,
    .contact-form__phone {
        font-size: 12px;
        letter-spacing: -0.765px;
        max-width: 170px;
    }

    .contact-form__header {
        margin-bottom: 20px;
    }

    .contact-form__info {
        gap: 65px;
        margin-right: 150px;
    }

    .contact-form__note {
        font-size: 8px;
        letter-spacing: -0.51px;
    }

    .contact-form__field {
        margin-bottom: 15px;
    }

    .contact-form__field input,
    .contact-form__field textarea {
        font-size: 15px;
        padding: 13px 17px;
    }

    .contact-form__field textarea {
        min-height: 242px;
    }

    .contact-form__checkbox input[type="checkbox"] {
        width: 22px;
        height: 22px;
    }

    .contact-form__checkbox input[type="checkbox"]:checked::after {
        width: 3px;
        height: 9px;
    }

    .contact-form__checkbox span {
        font-size: 14px;
        letter-spacing: -0.42px;
    }

    .faq-section {
        padding-top: 50px;
    }

    .faq-title {
        font-size: 22px;
        letter-spacing: -0.88px;
        max-width: 223px;
        margin-bottom: 8px;
    }

    .faq-subtitle {
        font-size: 14px;
        letter-spacing: -0.42px;
    }

    .faq-list {
        gap: 10px;
        margin-bottom: 20px;
    }

    .faq-content-box {
        padding: 50px 37px 60px;
        max-width: 941px;
    }

    .service-item summary {
        font-size: 14px;
        letter-spacing: -0.56px;
        padding: 16px 23px;
    }

    .details-wrapper p {
        font-size: 12px;
        letter-spacing: -0.35px;
    }

    .faq-footer-text {
        font-size: 14px;
        line-height: 121%;
        letter-spacing: -0.42px;
    }

    .faq-footer {
        gap: 20px;
    }

    /*#endregion*/

    /*#region about RESPONSIVE*/
    .about-hero {
        height: 80vh;
    }

    .about-hero__title {
        left: 30px;
        font-size: 40px;
        line-height: 42px;
        letter-spacing: -2.4px;
        max-width: 350px;
    }

    .about-intro {
        padding: 50px 38px;
    }

    .about-intro__text {
        max-width: 690px;
        font-size: 22px;
        line-height: 110%;
        letter-spacing: -0.88px;
    }

    .about-design {
        padding: 100px 30px 130px;
    }

    .about-design__media {
        width: 21.56vw;
    }

    .about-design__word {
        font-size: 3.75vw;
        line-height: 92.5%;
        letter-spacing: -0.225vw;
    }

    .design-text__about {
        max-width: 21vw;
    }

    .design-text__about p {
        font-size: 0.875vw;
        letter-spacing: -0.026vw;
    }

    .about-process {
        height: 92.7vh;
        margin-bottom: 78px;
    }

    .about-process__content {
        max-width: 1170px;
        padding: 0 20px 85px;
        gap: 160px;
    }

    .about-process__labels {
        gap: 38px;
    }

    .about-process__label {
        font-size: 22px;
        line-height: 110%;
        letter-spacing: -0.88px;
    }

    .about-process__text p {
        font-size: 16px;
        line-height: 110%;
        letter-spacing: -0.64px;
        max-width: 310px;
    }

    .about-team {
        height: 80vh;
    }

    .about-team__title {
        max-width: 525px;
        bottom: 70px;
        font-size: 22px;
        line-height: 110%;
        letter-spacing: -0.88px;
    }

    /*#endregion*/
}

@media screen and (max-width: 1550px) {}

@media screen and (max-width: 1500px) {}

@media screen and (max-width: 1400px) {

    /* Componentes reutilizaveis */
    .btn {
        padding: 13px 27px;
        font-size: 14px;
        letter-spacing: -0.28px;
    }

    /*#region frontpage RESPONSIVE*/
    .hero {
        height: 90vh;
    }

    .hero__content {
        padding: 180px 36px 36px;
    }

    .hero-heading {
        font-size: 44px;
        letter-spacing: -2.64px;
    }

    .hero-heading--bottom {
        max-width: 435px;
    }

    .hero__bottom {
        gap: 32px;
    }

    .hero__intro {
        gap: 20px;
    }

    /*Highlights*/
    .highlights {
        padding-block: 146px 74px;
    }

    .highlight-intro__title {
        font-size: 26px;
        letter-spacing: -1.04px;
    }

    .highlights__grid {
        gap: 16px;
        padding-inline: 32px;
    }

    .highlight-card__title {
        font-size: 33px;
        letter-spacing: -1.98px;
    }

    /*Why Choose*/
    .why-choose-us,
    .our-values {
        padding: 74px 36px;
    }

    .whychoose-title,
    .ourvalues-title {
        font-size: 64px;
        letter-spacing: -3.84px;
        margin-bottom: 26px;
    }

    .feature-card__title {
        font-size: 22px;
        letter-spacing: -1.32px;
    }

    .feature-card__content {
        padding: 32px;
    }

    /*Portfolio*/
    .portfolio {
        padding: 74px 36px;
    }

    .portfolio__title {
        font-size: 26px;
        letter-spacing: -1.04px;
    }

    .portfolio__header {
        margin-bottom: 38px;
    }

    /*CTA*/
    .cta {
        padding-top: 74px;
    }

    .cta__title {
        font-size: 26px;
        letter-spacing: -1.04px;
    }

    .cta__content {
        padding: 32px;
    }

    /*#endregion*/

    /*#region footer RESPONSIVE*/

    .footer-top {
        padding: 36px 36px 75px;
    }

    .footer-logo__image {
        width: 138px;
    }

    .footer-top__left {
        gap: 90px;
    }

    .footer-top__columns {
        gap: 60px;
        margin-right: 120px;
    }

    .footer-middle {
        padding: 0 36px 48px;
    }

    .footer-bottom {
        padding: 26px 36px;
    }

    .footer-bottom__image {
        width: 268px;
    }

    /*#endregion*/

    /*#region 404 RESPONSIVE*/
    /*404 page*/
    .not-found {
        background-size: 100% 300px, cover;
    }

    .not-found__actions {
        gap: 22px;
    }

    .not-found__content {
        margin-left: 7%;
    }

    /*#endregion*/

    /*#region common pages RESPONSIVE*/
    /*Common pages*/
    .common-page {
        padding: 160px 0 110px;
    }

    .common-title {
        font-size: 29px;
        letter-spacing: -1.16px;
    }

    .common-content p {
        font-size: 16px;
        letter-spacing: -0.48px;
    }

    .common-content h2 {
        font-size: 20px;
        line-height: 36px;
        letter-spacing: -0.8px;
    }

    .common-content li {
        font-size: 16px;
        letter-spacing: -0.48px;
        padding-left: 16px;
    }

    .common-content li::before {
        top: 11px;
    }

    .common-content th {
        font-size: 12px;
        letter-spacing: -0.12px;
        padding: 0 16px 14px 16px;
    }

    .common-content td {
        font-size: 13px;
        letter-spacing: -0.39px;
        padding: 18px 16px;
    }

    .last-update p {
        font-size: 15px;
        letter-spacing: -0.45px;
    }

    /*#endregion*/

    /*#region archive portfolio */
    .portfolio-archive .portfolio__title {
        font-size: 36px;
        letter-spacing: -1.44px;
    }

    .portfolio-archive .portfolio-filter__trigger-text {
        font-size: 36px;
        letter-spacing: -1.44px;
    }

    .portfolio-filter__panel {
        width: 320px;
    }

    .portfolio-filter__option {
        font-size: 36px;
        letter-spacing: -1.44px;
        padding: 16px 28px;
    }

    .portfolio-filter__option::before {
        left: 24px;
    }

    .portfolio-archive .navigation.pagination {
        margin-top: 64px;
    }

    .portfolio-archive .nav-links {
        gap: 10px;
    }

    .cta_archive {
        padding: 105px 20px;
    }

    .cta_archive__title {
        font-size: 26px;
        letter-spacing: -1.04px;
    }

    /*#endregion*/

    /*#region single portfolio RESPONSIVE*/
    .portfolio-single-hero__title {
        font-size: 42px;
        letter-spacing: -2.52px;
        max-width: 410px;
    }

    .portfolio-single-hero__year {
        font-size: 42px;
        letter-spacing: -2.52px;
    }

    .project-gallery {
        padding-inline: 36px;
        padding-block: 76px;
    }

    .project-gallery__item {
        max-height: 680px;
    }

    .project-statement__text--left {
        max-width: 350px;
        margin-top: 140px;
    }

    .project-statement__text--right {
        max-width: 230px;
        margin-bottom: 140px;
    }

    .project-full-image {
        padding-inline: 36px;
        padding-block: 76px 32px;
    }

    .project-full-image__media {
        height: 82vh;
    }

    .other-project {
        gap: 60px;
        padding: 0 36px 70px;
    }

    .other-project__title {
        font-size: 56px;
        letter-spacing: -3.36px;
        max-width: 390px;
    }

    /*#endregion*/

    /*#region contact RESPONSIVE*/
    .contact-form__title {
        font-size: 56px;
        letter-spacing: -3.36px;
        max-width: 500px;
    }

    .contact-form__info {
        gap: 50px;
        margin-right: 120px;
    }

    .contact-form__field input,
    .contact-form__field textarea {
        font-size: 15px;
        padding: 12px 16px;
    }

    .service-item {
        border-radius: 50px;
    }

    /*#endregion*/

    /*#region about RESPONSIVE*/
    .about-hero__title {
        font-size: 36px;
        line-height: 38px;
        letter-spacing: -2.16px;
        max-width: 410px;
    }

    .about-intro {
        padding: 44px 36px;
    }

    .about-intro__text {
        font-size: 20px;
        letter-spacing: -0.8px;
        max-width: 640px;
    }

    .design-text__about {
        max-width: 27vw;
    }

    .design-text__about p {
        font-size: max(0.875vw, 13px);
        letter-spacing: max(-0.026vw, -0.39px);
    }

    .about-process {
        margin-bottom: 82px;
    }

    .about-process__content {
        max-width: 1000px;
        gap: 138px;
    }

    .about-process__labels {
        gap: 34px;
    }

    /*#endregion*/
}

@media screen and (max-width: 1300px) {}

@media screen and (max-width: 1280px) {}

@media screen and (max-width: 1240px) {}

@media screen and (max-width: 1200px) {

    /*#region frontpage RESPONSIVE*/
    .highlight-card__title {
        font-size: 30px;
        letter-spacing: -1.8px;
        left: 25px;
        bottom: 25px;
    }

    /*Why Choose*/
    .whychoose-title,
    .ourvalues-title {
        font-size: 56px;
        letter-spacing: -3.36px;
    }

    .feature-card__content {
        padding: 28px;
    }

    /*Portfolio*/
    .portfolio-card__name,
    .portfolio-card__year {
        font-size: 14px;
        letter-spacing: -0.84px;
    }

    /*CTA*/
    .cta__media {
        width: 45%;
    }

    /*#endregion*/

    /*#region footer RESPONSIVE*/
    .footer-top {
        padding: 36px 34px 65px;
    }

    .footer-logo__image {
        width: 130px;
    }

    .footer-top__left {
        gap: 60px;
    }

    .footer-top__columns {
        gap: 50px;
        margin-right: 80px;
    }

    .footer-address__location {
        margin-bottom: 24px;
    }

    .footer-middle {
        padding: 0 34px 42px;
    }

    .footer-middle__text {
        font-size: 12px;
        font-weight: 400;
    }

    .footer-bottom {
        padding: 24px 34px;
    }

    .footer-bottom__image {
        width: 260px;
    }

    /*#endregion*/

    /*#region archive portfolio */
    .portfolio-archive .portfolio__title {
        font-size: 32px;
        letter-spacing: -1.28px;
    }

    .portfolio-archive .portfolio-filter__trigger-text {
        font-size: 32px;
        letter-spacing: -1.28px;
    }

    .portfolio-filter__panel {
        width: 300px;
    }

    .portfolio-filter__option {
        font-size: 32px;
        letter-spacing: -1.28px;
    }

    /*#endregion*/

    /*#region single portfolio RESPONSIVE*/
    .portfolio-single-hero__title {
        font-size: 38px;
        letter-spacing: -2.28px;
        max-width: 370px;
    }

    .portfolio-single-hero__year {
        font-size: 38px;
        letter-spacing: -2.28px;
    }

    .project-gallery {
        padding-inline: 34px;
        padding-block: 66px;
    }

    .project-gallery__item {
        max-height: 600px;
    }

    .project-gallery__grid {
        gap: 16px;
    }

    .project-statement__text--left {
        max-width: 310px;
        margin-top: 110px;
    }

    .project-statement__text--right {
        max-width: 210px;
        margin-bottom: 110px;
    }

    .project-statement__media {
        width: 240px;
        padding-block: 70px;
    }

    .project-full-image {
        padding-inline: 34px;
        padding-block: 66px 28px;
    }

    .project-full-image__media {
        height: 74vh;
    }

    .other-project {
        gap: 50px;
        padding: 0 34px 62px;
    }

    .other-project__title {
        font-size: 48px;
        letter-spacing: -2.88px;
        max-width: 290px;
    }

    /*#endregion*/

    /*#region contact RESPONSIVE*/
    .contact-form__title {
        font-size: 48px;
        letter-spacing: -2.88px;
    }

    .contact-form__info {
        gap: 20px;
        margin-right: 80px;
    }

    .contact-form__checkbox span {
        font-size: 12px;
        letter-spacing: -0.42px;
    }

    .faq-content-box {
        padding: 46px 36px 72px;
    }

    .details-wrapper {
        padding: 0 24px 12px;
    }

    /*#endregion*/

    /*#region about RESPONSIVE*/
    .about-hero__title {
        font-size: 34px;
        letter-spacing: -2.04px;
        max-width: 380px;
    }

    .about-intro {
        padding: 38px 34px;
    }

    .about-intro__text {
        font-size: 18px;
        letter-spacing: -0.72px;
        max-width: 560px;
    }

    .about-process__content {
        max-width: 920px;
        gap: 126px;
    }

    /*#endregion*/
}

@media screen and (max-width: 1100px) {

    /* Componentes reutilizaveis */
    .btn {
        padding: 12px 26px;
        font-size: 13px;
        letter-spacing: -0.26px;
    }

    /*#region frontpage RESPONSIVE*/
    .hero {
        height: 85vh;
    }

    .hero__content {
        padding: 170px 32px 34px;
    }

    .hero-heading {
        font-size: 38px;
        letter-spacing: -2.28px;
    }

    .hero-heading--bottom {
        max-width: 375px;
    }

    .hero__bottom {
        gap: 28px;
    }

    .hero__intro {
        gap: 10px;
    }

    /*Highlights*/
    .highlights {
        padding-block: 130px 66px;
    }

    .highlight-intro__title {
        font-size: 24px;
        letter-spacing: -0.96px;
    }

    .highlights__grid {
        gap: 14px;
        padding-inline: 28px;
    }

    .highlight-card__title {
        font-size: 28px;
    }

    /*Why Choose*/
    .why-choose-us,
    .our-values {
        padding: 66px 32px;
    }

    .whychoose-title,
    .ourvalues-title {
        font-size: 50px;
        letter-spacing: -3px;
        margin-bottom: 22px;
    }

    .feature-card__title {
        font-size: 20px;
        letter-spacing: -1.2px;
    }

    .feature-card__text {
        font-size: 13px;
        letter-spacing: -0.39px;
    }

    .feature-card__content {
        padding: 24px;
    }

    /*Portfolio*/
    .portfolio {
        padding: 66px 32px;
    }

    .portfolio__title {
        font-size: 24px;
        letter-spacing: -0.96px;
    }

    .portfolio__text {
        font-size: 13px;
        letter-spacing: -0.39px;
    }

    .portfolio__header {
        margin-bottom: 32px;
    }

    /*CTA*/
    .cta {
        padding-top: 66px;
    }

    .cta__title {
        font-size: 24px;
        letter-spacing: -0.96px;
    }

    .cta__content {
        padding: 28px;
    }

    /*#endregion*/

    /*#region footer RESPONSIVE*/
    .footer-top {
        padding: 34px 32px 60px;
    }

    .footer-top__left {
        gap: 40px;
    }

    .footer-top__columns {
        gap: 40px;
        margin-right: 40px;
    }

    .footer-middle {
        padding: 0 32px 38px;
    }

    .footer-bottom {
        padding: 22px 32px;
    }

    /*#endregion*/

    /*#region 404 RESPONSIVE*/
    /*404 page*/
    .not-found {
        height: 74.4vh;
        background-size: 100% 260px, cover;
    }

    .not-found__actions {
        gap: 18px;
    }

    .not-found__text {
        font-size: 12px;
        letter-spacing: -0.39px;
        max-width: 275px;
    }

    /*#endregion*/

    /*#region common pages RESPONSIVE*/
    /*Common pages*/
    .common-page {
        padding: 130px 0 90px;
    }

    .common-title {
        font-size: 26px;
        letter-spacing: -1.04px;
    }

    .common-content p {
        font-size: 15px;
        letter-spacing: -0.45px;
    }

    .common-content h2 {
        font-size: 18px;
        line-height: 32px;
        letter-spacing: -0.72px;
    }

    .common-content li {
        font-size: 15px;
        letter-spacing: -0.45px;
        padding-left: 15px;
    }

    .common-content li::before {
        top: 10px;
    }

    .common-content td {
        font-size: 12px;
        letter-spacing: -0.36px;
        padding: 16px 14px;
    }

    .common-content th {
        padding: 0 14px 12px 14px;
    }

    .last-update p {
        font-size: 14px;
        letter-spacing: -0.42px;
    }

    /*#endregion*/

    /*#region archive portfolio */
    .portfolio-archive .portfolio__title {
        font-size: 28px;
        letter-spacing: -1.12px;
    }

    .portfolio-archive .portfolio-filter__trigger-text {
        font-size: 28px;
        letter-spacing: -1.12px;
    }

    .portfolio-filter__panel {
        width: 280px;
    }

    .portfolio-filter__option {
        font-size: 28px;
        letter-spacing: -1.12px;
        padding: 14px 28px;
    }

    .portfolio-filter__option::before {
        left: 22px;
    }

    .portfolio-archive .nav-links .page-numbers {
        width: 27px;
        height: 27px;
        font-size: 12px;
        border-radius: 6px;
    }

    .cta_archive {
        padding: 90px 20px;
    }

    .cta_archive__title {
        font-size: 24px;
        letter-spacing: -0.96px;
    }

    /*#endregion*/

    /*#region single portfolio RESPONSIVE*/
    .portfolio-single-hero__title {
        font-size: 34px;
        letter-spacing: -2.04px;
        max-width: 330px;
    }

    .portfolio-single-hero__year {
        font-size: 34px;
        letter-spacing: -2.04px;
    }

    .project-gallery {
        padding-inline: 32px;
        padding-block: 58px;
    }

    .project-gallery__item {
        max-height: 530px;
    }

    .project-statement__text--left {
        max-width: 270px;
        margin-top: 90px;
    }

    .project-statement__text--right {
        max-width: 190px;
        margin-bottom: 90px;
    }

    .project-full-image {
        padding-inline: 32px;
        padding-block: 58px 26px;
    }

    .project-full-image__media {
        height: 68vh;
    }

    .other-project {
        gap: 40px;
        padding: 0 32px 56px;
    }

    .other-project__title {
        font-size: 42px;
        letter-spacing: -2.52px;
    }

    .other-project__image {
        max-height: 480px;
    }

    /*#endregion*/

    /*#region contact RESPONSIVE*/
    .contact-form__title {
        font-size: 42px;
        letter-spacing: -2.52px;
        max-width: 400px;
    }

    .contact-form__info {
        margin-right: 40px;
    }

    .faq-content-box {
        padding: 42px 32px 64px;
    }

    /*#endregion*/

    /*#region about RESPONSIVE*/
    .about-hero__title {
        font-size: 32px;
        line-height: 34px;
        letter-spacing: -1.92px;
        max-width: 350px;
    }

    .about-intro {
        padding: 34px 32px;
    }

    .about-intro__text {
        max-width: 520px;
    }

    .about-process__content {
        max-width: 880px;
        gap: 120px;
    }

    .about-process__labels {
        gap: 32px;
    }

    /*#endregion*/
}

@media screen and (max-width: 1024px) {
    .btn--large {
        min-width: 250px;
    }

    /*#region header RESPONSIVE*/
    .header {
        padding: 30px 40px;
    }

    .logo__image {
        width: 79px;
    }

    .hamburger {
        display: flex;
    }

    .header__right {
        position: fixed;
        inset: 0;
        z-index: 15;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 56px;
        background-color: var(--charcoal);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }

    .menu-open .header__right {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav .menu {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .nav .menu li a {
        font-size: 44px;
    }

    .lang-switcher {
        align-self: center;
    }

    .lang-switcher__toggle {
        display: none;
    }

    .lang-switcher__dropdown {
        position: static;
        display: flex;
        gap: 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: transparent;
        border-radius: 0;
        padding: 0;
        min-width: 0;
    }

    .lang-switcher__dropdown li a {
        display: block;
        padding: 0;
        color: var(--white);
        font-size: 16px;
        font-weight: 500;
        opacity: 0.5;
        transition: opacity 0.2s ease;
    }

    .lang-switcher__dropdown li a.is-active {
        opacity: 1;
    }

    html.menu-open,
    body.menu-open {
        overflow: hidden;
        height: 100%;
    }

    .menu-open .header--dark .logo__image {
        filter: none;
    }

    .menu-open .header--dark .hamburger__line {
        background-color: var(--white);
    }

    .menu-open .header--dark .nav .menu li a {
        color: var(--white);
    }

    /*#endregion*/

    /*#region frontpage RESPONSIVE*/
    .hero {
        min-height: 95vh;
    }

    .hero__content {
        padding: 165px 28px 32px;
        justify-content: flex-start;
        gap: 140px;
    }

    .hero__bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 190px;
    }

    .hero-heading--bottom {
        order: -1;
        align-self: flex-end;
    }

    .hero__intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .hero-heading {
        font-size: 34px;
        letter-spacing: -2.04px;
    }

    .hero-heading--top {
        max-width: 300px;
    }

    /*Highlights*/
    .highlights {
        padding-block: 120px 58px;
        padding-inline: 0;
    }

    .highlight-intro__title {
        font-size: 22px;
        letter-spacing: -0.88px;
    }

    .highlight-intro {
        padding-bottom: 20px;
        padding-inline: 28px;
    }

    .highlights__grid {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-inline: 20px;
    }

    .highlights__grid::-webkit-scrollbar {
        display: none;
    }

    .highlight-card {
        flex: 0 0 320px;
        width: 320px;
    }

    .highlight-card__title {
        left: 24px;
        bottom: 22px;
        letter-spacing: -1.68px;
    }

    /*Why Choose*/
    .why-choose-us,
    .our-values {
        padding: 60px 28px;
    }

    .whychoose-title,
    .ourvalues-title {
        font-size: 46px;
        letter-spacing: -2.76px;
    }

    .feature-card__title {
        font-size: 19px;
    }

    .feature-card__content {
        padding: 22px;
    }

    /*Portfolio*/
    .portfolio.portfolio-archive {
        padding-block: 175px 0;
    }

    .portfolio {
        padding: 60px 28px;
    }

    .portfolio__title {
        font-size: 22px;
        letter-spacing: -0.88px;
    }

    .portfolio__text {
        font-size: 12px;
        letter-spacing: -0.36px;
        text-wrap: balance;
        margin-top: 6px;
    }

    .portfolio__header {
        margin-bottom: 20px;
        margin-top: 0;
    }

    .portfolio__grid {
        column-gap: 10px;
        row-gap: 15px;
    }

    .portfolio-card__name,
    .portfolio-card__year {
        font-size: 11px;
        letter-spacing: -0.78px;
    }

    .portfolio-card__footer {
        margin-top: 8px;
    }

    .portfolio-archive .pagination-track {
        margin-top: 20px;
    }

    /*CTA*/
    .cta {
        padding-top: 60px;
    }

    .cta_archive {
        padding: 70px 20px;
    }

    .cta__title {
        font-size: 22px;
        letter-spacing: -0.88px;
        margin-bottom: 24px;
    }

    .cta__content {
        padding: 24px;
    }

    /*#endregion*/

    /*#region footer RESPONSIVE*/
    .footer-top {
        padding: 36px 28px 80px;
    }

    .footer-logo__image {
        width: 124px;
    }

    .footer-top__left {
        gap: 36px;
    }

    .footer-top__columns {
        gap: 36px;
        margin-right: 20px;
    }

    .footer-middle {
        padding: 0 28px 34px;
    }

    .footer-middle__credit {
        gap: 10px;
    }

    .footer-bottom {
        padding: 21px 28px;
    }

    .footer-bottom__image {
        width: 252px;
    }

    /*#endregion*/

    /*Common pages*/
    .common-container {
        padding-inline: 60px;
    }

    /*#region archive portfolio */
    .portfolio-archive .portfolio__title {
        font-size: 30px;
    }

    .portfolio-archive .portfolio-filter__trigger-text {
        font-size: 30px;
    }

    .portfolio-filter {
        z-index: 5;
    }

    .portfolio-filter__panel {
        width: 260px;
        margin-left: -20px;
    }

    .portfolio-filter__option {
        font-size: 26px;
        letter-spacing: -1.04px;
        padding: 14px 20px;
    }

    .portfolio-archive .portfolio__title-row {
        gap: 20px;
    }

    .portfolio-archive .navigation.pagination {
        margin-top: 60px;
    }

    .portfolio-archive .nav-links {
        gap: 8px;
    }

    .cta_archive__title {
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 110%;
        letter-spacing: -0.8px;
        max-width: 174px;
    }

    .cta_archive__container {
        max-width: 604px;
    }

    /*#endregion*/

    /*#region single portfolio RESPONSIVE*/
    .portfolio-single-hero {
        height: 57vh;
    }

    .portfolio-single-hero__content {
        padding: 185px 40px 52px;
    }

    .portfolio-single-hero__title {
        font-size: 32px;
        letter-spacing: -1.92px;
        max-width: 310px;
    }

    .portfolio-single-hero__year {
        font-size: 32px;
        letter-spacing: -1.92px;
    }

    .project-meta {
        gap: 40px;
        padding: 30px 40px 10px;
    }

    .project-meta__category,
    .project-meta__location,
    .project-meta__services li {
        font-size: 10px;
        letter-spacing: -0.6px;
    }

    .project-gallery {
        padding-inline: 28px;
        padding-block: 52px;
    }

    .project-gallery__item {
        max-height: 480px;
    }

    .project-gallery__grid {
        gap: 15px;
    }

    .project-statement {
        gap: 70px;
    }

    .project-statement__text p {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .project-statement__text--left {
        max-width: 235px;
        margin-top: 105px;
    }

    .project-statement__text--right {
        max-width: 154px;
        margin-bottom: 105px;
    }

    .project-statement__media {
        width: 190px;
        padding-block: 65px;
    }

    .project-full-image {
        padding-inline: 28px;
        padding-block: 30px 21px;
    }

    .project-full-image__media {
        height: 62vh;
    }

    .other-project {
        padding: 0 28px 8px;
    }

    .other-project__content {
        gap: 13px;
    }

    .other-project__footer {
        margin-top: 7px;
    }

    .other-project__name,
    .other-project__year {
        font-size: 10px;
        line-height: 136%;
        letter-spacing: -0.598px;
    }

    .other-project__title {
        max-width: 255px;
    }

    .other-project__image {
        max-height: 400px;
    }

    /*#endregion*/

    /*#region contact RESPONSIVE*/
    .contact-hero {
        height: 45.8vh;
    }

    .contact-hero__title {
        font-size: 30px;
        max-width: 261px;
        margin-right: 70px;
        margin-bottom: 12px;
    }

    .contact-hero__content::before {
        width: 34px;
        height: 34px;
        margin-bottom: 2px;
    }

    .contact-hero__text {
        font-size: 11px;
        max-width: 266px;
        letter-spacing: -0.33px;
    }

    .contact-hero__content {
        padding: 0 80px 55px 0;
        max-width: 450px;
    }

    .contact-form {
        padding: 40px;
    }

    .contact-form-wrapper {
        max-width: 750px;
    }

    .contact-form__title {
        font-size: 40px;
        letter-spacing: -2.4px;
        max-width: 340px;
    }

    .contact-form__address {
        font-size: 10px;
        letter-spacing: -0.6px;
        max-width: 140px;
    }

    .contact-form__phone {
        font-size: 11px;
        letter-spacing: -0.66px;
    }

    .contact-form__note {
        font-size: 7px;
        letter-spacing: -0.42px;
        white-space: nowrap;
    }

    .contact-form__info {
        margin-right: 75px;
    }

    .contact-form__field {
        margin-bottom: 11px;
    }

    .contact-form__row {
        gap: 16px;
    }

    .contact-form__field input,
    .contact-form__field textarea {
        font-size: 10px;
        padding: 10px 13px;
    }

    .contact-form__field textarea {
        min-height: 188px;
    }

    .contact-form__footer {
        margin-top: 15px;
        gap: 10px;
    }

    .contact-form__checkbox input[type="checkbox"] {
        width: 17px;
        height: 17px;
        border-radius: 4px;
    }

    .contact-form__checkbox span {
        font-size: 9px;
        letter-spacing: -0.27px;
    }

    .faq-section {
        padding-top: 30px;
    }

    .faq-title {
        font-size: 20px;
        letter-spacing: -0.8px;
        max-width: 173px;
        margin-bottom: 7px;
        justify-self: center;
    }

    .faq-content-box {
        padding: 40px 40px 50px;
        max-width: 731px;
    }

    .service-item summary {
        font-size: 13px;
        letter-spacing: -0.52px;
        padding: 13px 18px;
    }

    .faq-subtitle {
        font-size: 11px;
        letter-spacing: -0.33px;
    }

    .faq-header {
        margin-bottom: 25px;
    }

    .faq-footer {
        gap: 15px;
    }

    .faq-footer-text {
        font-size: 11px;
        line-height: 119%;
        letter-spacing: -0.33px;
    }

    .faq-list {
        margin-bottom: 15px;
    }

    /*#endregion*/

    /*#region about RESPONSIVE*/
    .about-hero {
        height: 73.2vh;
    }

    .about-hero__title {
        bottom: 66.9%;
        font-size: 30px;
        line-height: 29.866px;
        letter-spacing: -1.8px;
        max-width: 320px;
    }

    .about-intro {
        padding: 30px 28px;
    }

    .about-intro__text {
        max-width: 502px;
        font-size: 16px;
        line-height: 110%;
        letter-spacing: -0.64px;
    }

    .about-design {
        padding: 90px 30px 250px;
    }

    .about-design__media {
        width: 23.93vw;
    }

    .about-design__word {
        font-size: 3.91vw;
        letter-spacing: -0.23vw;
    }

    .design-text__about {
        max-width: 402px;
        bottom: -39.5%;
        gap: 0;
    }

    .about-process {
        height: 66vh;
        margin-bottom: 80px;
    }

    .about-process__content {
        max-width: 860px;
        padding: 0 20px 70px;
        gap: 117px;
    }

    .about-process__labels {
        gap: 32px;
    }

    .about-process__label {
        font-size: 16px;
        line-height: 110%;
        letter-spacing: -0.64px;
    }

    .about-process__text p {
        font-size: 12px;
        line-height: 110%;
        letter-spacing: -0.48px;
        max-width: 220px;
    }

    .about-team {
        height: 57.2vh;
    }

    .about-team__title {
        max-width: 477px;
        bottom: 43px;
        line-height: 110%;
        letter-spacing: -0.88px;
    }

    /*#endregion*/

    .not-found__label {
        font-size: 9px;
        letter-spacing: -0.18px;
        margin-bottom: 6px;
    }

    .not-found__title {
        font-size: 94px;
        margin-bottom: 16px;
    }

    .not-found__content {
        max-width: 783px;
    }
}

@media screen and (max-width: 950px) {}

@media screen and (max-width: 900px) {

    /* Componentes reutilizaveis */
    .btn {
        padding: 11px 26px;
    }

    /*#region header RESPONSIVE*/
    .logo__image {
        width: 132px;
    }

    .header__right {
        gap: 48px;
    }

    .nav .menu {
        gap: 28px;
    }



    /*#endregion*/

    /*#region frontpage RESPONSIVE*/
    .hero {
        min-height: 91.5vh;
    }

    .hero__content {
        padding: 160px 26px 30px;
        gap: 130px;
    }

    .hero-heading {
        font-size: 30px;
        letter-spacing: -1.8px;
    }

    /*Why Choose*/
    .why-choose-us,
    .our-values {
        padding: 56px 26px;
    }

    .whychoose-title,
    .ourvalues-title {
        font-size: 44px;
        letter-spacing: -2.64px;
        margin-bottom: 20px;
    }

    .feature-card__content {
        padding: 20px;
    }

    /*Portfolio*/
    .portfolio {
        padding: 56px 26px;
    }

    /*CTA*/
    .cta {
        padding-top: 70px;
    }

    .cta__content {
        padding: 22px 22px 30px;
    }

    /*#endregion*/

    /*#region footer RESPONSIVE*/
    .footer-top {
        padding: 36px 26px 100px;
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-logo__image {
        width: 121px;
    }

    .footer-top__left {
        gap: 80px;
        width: 100%;
    }

    .footer-top__columns {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        gap: 60px;
        margin-right: 0;
    }

    .footer-address {
        max-width: 200px;
    }

    .footer-middle {
        padding: 0 26px 30px;
    }

    .footer-bottom {
        padding: 20px 26px;
    }

    /*#endregion*/

    /*#region 404 RESPONSIVE*/
    /*404 page*/
    .not-found {
        height: 85vh;
        background-size: 100% 220px, cover;
    }

    .not-found__content {
        max-width: 100%;
        margin-left: 0;
        padding: 0 48px;
        align-items: center;
    }

    .not-found__label {
        font-size: 12px;
        letter-spacing: -0.56px;
        margin-bottom: 10px;
    }

    .not-found__title {
        font-size: 55px;
        margin-bottom: 14px;
    }

    .not-found__actions {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .not-found__text {
        font-size: 12px;
        letter-spacing: -0.36px;
        max-width: 335px;
        text-wrap: balance;
        text-align: center;
    }

    /*#endregion*/

    /*#region common pages RESPONSIVE*/
    /*Common pages*/
    .common-page {
        padding: 110px 0 70px;
    }

    .common-container {
        padding-inline: 48px;
    }

    .common-title {
        font-size: 24px;
        letter-spacing: -0.96px;
    }

    .common-content p {
        font-size: 14px;
        letter-spacing: -0.42px;
    }

    .common-content h2 {
        font-size: 17px;
        line-height: 30px;
        letter-spacing: -0.68px;
    }

    .common-content ul {
        padding-left: 6px;
    }

    .common-content li {
        font-size: 14px;
        letter-spacing: -0.42px;
        padding-left: 14px;
    }

    .common-content li::before {
        top: 9px;
    }

    .last-update p {
        font-size: 13px;
        letter-spacing: -0.39px;
    }

    /*#endregion*/

    /*#region archive portfolio */
    .portfolio-filter__panel {
        width: 240px;
    }

    .portfolio-filter__option {
        font-size: 24px;
        letter-spacing: -0.96px;
        padding: 12px 20px;
    }

    .portfolio-filter__option::before {
        left: 20px;
    }

    .portfolio-filter__option:hover {
        padding-left: 45px;
    }

    .portfolio-archive .navigation.pagination {
        margin-top: 48px;
    }

    .portfolio-archive .pagination-track {
        margin-top: 12px;
    }

    .cta_archive {
        padding: 80px 20px;
    }

    .cta_archive__container {
        gap: 30px;
    }

    /*#endregion*/

    /*#region single portfolio RESPONSIVE*/
    .portfolio-single-hero__content {
        padding: 200px 28px 52px;
    }

    .portfolio-single-hero__title {
        font-size: 32px;
        letter-spacing: -1.92px;
        max-width: 310px;
    }

    .portfolio-single-hero__year {
        font-size: 32px;
        letter-spacing: -1.92px;
    }

    .project-meta {
        gap: 20px;
        padding: 22px 26px;
    }

    .project-meta__category,
    .project-meta__location,
    .project-meta__services li {
        font-size: 12px;
        letter-spacing: -0.72px;
    }

    .project-gallery {
        padding-inline: 26px;
        padding-block: 48px;
    }

    .project-gallery__item {
        max-height: 420px;
    }

    .project-statement {
        gap: 24px;
        padding-inline: 26px;
        padding-block: 40px 36px;
    }

    .project-statement__text p {
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .project-statement__text--left {
        max-width: 200px;
        margin-top: 50px;
    }

    .project-statement__text--right {
        max-width: 150px;
        margin-bottom: 50px;
    }

    .project-statement__media {
        width: 140px;
        padding-block: 35px;
    }

    .project-statement__media::before {
        width: 1px;
    }

    .project-full-image {
        padding-inline: 26px;
        padding-block: 48px 22px;
    }

    .project-full-image__media {
        height: 58vh;
    }

    .other-project {
        gap: 24px;
        padding: 0 26px 50px;
    }

    .other-project__title {
        font-size: 34px;
        letter-spacing: -2.04px;
        max-width: 250px;
    }

    .other-project__image {
        max-height: 340px;
    }

    /*#endregion*/

    /*#region contact RESPONSIVE*/
    .contact-hero {
        height: 60vh;
    }

    .contact-hero__content {
        padding: 0 26px 55px;
        max-width: 430px;
    }

    .contact-hero__content::before {
        width: 60px;
        height: 60px;
        margin-left: 0;
    }

    .contact-hero__title {
        font-size: 36px;
        letter-spacing: -2.16px;
        max-width: 290px;
        margin-right: 10px;
    }

    .contact-hero__text {
        margin-right: 0;
    }

    .contact-form {
        padding: 70px 26px 42px;
    }

    .contact-form__header {
        gap: 0;
    }

    .contact-form__info {
        flex-direction: row;
        gap: 20px;
    }

    .contact-form__title {
        font-size: 36px;
        letter-spacing: -2.16px;
        max-width: 265px;
    }

    .contact-form__checkbox span {
        font-size: 13px;
        letter-spacing: -0.39px;
    }

    .faq-section {
        padding-top: 50px;
    }

    .faq-content-box {
        padding: 34px 24px 50px;
    }

    .service-item summary {
        font-size: 15px;
        padding: 14px 20px;
    }

    .details-wrapper {
        padding: 0 20px 12px;
    }

    .details-wrapper p {
        font-size: 12px;
        letter-spacing: -0.36px;
    }

    .service-item {
        border-radius: 40px;
    }

    .faq-footer {
        gap: 24px;
    }

    /*#endregion*/

    /*#region about RESPONSIVE*/
    .about-hero__title {
        font-size: 30px;
        max-width: 300px;
    }

    .about-intro__text {
        max-width: 460px;
        font-size: 15px;
        letter-spacing: -0.6px;
    }

    .design-text__about {
        bottom: -41.5%;
    }

    .about-process {
        height: 540px;
    }

    .about-process__content {
        gap: 100px;
    }

    .about-team__title {
        max-width: none;
        width: 60%;
    }

    /*#endregion*/
}

@media screen and (max-width: 800px) {}

@media screen and (max-width: 770px) {
    .about-team__title {
        width: 75%;
    }

    .design-text__about {
        bottom: -49.5%;
    }
}

@media screen and (max-width: 700px) {

    /* Componentes reutilizaveis */
    .btn {
        padding: 11px 25px;
    }

    /*#region header RESPONSIVE*/
    .header {
        padding: 20px;
    }

    .logo__image {
        width: 119px;
    }

    .header__right {
        gap: 40px;
    }

    .nav .menu {
        gap: 24px;
    }



    .hamburger {
        width: 28px;
        height: 28px;
    }

    /*#endregion*/

    /*#region frontpage RESPONSIVE*/
    .hero {
        min-height: 88vh;
    }

    .hero__content {
        padding: 160px 24px 28px;
        gap: 120px;
    }

    /*Highlights*/
    .highlights {
        padding-block: 112px 54px;
        padding-inline: 0;
    }

    .highlight-card {
        flex: 0 0 305px;
        width: 305px;
    }

    .highlight-card__title {
        left: 20px;
        bottom: 19px;
        font-size: 27px;
        letter-spacing: -1.62px;
    }

    .highlight-intro__text {
        text-wrap: balance;
    }

    /*Why Choose*/
    .why-choose-us,
    .our-values {
        padding: 52px 24px;
    }

    .media-split {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .media-split__col {
        gap: 10px;
    }

    .feature-card--tall {
        aspect-ratio: auto;
        max-height: 400px;
    }

    .feature-card:not(.feature-card--tall) {
        max-height: 250px;
    }

    .whychoose-title,
    .ourvalues-title {
        font-size: 42px;
        letter-spacing: -2.52px;
    }

    .feature-card__title {
        font-size: 20px;
    }

    .feature-card__text {
        font-size: 14px;
    }

    .feature-card__content {
        padding: 20px;
    }

    /*Portfolio*/
    .portfolio {
        padding: 52px 24px;
    }

    .portfolio__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /*CTA*/
    .cta {
        padding-top: 80px;
        flex-direction: column;
    }

    .cta__content {
        padding: 0 24px 100px;
    }

    .cta__media {
        width: calc(100% - 48px);
        aspect-ratio: 1;
        margin: 0 24px;
    }

    .cta__title {
        margin-bottom: 20px;
    }

    /*#endregion*/

    /*#region footer RESPONSIVE*/
    .footer-top {
        padding: 38px 24px 110px;
        gap: 50px;
    }

    .footer-logo__image {
        width: 121px;
    }

    .footer-top__left {
        gap: 60px;
    }

    .footer-top__columns {
        gap: 40px;
    }

    .footer-address__location {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .footer-address__phone, .footer-address__email {
        font-size: 14px;
    }

    .footer-address__note {
        font-size: 10px;
    }

    .footer-col__title {
        font-size: 13px;
    }

    .footer-col__list a,
    .footer-col .footer-menu a {
        font-size: 11px;
    }

    .footer-middle {
        padding: 0 24px 28px;
    }

    .footer-bottom {
        padding: 20px 24px;
    }

    .footer-bottom__image {
        width: 248px;
    }

    /*#endregion*/

    /*#region 404 RESPONSIVE*/
    /*404 page*/
    .not-found {
        height: 80vh;
        background-size: 100% 180px, cover;
    }

    .not-found__content {
        padding: 0 32px;
    }

    .not-found__actions {
        gap: 16px;
    }

    /*#endregion*/

    /*#region common pages RESPONSIVE*/
    /*Common pages*/
    .common-container {
        padding-inline: 32px;
    }

    .common-title {
        font-size: 20px;
        letter-spacing: -0.8px;
    }

    .common-content p {
        font-size: 13px;
        letter-spacing: -0.39px;
    }

    .common-content h2 {
        font-size: 15px;
        line-height: 26px;
        letter-spacing: -0.6px;
    }

    .common-content li {
        font-size: 13px;
        letter-spacing: -0.39px;
        padding-left: 13px;
    }

    .common-content li::before {
        top: 8px;
    }

    .common-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .common-content th,
    .common-content td {
        white-space: nowrap;
    }

    .common-content td {
        padding: 14px 14px;
    }

    .last-update p {
        font-size: 12px;
        letter-spacing: -0.36px;
    }

    /*#endregion*/

    /*#region archive portfolio */
    .portfolio-filter__panel {
        width: 220px;
    }

    .portfolio-filter__option {
        font-size: 22px;
        letter-spacing: -0.88px;
        padding: 11px 20px;
    }

    .portfolio-filter__option::before {
        left: 18px;
    }

    .portfolio-archive .navigation.pagination {
        margin-top: 80px;
    }

    .cta_archive {
        padding: 120px 20px;
    }

    .cta_archive__container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        max-width: 100%;
    }

    .cta_archive__title {
        text-align: center;
        max-width: 174px;
    }

    /*#endregion*/

    /*#region single portfolio RESPONSIVE*/
    .portfolio-single-hero__content {
        padding: 160px 24px 44px;
    }

    .portfolio-single-hero__title {
        font-size: 30px;
        letter-spacing: -1.8px;
        max-width: 225px;
    }

    .portfolio-single-hero__year {
        font-size: 30px;
        letter-spacing: -1.8px;
    }

    .project-meta {
        gap: 16px;
        padding: 20px 24px;
        flex-wrap: wrap;
    }

    .project-meta__category,
    .project-meta__location,
    .project-meta__services li {
        font-size: 11px;
        letter-spacing: -0.66px;
    }

    .project-gallery {
        padding-inline: 0;
        padding-block: 44px;
    }

    .project-gallery__grid {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-inline: 25px;
    }

    .project-gallery__item {
        flex: 0 0 300px;
        width: 300px;
        max-height: 400px;
    }

    .project-statement {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 40px 25px;
    }

    .project-statement__text--left,
    .project-statement__text--right {
        max-width: 100%;
        margin-top: 0;
        margin-bottom: 0;
    }

    .project-statement__text--right {
        text-align: start;
    }

    .project-statement__text--right {
        align-self: flex-end;
        max-width: 155px;
        text-align: right;
    }

    .project-statement__media {
        width: 190px;
        height: auto;
        aspect-ratio: 1;
        padding-block: 40px;
    }

    .project-statement__text p {
        font-size: 20px;
        text-wrap: balance;
    }

    .project-full-image {
        padding-inline: 24px;
        padding-block: 44px 20px;
    }

    .project-full-image__media {
        height: 54vh;
    }

    .other-project {
        flex-direction: column;
        gap: 21px;
        padding: 50px 24px;
    }

    .other-project__card {
        width: 100%;
        order: 2;
    }

    .other-project__title {
        order: 1;
        font-size: 40px;
        max-width: 276px;
        align-self: flex-start;
        text-align: start;
    }

    .other-project__content {
        display: contents;
        gap: 20px;
    }

    .other-project__card {
        order: 2;
        width: 100%;
    }

    .other-project .btn {
        order: 3;
        align-self: flex-end;
    }

    /*#endregion*/

    /*#region contact RESPONSIVE*/
    .contact-hero__title {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .contact-hero__text {
        font-size: 12px;
    }

    .contact-form {
        padding: 30px 20px 60px;
    }

    .contact-form__header {
        gap: 60px;
        flex-direction: column;
        margin-bottom: 40px;
    }

    .contact-form__title {
        font-size: 40px;
        letter-spacing: -2.4px;
        max-width: 331px;
        order: 2;
    }

    .contact-form__info {
        gap: 27px;
        margin-right: 0;
    }

    .contact-form__field input,
    .contact-form__field textarea {
        font-size: 14px;
        padding: 10px;
    }

    .contact-form__field {
        margin-bottom: 5px;
    }

    .contact-form__field textarea {
        min-height: 200px;
    }

    .faq-section {
        padding-top: 60px;
    }

    .faq-title {
        font-size: 22px;
        letter-spacing: -0.88px;
        max-width: 199px;
        margin-bottom: 5px;
        justify-self: center;
    }

    .faq-subtitle {
        font-size: 16px;
        letter-spacing: -0.48px;
    }

    .faq-content-box {
        padding: 30px 20px 44px;
    }

    .faq-footer {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    /*#endregion*/

    /*#region about RESPONSIVE*/

    .about-hero__item--desktop {
        display: none;
    }

    .about-hero__item--mobile {
        display: block;
    }

    .about-hero__title {
        max-width: 280px;
    }

    .about-intro {
        padding: 30px 24px;
    }

    .about-intro__text {
        max-width: 100%;
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .about-design {
        padding: 75px 30px 200px;
    }

    .about-process {
        height: auto;
        margin-bottom: 60px;
    }

    .about-process__content {
        gap: 80px;
        padding: 20px;
    }

    .about-process__labels {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .about-process__labels::before {
        order: 2;
        flex: 0 0 280px;
        width: 1px;
        height: 280px;
        background-color: var(--white);
    }

    .about-process__label:first-child {
        order: 1;
    }

    .about-process__label:last-child {
        order: 3;
    }

    .about-process__label {
        font-size: 20px;
        max-width: 190px;
        text-align: center;
    }

    .about-process__text {
        align-items: flex-end;
        margin-left: 0;
    }

    .about-process__text p {
        max-width: 328px;
        font-size: 16px;
    }

    /*#endregion*/
}

@media screen and (max-width: 680px) {
    .about-design {
        padding: 75px 25px 260px;
    }

    .about-design__media {
        width: 22.79vw;
    }

    .about-design__word {
        font-size: 5.88vw;
        line-height: 62.511%;
        letter-spacing: -0.35vw;
    }

    .design-text__about {
        max-width: 306px;
        bottom: -94.5%;
        left: -153%;
    }

    .design-text__about p {
        font-size: 2.06vw;
        line-height: 2.94vw;
        letter-spacing: -0.06vw;
    }

    .about-design__word[data-word="firstWord"] {
        top: 16.5%;
        left: -61%;
    }

    .about-design__word[data-word="secondWord"] {
        top: 32.7%;
        left: -36.4%;
    }

    .about-design__word[data-word="thirdWord"] {
        top: 32.7%;
        right: -22%;
    }

    .about-design__word[data-word="fourWord"] {
        bottom: 39.3%;
        right: -72%;
    }

    .about-design__word.is-shifted[data-word="firstWord"] {
        left: -155%;
        top: 21%;
    }

    .about-design__word.is-shifted[data-word="secondWord"] {
        left: -123%;
        top: 37.7%;
    }

    .about-design__word.is-shifted[data-word="thirdWord"] {
        right: -124%;
        top: 99%;
    }

    .about-design__word.is-shifted[data-word="fourWord"] {
        right: -153%;
        bottom: -28%;
    }
}

@media screen and (max-width: 600px) {
    .about-team__title {
        width: calc(100% - 64px);
    }
}

@media screen and (max-width:580px) {
    .about-design {
        padding: 110px 25px 275px;
    }

    .about-design__media {
        width: 26.72vw;
    }

    .about-design__word {
        font-size: 6.90vw;
        line-height: 62.511%;
        letter-spacing: -0.41vw;
    }

    .design-text__about p {
        font-size: 2.41vw;
        line-height: 3.45vw;
        letter-spacing: -0.07vw;
    }

    .design-text__about {
        bottom: -103.5%;
        left: -122%;
    }

    .about-design__word.is-shifted[data-word="firstWord"] {
        left: -123%;
        top: -40%;
    }

    .about-design__word.is-shifted[data-word="secondWord"] {
        left: -87%;
        top: -22.3%;
    }

    .about-design__word.is-shifted[data-word="thirdWord"] {
        right: -83%;
        top: 110%;
    }

    .about-design__word.is-shifted[data-word="fourWord"] {
        right: -120%;
        bottom: -39%;
    }
}

@media screen and (max-width: 550px) {

    /* Componentes reutilizaveis */
    .btn {
        padding: 10px 25px;
    }

    /*#region header RESPONSIVE*/
    .header__right {
        gap: 32px;
    }

    .nav .menu {
        gap: 20px;
    }



    /*#endregion*/

    /*#region frontpage RESPONSIVE*/
    .hero {
        min-height: 755px;
    }

    .hero__content {
        padding: 160px 22px 26px;
        gap: 110px;
    }

    .hero__bottom {
        gap: 180px;
    }

    .hero__image {
        object-position: 66% center;
    }

    /*Highlights*/
    .highlights {
        padding-block: 105px 52px;
    }

    .highlight-card {
        flex: 0 0 294px;
        width: 294px;
    }

    .highlight-card__title {
        left: 17px;
        bottom: 16px;
        font-size: 25px;
        letter-spacing: -1.5px;
    }

    /*Why Choose*/
    .why-choose-us,
    .our-values {
        padding: 52px 20px;
    }

    .feature-card--tall {
        max-height: 370px;
    }

    .feature-card:not(.feature-card--tall) {
        max-height: 225px;
    }

    .whychoose-title,
    .ourvalues-title {
        font-size: 42px;
    }

    .feature-card__content {
        padding: 18px;
    }

    /*Portfolio*/
    .portfolio {
        padding: 50px 20px;
    }

    .portfolio__header {
        margin-bottom: 20px;
    }

    .portfolio__grid {
        column-gap: 8px;
        row-gap: 30px;
    }

    .portfolio__text {
        margin-top: 5px;
    }

    /*CTA*/
    .cta {
        padding-top: 90px;
    }

    .cta__content {
        padding: 0 20px 125px;
    }

    .cta__media {
        width: calc(100% - 40px);
        margin: 0 20px;
    }

    /*#endregion*/

    /*#region footer RESPONSIVE*/
    .footer-top {
        padding: 40px 20px 115px;
        gap: 40px;
    }

    .footer-logo__image {
        width: 121px;
    }

    .footer-top__left {
        gap: 37px;
    }

    .footer-top__columns {
        grid-template-columns: repeat(3, auto);
        gap: 27px;
    }

    .footer-address__location {
        margin-bottom: 15px;
    }

    .footer-address__note {
        font-size: 9px;
    }

    .footer-col__title {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .footer-col__list a,
    .footer-col .footer-menu a {
        font-size: 11px;
        line-height: 2;
    }

    .footer-middle {
        padding: 0 22px 26px;
    }

    .footer-bottom {
        padding: 19px 22px;
    }

    /*#endregion*/

    /*#region 404 RESPONSIVE*/
    /*404 page*/
    .not-found {
        height: 75vh;
        background-size: 100% 150px, cover;
    }

    .not-found__text {
        max-width: 90%;
    }

    .not-found__content {
        padding: 0 24px;
    }

    /*#endregion*/

    /*#region common pages RESPONSIVE*/
    /*Common pages*/
    .common-container {
        padding-inline: 24px;
    }

    .common-title {
        font-size: 17px;
        letter-spacing: -0.68px;
    }

    .common-content p {
        font-size: 12px;
        letter-spacing: -0.36px;
    }

    .common-content h2 {
        font-size: 13px;
        line-height: 22px;
        letter-spacing: -0.52px;
    }

    .common-content ul {
        padding-left: 0;
    }

    .common-content li {
        font-size: 12px;
        letter-spacing: -0.36px;
        padding-left: 12px;
    }

    .common-content li::before {
        top: 7px;
    }

    .common-content th {
        padding: 0 12px 10px 12px;
    }

    .common-content td {
        padding: 12px 12px;
    }

    /*#endregion*/

    /*#region archive portfolio */
    .portfolio.portfolio-archive {
        padding-block: 160px 0;
    }

    .portfolio-archive .portfolio__title-row {
        gap: 12px;
    }

    .portfolio-filter__panel {
        width: 200px;
    }

    .portfolio-filter__option {
        font-size: 20px;
        letter-spacing: -0.8px;
        padding: 10px 20px;
    }

    .portfolio-filter__option::before {
        left: 16px;
    }

    .portfolio-filter__option:hover {
        padding-left: 35px;
    }

    .portfolio__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-archive .nav-links .page-numbers {
        width: 26px;
        height: 26px;
        border-radius: 5px;
    }

    .cta_archive__title {
        font-size: 22px;
    }

    /*#endregion*/

    /*#region single portfolio RESPONSIVE*/
    .portfolio-single-hero {
        height: 74.5vh;
    }

    .portfolio-single-hero__content {
        padding: 160px 22px 42px;
    }

    .project-gallery {
        padding-block: 40px;
    }

    .project-gallery__grid {
        padding-inline: 20px;
        gap: 10px;
    }

    .project-gallery__item {
        flex: 0 0 260px;
        width: 260px;
        max-height: 340px;
    }

    .project-statement {
        padding: 36px 20px;
        gap: 20px;
    }

    .project-statement__text p {
        text-wrap: unset;
    }

    .project-statement__text--left {
        max-width: 310px;
        align-self: flex-start;
        text-align: start;
    }

    .project-full-image {
        padding-inline: 0;
        padding-block: 40px 30px;
    }

    .project-full-image__media {
        height: 50vh;
    }

    .other-project {
        padding: 25px 20px 0;
    }

    /*#endregion*/

    /*#region contact RESPONSIVE*/

    .contact-hero__content::before {
        display: none;
    }

    .contact-hero__content {
        padding: 0 20px 80px;
        max-width: 100%;
    }

    .contact-hero__title {
        font-size: 36px;
        margin-bottom: 10px;
        margin-left: 0;
    }

    .contact-hero__text {
        font-size: 14px;
        margin-left: 0;
    }

    .contact-form__footer {
        margin-top: 15px;
        flex-direction: column;
        gap: 25px;
        align-items: start;
    }

    .contact-form__row {
        gap: 5px;
        grid-template-columns: 1fr;
    }

    .contact-form__field textarea {
        min-height: 284px;
    }

    .faq-header {
        max-width: 210px;
        margin-bottom: 30px;
    }

    .faq-title {
        font-size: 22px;
        letter-spacing: -0.88px;
    }

    .faq-subtitle {
        font-size: 13px;
        letter-spacing: -0.39px;
    }

    .faq-content-box {
        padding: 28px 16px 40px;
    }

    .service-item summary {
        font-size: 14px;
        letter-spacing: -0.56px;
    }

    .details-wrapper p {
        font-size: 14px;
        letter-spacing: -0.42px;
    }

    .service-item {
        border-radius: 32px;
    }

    /*#endregion*/

    /*#region about RESPONSIVE*/
    .about-intro {
        padding: 30px 32px;
    }

    .about-intro__text {
        font-size: 17px;
        letter-spacing: -0.68px;
    }

    .about-process__content {
        gap: 67px;
    }

    .about-process__labels {
        gap: 20px;
    }

    .about-process__label {
        font-size: 22px;
    }

    /*#endregion*/
}

@media screen and (max-width: 480px) {
    .about-design__media {
        width: 32.29vw;
    }

    .about-design__word {
        font-size: 8.33vw;
        line-height: 62.511%;
        letter-spacing: -0.50vw;
    }

    .design-text__about {
        bottom: -99.5%;
        left: -90%;
    }

    .about-design .design-text__about {
        width: calc(100vw - 50px);
        max-width: 364px;
    }

    .design-text__about p {
        font-size: 2.92vw;
        line-height: 4.17vw;
        letter-spacing: -0.09vw;
    }

    .about-design__word.is-shifted[data-word="firstWord"] {
        left: -90%;
        top: -45%;
    }

    .about-design__word.is-shifted[data-word="secondWord"] {
        left: -52%;
        top: -27.3%;
    }

    .about-design__word.is-shifted[data-word="thirdWord"] {
        right: -57%;
        top: 116%;
    }

    .about-design__word.is-shifted[data-word="fourWord"] {
        right: -87%;
        bottom: -45%;
    }
}

@media screen and (max-width:400px) {

    /*#region header RESPONSIVE*/
    .header__right {
        gap: 24px;
    }

    .nav .menu {
        gap: 16px;
    }



    .hamburger {
        width: 26px;
        height: 26px;
    }

    /*#endregion*/

    /*#region frontpage RESPONSIVE*/
    .hero {
        min-height: 740px;
    }

    .hero__content {
        padding: 130px 20px 25px;
        gap: 100px;
    }

    .hero__bottom {
        gap: 170px;
    }

    /*Highlights*/
    .highlights {
        padding-block: 100px 50px;
    }

    .highlight-card {
        flex: 0 0 282px;
        width: 282px;
    }

    .highlight-card__title {
        left: 15px;
        bottom: 14px;
        font-size: 24px;
        letter-spacing: -1.44px;
    }

    /*Why Choose*/
    .why-choose-us,
    .our-values {
        padding: 50px 20px;
    }

    .whychoose-title,
    .ourvalues-title {
        font-size: 40px;
        letter-spacing: -2.4px;
        margin-bottom: 18px;
    }

    .feature-card--tall {
        max-height: 350px;
    }

    .feature-card:not(.feature-card--tall) {
        max-height: 212px;
    }

    .feature-card__title {
        font-size: 18px;
        letter-spacing: -1.08px;
        max-width: 100%;
    }

    .feature-card__text {
        font-size: 13px;
        letter-spacing: -0.39px;
        max-width: 100%;
    }

    .feature-card__content {
        padding: 15px;
    }

    /*Portfolio*/
    .portfolio {
        padding: 50px 20px;
    }

    .portfolio__title {
        font-size: 22px;
        letter-spacing: -0.88px;
    }

    .portfolio__text {
        font-size: 14px;
        letter-spacing: -0.42px;
        margin-top: 5px;
        text-wrap: unset;
    }

    .portfolio__header {
        margin-bottom: 20px;
    }

    .portfolio__grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 8px;
        row-gap: 30px;
    }

    .portfolio-card__media {
        aspect-ratio: auto;
        height: 230px;
    }

    .portfolio-card__footer {
        margin-top: 10px;
    }

    .portfolio-card__name,
    .portfolio-card__year {
        font-size: 11px;
        letter-spacing: -0.66px;
        line-height: 1;
    }

    /*CTA*/
    .cta {
        padding: 150px 0 0;
    }

    .cta__content {
        padding: 0 20px 150px;
    }

    .cta__title {
        font-size: 22px;
        letter-spacing: -0.88px;
        margin-bottom: 15px;
    }

    .cta__media {
        width: calc(100% - 40px);
        aspect-ratio: 1;
        margin: 0 20px;
    }

    /*#endregion*/

    /*#region footer RESPONSIVE*/
    .footer-top {
        padding: 40px 20px 60px;
        flex-direction: column;
        gap: 0;
    }

    .footer-logo__image {
        width: 121px;
    }

    .footer-top__left {
        flex-direction: column;
        gap: 37px;
        margin-bottom: 120px;
    }

    .footer-address__location {
        font-size: 14px;
        letter-spacing: -0.84px;
        margin-bottom: 15px;
    }

    .footer-address__phone, .footer-address__email {
        font-size: 14px;
        letter-spacing: -0.84px;
    }

    .footer-address__note {
        font-size: 9px;
        letter-spacing: -0.54px;
    }

    .footer-top__columns {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-right: 0;
        width: 100%;
    }

    .footer-col:nth-child(1),
    .footer-col:nth-child(2) {
        flex: 1 1 auto;
    }

    .footer-col__title {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .footer-col__list,
    .footer-col .footer-menu {
        gap: 0;
    }

    .footer-col__list a,
    .footer-col .footer-menu a {
        font-size: 10px;
    }

    .footer-middle {
        padding: 0 20px 25px;
    }

    .footer-bottom {
        padding: 19px 22px;
    }

    .footer-bottom__image {
        width: 242px;
    }

    /*#endregion*/

    /*#region 404 RESPONSIVE*/
    /*404 page*/
    .not-found {
        height: 86vh;
        background-size: 100% 120px, cover;
    }

    .not-found__content {
        padding: 0 16px;
    }

    .not-found__text {
        max-width: 260px;
    }

    /*#endregion*/

    /*#region common pages RESPONSIVE*/
    /*Common pages*/
    .common-container {
        padding-inline: 16px;
    }

    .common-title {
        font-size: 15px;
        letter-spacing: -0.6px;
    }

    .common-content th {
        padding: 0 10px 8px 10px;
    }

    .common-content td {
        padding: 10px 10px;
    }

    /*#endregion*/

    /*#region archive portfolio */
    .portfolio-filter__panel {
        width: 100vw;
        margin-left: -20px;
    }

    .portfolio-filter__option {
        font-size: 18px;
        letter-spacing: -0.72px;
        padding: 9px 20px;
    }

    .portfolio-filter__option::before {
        left: 20px;
    }

    .portfolio-filter__option:hover {
        padding-left: 38px;
    }

    .portfolio-archive .pagination-track {
        margin-top: 10px;
    }

    /*#endregion*/

    /*#region single portfolio RESPONSIVE*/
    .portfolio-single-hero__content {
        padding: 120px 20px 40px;
    }

    .portfolio-single-hero__title {
        font-size: 36px;
        letter-spacing: -2.16px;
        max-width: 100%;
    }

    .portfolio-single-hero__year {
        font-size: 36px;
        letter-spacing: -2.16px;
    }

    .project-meta {
        gap: 30px;
        padding: 30px 20px;
    }

    .project-meta__category,
    .project-meta__location,
    .project-meta__services li {
        font-size: 10px;
        letter-spacing: -0.60px;
    }

    .project-gallery {
        padding-block: 30px;
    }

    .project-gallery__grid {
        padding-inline: 20px;
        gap: 8px;
    }

    .project-gallery__item {
        flex: 0 0 280px;
        width: 280px;
        max-height: 360px;
    }

    .project-statement {
        padding: 40px 20px;
        gap: 24px;
    }

    /*#endregion*/

    /*#region contact RESPONSIVE*/
    .contact-form__title {
        font-size: 36px;
        letter-spacing: -2.16px;
    }

    .contact-form__checkbox span {
        font-size: 12px;
        letter-spacing: -0.36px;
    }

    .contact-form__checkbox {
        gap: 8px;
    }

    .contact-form__footer {
        margin-top: 22px;
    }

    .faq-content-box {
        padding: 50px 15px;
    }

    /*#endregion*/

    /*#region about RESPONSIVE*/
    .about-hero {
        height: 58.1vh;
    }

    .about-hero__title {
        bottom: 56%;
        font-size: 30px;
        line-height: 32px;
        letter-spacing: -1.8px;
        max-width: 280px;
    }

    .about-intro__text {
        max-width: 100%;
        font-size: 18px;
        line-height: 20px;
        letter-spacing: -0.72px;
    }

    .about-design {
        padding: 45.38vw 20px 83.85vw;
    }

    .about-design__media {
        width: 39.23vw;
    }

    .about-design__word {
        font-size: 10.26vw;
        line-height: 100%;
        letter-spacing: -0.62vw;
    }

    .design-text__about {
        width: calc(100vw - 40px);
        max-width: 350px;
        bottom: -114.5%;
        left: -65%;
    }

    .design-text__about p {
        font-size: 3.59vw;
        line-height: 5.13vw;
        letter-spacing: -0.11vw;
    }

    .about-design__word[data-word="firstWord"] {
        top: 8%;
        left: -58%;
    }

    .about-design__word[data-word="secondWord"] {
        top: 24%;
        left: -35%;
    }

    .about-design__word[data-word="thirdWord"] {
        top: 24%;
        right: -27%;
    }

    .about-design__word[data-word="fourWord"] {
        bottom: 40%;
        right: -70%;
    }

    .about-design__word.is-shifted[data-word="firstWord"] {
        left: -66%;
        top: -49%;
    }

    .about-design__word.is-shifted[data-word="secondWord"] {
        left: -22%;
        top: -30.2%;
    }

    .about-design__word.is-shifted[data-word="thirdWord"] {
        right: -23%;
        top: 106%;
    }

    .about-design__word.is-shifted[data-word="fourWord"] {
        right: -56%;
        bottom: -44%;
    }

    .about-process {
        margin-bottom: 50px;
    }

    .about-process__content {
        gap: 67px;
    }

    .about-process__labels {
        gap: 20px;
    }

    .about-process__labels::before {
        height: 32px;
    }

    .about-process__label {
        font-size: 22px;
        line-height: 110%;
        letter-spacing: -0.88px;
    }

    .about-process__text {
        padding-right: 0;
    }

    .about-process__text p {
        max-width: 328px;
        line-height: 110%;
        letter-spacing: -0.64px;
    }

    .about-team {
        margin: 50px auto 0;
    }

    .about-team__title {
        width: calc(100% - 64px);
        bottom: 30px;
    }

    /*#endregion*/
}

@media screen and (max-width: 380px) {

    /*#region frontpage RESPONSIVE*/
    .hero-heading {
        font-size: 28px;
        letter-spacing: -1.8px;
    }

    .hero__text {
        font-size: 14px;
    }

    /*#endregion*/

    /*#region archive portfolio */
    .portfolio-archive .portfolio__title {
        font-size: 16px;
    }

    .portfolio-archive .portfolio-filter__trigger-text {
        font-size: 16px;
    }

    .portfolio-filter__option {
        font-size: 16px;
    }

    /*#endregion*/

    .service-item summary {
        font-size: 12px;
        letter-spacing: -0.56px;
    }

    .details-wrapper p {
        font-size: 12px;
        letter-spacing: -0.42px;
    }

    .not-found__title {
        font-size: 45px;
        margin-bottom: 14px;
    }
}

@media screen and (max-width: 350px) {

    /*#region footer RESPONSIVE*/
    .footer-middle {
        padding: 0 16px 22px;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 8px;
    }

    .footer-middle__text {
        font-size: 11px;
    }

    .footer-bottom {
        padding: 18px 20px;
    }

    .footer-bottom__image {
        width: 230px;
    }

    /*#endregion*/
}

@media screen and (min-width: 1921px) {
    .contact-form-wrapper {
        margin: 0 auto;
    }

    .not-found__content {
        margin: 0 auto;
    }
}

/* WordPress integration */
.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 100000;
    padding: 12px 18px;
    color: #111;
    background: #fff;
}

.skip-link:focus {
    top: 20px;
}

.logo__text {
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
}

.header--dark .logo__text {
    color: #1b1b1b;
}

.portfolio-card__media:empty,
.portfolio-single-hero__media:empty {
    background: #e8e8e8;
}

.portfolio__empty {
    margin: 80px 0;
    font-size: 18px;
}

.ohd-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}

.response-ajax {
    width: 100%;
    margin-top: 20px;
    font-size: 14px;
}

.response-ajax.is-success {
    color: #176b3a;
}

.response-ajax.is-error,
.has-error {
    color: #a41e1e;
}

.contact-form__field.has-error input,
.contact-form__field.has-error textarea {
    border-color: #a41e1e;
}

.contact-form__form button[disabled] {
    cursor: wait;
    opacity: .65;
}

.other-project__card {
    color: inherit;
    text-decoration: none;
}

.common-content img {
    max-width: 100%;
    height: auto;
}

.admin-bar .header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .header {
        top: 46px;
    }
}
