/*
Theme Name: Tema Blisq Corporate
Theme URI: http://blisq.pt
Author: blisq
Author URI: http://blisq.pt
Description: Tema desenvolvido para uso exclusivo da Blisq Creative
Version: V1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blisq
Text Domain: blisq
*/

/* =========================================================
   TIPOGRAFIA
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap');

@font-face {
    font-family: 'Celvin';
    src: url('assets/fonts/CELVIN.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* =========================================================
   VARIAVEIS E RESETS
   ========================================================= */

:root {
    --white: #FFF;
    --black: #000;
    --color-earth-dark: #2A2518;
    --color-earth: #63573B;
    --color-earth-light: #6A5D3F;
    --color-earth-muted: #907F57;
    --color-cream: #F5F1ED;
    --color-cream-soft: #E5DED8;
    --color-black-soft: #1D1D1B;
    --color-black: #171717;
    --color-gray-warm: #807264;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
    display: block;
    background-color: var(--color-cream);
}

body {
    font-family: "Funnel Display", 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;
}

h1 {
    color: var(--color-black-soft);
    text-align: center;
    font-family: "Celvin", sans-serif;
    font-size: clamp(32px, 4.5vw, 82.14px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

h2 {
    color: var(--color-earth-dark);
    font-family: "Funnel Display", sans-serif;
    font-size: clamp(12px, 1vw, 14px);
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

h3 {
    color: var(--color-earth-dark);
    font-family: "Celvin", sans-serif;
    font-size: clamp(28px, 3vw, 45px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background-color: #E2DED3;
}

.block {
    display: block;
}

.none {
    display: none;
}

/* =========================================================
    HEADER
   ========================================================= */
.site-header {
    position: absolute;
    top: clamp(36px, 3vw, 65px);
    left: 0;
    right: 0;
    z-index: 1000;
    height: 47px;
    background: transparent;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    filter: drop-shadow(0px 4px 150px #FFFFFF) drop-shadow(0px 4px 79.6px #FFFFFF);
}

/* Logo */
.site-header__logo {
    display: block;
    width: 304px;
    height: 100%;
}

.site-header__logo img {
    width: 100%;
}

/* Hamburguer */
.site-header__hamburger {
    position: absolute;
    right: 60px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
}

.site-header__hamburger span {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--color-earth-light);
}

/* NAV OVERLAY */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    background-color: var(--color-earth);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s ease, visibility 0s linear 0.4s;
    position: fixed;
    overflow: hidden;
}

.nav-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('assets/images/logoBg.webp');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
    mix-blend-mode: multiply;
    opacity: 1;
    z-index: 0;
}

.nav-overlay.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.4s ease, visibility 0s;
}

/* TOPO DO OVERLAY */
.nav-overlay__header {
    height: 72px;
    flex-shrink: 0;
    padding-top: clamp(36px, 3vw, 65px);
}

.nav-overlay__inner {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.nav-overlay__close {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-overlay__close:hover .icon-close {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

/* LISTA DE NAVEGAÇÃO */
.nav-overlay__list {
    list-style: none;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: clamp(60px, 8vw, 122px);
}

.nav-overlay__list .menu-item {
    border-bottom: 1px solid var(--color-earth-dark);
}

.nav-overlay__list .menu-item:last-child {
    border-bottom: none;
}

.nav-overlay__list .menu-item a {
    position: relative;
    display: block;
    padding: clamp(14px, 2vw, 30px) clamp(16px, 4vw, 60px) clamp(14px, 2vw, 30px) clamp(24px, 6vw, 100px);
    color: var(--color-cream-soft);
    font-family: "Celvin", sans-serif;
    font-size: clamp(26px, 3vw, 43px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    text-wrap: balance;
}

.nav-overlay__list .menu-item a::after {
    content: "";
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    width: clamp(24px, 4vw, 40px);
    height: clamp(24px, 4vw, 40px);
    background: url("assets/icons/arrow.svg") no-repeat center;
    background-size: contain;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-overlay__list .menu-item a:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/*Header 404*/
.error404 .site-header__logo img {
    filter: brightness(0) invert(1);
}

.error404 .site-header__hamburger span {
    background: var(--white);
}

/* =========================================================
   HERO / Loading screen
   ========================================================= */
/* ── INTRO OVERLAY ── */
.intro {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: #E6E2DE;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: slideUp 0.9s cubic-bezier(0.76, 0, 0.24, 1) 2s forwards;
}

.intro-img {
    opacity: 0;
    animation: fadeInImg 1.2s ease 0.4s forwards;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: 47%;
}

/* imagem faz fade in */
@keyframes fadeInImg {
    from {
        opacity: 0;
        transform: scale(0.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* overlay sobe para fora do ecrã */
@keyframes slideUp {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-100vh);
    }
}

.hero {
    height: 100vh;
    overflow: hidden;
    position: relative;
    min-height: 600px;
}

.hero .swiper {
    width: 100%;
    height: 100%;
}

.hero .swiper-slide {
    display: flex;
}

.hero .swiper-slide img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero__title {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    filter: drop-shadow(0px 4px 150px #FFFFFF) drop-shadow(0px 4px 79.6px #FFFFFF);
    text-wrap: balance;
}

.hero__btn {
    display: inline-block;
    padding: clamp(10px, 1.5vw, 16px) clamp(14px, 2vw, 25px);
    text-decoration: none;
    border-radius: 50px;
    color: var(--color-black);
    text-align: center;
    font-family: "Funnel Display", sans-serif;
    font-size: clamp(12px, 1vw, 15px);
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    background-color: var(--color-cream);
    position: absolute;
    bottom: 115px;
    transition: opacity 0.3s ease;
}

.hero__btn:hover {
    opacity: 0.90;
}

/* =========================================================
   ENTERPRISE
   ========================================================= */
.enterprise {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding: clamp(60px, 5vw, 130px) 0;
    background-color: transparent;
    max-width: 1250px;
    margin: 0 auto;
    gap: clamp(24px, 4vw, 60px);
    z-index: 1;
    position: relative;
    isolation: isolate;
}

/* FIGURA / IMAGEM */
.enterprise__figure {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    position: relative;
}

.enterprise__image {
    display: block;
    width: 100%;
    max-width: 345px;
    height: auto;
    object-fit: cover;
    aspect-ratio: 345/518;
}

.enterprise__image--second {
    position: absolute;
    bottom: -100%;
    left: -84px;
    transform: translateY(50%);
}

/* CONTEÚDO */
.enterprise__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.enterprise__label {
    max-width: 320px;
    margin-bottom: clamp(12px, 2vw, 20px);
    text-transform: uppercase;
}

.enterprise__title {
    max-width: 587px;
    margin: 0 0 auto;
}

.enterprise__text {
    color: var(--color-earth-dark);
    font-size: clamp(14px, 1.2vw, 16px);
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    max-width: 445px;
    margin: 0;
}

/* =========================================================
   WHATWEDO
   ========================================================= */
.whatwedo {
    background-color: var(--color-earth-dark);
}

.whatwedo_container {
    display: grid;
    grid-template-columns: 1fr 53.8%;
    gap: clamp(24px, 4vw, 60px);
    align-items: center;
    min-height: 100vh;
    padding: clamp(60px, 8vw, 120px) 0 clamp(80px, 10vw, 150px) clamp(24px, 5vw, 60px);
    background-color: var(--color-earth-dark);
    max-width: 1860px;
    margin: 0 auto;
}

/* INTRO */
.whatwedo__intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
}

.whatwedo__label {
    color: var(--color-cream);
    text-transform: uppercase;
    margin-bottom: clamp(12px, 2vw, 20px);
}

.whatwedo__title {
    color: var(--color-earth-muted);
    text-transform: uppercase;
    margin: 0 0 auto;
    max-width: 587px;
}

.whatwedo__text {
    color: var(--color-cream);
    font-size: clamp(14px, 1.2vw, 16px);
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    max-width: 435px;
    margin: 0;
}

/* ACCORDION (direita) */
.whatwedo__accordion {
    width: calc(100% + 60px);
    max-width: 100%;
}

.accordion__item {
    border-bottom: 1px solid #5E553F;
    padding: clamp(20px, 3vw, 30px) clamp(40px, 10vw, 230px) clamp(16px, 2vw, 25px) clamp(20px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: background-color 0.4s ease;
}

.accordion__item:hover {
    background-color: #1C180F;
    border-radius: 20px;
    border-bottom: 1px solid transparent;
}

.accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.accordion__trigger-title {
    color: var(--color-cream-soft);
    font-family: "Celvin", sans-serif;
    font-size: clamp(20px, 2.5vw, 43px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    max-width: 652px;
}

.accordion__icon {
    flex-shrink: 0;
    width: clamp(20px, 2.5vw, 40px);
    height: clamp(20px, 2.5vw, 40px);
}

.accordion__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Mostra plus por defeito, esconde minus */
.accordion__icon-plus {
    display: block;
}

.accordion__icon-minus {
    display: none;
}

/* Quando aberto — troca os ícones */
.accordion__item.is-open .accordion__icon-plus {
    display: none;
}

.accordion__item.is-open .accordion__icon-minus {
    display: block;
}

.accordion__item.is-open {
    background-color: #63573B;
    border-radius: 20px;
}

/* Painel */
.accordion__panel {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.5s linear, opacity 0.3s ease;
    max-width: 593px;
}

/* estado aberto */
.accordion__item.is-open .accordion__panel {
    opacity: 1;
}

.accordion__panel[hidden] {
    display: none;
}

.accordion__panel-text {
    color: #D2CCBC;
    font-size: clamp(16px, 1.2vw, 18px);
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
}

/* =========================================================
    Portfolio
   ========================================================= */
.portfolio-container {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.portfolio {
    background-color: var(--color-cream-soft);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.portfolio::before {
    content: "";
    position: absolute;
    width: 228px;
    height: 2452px;
    background: rgba(42, 37, 24, 0.22);
    filter: blur(71px);
    transform: rotate(-53.327deg);
    top: -83%;
    right: 7%;
    z-index: 0;
    pointer-events: none;
}

.portfolio::after {
    content: "";
    position: absolute;
    width: 345px;
    height: 887px;
    background: rgba(42, 37, 24, 0.22);
    filter: blur(71px);
    transform: rotate(-53.327deg);
    border-radius: 214px;
    bottom: 0%;
    left: -5%;
    z-index: 0;
    pointer-events: none;
}

/* CONTEÚDO CENTRAL */
.portfolio__content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    min-height: 100vh;
    padding: clamp(50px, 8vw, 97px) 0 clamp(40px, 7vw, 83px);
}

.portfolio__text-inner {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vw, 20px);
    align-items: center;
    max-width: 385px;
    margin: auto 0;
}

.portfolio__label {
    color: #BAA794;
    text-align: center;
    text-transform: uppercase;
}

.portfolio__title {
    text-wrap: balance;
}

.portfolio__text {
    color: var(--color-gray-warm);
    text-align: center;
    font-size: clamp(15px, 1vw, 16px);
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    max-width: 320px;
    text-wrap: balance;
}

.portfolio__btn,
.portfolio__btn-mobile {
    display: inline-block;
    padding: clamp(10px, 1.5vw, 16px) clamp(14px, 2vw, 25px);
    text-decoration: none;
    border-radius: 50px;
    color: var(--color-black);
    text-align: center;
    font-size: clamp(12px, 1vw, 15px);
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    background-color: var(--color-cream);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.portfolio__btn-mobile {
    display: none;
}

.portfolio__btn:hover {
    opacity: 0.90;
}

/* CARDS — wrapper */
.portfolio__cards {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: clamp(50px, 8vw, 97px) 0 clamp(40px, 7vw, 83px);
    max-width: 1920px;
    margin: 0 auto;
}

.portfolio__card {
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: #FFFCFA;
    transform-origin: top left;
    width: clamp(109px, 20vw, 296px);
    height: clamp(123px, 25vw, 335px);
    z-index: 3;
    box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);
    transition: transform 0.35s ease;
    overflow: hidden;
    align-items: center;
}

/* Linha com sombra */
.portfolio__card-figure::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -10px;
    right: 0;
    height: 1px;
    width: calc(100% + 20px);
    box-shadow: 0 0.538px 2.153px 0 rgba(0, 0, 0, 0.15);
    z-index: 0;
}

.portfolio__card:hover {
    transform: scale(1.03);
}

.portfolio__card-logo {
    max-width: clamp(100px, 10vw, 132px);
    width: 100%;
    height: auto;
    z-index: 3;
    box-shadow: 0 0 0 100vmax #F5F1ED;
    clip-path: inset(0 -100vmax);
    background-color: #F5F1ED;
    padding: clamp(5px, 1.2vw, 14px) 0;
}

.portfolio__card-figure {
    margin: 0;
    flex: 1;
    overflow: hidden;
    padding: 0 clamp(4px, 1vw, 11px) clamp(4px, 1vw, 11px);
    position: relative;
}

.portfolio__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* POSIÇÕES INDIVIDUAIS DOS CARDS  */
.portfolio__card--1 {
    top: 12.6%;
    left: 7.9%;
}

.portfolio__card--2 {
    top: 42.4%;
    left: -2.3%;
}

.portfolio__card--3 {
    bottom: 8.2%;
    left: 20.5%;
}

.portfolio__card--4 {
    top: 4.7%;
    right: 17.7%;
}

.portfolio__card--5 {
    bottom: 21.4%;
    right: 23.4%;
}

.portfolio__card--6 {
    bottom: 10%;
    right: 4.3%;
}

.portfolio__card--7 {
    bottom: 31.5%;
    right: -6%;
}

/* =========================================================
   METHOD
   ========================================================= */
.method {
    background-color: #E5DED8;
    padding: clamp(40px, 6vw, 60px) 0 clamp(80px, 10vw, 150px);
}

.method-container {
    margin: 0 auto;
    max-width: 1800px;
    padding: 0 20px 0;
}

.method__label {
    text-transform: uppercase;
    margin-bottom: clamp(25px, 6vw, 202px);
}

/* CARDS */
.method__cards {
    display: flex;
    gap: clamp(10px, 2vw, 20px);
    height: clamp(420px, 60vh, 588px);
    overflow: hidden;
}

/* CARD */
.method__card {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    width: 24.2%;
    transition: width 0.5s ease;
    cursor: pointer;
    flex: 1 0 auto;
}

/* Primeiro card começa já aberto */
.method__card:first-child {
    width: 49.5%;
}

/* Hover no segundo ou terceiro — primeiro encolhe */
.method__cards:has(.method__card:not(:first-child):hover) .method__card:first-child {
    width: 33.3%;
}

/* Segundo e terceiro abrem no hover */
.method__card:not(:first-child):hover {
    width: 40.3%;
}

.method__card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* OVERLAY escuro sobre a imagem */
.method__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(42, 37, 24, 0) 36.39%,
            #1F1B10 91.84%);
    z-index: 1;
    pointer-events: none;
}

.method__card-content {
    position: absolute;
    bottom: clamp(12px, 2vw, 20px);
    left: clamp(12px, 2vw, 20px);
    z-index: 2;
}

.method__card-number {
    display: block;
    color: var(--color-cream);
    font-family: "Celvin", sans-serif;
    font-size: clamp(35px, 6vw, 75px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    position: absolute;
    top: clamp(14px, 3vw, 30px);
    left: clamp(14px, 3vw, 30px);
    z-index: 2;
}

.method__card-title {
    color: var(--color-cream);
    font-family: "Celvin", sans-serif;
    font-size: clamp(18px, 2.2vw, 28px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    max-width: 216px;
}

/* BOTÃO */
.method__card-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-cream-soft);
    font-size: clamp(12px, 1.5vw, 15px);
    font-weight: 500;
    line-height: 150%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.method__card-btn::after {
    content: "→";
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.method__card:hover .method__card-btn {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--color-cream);
    padding: clamp(40px, 8vw, 148px) 20px clamp(50px, 10vw, 189px);
    min-height: 756px;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('assets/images/ctabglogo.webp');
    background-size: 60%;
    background-position: center 62%;
    background-repeat: no-repeat;
    z-index: 0;
}

.cta-container {
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 535px);
}

.cta__label {
    color: var(--color-earth-dark);
    text-align: center;
    font-size: clamp(12px, 1vw, 14px);
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cta__title {
    color: var(--color-black-soft);
    text-align: center;
    font-family: "Celvin", sans-serif;
    font-size: clamp(28px, 3vw, 45px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin: 0 0 auto;
}

.cta__text {
    color: var(--color-earth-dark);
    text-align: center;
    font-size: clamp(13px, 1.2vw, 16px);
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
}

.cta__email {
    color: var(--color-earth-dark);
    font-size: clamp(13px, 1.2vw, 16px);
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.cta__email:hover {
    color: var(--color-earth-muted);
}

/* =========================================================
    FOOTER
   ========================================================= */
.footer {
    background-color: var(--color-cream);
    position: relative;
    overflow: hidden;
    background-image: url('assets/images/bglg_tomorrowsantos_footer.webp');
    background-repeat: no-repeat;
    background-position: center 103%;
    background-size: 107%;
    border-top: 1px solid #BEAFA1;
    z-index: 1;
}

/* TOPO — grid de 4 colunas */
.footer__top {
    padding: clamp(24px, 4vw, 60px) clamp(24px, 4vw, 60px);
}

.footer__grid {
    display: grid;
    grid-template-columns: 32.5% 12% 11.3% 12.9%;
    gap: 10.5%;
    max-width: 1920px;
    margin: 0 auto clamp(120px, 14vw, 265px);
    align-items: start;
}

/* COLUNA — LOGO */
.footer__logo {
    display: block;
}

.footer__logo img {
    width: 100%;
    max-width: 246px;
    height: auto;
}

/* COLUNA — INFORMAÇÕES */
.footer__col--info {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 3vw, 30px);
}

.footer__address {
    color: var(--black);
    font-size: clamp(11px, 0.1vw, 12px);
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    text-transform: uppercase;
}

.footer__address span {
    display: block;
}

.footer__address strong {
    font-weight: 600;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
}

.footer__email {
    color: var(--black);
    font-size: clamp(11px, 0.1vw, 12px);
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.footer__email:hover {
    opacity: 0.6;
}

.footer__phone-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer__phone {
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 300;
    color: var(--color-earth-dark);
    transition: opacity 0.3s ease;
}

.footer__phone strong {
    font-weight: 600;
}

.footer__phone:hover {
    opacity: 0.6;
}

.footer__phone-note {
    color: var(--black);
    font-size: 9px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    text-transform: uppercase;
}

/* COLUNAS — MENUS */
.footer__col--nav .menu,
.footer__col--legal .menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer__col--nav .menu-item a,
.footer__col--legal .menu-item a {
    color: var(--black);
    font-size: clamp(11px, 0.1vw, 12px);
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.footer__col--nav .menu-item a:hover,
.footer__col--legal .menu-item a:hover {
    opacity: 0.5;
}

/* Logo Blisq*/
.footer__blisq {
    display: flex;
    justify-content: flex-end;
    margin-right: calc(-1 * clamp(24px, 4vw, 60px) - 3px);
    margin-bottom: clamp(40px, 8vw, 126px);
}

.footer__blisq-figure {
    background-color: #E8E4E0;
    padding: 12px 23px 12px 10px;
    border-radius: 4px;
    margin: 0;
}

.footer__blisq-figure img {
    width: 43px;
    height: auto;
}

/* =========================================================
    ARCHIVE PORTFOLIO
   ========================================================= */
.archive-portfolio {
    background: linear-gradient(180deg, #E5DED8 4.07%, rgba(251, 247, 243, 0.00) 100%);
    padding: clamp(120px, 18vw, 230px) 0 clamp(20px, 3vw, 35px);
}

.archive-portfolio__container {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 5vw, 76px);
    max-width: 1860px;
    padding-inline: 40px;
    margin: 0 auto;
}

.archive-portfolio__body {
    display: grid;
    grid-template-columns: 21.65% 1fr;
    gap: clamp(32px, 5vw, 85px);
    align-items: start;
}

/* SIDEBAR */
.archive-portfolio__sidebar {
    position: sticky;
    top: 120px;
}

.archive-portfolio__sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.archive-portfolio__sidebar-close {
    display: none;
}

/* FILTROS */
.archive-portfolio__filter-btn {
    display: none;
}

.archive-portfolio__filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter__item {
    border-radius: 10px;
    background-color: #E0D8D1;
    padding: 10px 20px;
}

.filter__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.filter__trigger-title {
    color: var(--color-earth-dark);
    font-family: "Funnel Display", sans-serif;
    font-size: clamp(14px, 1vw, 16px);
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.filter__icon {
    flex-shrink: 0;
    width: clamp(14px, 1.2vw, 18px);
    height: clamp(14px, 1.2vw, 18px);
}

/* Painel */
.filter__panel {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.filter__options {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 13px;
}

.filter__label {
    display: flex;
    align-items: center;
    gap: 11px;
    cursor: pointer;
    color: #574F3A;
    font-size: clamp(13px, 0.9vw, 15px);
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    padding-block: 4px;
}

.filter__checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #C5B6AA;
    border-radius: 6px;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.filter__checkbox:hover {
    background-color: #C5B6AA;
}

.filter__checkbox:checked {
    background-color: transparent;
}

.filter__checkbox:checked:hover {
    background-color: #C5B6AA;
}

.filter__checkbox:checked::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('assets/icons/check.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
}

/* Botão limpar */
.filter__clear {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: clamp(12px, 1vw, 16px) clamp(18px, 2vw, 25px);
    width: 100%;
    background-color: var(--color-earth-dark);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: "Funnel Display", sans-serif;
    color: var(--color-cream);
    text-align: center;
    font-size: clamp(14px, 1vw, 16px);
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.filter__clear:hover {
    opacity: 0.8;
}

.filter__clear::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('assets/icons/filter.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

/* CTA SIDEBAR */
.archive-portfolio__sidebar-cta {
    display: flex;
    flex-direction: row;
    gap: 14px;
    border-radius: 15px;
    border: 1px solid #C5B6AA;
    padding: clamp(11px, 1vw, 15px) clamp(16px, 1.8vw, 22px);
}

.archive-portfolio__sidebar-cta-text {
    color: var(--color-earth-dark);
    font-size: clamp(12px, 0.85vw, 14px);
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    max-width: 214px;
}

.archive-portfolio__sidebar-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-earth-dark);
    text-align: right;
    font-size: clamp(13px, 0.9vw, 15px);
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    transition: opacity 0.3s ease;
    text-wrap: nowrap;
}

.archive-portfolio__sidebar-cta-link::after {
    content: "→";
    transition: transform 0.3s ease;
    display: inline-block;
}

.archive-portfolio__sidebar-cta-link:hover::after {
    transform: translateX(4px);
}

.archive-portfolio__sidebar-cta-link:hover {
    opacity: 0.6;
}

/* CONTEÚDO PRINCIPAL */
.archive-portfolio__main {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3.5vw, 47px);
}

.archive-portfolio__intro {
    display: flex;
    flex-direction: row;
    gap: clamp(14px, 2vw, 21px);
}

.archive-portfolio__title {
    color: var(--color-earth);
    font-size: clamp(32px, 5vw, 65px);
    text-align: left;
    max-width: 590px;
}

.archive-portfolio__text {
    color: var(--color-earth-dark);
    font-size: clamp(14px, 1vw, 16px);
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    max-width: 582px;
    align-content: flex-end;
    padding-bottom: 14px;
}

/* GRID DE CARDS */
.archive-portfolio__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2.5vw, 30px);
}

.archive-portfolio__grid .portfolio__card {
    position: relative;
    width: 100%;
    height: auto;
}

/* PAGINAÇÃO — classes WP */
.navigation.pagination {
    display: flex;
    justify-content: center;
}

.navigation.pagination .nav-links {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.5vw, 15px);
}

.navigation.pagination .page-numbers {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: auto;
    height: auto;
    border-radius: 0;
    color: var(--color-earth-dark);
    font-size: clamp(12px, 0.8vw, 13px);
    font-style: normal;
    font-weight: 300;
    line-height: 133%;
    background: none;
    padding: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
}

.navigation.pagination .page-numbers::after {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background-color: var(--color-earth-dark);
    opacity: 0.3;
}

.navigation.pagination .page-numbers.current {
    font-weight: 600;
    background: none;
    color: var(--color-earth-dark);
}

.navigation.pagination .page-numbers.current::after {
    opacity: 1;
    height: 3px;
    background-color: #C9B8A9;
    border-radius: 50px;
}

.navigation.pagination .page-numbers:hover {
    background: none;
    opacity: 0.6;
}

/* Prev e Next */
.navigation.pagination .prev.page-numbers,
.navigation.pagination .next.page-numbers {
    border: none;
    font-size: 0;
    width: 49px;
    height: 49px;
    padding: 0;
    position: relative;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.navigation.pagination .prev.page-numbers {
    margin-right: 5px;
}

.navigation.pagination .next.page-numbers {
    margin-left: 5px;
}

.navigation.pagination .prev.page-numbers:hover,
.navigation.pagination .next.page-numbers:hover {
    background-color: #D9D1CA;
    opacity: 1;
}

.navigation.pagination .prev.page-numbers::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url('assets/icons/arrowPag.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(180deg);
}

.navigation.pagination .prev.page-numbers::after,
.navigation.pagination .next.page-numbers::after {
    display: none;
}

.navigation.pagination .next.page-numbers::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url('assets/icons/arrowPag.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Screen reader */
.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;
}

/* =========================================================
    SINGLE PRODUTO
   ========================================================= */
.single {
    background: linear-gradient(180deg, #E5DED8 58.8%, rgba(251, 247, 243, 0.00) 100%);
    padding: 165px 0 136px;
}

.single__container {
    display: grid;
    grid-template-columns: 56.6% 1fr;
    margin: 0 17.75% 0 10.9%;
    gap: 64px;
    align-items: start;
}

/* GALERIA */
.single__gallery {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.single__gallery .swiper {
    overflow: visible;
}

#singleSwiper {
    width: 100%;
    max-width: 530px;
    height: auto;
    overflow: visible;
}

.single__gallery .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Setas */
.single__gallery-prev,
.single__gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    cursor: pointer;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.single__gallery-prev {
    left: 0;
}

.single__gallery-next {
    right: 0;
}

.single__gallery-prev:hover,
.single__gallery-next:hover {
    background-color: #D9D1CA;
    opacity: 1;
}

.single__gallery-prev::before,
.single__gallery-next::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url('assets/icons/arrowPag.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
}

.single__gallery-prev::before {
    transform: rotate(180deg);
}

/* Bullets */
.single__gallery .swiper-pagination {
    position: relative;
    bottom: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 43px;
}

.single__gallery .swiper-pagination-bullet {
    width: 28px;
    height: 1px;
    border-radius: 50px;
    background-color: var(--color-earth-dark);
    opacity: 1;
    border-radius: 50px;
    margin: 0 !important;
}

.single__gallery .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #C9B8A9;
    height: 5px;
}

/* Card */
.single__card {
    background-color: #FFFCFA;
    padding: 0;
    overflow: hidden;
}

.single__card-logo {
    max-width: 236px;
    width: 100%;
    height: auto;
    z-index: 3;
    box-shadow: 0 0 0 100vmax #F5F1ED;
    clip-path: inset(0 -100vmax);
    background-color: #F5F1ED;
    padding: clamp(5px, 1.2vw, 20px) 0;
    margin: 0 auto;
    display: block;
}

.single__card-figure {
    margin: 0;
    width: 100%;
    position: relative;
    padding: 0 clamp(4px, 1vw, 20px) clamp(4px, 1vw, 20px);
}

.single__card-figure::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -10px;
    right: 0;
    height: 1px;
    width: calc(100% + 20px);
    box-shadow: 0 0.538px 2.153px 0 rgba(0, 0, 0, 0.15);
    z-index: 0;
}

.single__card-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* CONTEÚDO */
.single__content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Header */
.single__header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 480px;
    margin-bottom: 20px;
}

.single__title {
    color: var(--color-earth-dark);
    font-size: 37px;
    font-style: normal;
    font-family: "Funnel Display", sans-serif;
    font-weight: 500;
    line-height: 103%;
    text-transform: uppercase;
    text-align: start;
}

.single__desc {
    color: var(--color-earth-dark);
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
}

/* ESPECIFICAÇÕES */
.single__specs {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.single__specs-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 11px;
    padding-bottom: 10px;
    align-items: center;
}

.single__specs-row:last-child {
    padding-bottom: 0;
}

.single__specs-term {
    color: var(--color-earth-dark);
    font-family: "Funnel Display", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.single__specs-desc {
    color: #574F3A;
    font-family: "Funnel Display", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    margin: 0;
}

/* BOTÃO PEDIR AMOSTRA */
.single__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 25px;
    background-color: var(--color-earth-dark);
    border-radius: 50px;
    color: #F5F1ED;
    text-align: center;
    font-family: "Funnel Display", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    transition: opacity 0.3s ease;
    margin-bottom: 22px;
}

.single__btn:hover {
    opacity: 0.8;
}

.single__btn::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url('assets/icons/sample.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

/* ACCORDION */
.single__accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.single__accordion-item {
    border-radius: 10px;
    background-color: #E0D8D1;
    padding: 10px 20px;
}

.single__accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.single__accordion-title {
    color: var(--color-earth-dark);
    font-family: "Funnel Display", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}

.single__accordion-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    position: relative;
}

.single__accordion-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('assets/icons/plus.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.single__accordion-item.is-open .single__accordion-icon::after {
    background-image: url('assets/icons/minusBrown.svg');
}

.single__accordion-panel {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.single__accordion-panel p {
    color: var(--color-earth-dark);
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 300;
    line-height: 1.6;
    padding-top: 13px;
    padding-bottom: 4px;
}

/* CTA */
.single__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 91px;
    border: 1px solid #C5B6AA;
    border-radius: 15px;
    padding: 15px 22px;
}

.single__cta-text {
    color: var(--color-earth-dark);
    font-family: "Funnel Display", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    max-width: 288px;
}

.single__cta-link {
    color: var(--color-earth-dark);
    text-align: right;
    font-family: "Funnel Display", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.single__cta-link:hover {
    opacity: 0.6;
}


/* PORTFOLIO */
.single-port {
    max-width: 1920px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.single-port__label {
    color: var(--color-earth-dark);
    text-align: center;
    font-size: clamp(12px, 1vw, 14px);
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 20px;
}

.single-port__title {
    color: var(--color-black-soft);
    text-align: center;
    font-family: "Celvin", sans-serif;
    font-size: clamp(28px, 3vw, 45px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-inline: 20px;
}

.single-port__slider {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    padding-block: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.single-port__slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.single-port__slider.active {
    cursor: grabbing;
}

/* Track */
.single-port__track {
    display: flex;
    gap: 30px;
    width: max-content;
    padding-block: 10px;
}

/* Card */
.single-port__card {
    display: flex;
    flex-direction: column;
    background-color: #FFFCFA;
    padding: 0;
    width: 296px;
    height: auto;
    flex-shrink: 0;
    box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);
    transition: transform 0.35s ease;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    align-items: center;
}

.single-port__card:hover {
    transform: scale(1.03);
}

.single-port__card-logo {
    max-width: clamp(100px, 10vw, 132px);
    width: 100%;
    height: auto;
    z-index: 3;
    box-shadow: 0 0 0 100vmax #F5F1ED;
    clip-path: inset(0 -100vmax);
    background-color: #F5F1ED;
    padding: clamp(5px, 1.2vw, 14px) 0;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.single-port__card-figure {
    margin: 0;
    padding: 0 clamp(4px, 1vw, 11px) clamp(4px, 1vw, 11px);
    flex: 1;
    overflow: hidden;
    position: relative;
}

.single-port__card-figure::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -10px;
    right: 0;
    height: 1px;
    width: calc(100% + 20px);
    box-shadow: 0 0.538px 2.153px 0 rgba(0, 0, 0, 0.15);
    z-index: 0;
}

.single-port__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/*CONTACT FORM */
.contact {
    padding: 0 clamp(16px, 4vw, 60px);
}

.contact__wrapper {
    background: linear-gradient(180deg, #FFFBF7 24.05%, rgba(245, 241, 237, 0.00) 93.73%);
    border-radius: 20px;
    padding: 50px 40px 20px;
    max-width: 890px;
    margin: 0 auto;
}

/* HEADER */
.contact__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: clamp(24px, 4vw, 40px);
}

.contact__title {
    color: var(--color-black-soft);
    text-align: center;
    font-family: "Celvin", sans-serif;
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.contact__desc {
    color: #8B826A;
    text-align: center;
    font-family: "Funnel Display", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
}

/* FORM */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(12px, 2vw, 20px);
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contact__label {
    color: var(--color-earth-dark);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
}

.contact__input,
.contact__textarea {
    width: 100%;
    padding: 8px 20px;
    border: 1px solid #DBD2CA;
    border-radius: 50px;
    background-color: transparent;
    color: #B1AA9A;
    font-family: "Funnel Display", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    outline: none;
    transition: border-color 0.2s ease;
}

.contact__textarea {
    padding: 20px;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: rgba(42, 37, 24, 0.4);
}

.contact__input:focus,
.contact__textarea:focus {
    border-color: var(--color-earth);
}

.contact__textarea {
    border-radius: 16px;
    resize: none;
    min-height: 254px;
}

/* PRODUTOS SELECIONADOS */
.contact__products {
    border: 1px solid #DBD2CA;
    border-radius: 25px;
    padding: 8px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.contact__product {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 15px;
    border-radius: 15px;
    transition: background-color 0.3s ease;
}

.contact__product:hover {
    background-color: #E5DED8;
}

.contact__product-img {
    width: 31px;
    height: 35px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow:
        0 0 0 2px white,
        0.883px 0.883px 2.65px rgba(0, 0, 0, 0.25);
}

.contact__product-name {
    flex: 1;
    color: var(--color-black-soft);
    font-family: "Funnel Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
}

.contact__product-remove {
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: opacity 0.2s ease;
}

.contact__product-remove::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('assets/icons/closeGold.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
}

/* FOOTER DO FORM */
.contact__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
}

.contact__privacy {
    display: flex;
    align-items: center;
    gap: 9px;
}

.contact__checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    border: 1px solid #C3B2A2;
    border-radius: 5px;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contact__checkbox:hover {
    background-color: #C3B2A2;
}

.contact__checkbox:checked:hover {
    background-color: #C3B2A2;
}

.contact__checkbox:checked::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('assets/icons/check.svg');
    background-repeat: no-repeat;
    background-position: 70%;
    background-size: 60%;
}

.contact__privacy-label {
    color: #867D65;
    font-family: "Funnel Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    cursor: pointer;
}

.contact__privacy-link {
    color: #574C2F;
    font-family: "Funnel Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    transition: opacity 0.2s ease;
}

.contact__privacy-link:hover {
    opacity: 0.6;
}

.contact__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 25px;
    background-color: var(--color-earth-dark);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    color: var(--color-cream);
    text-align: center;
    font-family: "Funnel Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    min-width: 302px;
}

.contact__submit:hover {
    opacity: 0.8;
}

.contact__submit::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url('assets/icons/sample.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

/* =========================================================
    ABOUT
   ========================================================= */
.about-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-cream);
}

.about-hero__title {
    position: fixed;
    z-index: 0;
    color: var(--color-cream-soft);
    text-align: center;
    font-family: "Celvin", sans-serif;
    font-size: 190px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    margin-top: 60px;
}

.about-hero__images {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.about-hero__figure {
    position: absolute;
    margin: 0;
    padding: 0;
    transform: scale(0.70);
    animation: heroImageIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.about-hero__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-hero__figure--1 {
    top: 25.7%;
    left: 8.6%;
    width: 167px;
    height: 250px;
    animation-delay: 0.2s;
}

.about-hero__figure--2 {
    bottom: 21.5%;
    left: 43%;
    width: 116px;
    height: auto;
    animation-delay: 0.5s;
}

.about-hero__figure--3 {
    top: 17%;
    right: 16.6%;
    width: 300px;
    height: 200px;
    animation-delay: 0.8s;
}

@keyframes heroImageIn {
    from {
        transform: scale(0.70);
    }

    to {
        transform: scale(1);
    }
}

.about-mission {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/images/bg-imageabout.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.about-mission__container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 690px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
}

.about-mission__label {
    color: var(--color-cream);
    text-align: center;
    font-family: "Funnel Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
    margin: 0;
}

.about-mission__heading {
    color: var(--color-cream);
    text-align: center;
    font-family: "Funnel Display";
    font-size: 37px;
    font-style: normal;
    font-weight: 500;
    line-height: 103%;
    text-transform: uppercase;
    text-wrap: balance;
}

.about-mission__text {
    color: var(--color-cream);
    text-align: center;
    font-family: "Funnel Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    max-width: 522px;
    margin: 0;
}

.about-cta {
    background-color: var(--color-cream);
    padding: 182px 0 200px;
    position: relative;
    z-index: 1;
}

.about-cta__container {
    max-width: 1330px;
    margin: 0 auto;
    margin-left: 212px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.about-cta__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 587px;
}

.about-cta__title {
    color: var(--color-earth-dark);
    font-family: "Funnel Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin: 0;
}

.about-cta__text {
    color: var(--color-earth-dark);
    font-family: Celvin;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}

.about-cta__figure {
    margin: 0;
    padding: 0;
    width: 529px;
    height: auto;
    transform: scale(0.7);
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-cta__figure.is-visible {
    transform: scale(1);
}

.about-cta__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================================================
    SERVICES
   ========================================================= */
.services-hero {
    --shrink: 0px;
    position: relative;
    min-height: 100vh;
    background-image: url('assets/images/bg-heroServices.webp');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: inset(var(--shrink));
    -webkit-clip-path: inset(var(--shrink));
}

.services-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 31px;
    max-width: 1457px;
}

.services-hero__title {
    color: #5C544C;
    text-align: center;
    font-family: "Celvin", sans-serif;
    font-size: 190px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    line-height: normal;
    text-transform: uppercase;
    width: 100%;
    margin-top: 156px;
}

.services-hero__text {
    color: var(--color-earth-dark);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    max-width: 445px;
    margin-right: -75px;
}

/* SERVICES */
.services {
    background-color: var(--color-earth-dark);
    padding-block: 120px;
    overflow: hidden;
}

.services__label {
    color: var(--color-cream);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 230px;
    margin-left: 60px;
    text-transform: uppercase;
}

/* Drag track */
.services__track {
    display: flex;
    gap: 25px;
    padding: 0 60px;
    cursor: grab;
    user-select: none;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.services__track::-webkit-scrollbar {
    display: none;
}

.services__track:active {
    cursor: grabbing;
}

/* Item */
.services__item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-shrink: 0;
    width: 535px;
}

/* Image */
.services__figure {
    margin: 0;
    overflow: hidden;
}

.services__img {
    width: 407px;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 90px;
}

/* Text */
.services__title {
    color: var(--color-earth-muted);
    font-family: Celvin;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    text-wrap: balance;
}

.services__text {
    color: var(--color-cream-soft);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    text-wrap: balance;
}

/* =========================================================
    COMMON PAGES
   ========================================================= */
.common {
    background-color: var(--color-cream);
}

.common__container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 43% 1fr;
    align-items: stretch;
    gap: clamp(32px, 3.5vw, 92px);
}

/* SIDEBAR */
.common__sidebar {
    background-color: var(--color-cream-soft);
    padding: 0 20px;
}

.common__title {
    position: sticky;
    top: 100px;
    color: var(--color-earth);
    font-family: "Celvin", sans-serif;
    font-size: clamp(32px, 3.4vw, 65px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    text-align: start;
    margin: clamp(100px, 13vw, 250px) auto clamp(120px, 16.1vw, 310px);
    max-width: 700px;
}

/* CONTEÚDO */
.common__content {
    padding: clamp(180px, 23.4vw, 390px) 0 clamp(80px, 6.5vw, 124px);
    max-width: 720px;
}

.common__content h2 {
    color: var(--color-earth-dark);
    font-family: "Celvin", sans-serif;
    font-size: clamp(20px, 1.8vw, 34px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin: 25px 0 10px;
}

.common__content h2:first-child {
    margin-top: 0;
}

.common__content h3 {
    color: var(--color-earth-dark);
    font-family: "Funnel Display", sans-serif;
    font-size: clamp(16px, 1vw, 19px);
    font-style: normal;
    font-weight: 600;
    line-height: 103%;
    text-transform: uppercase;
    margin-bottom: 5px;
    margin-top: 25px;
}

.common__content h3:first-child {
    margin-top: 0;
}

.common__content p {
    color: var(--color-earth-dark);
    font-size: clamp(14px, 0.8vw, 16px);
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 4px;
}

.common__content ol {
    padding-left: 25px;
}

.common__content ul {
    list-style: none;
    padding-left: 25px;
}

.common__content ul li {
    position: relative;
    color: var(--color-earth-dark);
    font-size: clamp(14px, 0.8vw, 16px);
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
}

.common__content li strong {
    font-weight: 600;
}

.common__content ul li::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 11px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--color-earth-dark);
}

.common__content table {
    width: calc(100% + 200px);
    border-collapse: collapse;
    font-size: clamp(11px, 1vw, 13px);
}

.common__content caption {
    caption-side: bottom;
    color: var(--color-earth-dark);
    font-size: clamp(14px, 0.8vw, 16px);
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    text-align: start;
    margin-top: 5px;
}

.common__content th {
    color: var(--color-earth-dark);
    font-size: clamp(14px, 0.8vw, 16px);
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    border-bottom: 1px solid rgba(42, 37, 24, 0.16);
    padding: 10px 20px;
    text-align: left;
}

.common__content td {
    color: var(--color-earth-dark);
    font-size: clamp(11px, 1vw, 13px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    border-bottom: 1px solid rgba(42, 37, 24, 0.16);
    padding: 10px 20px;
    vertical-align: top;
    line-height: 1.6;
}

.common__content tbody tr:last-child td {
    border-bottom: none;
}

.common__content th,
.common__content td {
    border-right: 1px solid rgba(42, 37, 24, 0.16);
}

.common__content th:last-child,
.common__content td:last-child {
    border-right: none;
}

.common__last-update {
    margin-top: 10px;
}

.common__last-update p {
    color: var(--color-earth-dark);
    font-size: clamp(14px, 0.8vw, 16px);
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
}

.common__last-update p strong {
    font-weight: 600;
}

/* =========================================================
    404
   ========================================================= */
.error-404 {
    position: relative;
    min-height: 95.4vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('assets/images/bg404.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Content */
.error-404__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    padding: 0 40px;
}

/* Card */
.error-404__card {
    background-color: #FFFCFA;
    padding: 0;
    box-shadow: 0 0.963px 3.853px 0 rgba(0, 0, 0, 0.15);
    transform: rotate(4.35deg);
    align-self: flex-end;
    margin-top: 73px;
    margin-bottom: 7px;
    overflow: hidden;
}

.error-404__card-logo {
    max-width: clamp(100px, 10vw, 132px);
    width: 100%;
    height: auto;
    z-index: 3;
    box-shadow: 0 0 0 100vmax #F5F1ED;
    clip-path: inset(0 -100vmax);
    background-color: #F5F1ED;
    padding: clamp(5px, 1.2vw, 13px) 0;
    margin: 0 auto;
    display: block;
}

.error-404__card-figure {
    margin: 0;
    padding: 0 clamp(4px, 1vw, 11px) clamp(4px, 1vw, 11px);
    position: relative;
    border-top: none;
}

.error-404__card-figure::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -10px;
    right: 0;
    height: 1px;
    width: calc(100% + 20px);
    box-shadow: 0 0.538px 2.153px 0 rgba(0, 0, 0, 0.15);
    z-index: 0;
}

.error-404__card-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1;
}

/* Title */
.error-404__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    white-space: nowrap;
    color: #A7998D;
    text-align: center;
    font-family: Celvin;
    font-size: 273px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    mix-blend-mode: multiply;
}

/* Text */
.error-404__text {
    color: var(--color-cream);
    text-align: center;
    font-family: "Funnel Display";
    font-size: 19px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    max-width: 553px;
}

/* Button */
.error-404__btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 25px;
    background-color: var(--color-earth-dark);
    border-radius: 50px;
    color: var(--color-cream);
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    transition: opacity 0.3s ease;
}

.error-404__btn:hover {
    opacity: 0.8;
}

/* =========================================================
    RESPONSIVO
   ========================================================= */
@media screen and (max-height: 800px) {
    .cta__intro {
        min-height: 40vh;
    }

    .cta::before {
        background-position: center;
    }
}

@media screen and (max-width: 1880px) {
    .footer__grid {
        grid-template-columns: 28% 16% 15% 16%;
        gap: 6%;
    }
}

@media screen and (max-width:1800px) {

    h3 {
        font-size: clamp(26px, 3vw, 42px);
    }

    .hero__title {
        font-size: clamp(30px, 4.5vw, 75px);
    }

    .nav-overlay__list .menu-item a {
        font-size: clamp(24px, 3vw, 40px);
    }

    .accordion__trigger-title {
        font-size: clamp(18px, 2.5vw, 38px);
    }

    .accordion__panel-text {
        font-size: clamp(15px, 1.2vw, 17px);
    }

    .method__card-number {
        font-size: clamp(30px, 6vw, 65px);
    }

    .method__card-title {
        font-size: clamp(16px, 2.2vw, 24px);
    }

    .cta__title {
        font-size: clamp(26px, 3vw, 42px);
    }

    .portfolio__card--5 {
        bottom: 21.4%;
        right: 19.4%;
    }

    .archive-portfolio__intro {
        gap: clamp(12px, 1.5vw, 18px);
    }

    .archive-portfolio__title {
        font-size: clamp(36px, 4.5vw, 60px);
        max-width: 520px;
    }

    .archive-portfolio__text {
        font-size: clamp(14px, 0.9vw, 15px);
        max-width: 500px;
        padding-bottom: 10px;
    }

    .archive-portfolio__sidebar-cta {
        flex-direction: column;
        gap: 10px;
    }

    .archive-portfolio__sidebar-cta-text {
        max-width: 100%;
    }

    .archive-portfolio__body {
        grid-template-columns: clamp(240px, 20%, 280px) 1fr;
        gap: clamp(24px, 4vw, 50px);
    }

    .filter__item {
        padding: clamp(8px, 1vw, 10px) clamp(14px, 1.5vw, 20px);
    }

    .filter__trigger-title {
        font-size: clamp(13px, 0.9vw, 15px);
    }

    .filter__icon {
        width: clamp(12px, 1vw, 16px);
        height: clamp(12px, 1vw, 16px);
    }

    .filter__label {
        font-size: clamp(12px, 0.8vw, 14px);
        gap: 8px;
    }

    .filter__checkbox {
        width: 18px;
        height: 18px;
    }

    .filter__clear {
        font-size: clamp(13px, 0.9vw, 15px);
        padding: clamp(10px, 0.8vw, 14px) clamp(16px, 1.5vw, 22px);
    }

    .archive-portfolio__sidebar-cta {
        padding: clamp(10px, 0.8vw, 14px) clamp(14px, 1.2vw, 20px);
        gap: 10px;
    }

    .archive-portfolio__sidebar-cta-text {
        font-size: clamp(11px, 0.75vw, 13px);
    }

    .archive-portfolio__sidebar-cta-link {
        font-size: clamp(12px, 0.8vw, 14px);
    }

    /*Single-products*/
    .single__container {
        margin: 0 auto;
        padding-inline: 40px;
        max-width: 1400px;
        gap: 48px;
    }

    .single__title {
        font-size: 32px;
    }

    .single__desc {
        font-size: 18px;
    }

    .single__specs-term {
        font-size: 13px;
    }

    .single__specs-desc {
        font-size: 15px;
    }

    .single__btn {
        font-size: 15px;
        padding: 14px 22px;
    }

    .single__cta {
        gap: 40px;
        padding: 14px 20px;
    }

    .contact__wrapper {
        padding: 45px 36px 18px;
    }

    .contact__title {
        font-size: 26px;
    }

    .contact__desc {
        font-size: 15px;
    }

    .contact__input,
    .contact__textarea {
        font-size: 15px;
    }

    /*Quem somos*/
    .about-hero__title {
        font-size: 160px;
    }

    .about-cta__container {
        margin: 0 auto;
        padding-inline: 40px;
    }

    /* Services */
    .services-hero__title {
        font-size: 160px;
        margin-top: 120px;
    }

    .services-hero__text {
        margin-right: -50px;
    }

    .services {
        padding-block: 100px;
    }

    .services__title {
        font-size: 42px;
    }

    .services__label {
        margin-bottom: 180px;
        margin-left: 50px;
    }

    .services__track {
        padding: 0 50px;
        gap: 22px;
    }

    .services__item {
        width: 480px;
        gap: 26px;
    }

    .services__img {
        width: 360px;
        margin-bottom: 70px;
    }
}

@media screen and (max-width: 1600px) {
    h3 {
        font-size: clamp(24px, 3vw, 38px);
    }

    .hero__title {
        font-size: clamp(28px, 4.5vw, 65px);
    }

    .nav-overlay__list .menu-item a {
        font-size: clamp(22px, 3vw, 36px);
    }

    .accordion__trigger-title {
        font-size: clamp(16px, 2.5vw, 34px);
    }

    .accordion__panel-text {
        font-size: clamp(14px, 1.2vw, 16px);
    }

    .method__card-number {
        font-size: clamp(28px, 6vw, 55px);
    }

    .method__card-title {
        font-size: clamp(15px, 2.2vw, 22px);
    }

    .cta__title {
        font-size: clamp(24px, 3vw, 38px);
    }

    .enterprise {
        min-height: 89vh;
    }

    .cta {
        min-height: unset;
    }

    /*Single products*/
    .single {
        padding: 130px 0 100px;
    }

    .single__container {
        gap: 40px;
    }

    #singleSwiper {
        max-width: 460px;
    }

    .single__card-logo {
        max-width: 180px;
    }

    .single__title {
        font-size: 28px;
    }

    .single__desc {
        font-size: 16px;
    }

    .single__header {
        margin-bottom: 16px;
    }

    .single__specs {
        margin-bottom: 32px;
    }

    .single__specs-row {
        grid-template-columns: 100px 1fr;
        gap: 8px;
        padding-bottom: 8px;
    }

    .single__specs-term {
        font-size: 12px;
    }

    .single__specs-desc {
        font-size: 14px;
    }

    .single__btn {
        font-size: 14px;
        padding: 12px 20px;
        margin-bottom: 18px;
    }

    .single__accordion-item {
        padding: 8px 16px;
    }

    .single__accordion-title {
        font-size: 14px;
    }

    .single__cta {
        gap: 24px;
        padding: 12px 16px;
    }

    .single__cta-text {
        font-size: 13px;
        max-width: 240px;
    }

    .single__cta-link {
        font-size: 14px;
    }

    .single-port {
        padding-block: 100px 80px;
    }

    .single-port__track {
        gap: 24px;
    }

    .single-port__card {
        width: 260px;
        padding: 0;
    }

    .single-port__card-logo {
        max-width: 110px;
    }

    /*Quem somos*/
    .about-hero__title {
        font-size: 140px;
    }

    .about-hero__figure--1 {
        width: 150px;
        height: 225px;
    }

    .about-hero__figure--2 {
        width: 100px;
    }

    .about-hero__figure--3 {
        width: 260px;
        height: 175px;
    }

    .about-mission__heading {
        font-size: 32px;
    }

    .about-mission__text {
        font-size: 15px;
    }

    .about-cta {
        padding: 140px 0 160px;
    }

    .about-cta__container {
        gap: 60px;
    }

    .about-cta__figure {
        width: 440px;
    }

    .about-cta__text {
        font-size: 38px;
    }

    /* Services */
    .services-hero__title {
        font-size: 130px;
        margin-top: 100px;
    }

    .services-hero__content {
        gap: 24px;
    }

    .services-hero__text {
        font-size: 15px;
        margin-right: -30px;
        max-width: 400px;
    }

    .services {
        padding-block: 85px;
    }

    .services__label {
        margin-bottom: 140px;
        margin-left: 40px;
    }

    .services__track {
        padding: 0 40px;
        gap: 20px;
    }

    .services__item {
        gap: 22px;
    }

    .services__img {
        width: 310px;
        margin-bottom: 55px;
    }

    .services__title {
        font-size: 38px;
    }

    /*404*/
    .error-404__title {
        font-size: 220px;
    }

    .error-404__card {
        width: 240px;
        margin-top: 50px;
        margin-right: 45px;
    }

    .error-404__card-logo {
        max-width: 110px;
    }
}

@media screen and (max-width: 1550px) {
    .portfolio__card--3 {
        bottom: 4.2%;
        left: 18.5%;
    }

    .portfolio__card--6 {
        bottom: 6%;
        right: 4.3%;
    }

    .portfolio__card--5 {
        bottom: 21.4%;
        right: 15.4%;
    }

    .enterprise__figure {
        justify-content: center;
    }

    .enterprise__image--second {
        left: 34px;
    }

    .common__content table {
        width: calc(100% + 90px);
    }
}

@media screen and (max-width: 1500px) {
    .whatwedo_container {
        gap: clamp(16px, 3vw, 40px);
        min-height: 80vh;
    }

    .whatwedo__intro {
        justify-content: flex-start;
        height: auto;
    }

    .whatwedo__title {
        margin: 0;
    }

    .accordion__item {
        padding-right: clamp(20px, 4vw, 60px);
    }

    .method__card:not(:first-child):hover {
        width: 36.3%;
    }

    .method__card:first-child {
        width: 43.5%;
    }

    .method__card {
        height: clamp(380px, 52vh, 520px);
    }

    .footer__grid {
        grid-template-columns: 28% minmax(160px, 1fr) minmax(140px, 1fr) minmax(200px, 1fr);
        gap: clamp(20px, 3vw, 40px);
    }

    /*Quem somos*/
    .about-cta__container {
        max-width: 1225px;
    }
}

@media screen and (max-width: 1400px) {
    .method__card:first-child {
        width: 24.2%;
    }

    .method__card-content {
        bottom: clamp(40px, 6vw, 60px);
        left: clamp(12px, 3vw, 20px);
    }

    .method__card-btn {
        position: absolute;
        bottom: clamp(12px, 3vw, 20px);
        left: clamp(12px, 3vw, 20px);
        right: auto;
        top: auto;
        opacity: 1;
        transform: translateY(0);
    }

    .archive-portfolio {
        padding: 180px 0 35px;
    }

    .archive-portfolio__container {
        gap: 50px;
    }

    .archive-portfolio__body {
        grid-template-columns: 18% 1fr;
        gap: 50px;
    }

    .archive-portfolio__intro {
        gap: 10px;
    }

    .archive-portfolio__title {
        font-size: clamp(32px, 4vw, 50px);
        max-width: 400px;
    }

    .archive-portfolio__text {
        font-size: 14px;
        max-width: 450px;
        padding-bottom: 6px;
    }

    .archive-portfolio__grid {
        gap: 20px;
    }

    .archive-portfolio__body {
        grid-template-columns: clamp(220px, 22%, 260px) 1fr;
        gap: clamp(20px, 3vw, 40px);
    }

    .filter__item {
        padding: 8px 14px;
        border-radius: 8px;
    }

    .filter__trigger-title {
        font-size: 13px;
    }

    .filter__label {
        font-size: 12px;
        gap: 6px;
    }

    .filter__checkbox {
        width: 16px;
        height: 16px;
        border-radius: 4px;
    }

    .filter__clear {
        font-size: 13px;
        padding: 10px 16px;
    }

    .archive-portfolio__sidebar-cta {
        padding: 10px 14px;
        gap: 8px;
        border-radius: 12px;
    }

    .archive-portfolio__sidebar-cta-text {
        font-size: 11px;
        max-width: 180px;
    }

    .archive-portfolio__sidebar-cta-link {
        font-size: 12px;
    }

    /*Single-Products*/
    .contact__wrapper {
        padding: 40px 28px 16px;
        max-width: 800px;
    }

    .contact__title {
        font-size: 24px;
    }

    .contact__desc {
        font-size: 14px;
    }

    .contact__form {
        gap: 14px;
    }

    .contact__input,
    .contact__textarea {
        font-size: 14px;
        padding: 7px 18px;
    }

    .contact__textarea {
        min-height: 200px;
    }

    .contact__submit {
        min-width: 260px;
    }

    /*About*/
    .about-cta__text {
        font-size: 35px;
    }
}

@media screen and (max-width: 1300px) {
    .enterprise__image--second {
        max-width: 70%;
        left: 15%;
    }

    .enterprise {
        min-height: 70vh;
    }

    .enterprise__image {
        max-width: 245px;
    }

    /*Quem somos*/
    .about-cta__container {
        max-width: 1090px;
    }

    .about-cta {
        padding-block: 80px;
    }
}

@media screen and (max-width: 1280px) {
    h3 {
        font-size: clamp(22px, 3vw, 34px);
    }

    .hero__title {
        font-size: clamp(26px, 4.5vw, 55px);
    }

    .nav-overlay__list .menu-item a {
        font-size: clamp(18px, 3vw, 30px);
    }

    .accordion__trigger-title {
        font-size: clamp(14px, 2.5vw, 28px);
    }

    .accordion__panel-text {
        font-size: 14px;
    }

    .enterprise__text {
        font-size: 14px;
    }

    .whatwedo__text {
        font-size: 14px;
    }

    .portfolio__text {
        font-size: 14px;
    }

    .method__card-number {
        font-size: clamp(24px, 6vw, 45px);
    }

    .method__card-title {
        font-size: clamp(14px, 2.2vw, 20px);
    }

    .method__card-btn {
        font-size: 13px;
    }

    .cta__title {
        font-size: clamp(22px, 3vw, 34px);
    }

    .cta__text {
        font-size: 14px;
    }

    .cta__email {
        font-size: 14px;
    }

    .single-port {
        padding-block: 80px 60px;
    }

    .single-port__track {
        gap: 20px;
    }

    .single-port__card {
        width: 230px;
        padding: 0;
    }

    .single-port__card-logo {
        max-width: 100px;
    }

    .single {
        padding-bottom: 25px;
    }

    .single__container {
        gap: 32px;
        padding-inline: 28px;
    }

    #singleSwiper {
        max-width: 400px;
    }

    .single__card-logo {
        max-width: 140px;
    }

    .single__gallery-prev,
    .single__gallery-next {
        width: 40px;
        height: 40px;
    }

    .single__gallery-prev::before,
    .single__gallery-next::before {
        width: 16px;
        height: 16px;
    }

    .single__gallery .swiper-pagination {
        gap: 12px;
        margin-top: 32px;
    }

    .single__gallery .swiper-pagination-bullet {
        width: 22px;
    }

    .single__title {
        font-size: 24px;
    }

    .single__desc {
        font-size: 15px;
    }

    .single__header {
        gap: 8px;
    }

    .single__specs {
        margin-bottom: 28px;
    }

    .single__specs-row {
        grid-template-columns: 90px 1fr;
        padding-bottom: 6px;
    }

    .single__btn {
        font-size: 13px;
        padding: 10px 18px;
        margin-bottom: 16px;
    }

    .single__accordion-item {
        padding: 7px 14px;
    }

    .single__accordion-title {
        font-size: 13px;
    }

    .single__accordion-icon {
        width: 16px;
        height: 16px;
    }

    .single__cta {
        flex-direction: column;
        gap: 10px;
        padding: 10px 14px;
    }

    .single__cta-text {
        max-width: 100%;
    }

    /*Quem somos*/
    .about-hero {
        min-height: 550px;
    }

    .about-hero__title {
        font-size: 110px;
        margin-top: 40px;
    }

    .about-hero__figure--1 {
        top: 22%;
        left: 10%;
        width: 130px;
        height: 195px;
    }

    .about-hero__figure--2 {
        bottom: 18%;
        left: 40%;
        width: 85px;
    }

    .about-hero__figure--3 {
        top: 15%;
        right: 14%;
        width: 220px;
        height: 150px;
    }

    .about-mission__container {
        max-width: 580px;
        gap: 14px;
        padding-inline: 24px;
    }

    .about-mission__heading {
        font-size: 28px;
        line-height: 130%;
    }

    .about-mission__text {
        font-size: 14px;
        max-width: 440px;
    }

    .about-cta {
        padding: 110px 0 130px;
    }

    .about-cta__container {
        gap: 40px;
        padding-inline: 28px;
    }

    .about-cta__content {
        gap: 16px;
    }

    .about-cta__figure {
        width: 360px;
    }

    .about-cta__text {
        font-size: 32px;
    }

    /* Services*/
    .services-hero__title {
        font-size: 100px;
        margin-top: 70px;
    }

    .services-hero__content {
        gap: 18px;
        max-width: 100%;
        padding-inline: 40px;
    }

    .services-hero__text {
        font-size: 14px;
        margin-right: 0;
        align-self: flex-end;
        max-width: 360px;
    }

    .services {
        padding-block: 70px;
    }

    .services__label {
        margin-bottom: 100px;
        margin-left: 28px;
        font-size: 13px;
    }

    .services__track {
        padding: 0 28px;
    }

    .services__item {
        width: 385px;
        gap: 18px;
    }

    .services__img {
        width: 260px;
        margin-bottom: 40px;
    }

    .services__title {
        font-size: 32px;
    }

    .services__text {
        font-size: 14px;
    }

    /*404*/
    .error-404__title {
        font-size: 160px;
        top: 44%;
    }

    .error-404__text {
        font-size: 17px;
        max-width: 450px;
    }

    .error-404__card {
        width: 200px;
        margin-top: 35px;
    }

    .error-404__card-logo {
        max-width: 95px;
    }
}

@media screen and (max-width: 1240px) {
    .portfolio::before {
        content: "";
        position: absolute;
        width: 93px;
        height: 458px;
        border-radius: 214px;
        background: rgba(42, 37, 24, 0.22);
        filter: blur(71.4px);
        transform: rotate(-53.327deg);
        top: -13%;
        right: 16%;
        z-index: 0;
        pointer-events: none;
    }

    .portfolio::after {
        content: "";
        position: absolute;
        width: 93px;
        height: 458px;
        border-radius: 214px;
        background: rgba(42, 37, 24, 0.22);
        filter: blur(71.4px);
        transform: rotate(-53.327deg);
        bottom: 4%;
        left: -14%;
        z-index: 0;
        pointer-events: none;
    }

    .common__content table {
        display: block;
        overflow-x: auto;
        width: auto;
        padding-right: 20px;
    }

    .common__content {
        padding-right: 20px;
    }
}

@media screen and (max-width: 1200px) {
    .about-cta__container {
        max-width: 1000px;
    }
}

@media screen and (max-width: 1100px) {

    .footer__grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: clamp(32px, 5vw, 60px) clamp(16px, 2vw, 30px);
        margin-bottom: clamp(40px, 6vw, 80px);
    }

    .footer__col--logo {
        grid-column: 1 / -1;
    }

    .archive-portfolio {
        padding: 140px 0 35px;
    }

    .archive-portfolio__intro {
        flex-direction: column;
        gap: 10px;
    }

    .archive-portfolio__title {
        font-size: clamp(28px, 5vw, 40px);
        max-width: 100%;
    }

    .archive-portfolio__text {
        font-size: 15px;
        max-width: 60%;
        padding-bottom: 0;
    }

    .archive-portfolio__body {
        grid-template-columns: 200px 1fr;
        gap: 30px;
    }

    .archive-portfolio__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .filter__trigger-title {
        font-size: 14px;
    }

    .filter__label {
        font-size: 13px;
    }

    .filter__clear {
        font-size: 14px;
        padding: 12px 18px;
    }

    .archive-portfolio__sidebar-cta {
        flex-direction: column;
        gap: 8px;
    }

    .archive-portfolio__sidebar-cta-text {
        font-size: 13px;
        max-width: 100%;
    }

    .archive-portfolio__sidebar-cta-link {
        font-size: 13px;
    }

    .archive-portfolio__intro {
        flex-direction: column;
        gap: 12px;
    }

    .archive-portfolio__container {
        padding-inline: 20px;
    }

    .archive-portfolio__body {
        grid-template-columns: clamp(200px, 25%, 220px) 1fr;
        gap: 20px;
    }

    .archive-portfolio__filters {
        gap: 8px;
    }

    .filter__item {
        padding: 6px 12px;
        border-radius: 6px;
    }

    .filter__trigger-title {
        font-size: 12px;
    }

    .filter__icon {
        width: 12px;
        height: 12px;
    }

    .filter__options {
        padding-top: 10px;
        gap: 1px;
    }

    .filter__label {
        font-size: 11px;
        padding-block: 3px;
    }

    .filter__checkbox {
        width: 15px;
        height: 15px;
    }

    .filter__clear {
        font-size: 12px;
        padding: 8px 14px;
        border-radius: 40px;
        gap: 6px;
    }

    .filter__clear::after {
        width: 14px;
        height: 14px;
    }

    .archive-portfolio__sidebar-cta {
        padding: 8px 12px;
        gap: 6px;
        border-radius: 10px;
    }

    .archive-portfolio__sidebar-cta-text {
        font-size: 10px;
        max-width: 160px;
    }

    .archive-portfolio__sidebar-cta-link {
        font-size: 11px;
    }

    .archive-portfolio__container {
        gap: 30px;
    }

    /*SIngle products*/
    .contact__wrapper {
        padding: 36px 24px 14px;
    }

    .contact__header {
        margin-bottom: 32px;
    }

    .contact__product-name {
        font-size: 14px;
    }

    .contact__privacy-label,
    .contact__privacy-link {
        font-size: 14px;
    }

    .contact__checkbox {
        width: 24px;
        height: 24px;
    }
}

@media screen and (max-width: 1024px) {

    h3 {
        font-size: clamp(20px, 3.5vw, 30px);
    }

    .site-header__logo {
        width: clamp(200px, 22vw, 304px);
    }

    .hero__title {
        font-size: clamp(24px, 5vw, 45px);
    }

    .nav-overlay__list .menu-item a {
        font-size: clamp(16px, 3.5vw, 26px);
    }

    .accordion__trigger-title {
        font-size: 20px;
    }

    .accordion__panel-text {
        font-size: 13px;
    }

    .enterprise__text {
        font-size: 13px;
    }

    .whatwedo__text {
        font-size: 13px;
    }

    .method__card-number {
        font-size: 28px;
    }

    .method__card-title {
        font-size: 16px;
    }

    .cta__title {
        font-size: 24px;
    }

    .cta__text {
        font-size: 13px;
    }

    .cta__email {
        font-size: 13px;
    }

    .whatwedo_container {
        grid-template-columns: 1fr 55%;
        gap: clamp(16px, 3vw, 40px);
        min-height: 70vh;
    }

    .footer {
        background-position: center 102%;
    }

    .common__container {
        gap: clamp(16px, 3vw, 40px);
    }

    .common__content {
        overflow-x: hidden;
    }

    .archive-portfolio__body {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Botão de abrir filtros */
    .archive-portfolio__filter-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: none;
        border: transparent;
        border-radius: 50px;
        cursor: pointer;
        color: #6A5D3F;
        text-align: center;
        font-size: clamp(14px, 1.5vw, 16px);
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        align-self: flex-start;
    }

    .archive-portfolio__filter-btn::before {
        content: "";
        display: inline-block;
        width: 16px;
        height: 16px;
        background-image: url('assets/icons/filterBrown.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        flex-shrink: 0;
    }

    /* Sidebar overlay */
    .archive-portfolio__sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: clamp(280px, 50vw, 360px);
        z-index: 8000;
        background-color: var(--color-cream);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        overflow-y: auto;
        padding: clamp(60px, 10vw, 80px) clamp(16px, 3vw, 24px) clamp(24px, 4vw, 40px);
    }

    .archive-portfolio__sidebar.is-open {
        transform: translateX(0);
    }

    /* Botão fechar */
    .archive-portfolio__sidebar-close {
        display: flex;
        align-self: flex-end;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        margin-bottom: clamp(12px, 2vw, 16px);
        transform: rotate(45deg);
    }

    .archive-portfolio__sidebar-close img {
        width: clamp(16px, 2vw, 20px);
        height: clamp(16px, 2vw, 20px);
    }

    /* Backdrop */
    .archive-portfolio__backdrop {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 7999;
        background: rgba(0, 0, 0, 0.3);
    }

    .archive-portfolio__backdrop.is-visible {
        display: block;
    }

    /* Filtros maiores no overlay para facilitar toque */
    .filter__item {
        padding: 10px 16px;
        border-radius: 8px;
    }

    .filter__trigger-title {
        font-size: 14px;
    }

    .filter__icon {
        width: 14px;
        height: 14px;
    }

    .filter__options {
        padding-top: 12px;
        gap: 2px;
    }

    .filter__label {
        font-size: 13px;
        padding-block: 5px;
        gap: 10px;
    }

    .filter__checkbox {
        width: 18px;
        height: 18px;
        border-radius: 5px;
    }

    .filter__clear {
        font-size: 14px;
        padding: 12px 18px;
        gap: 8px;
    }

    .filter__clear::after {
        width: 16px;
        height: 16px;
    }

    .archive-portfolio__sidebar-cta {
        padding: 12px 16px;
        gap: 10px;
        border-radius: 12px;
    }

    .archive-portfolio__sidebar-cta-text {
        font-size: 13px;
        max-width: 220px;
    }

    .archive-portfolio__sidebar-cta-link {
        font-size: 13px;
    }

    .navigation.pagination .nav-links {
        gap: clamp(8px, 1.2vw, 12px);
    }

    .navigation.pagination .page-numbers {
        font-size: clamp(11px, 0.8vw, 13px);
    }

    .navigation.pagination .page-numbers::after {
        width: 20px;
    }

    .navigation.pagination .prev.page-numbers,
    .navigation.pagination .next.page-numbers {
        width: 40px;
        height: 40px;
    }

    .navigation.pagination .prev.page-numbers::before,
    .navigation.pagination .next.page-numbers::before {
        width: 16px;
        height: 16px;
    }

    /*Single Products*/
    .single__container {
        grid-template-columns: 1fr 1fr;
    }

    .single-port__track {
        gap: 16px;
    }

    #singleSwiper {
        max-width: 320px;
    }

    .single-port__card {
        width: 200px;
    }

    .single-port__card-logo {
        max-width: 85px;
    }

    .single-port__slider {
        padding-block: 10px;
    }

    .single__card-logo {
        max-width: 150px;
        padding: 15px 0;
    }

    .single__gallery-prev,
    .single__gallery-next {
        display: none;
    }

    .single__content {
        max-width: 100%;
    }

    .single__header {
        max-width: 100%;
    }

    /*Quem somos*/
    .about-cta {
        padding: 80px 0 100px;
    }

    .about-cta__container {
        gap: 32px;
    }

    .about-cta__figure {
        width: 300px;
    }

    .about-cta__title {
        font-size: 13px;
    }

    .about-cta__text {
        font-size: 28px;
        text-wrap: pretty;
    }

    /* Services */
    .services {
        padding-block: 60px;
    }

    .services__label {
        margin-bottom: 70px;
        margin-left: 24px;
    }

    .services__track {
        padding: 0 24px;
    }

    .services__item {
        width: 340px;
        gap: 14px;
    }

    .services__img {
        width: 240px;
        margin-bottom: 30px;
    }

    .services__title {
        font-size: 28px;
    }

    .services__text {
        font-size: 13px;
    }

    /*Common*/

    .common__content h2 {
        font-size: clamp(18px, 2vw, 24px);
    }

    .common__content h3 {
        font-size: 14px;
    }

    .common__content p,
    .common__content ul li {
        font-size: 13px;
    }

    .common__content table {
        width: 100%;
    }
}

@media screen and (max-width: 950px) {
    .nav-overlay::before {
        background-position: right center;
        background-size: auto 80%;
    }

    .portfolio__card--5 {
        bottom: 21.4%;
        right: 10.4%;
    }

    .portfolio__card--7 {
        bottom: 35.5%;
        right: -6%;
    }
}

@media screen and (max-width: 900px) {

    .cta__title,
    .single-port__title {
        font-size: 32px;
    }

    /*Single Products*/
    .contact__wrapper {
        padding: 32px 20px 14px;
        border-radius: 16px;
    }

    .contact__header {
        gap: 8px;
        margin-bottom: 24px;
    }

    .contact__title {
        font-size: 22px;
    }

    .contact__form {
        gap: 12px;
    }

    .contact__row {
        gap: 12px;
    }

    .contact__textarea {
        min-height: 180px;
        padding: 16px;
    }

    .contact__products {
        padding: 6px 8px;
    }

    .contact__product {
        padding: 7px 12px;
    }

    .contact__submit {
        font-size: 14px;
        padding: 14px 20px;
    }

    /*Quem somos*/
    .about-hero {
        min-height: 500px;
    }

    .about-hero__title {
        font-size: 80px;
        margin-top: 30px;
    }

    .about-hero__figure--1 {
        top: 20%;
        left: 8%;
    }

    .about-hero__figure--2 {
        bottom: 16%;
        left: 38%;
    }

    .about-hero__figure--3 {
        top: 14%;
        right: 12%;
    }

    .about-mission {
        min-height: 80vh;
    }

    .about-mission__container {
        gap: 12px;
        padding-inline: 20px;
    }

    .about-mission__label {
        font-size: 13px;
    }

    .about-mission__heading {
        font-size: 24px;
    }

    .about-mission__text {
        font-size: 13px;
        max-width: 380px;
    }

    /*Services*/
    .services-hero__title {
        font-size: 72px;
        margin-top: 40px;
    }

    .services-hero__content {
        gap: 14px;
        padding-inline: 28px;
    }

    .services-hero__text {
        font-size: 13px;
        max-width: 300px;
    }

    /*404*/
    .error-404__title {
        font-size: 120px;
    }

    .error-404__content {
        gap: 16px;
        padding: 0 28px;
    }

    .error-404__text {
        font-size: 15px;
        max-width: 380px;
    }

    .error-404__card {
        width: 170px;
        transform: rotate(3deg);
        margin-top: 20px;
        margin-bottom: 4px;
    }

    .error-404__card-logo {
        max-width: 80px;
    }

    .error-404__btn {
        font-size: 14px;
        padding: 14px 22px;
    }

    /*Common*/
    .common__title {
        font-size: 27px;
    }
}

@media screen and (max-width: 820px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer {
        background-position: center 101%;
    }

    .single__container {
        grid-template-columns: 1fr;
        max-width: 800px;
        gap: 40px;
    }

}

@media screen and (max-width: 770px) {

    h3 {
        font-size: clamp(18px, 4vw, 26px);
    }

    .hero {
        height: 80vh;
    }

    .hero__title {
        padding: 0 clamp(16px, 4vw, 32px);
        font-size: clamp(22px, 6vw, 36px);
    }

    .nav-overlay__list .menu-item a {
        font-size: 18px;
    }

    .accordion__trigger-title {
        font-size: 18px;
    }

    .method__card-number {
        font-size: 24px;
    }

    .method__card-title {
        font-size: 14px;
    }

    .cta__title {
        font-size: 22px;
    }

    .whatwedo_container {
        grid-template-columns: 1fr;
        padding: clamp(40px, 8vw, 80px) clamp(16px, 4vw, 40px);
        gap: 60px;
    }

    .accordion__panel-text {
        font-size: 12px;
    }

    .whatwedo__accordion {
        width: 100%;
    }

    .nav-overlay::before {
        background-position: center;
        background-size: auto 75%;
    }

    .enterprise {
        grid-template-columns: 1fr;
        padding: clamp(24px, 6vw, 60px) clamp(20px, 4vw, 40px);
        max-width: 100%;
        gap: 0;
        min-height: 60vh;
    }

    .enterprise__figure {
        order: 2;
        align-items: center;
        margin-left: 0;
    }

    .enterprise__content {
        order: 1;
    }

    .enterprise__title {
        margin: 0 0 clamp(16px, 4vw, 32px);
    }

    .enterprise__image {
        max-width: 156px;
    }

    .enterprise__image--second {
        max-width: 232px;
        left: 50%;
        transform: translate(-50%, 50%);
    }

    .portfolio__content {
        padding: clamp(60px, 8vw, 80px) 0;
        max-width: 220px;
        margin: 0 auto;
    }

    .portfolio__btn {
        position: absolute;
        bottom: clamp(30px, 6vw, 60px);
        left: 50%;
        transform: translateX(-50%);
        z-index: 5;
        white-space: nowrap;
    }

    .portfolio__card-logo {
        max-width: 60px;
    }

    .portfolio__text-inner {
        gap: 30px;
    }

    /* POSIÇÕES INDIVIDUAIS DOS CARDS  */
    .portfolio__card--1 {
        top: 15.6%;
        left: 6%;
    }

    .portfolio__card--2 {
        top: 42.4%;
        left: -14%;
    }

    .portfolio__card--3 {
        bottom: 12.1%;
        left: 11.3%;
    }

    .portfolio__card--4 {
        top: 18.7%;
        right: 5.4%;
        z-index: 4;
    }

    .portfolio__card--5 {
        top: 28.9%;
        right: -14%;
    }

    .portfolio__card--6 {
        bottom: 7.2%;
        right: 6.2%;
    }

    .portfolio__card--7 {
        bottom: 19%;
        right: -7%;
    }

    .method__cards {
        flex-direction: column;
        height: auto;
        overflow: visible;
    }

    .method__card,
    .method__card:first-child {
        width: 100%;
        height: 280px;
    }

    /* Anula os efeitos de hover */
    .method__card,
    .method__card:first-child,
    .method__cards:has(.method__card:not(:first-child):hover) .method__card:first-child,
    .method__card:not(:first-child):hover {
        width: 100%;
    }

    .portfolio__btn-mobile {
        display: block;
    }

    .portfolio__btn {
        display: none;
    }

    .common__container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .common__sidebar {
        padding: 120px clamp(16px, 4vw, 40px) clamp(32px, 6vw, 60px);
    }

    .common__title {
        position: relative;
        top: auto;
        margin: 0;
    }

    .common__content {
        padding: clamp(40px, 8vw, 80px) clamp(16px, 4vw, 40px);
    }

    .common__content table {
        width: 100%;
    }

    .archive-portfolio {
        padding: 100px 0 35px;
    }

    .archive-portfolio__container {
        gap: 20px;
    }

    .archive-portfolio__title {
        font-size: clamp(26px, 6vw, 36px);
    }

    .archive-portfolio__text {
        font-size: 13px;
    }

    .archive-portfolio__body {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Botão de abrir filtros */
    .archive-portfolio__filter-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: none;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        color: #6A5D3F;
        text-align: center;
        font-size: clamp(14px, 1vw, 16px);
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
    }

    .archive-portfolio__filter-btn::before {
        content: "";
        display: inline-block;
        width: 16px;
        height: 16px;
        background-image: url('assets/icons/filterBrown.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        flex-shrink: 0;
    }

    /* Sidebar passa a overlay */
    .archive-portfolio__sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        max-width: 320px;
        width: 90%;
        z-index: 8000;
        background-color: var(--color-cream);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        overflow-y: auto;
        padding: 80px 24px 40px;
    }

    .archive-portfolio__sidebar.is-open {
        transform: translateX(0);
    }

    /* Botão fechar dentro da sidebar */
    .archive-portfolio__sidebar-close {
        display: flex;
        align-self: flex-end;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        margin-bottom: 16px;
        transform: rotate(45deg);
    }

    .archive-portfolio__sidebar-close img {
        width: 20px;
        height: 20px;
    }

    /* Backdrop */
    .archive-portfolio__backdrop {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 7999;
        background: rgba(0, 0, 0, 0.3);
    }

    .archive-portfolio__backdrop.is-visible {
        display: block;
    }

    /* Grid ocupa largura toda */
    .archive-portfolio__main {
        width: 100%;
    }

    .archive-portfolio__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .archive-portfolio__grid .portfolio__card .portfolio__card-logo {
        max-width: 100px;
    }

    .archive-portfolio__title {
        font-size: clamp(28px, 7vw, 45px);
        max-width: 100%;
        text-wrap: balance;
    }

    .archive-portfolio__text {
        font-size: 14px;
        max-width: 100%;
    }

    /*Single Portfolio*/
    .single-port {
        padding-block: 60px 50px;
    }

    .single-port__title,
    .single-port__label {
        margin-bottom: 5px;
    }

    .single-port__track {
        gap: 14px;
    }

    .single-port__card {
        width: 180px;
        padding: 0;
    }

    .single-port__card-logo {
        max-width: 75px;
    }

    .cta__title,
    .single-port__title {
        font-size: 28px;
    }

    #singleSwiper {
        max-width: 325px;
    }

    .single__container {
        padding-inline: 20px;
        gap: 32px;
    }

    .single__card-logo {
        max-width: 160px;
    }

    .single__gallery-prev,
    .single__gallery-next {
        width: 38px;
        height: 38px;
    }

    .single__gallery .swiper-pagination {
        gap: 10px;
        margin-top: 24px;
    }

    .single__gallery .swiper-pagination-bullet {
        width: 18px;
    }

    .single__title {
        font-size: 22px;
    }

    .single__desc {
        font-size: 14px;
    }

    .single__specs {
        margin-bottom: 24px;
    }

    .single__specs-row {
        grid-template-columns: 100px 1fr;
        gap: 6px;
        padding-bottom: 5px;
    }

    .single__specs-desc {
        font-size: 13px;
    }

    .single__btn {
        margin-bottom: 14px;
    }

    .single__accordion-item {
        padding: 6px 12px;
    }

    .single__accordion-title {
        font-size: 12px;
    }

    .single__accordion-icon {
        width: 14px;
        height: 14px;
    }

    .single__cta {
        padding: 8px 12px;
        border-radius: 12px;
    }

    .single__cta-text {
        font-size: 12px;
    }

    .single__cta-link {
        font-size: 13px;
    }

    .about-cta {
        padding: 60px 0 80px;
    }

    .about-cta__container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-inline: 24px;
        max-width: 100%;
    }

    .about-cta__content {
        text-align: start;
        align-items: start;
        max-width: 100%;
    }

    .about-cta__figure {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-cta__text {
        font-size: 26px;
    }

    /* Services */
    .services-hero {
        min-height: 80vh;
    }

    .services-hero__title {
        font-size: 56px;
        margin-top: 20px;
    }

    .services-hero__content {
        gap: 12px;
        align-items: center;
        padding-inline: 24px;
        text-align: center;
    }

    .services-hero__text {
        font-size: 13px;
        align-self: center;
        max-width: 320px;
        margin-right: 0;
    }

    .services {
        padding-block: 50px;
    }

    .services__label {
        margin-bottom: 50px;
        margin-left: 20px;
        font-size: 12px;
    }

    .services__track {
        padding: 0 20px;
    }

    .services__item {
        width: 290px;
        gap: 12px;
    }

    .services__img {
        width: 190px;
        margin-bottom: 24px;
    }

    .services__title {
        font-size: 24px;
    }

    .services__text {
        font-size: 12px;
    }

    /*COMMON*/
    .common__container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .common__sidebar {
        padding: 120px clamp(16px, 4vw, 40px) clamp(32px, 6vw, 60px);
    }

    .common__title {
        position: relative;
        top: auto;
        margin: 0;
        font-size: clamp(26px, 5vw, 36px);
    }

    .common__content {
        padding: clamp(40px, 8vw, 80px) clamp(16px, 4vw, 40px);
    }

    .common__content h2 {
        font-size: clamp(16px, 2.5vw, 22px);
    }

    .common__content h3 {
        font-size: 13px;
    }
}

@media screen and (max-width: 700px) {
    .footer {
        background-position: left 101%;
        background-size: 170%;
    }

    .footer__blisq {
        margin-bottom: clamp(60px, 10vw, 90px);
    }

    /*Single Product*/
    .contact__row {
        grid-template-columns: 1fr;
    }

    .contact__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .contact__submit {
        width: 100%;
    }

    /*Quem somos*/
    .about-hero {
        min-height: 450px;
    }

    .about-hero__title {
        font-size: 60px;
        margin-top: 20px;
    }

    .about-hero__figure--3 {
        right: 10%;
    }

    .about-mission {
        min-height: 70vh;
        background-size: cover;
        background-position: center center;
    }

    .about-mission__container {
        gap: 10px;
    }

    .about-mission__heading {
        font-size: 22px;
    }

    /*404*/
    .error-404 {
        min-height: 80vh;
    }

    .error-404__title {
        font-size: 90px;
        top: 35%;
    }

    .error-404__content {
        gap: 14px;
        padding: 0 24px;
    }

    .error-404__text {
        font-size: 14px;
        max-width: 320px;
    }

    .error-404__card {
        width: 140px;
        transform: rotate(2deg);
        align-self: center;
        margin-top: 175px;
        margin-right: 0;
    }

    .error-404__card-logo {
        max-width: 65px;
    }
}

@media screen and (max-width: 680px) {
    .site-header__inner {
        justify-content: flex-start;
        padding: 0 clamp(16px, 4vw, 60px);
    }

    .site-header__logo {
        width: clamp(160px, 40vw, 220px);
    }

    .site-header__hamburger {
        right: clamp(16px, 4vw, 60px);
        gap: 10px;
        justify-content: flex-start;
    }

    .site-header__hamburger span {
        width: 30px;
    }

    .nav-overlay__inner {
        padding: 0 clamp(16px, 4vw, 60px);
        justify-content: flex-start;
    }

    .cta::before {
        background-size: 100%;
    }

    /*single products*/
    .contact__desc {
        font-size: 14px;
        text-align: start;
    }
}

@media screen and (max-width: 600px) {
    .cta__intro {
        min-height: 300px;
    }

    .archive-portfolio__sidebar {
        width: 85vw;
        padding: 50px 20px 30px;
    }

    .filter__item {
        padding: 8px 14px;
    }

    .filter__trigger-title {
        font-size: 13px;
    }

    .filter__label {
        font-size: 12px;
    }

    .filter__checkbox {
        width: 16px;
        height: 16px;
    }

    .filter__clear {
        font-size: 13px;
        padding: 10px 16px;
    }

    .archive-portfolio__sidebar-cta-text {
        font-size: 12px;
    }

    .archive-portfolio__sidebar-cta-link {
        font-size: 12px;
    }

    /*Single product*/
    .cta__title,
    .single-port__title {
        font-size: 24px;
    }

    .single-port__title,
    .single-port__label {
        margin-bottom: 5px;
    }

    .contact__title {
        font-size: 18px;
        text-align: start;
    }
}

@media screen and (max-width: 550px) {

    .whatwedo__text,
    .whatwedo__title {
        text-wrap: balance;
    }
}

@media screen and (max-width: 500px) {

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .error-404__title {
        font-size: 75px;
    }
}

@media screen and (max-width: 480px) {

    h3 {
        font-size: clamp(16px, 5vw, 22px);
    }

    .hero {
        height: 70vh;
    }

    .hero__title {
        font-size: clamp(20px, 7vw, 30px);
    }

    .nav-overlay__list .menu-item a {
        font-size: 16px;
    }

    .accordion__trigger-title {
        font-size: 16px;
    }

    .method__card-number {
        font-size: 22px;
    }

    .method__card-title {
        font-size: 13px;
    }

    .cta__title {
        font-size: 20px;
        text-wrap: balance;
    }

    .cta-container {
        padding: 10px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .archive-portfolio__intro {
        gap: 8px;
    }

    .archive-portfolio__title {
        font-size: clamp(22px, 7vw, 28px);
    }

    .archive-portfolio__text {
        font-size: 12px;
    }

    .archive-portfolio__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .archive-portfolio__grid .portfolio__card .portfolio__card-logo {
        max-width: 80px;
    }

    .archive-portfolio__filter-btn {
        font-size: 13px;
    }

    .archive-portfolio__sidebar {
        width: 90vw;
        padding: 40px 16px 24px;
    }

    .archive-portfolio__filters {
        gap: 6px;
    }

    .filter__item {
        padding: 6px 12px;
        border-radius: 6px;
    }

    .filter__trigger-title {
        font-size: 12px;
    }

    .filter__icon {
        width: 12px;
        height: 12px;
    }

    .filter__checkbox {
        width: 15px;
        height: 15px;
    }

    .filter__clear {
        font-size: 12px;
        padding: 8px 14px;
    }

    .archive-portfolio__sidebar-cta {
        padding: 10px 12px;
        gap: 6px;
    }

    /*Single Products*/
    .single__container {
        padding-inline: 16px;
        gap: 24px;
    }

    #singleSwiper {
        max-width: 260px;
    }

    .single__card-logo {
        max-width: 120px;
    }

    .single__gallery .swiper-pagination {
        gap: 8px;
        margin-top: 20px;
    }

    .single__gallery .swiper-pagination-bullet {
        width: 14px;
    }

    .single__title {
        font-size: 20px;
    }

    .single__desc {
        font-size: 13px;
    }

    .single__specs-desc {
        font-size: 12px;
    }

    .single__btn {
        font-size: 12px;
        padding: 10px 16px;
    }

    .single__btn::after {
        width: 14px;
        height: 14px;
    }

    .single__accordion-panel p {
        font-size: 12px;
        padding-top: 10px;
    }

    .single__cta-link {
        font-size: 12px;
    }

    .single-port {
        padding-block: 50px 40px;
    }

    .single-port__track {
        gap: 12px;
    }

    .single-port__card {
        width: 150px;
        padding: 0;
    }

    .single-port__card-logo {
        max-width: 65px;
    }

    .cta__title,
    .single-port__title {
        font-size: 22px;
    }

    .contact__wrapper {
        padding: 24px 16px 12px;
        border-radius: 12px;
    }

    .contact__title {
        font-size: 20px;
        text-wrap: balance;
    }

    .contact__desc {
        font-size: 13px;
    }

    .contact__form {
        gap: 10px;
    }

    .contact__input,
    .contact__textarea {
        font-size: 13px;
        padding: 7px 14px;
    }

    .contact__textarea {
        min-height: 150px;
        padding: 14px;
    }

    .contact__checkbox {
        width: 20px;
        height: 20px;
    }

    .contact__privacy-label,
    .contact__privacy-link {
        font-size: 12px;
    }

    .contact__submit {
        font-size: 13px;
        padding: 12px 18px;
    }

    .contact__product-name {
        font-size: 13px;
    }

    /*Quem somos*/
    .about-hero {
        min-height: 400px;
    }

    .about-hero__title {
        font-size: 46px;
        margin-top: 10px;
    }

    .about-hero__figure--1 {
        width: 110px;
        height: 165px;
    }

    .about-hero__figure--2 {
        bottom: 20%;
    }

    .about-hero__figure--3 {
        right: 7%;
        width: 140px;
        height: 95px;
    }

    .about-mission__container {
        gap: 8px;
        padding-inline: 16px;
    }

    .about-mission__label {
        font-size: 12px;
    }

    .about-mission__heading {
        font-size: 20px;
    }

    .about-mission__text {
        font-size: 12px;
        max-width: 100%;
    }

    .about-cta {
        padding: 50px 0 60px;
    }

    .about-cta__container {
        gap: 24px;
        padding-inline: 16px;
    }

    .about-cta__content {
        gap: 12px;
    }

    .about-cta__title {
        font-size: 12px;
    }

    .about-cta__text {
        font-size: 22px;
    }

    .about-cta__figure {
        max-width: 320px;
    }

    /*Service*/
    .services-hero {
        min-height: 70vh;
    }

    .services-hero__title {
        font-size: 42px;
        margin-top: 10px;
    }

    .services-hero__content {
        gap: 10px;
        padding-inline: 16px;
    }

    .services-hero__text {
        font-size: 12px;
        max-width: 260px;
    }

    .services {
        padding-block: 40px;
    }

    .services__label {
        margin-bottom: 36px;
        margin-left: 16px;
    }

    .services__track {
        padding: 0 16px;
        gap: 10px;
    }

    .services__item {
        width: 75vw;
        gap: 10px;
    }

    .services__img {
        width: 190px;
        margin-bottom: 18px;
    }

    .services__title {
        font-size: 20px;
    }

    /*404*/
    .error-404 {
        min-height: 70vh;
    }

    .error-404__title {
        font-size: 64px;
    }

    .error-404__content {
        gap: 12px;
        padding: 0 16px;
        margin-top: 165px;
    }

    .error-404__text {
        font-size: 13px;
        max-width: 280px;
    }

    .error-404__card {
        width: 120px;
        margin-top: 10px;
    }

    .error-404__btn {
        font-size: 13px;
        padding: 12px 20px;
    }

    /*Common*/
    .common__title {
        font-size: clamp(22px, 6vw, 28px);
    }

    .common__content h2 {
        font-size: 18px;
    }

    .common__content h3 {
        font-size: 12px;
    }

    .common__content p,
    .common__content ul li {
        font-size: 12px;
    }

    .common__content th {
        font-size: 12px;
    }

    .common__content td {
        font-size: 11px;
    }

    .common__last-update p {
        font-size: 12px;
    }
}

@media screen and (max-width:400px) {
    .hero__title {
        font-size: 20px;
    }

}

@media screen and (max-width: 375px) {
    h3 {
        font-size: 16px;
    }

    .hero__title {
        font-size: 18px;
    }

    .method__card-number {
        font-size: 20px;
    }

    .method__card-title {
        font-size: 12px;
    }

    .cta__title {
        font-size: 18px;
    }

    /*Single products*/
    #singleSwiper {
        max-width: 210px;
    }

    .single__container {
        padding-inline: 12px;
        gap: 20px;
    }

    .single__card-logo {
        max-width: 100px;
    }

    .single__title {
        font-size: 18px;
    }

    .single__desc {
        font-size: 12px;
    }

    .single__btn {
        font-size: 11px;
        padding: 8px 14px;
    }

    .single__btn::after {
        width: 12px;
        height: 12px;
    }

    .single-port__track {
        gap: 10px;
    }

    .single-port__card {
        width: 135px;
    }

    .single-port__card-logo {
        max-width: 55px;
    }

    .single__specs-row {
        grid-template-columns: 85px 1fr;
    }

    .cta__title,
    .single-port__title {
        font-size: 20px;
    }

    .contact__wrapper {
        padding: 20px 12px 10px;
    }

    .contact__title {
        font-size: 18px;
    }

    .contact__desc {
        font-size: 12px;
    }

    .contact__input,
    .contact__textarea {
        font-size: 12px;
        padding: 6px 12px;
    }

    .contact__textarea {
        min-height: 130px;
    }

    .contact__privacy-label,
    .contact__privacy-link {
        font-size: 11px;
    }

    .contact__submit {
        font-size: 12px;
        padding: 10px 16px;
    }

    /*Quem somos*/
    .about-hero__title {
        font-size: 38px;
    }

    .about-mission__heading {
        font-size: 18px;
    }

    .about-mission__text {
        font-size: 11px;
    }

    .about-cta {
        padding: 40px 0 50px;
    }

    .about-cta__container {
        gap: 20px;
        padding-inline: 12px;
    }

    .about-cta__text {
        font-size: 20px;
    }

    .about-cta__figure {
        max-width: 280px;
    }

    /*Services*/
    .services-hero__title {
        font-size: 36px;
    }

    .services-hero__text {
        font-size: 11px;
        max-width: 240px;
    }

    .services__item {
        width: 72vw;
    }

    .services__img {
        margin-bottom: 14px;
    }

    .services__title {
        font-size: 18px;
    }

    /*404*/
    .error-404__title {
        font-size: 50px;
    }

    .error-404__text {
        font-size: 12px;
    }

    .error-404__btn {
        font-size: 12px;
        padding: 10px 18px;
    }

    /*COMMON*/
    .common__title {
        font-size: 20px;
    }

    .common__content h2 {
        font-size: 16px;
    }

    .common__content h3 {
        font-size: 12px;
    }

    .common__content p,
    .common__content ul li {
        font-size: 12px;
    }
}

@media screen and (max-width: 350px) {
    .method__card-number {
        font-size: 18px;
    }

    .cta__title {
        font-size: 16px;
    }

    .portfolio__text {
        font-size: 14px;
    }

    .archive-portfolio__container {
        padding-inline: 15px;
    }

    .archive-portfolio__title {
        font-size: 20px;
    }

    .archive-portfolio__text {
        font-size: 11px;
    }

    .archive-portfolio__sidebar {
        width: 92vw;
        padding: 32px 12px 20px;
    }

    .filter__trigger-title {
        font-size: 11px;
    }

    .archive-portfolio__sidebar-cta-text {
        font-size: 10px;
        max-width: 140px;
    }

    .archive-portfolio__sidebar-cta-link {
        font-size: 10px;
    }

    /*Single products*/
    .single__title {
        font-size: 16px;
    }

    .single__desc {
        font-size: 11px;
    }

    .single-port__track {
        gap: 8px;
    }

    .single-port__card {
        width: 120px;
    }

    .single-port__card-logo {
        max-width: 50px;
    }

    .contact__checkbox {
        width: 18px;
        height: 18px;
    }

    /*Quem somos*/
    .about-hero__title {
        font-size: 32px;
        margin-top: 5px;
    }

    .about-mission__container {
        padding-inline: 12px;
        gap: 6px;
    }

    .about-mission__heading {
        font-size: 16px;
    }

    .about-cta__text {
        font-size: 18px;
    }

    .about-cta__figure {
        max-width: 250px;
    }

    /*Services*/
    .services-hero__title {
        font-size: 30px;
        margin-top: 5px;
    }

    .services-hero__content {
        gap: 8px;
        padding-inline: 12px;
    }

    .services-hero__text {
        max-width: 220px;
    }

    .services__item {
        width: 70vw;
    }

    .services__img {
        width: 110px;
        margin-bottom: 10px;
    }

    .services__title {
        font-size: 16px;
    }

    /*404*/
    .error-404__title {
        font-size: 42px;
    }

    .error-404__text {
        font-size: 11px;
    }

    /*COMMON*/
    .common__content p,
    .common__content ul li {
        font-size: 12px;
    }
}