/*
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=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* =========================================================
    VARIAVEIS E RESETS
   ========================================================= */

:root {
    --white: #FFF;
    --black: #000;
    --dark-blue: #101820;
    --steel-blue: #57687A;
    --color-muted-sky: #86A4AE;
    --main-blue: #A3BBC3;
    --light-blue: #EDF2F5;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
    display: block;
    background-color: #F7F9FA;
}

body {
    font-family: "Poppins", sans-serif;
    position: relative;
    display: block;
    background-color: #F7F9FA;
}

body.single,
body.single-product {
    background-color: #E8EBEC;
}

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

figure {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
}

h1 {
    color: var(--light-blue);
    font-size: 48.571px;
    font-style: normal;
    font-weight: 400;
    line-height: 122.5%;
}

h2 {
    color: var(--dark-blue);
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 138.462%;
}

h3 {
    color: var(--steel-blue);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 111.111%;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--steel-blue);
    color: var(--white);
}

.block {
    display: block;
}

.none {
    display: none !important;
}

/* =========================================================
    HEADER
   ========================================================= */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background-color: transparent;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1920px;
    margin: 0 auto;
    padding: 60px 60px 0;
}

/* Logo */
.custom-logo-link {
    display: block;
    flex-shrink: 0;
    position: relative;
    z-index: 1002;
}

.d-none,
.custom-logo-link-img--white {
    display: none;
}

.custom-logo-link img {
    height: auto;
    width: 310px;
}

/* Hambúrguer */
.header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 10px;
    z-index: 1002;
}

.hamburger__line {
    display: block;
    width: 33px;
    height: 2px;
    background-color: var(--dark-blue);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* OVERLAY */
.header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 77.8vh;
    background-color: var(--dark-blue);
    z-index: 1002;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    scrollbar-width: none;
}

.header__overlay::-webkit-scrollbar {
    display: none;
}

.header__overlay[aria-hidden="false"] {
    transform: translateY(0);
}

.header__overlay-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 60px;
}

.header__overlay::before {
    content: '';
    position: absolute;
    bottom: 13%;
    left: 0;
    max-width: 468px;
    width: 100%;
    max-height: 298px;
    height: 100%;
    background-image: url(assets/images/bg_menu.webp);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: left 131%;
    pointer-events: none;
}

/* OVERLAY - TOP BAR */
.overlay__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.overlay__logo img {
    height: auto;
    width: 310px;
}

.overlay__close {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 60px;
    height: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 16px;
    position: relative;
}

.close__line {
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
}

.close__line:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close__line:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* OVERLAY - SEARCH */
.overlay__search {
    margin-top: 120px;
    position: relative;
    width: 100%;
    max-width: 580px;
}

.overlay__search::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 39px;
    height: 39px;
    background-image: url('assets/images/icons/search.svg');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.overlay__search-input {
    width: 100%;
    background: transparent;
    border: none;
    padding-left: 58px;
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 38px;
    font-weight: 300;
    outline: none;
}

.overlay__search-input::placeholder {
    color: rgba(237, 242, 245, 0.20);
    font-size: 38px;
    font-style: normal;
    font-weight: 275;
    line-height: 115.789%;
    letter-spacing: 1.14px;
}

.overlay__search-input:focus {
    border-bottom-color: var(--white);
}

/* OVERLAY - NAV */
.overlay__nav {
    margin-top: 88px;
    position: relative;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    border-bottom: 1px solid #374C61;
    width: calc(100% + 120px);
    margin-left: -60px;
    margin-right: -60px;
}

.menu-item>a {
    display: block;
    color: var(--main-blue);
    text-align: right;
    font-size: 49px;
    font-style: normal;
    font-weight: 275;
    line-height: 89.796%;
    letter-spacing: 1.47px;
    padding-block: 22px;
    padding-right: 60px;
    transition: color 0.3s ease, padding-right 0.3s ease;
    max-width: 1920px;
    margin: 0 auto;
}

.menu-item:first-child>a {
    padding-top: 0;
}

.menu-item:last-child>a {
    padding-bottom: 0;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item>a:hover {
    color: var(--main-blue);
    padding-right: 70px;
}

.overlay__legal-mobile {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    padding-inline: 20px;
    border-top: none;
}

.overlay__legal-mobile ul.menu-legal-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.overlay__legal-mobile ul.menu-legal-links li {
    border: none;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-items: center;
}

.overlay__legal-mobile ul.menu-legal-links a {
    display: block;
    color: var(--main-blue);
    text-align: start;
    font-size: 11px;
    font-weight: 300;
    text-decoration: none;
    letter-spacing: 0.5px;
    opacity: 0.45;
    transition: opacity 0.3s ease;
    padding: 0;
}

.overlay__legal-mobile ul.menu-legal-links a:hover {
    opacity: 0.9;
}

/* =========================================================
    HERO
   ========================================================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 60vh;
    overflow: hidden;
    background-color: #b1b1b0;
}

/* Slides */
.hero__slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.hero__slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 2;
    pointer-events: none;
}

.hero__slide--active {
    opacity: 1;
    z-index: 2;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Conteúdo */
.hero__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 60px 100px 60px;
}

.hero__title {
    max-width: 722px;
    margin-bottom: 14px;
    text-wrap: balance;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.2s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-blue);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 153.846%;
    letter-spacing: 0.39px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-200px);
    animation: slideInBtn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.5s;
}

@keyframes slideInBtn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero__btn::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 15px;
    background-image: url('assets/images/icons/arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.hero__btn:hover {
    opacity: 0.8;
}

.hero__btn:hover::after {
    transform: translateX(4px);
}

/* HERO - WATER EFFECT */
.hero__water {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 629px;
    height: 792px;
    z-index: 4;
    overflow: hidden;
    isolation: isolate;
    padding: 20px 0 0 20px;
    pointer-events: none;
}

.hero__water-vector {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    isolation: isolate;
    cursor: pointer;
    pointer-events: auto;
}

.hero__water-vector canvas {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    display: block;
    padding: 20px 0 0 20px;
}

/* =========================================================
    INTRO
   ========================================================= */
.intro {
    padding: 70px 60px 0 60px;
    margin: 0 auto;
    background-color: var(--main-blue);
    min-height: 62vh;
}

.intro__container {
    display: flex;
    justify-content: flex-start;
    gap: 172px;
    max-width: 1920px;
    margin: 0 auto;
}

.intro__heading {
    max-width: 738px;
}

.intro__col--right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 587px;
}

.intro__col>p {
    color: var(--steel-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 175%;
}

/* =========================================================
    PRODUCT CATEGORIES
   ========================================================= */
.categories {
    padding: 100px 88px;
    background-color: #F7F9FA;
    overflow: hidden;
}

.categories__container {
    max-width: 1333px;
    margin: 0 auto;
}

/* Header */
.categories__header {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.categories__title {
    max-width: 624px;
    margin-bottom: 8px;
    text-wrap: balance;
    text-align: center;
}

.categories__subtitle {
    color: var(--steel-blue);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 175%;
    max-width: 560px;
    text-wrap: pretty;
}

/* Grid */
.categories__grid {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.category-card {
    position: relative;
    flex: 1;
    overflow: hidden;
    display: block;
}

.category-card__image {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 21.5px;
}

.category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-card__image img {
    transform: scale(1.05);
}

.category-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 37.5px;
    max-width: 100%;
}

.category-card__title {
    color: var(--white);
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 6.5px;
}

.category-card__description {
    color: rgba(255, 255, 255, 0.70);
    font-size: 17.19px;
    font-style: normal;
    font-weight: 400;
    line-height: 137.5%;
    min-height: 47px;
}

/* Footer Button */
.categories__footer {
    display: flex;
    justify-content: center;
}

.categories__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-blue);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 153.846%;
    letter-spacing: 0.39px;
    text-transform: uppercase;
}

.categories__btn::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 15px;
    background-image: url('assets/images/icons/arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.categories__btn:hover {
    opacity: 0.8;
}

.categories__btn:hover::after {
    transform: translateX(4px);
}

/* HIGHLIGHTS */
.highlights {
    padding-top: 114px;
}

.highlights__container {
    display: flex;
    max-width: 1920px;
    margin: 0 auto;
    gap: 49px;
    justify-content: center;
}

.highlights__item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 21px;
    padding-right: 29px;
    border-right: 1px solid #C7C7C7;
    max-width: 315px;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.highlights__item:last-child {
    border-right: none;
}

.highlights__icon {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
}

.highlights__text {
    color: var(--steel-blue);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.15px;
}

/* =========================================================
    CATALOG PRODUCTS
   ========================================================= */
.catalog {
    padding: 100px 60px 118px;
    background-color: var(--white);
}

.catalog__container {
    max-width: 1501px;
    margin: 0 auto;
}

/* --- Header --- */
.catalog__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}

.catalog__title {
    text-align: start;
    max-width: 624px;
    margin-bottom: 8px;
}

.catalog__subtitle {
    text-align: start;
    color: var(--steel-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 175%;
    max-width: 624px;
}

.catalog__link-all {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--dark-blue);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.39px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-end;
    transition: opacity 0.2s ease;
}

.catalog__link-all::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 15px;
    background-image: url('assets/images/icons/arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.catalog__link-all:hover {
    opacity: 0.8;
}

.catalog__link-all:hover::after {
    transform: translateX(4px);
}

/* Grid */
.catalog__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px 20px;
}

/* Product Card */
.product-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-card__image-wrap {
    display: block;
    overflow: hidden;
    height: auto;
    background-color: transparent;
}

.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.product-card__image-wrap:hover .product-card__img {
    transform: scale(1.08);
}

.product-card__info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-card__category {
    color: var(--color-muted-sky);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
}

.product-card__name {
    color: var(--steel-blue);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 111.111%;
    margin-bottom: 3px;
}

.product-card__details {
    color: var(--main-blue);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 78.571%;
    transition: color 0.2s ease;
}

.product-card__details:hover {
    color: var(--steel-blue);
}

/* Catalog Banner */
.catalog__banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 17.226px;
    background: linear-gradient(94deg, rgba(163, 187, 195, 0.91) -1.78%, rgba(163, 187, 195, 0.00) 96.7%), linear-gradient(272deg, #D7D9DB -6.16%, #B3B3B3 146.14%);
    background-blend-mode: multiply, normal;
    overflow: hidden;
    min-height: 320px;
    padding: 41px 0 0 71px;
    position: relative;
    max-width: 1214px;
    margin: 81px auto 0;
}

.catalog__banner-content {
    display: flex;
    gap: 52px;
    flex: 1;
    padding-block: 44px 99px;
}

.catalog__banner-title {
    color: var(--light-blue);
    font-size: 38px;
    font-style: normal;
    font-weight: 500;
    line-height: 121.053%;
    flex-shrink: 0;
    max-width: 240px;
}

.catalog__banner-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 292px;
}

.catalog__banner-text {
    color: var(--dark-blue);
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 184.615%;
}

.catalog__banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--dark-blue);
    color: var(--light-blue);
    font-size: 11.197px;
    font-style: normal;
    font-weight: 500;
    line-height: 153.846%;
    letter-spacing: 0.336px;
    text-transform: uppercase;
    padding: 13px 22px;
    border-radius: 8px;
    transition: opacity 0.2s ease;
    max-width: fit-content;
    white-space: nowrap;
}

.catalog__banner-btn::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url('assets/images/icons/download.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.catalog__banner-btn:hover {
    opacity: 0.85;
}

.catalog__banner-image {
    align-self: flex-end;
    flex-shrink: 0;
    width: 490px;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.catalog__banner-image img {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: -18.1%;
    right: -4.3%;
}

/* =========================================================
    CLIENTS
   ========================================================= */

.clients {
    background-color: var(--dark-blue);
    padding-block: 168px;
    overflow: hidden;
}

.clients__track {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    cursor: grab;
}

.clients__track.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.clients__track::-webkit-scrollbar {
    display: none;
}

.clients__slide {
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    width: 62.5%;
    height: auto;
    display: flex;
}

.clients__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
}

.clients__slide-text {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding-right: 53px;
    max-width: 469px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.clients__title {
    color: var(--light-blue);
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 138.462%;
}

.clients__desc {
    color: var(--light-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 175%;
}

/* =========================================================
    INFO TÉCNICA
   ========================================================= */
.tech {
    padding-block: 72px 100px;
    background-color: #F7F9FA;
}

.tech__container {
    max-width: 1416px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 126px;
}

.tech__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    max-width: 450px;
    flex-shrink: 0;
}

.tech__title {
    color: var(--dark-blue);
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 138.462%;
}

.tech__text {
    color: var(--steel-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 175%;
    margin-bottom: 17px;
}

.tech__btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--dark-blue);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.39px;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.tech__btn::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 15px;
    background-image: url('assets/images/icons/arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.tech__btn:hover {
    opacity: 0.7;
}

.tech__btn:hover::after {
    transform: translateX(4px);
}

.tech__image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.tech__image img {
    width: 100%;
    max-width: 840px;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
}

/* =========================================================
    FOOTER
   ========================================================= */
.footer {
    background-color: var(--dark-blue);
    position: relative;
    overflow: hidden;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0%;
    right: 0%;
    width: 100%;
    max-width: 631px;
    height: 100%;
    max-height: 495px;
    background-image: url(assets/images/grafismo_glass_footer.webp);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: right bottom;
    pointer-events: none;
    z-index: 0;
}

.footer__container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 60px 60px 0;
    position: relative;
    z-index: 1;
}

/* Top */
.footer__top {
    display: grid;
    grid-template-columns: 57.1% 11.5% 1fr;
    gap: 42px;
    padding-bottom: 82px;
}

/* Morada */
.footer__address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__address p {
    color: var(--light-blue);
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
}

.footer__selo {
    max-width: 95px;
    width: 100%;
    aspect-ratio: 1;
}

/* Menus */
.footer__menus {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-wrap: nowrap;
}

.footer__nav-title {
    color: var(--light-blue);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 146.154%;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.footer .footer__nav .menu-item {
    border-bottom: none;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: -5px;
}

.footer .footer__nav .menu-item a {
    all: unset;
    cursor: pointer;
    color: var(--light-blue);
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 233.333%;
    padding: 0;
    text-align: left;
    transition: all 0.2s ease;
}

.footer .footer__nav .menu-item a:hover {
    padding-left: 5px;
}

/* Contactos */
.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__email {
    color: var(--light-blue);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    transition: opacity 0.2s ease;
}

.footer__email:hover {
    opacity: 0.7;
}

.footer__phones {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__phone-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer__phone {
    color: var(--light-blue);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    transition: opacity 0.2s ease;
}

.footer__phone:hover {
    opacity: 0.7;
}

.footer__phone-note {
    color: rgba(206, 206, 206, 0.61);
    font-size: 9px;
    font-style: normal;
    font-weight: 275;
    line-height: 111.111%;
    text-transform: uppercase;
}

/* Brand / Logo grande */
.footer__brand {
    padding-bottom: 33px;
}

.footer__logo {
    width: 840px;
    height: auto;
    display: block;
}

/* Bottom */
.footer__bottom {
    border-top: 1px solid rgba(237, 242, 245, 0.08);
    position: relative;
    z-index: 1;
}

.footer__bottom-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 25px 55px 17px;
    display: flex;
    justify-content: flex-end;
}

.footer__blisq img {
    height: auto;
    width: 36px;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.footer__blisq:hover img {
    opacity: 0.8;
}

.footer__financiamento-bar {
    background-color: var(--dark-blue);
    width: 100%;
    position: relative;
    z-index: 10;
}

.footer__financiamento-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 31px 55px;
    display: flex;
    justify-content: flex-end;
}

.footer__financiamento-link {
    display: inline-block;
    line-height: 0;
    transition: opacity 0.2s ease;
}

.footer__financiamento-link:hover {
    opacity: 0.8;
}

.footer__financiamento-link img {
    height: auto;
    width: 297px;
    max-width: 100%;
    display: block;
}

/* =========================================================
    ARCHIVE
   ========================================================= */
.archive-hero {
    width: 100%;
    height: 35.6vh;
    overflow: hidden;
}

.archive-hero__img--desktop {
    display: block !important;
}

.archive-hero__img--mobile {
    display: none !important;
}

.archive-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.archive-section {
    background-color: #F7F9FA;
    padding: 60px;
}

.archive__container {
    max-width: 1920px;
    margin: 0 auto;
}

/* Header */
.archive__header {
    margin-bottom: 40px;
}

.archive__title {
    color: var(--dark-blue);
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 15px;
}


.archive__active-context {
    color: var(--steel-blue);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: -5px 0 18px;
    max-width: 900px;
}

.archive__desc {
    color: var(--steel-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 175%;
    max-width: 790px;
}

/* Toolbar */
.archive__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 45px;
    position: relative;
}

.archive__search {
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
    background-color: var(--white);
    border: 1px solid transparent;
    border-radius: 73px;
    padding: 13px 22px 13px 58px;
}

.archive__search::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background-image: url('assets/images/icons/search.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.archive__search-input {
    border: none;
    outline: none;
    background: transparent;
    color: #101820;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 125%;
    letter-spacing: 0.48px;
    width: 100%;
}

.archive__search-input::placeholder {
    color: #A7B4C1;
}

.archive__search-input::-webkit-search-cancel-button {
    display: none;
}

.archive__filters-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-blue);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
    letter-spacing: 0.48px;
    flex-shrink: 0;
}

.archive__filters-btn::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url('assets/images/icons/filter.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* ARCHIVE - FILTERS PANEL */
.archive__filters-panel {
    position: absolute;
    top: 25%;
    right: -2%;
    width: 359px;
    max-width: 90vw;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    scrollbar-gutter: stable;
    overflow: hidden;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.archive__filters-panel[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
    max-height: 80vh;
}

.filter-sidebar {
    width: 100%;
    background-color: var(--white);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.filter-header {
    background-color: var(--dark-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px 20px;
}

.filter-header h2 {
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
    letter-spacing: 0.48px;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("assets/images/icons/close.svg");
}

.categories-group {
    padding: 5px 50px 20px;
}

.accordion-item {
    border-bottom: 1px solid #A2B8C7;
    margin-left: -50px;
    margin-right: -50px;
    padding-left: 50px;
    padding-right: 50px;
}

.accordion-item:not(.expanded):hover {
    background-color: #F2F4F5;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    color: var(--dark-blue);
    font-size: 17px;
    font-style: normal;
    font-family: Poppins;
    font-weight: 500;
    line-height: 117.647%;
    letter-spacing: 0.51px;
    cursor: pointer;
    text-align: left;
}

.accordion-header::after {
    content: '';
    width: 13px;
    height: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.4s ease;
    background-image: url("assets/images/icons/arrowLit.svg");
}

.accordion-item.expanded .accordion-header::after {
    transform: rotate(180deg);
}

.accordion-content {
    display: flex;
    flex-direction: column;
    gap: 13px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    box-sizing: content-box;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

.accordion-item.expanded .accordion-content {
    opacity: 1;
    padding-top: 15px;
    padding-bottom: 15px;
}

.section-title-bar {
    background-color: #E8ECF0;
    padding: 8px 50px;
    color: #798EA3;
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 153.846%;
    letter-spacing: 0.39px;
    text-transform: uppercase;
}

/* Conteúdo interno das secções inferiores */
.section-content {
    padding: 15px 50px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    color: #667E96;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142.857%;
    letter-spacing: 0.14px;
    user-select: none;
    padding-left: 32px;
    min-height: 20px;
}

.checkbox-container input {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background-color: transparent;
    border: 0.783px solid #91A6B4;
    border-radius: 4px;
    cursor: pointer;
    margin: 0;
    transition: all 0.2s ease;
    z-index: 1;
}

.checkbox-container:hover input {
    border-color: #E8EDED;
    background-color: #E8EDED;
}

.checkbox-container input:checked {
    background-color: transparent;
}

.checkbox-container:hover input:checked {
    border-color: #91A6B4;
    background-color: #E8EDED;
}

.checkbox-container::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    background-image: url("assets/images/icons/check.svg");
    z-index: 2;
}

.checkbox-container:has(input:checked)::after {
    opacity: 1;
}

/* SCROLLBAR CUSTOM */
.archive__filters-panel::-webkit-scrollbar {
    width: 2px;
}

.archive__filters-panel::-webkit-scrollbar-track {
    background: transparent;
}

.archive__filters-panel::-webkit-scrollbar-thumb {
    background-color: #A2B8C7;
    border-radius: 10px;
}

.archive__filters-panel::-webkit-scrollbar-thumb:hover {
    background-color: var(--dark-blue);
}

/* .archive__filters-panel {
    scrollbar-width: thin;
    scrollbar-color: #A2B8C7 transparent;
} */

/* Grid — 6 colunas */
.archive__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px 19px;
}

/* PAGINAÇÃO */
.navigation.pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.navigation.pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.navigation.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--steel-blue);
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 153.846%;
    transition: color 0.2s ease;
}

.navigation.pagination .page-numbers:hover {
    background-color: var(--light-blue);
}

.navigation.pagination .page-numbers.current {
    background-color: transparent;
    border: 1px solid #C8D5DB;
}

/* Setas prev/next */
.navigation.pagination .prev.page-numbers,
.navigation.pagination .next.page-numbers {
    border-radius: 8px;
    width: 16px;
    height: 16px;
    font-size: 0;
    background-color: #DDE6EB;
    background-image: url('assets/images/icons/arrowNav.svg');
    background-size: 5px;
    background-repeat: no-repeat;
    background-position: center;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.navigation.pagination .next.page-numbers {
    transform: rotate(180deg);
}

.navigation.pagination .prev.page-numbers:hover,
.navigation.pagination .next.page-numbers:hover {
    background-color: var(--light-blue);
    border-color: var(--light-blue);
}

/* =========================================================
    SINGLE PRODUCT
   ========================================================= */
/* BREADCRUMB*/
.breadcrumb {
    padding: 160px 60px 0;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--steel-blue);
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 215.385%;
}

.breadcrumb__item::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url('assets/images/icons/chevronBlack.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.breadcrumb__item:last-child::after {
    display: none;
}

.breadcrumb__item a {
    transition: color 0.2s ease;
}

.breadcrumb__item a:hover {
    color: var(--dark-blue);
}

.breadcrumb__item--active {
    font-weight: 500;
}

/* PRODUTO */
.product {
    display: grid;
    grid-template-columns: 50% 35.15%;
    column-gap: 80px;
    align-items: start;
}

/* Galeria */
.product__gallery {
    position: sticky;
    top: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 760px;
    padding: 40px 0 40px 60px;
}

.product__thumbs {
    position: absolute;
    left: 155px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
    max-height: 250px;
    overflow-y: auto;
    scrollbar-width: none;
    padding-right: 5px;
}

.product__thumbs::-webkit-scrollbar {
    display: none;
}

.product__thumb {
    width: 50px;
    height: 50px;
    aspect-ratio: 1 / 1;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: border-color 0.2s ease;
    flex-shrink: 0;
}

.product__thumb:hover {
    border-color: var(--main-blue);
}

.product__thumb--active {
    border-color: var(--steel-blue);
}

.product__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product__main-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.15s ease;
}

.product__main-img-only {
    max-width: 100%;
    height: fit-content;
    display: block;
}

.product__main-img.fade-out {
    opacity: 0;
}

/*  Info  */
.product__info {
    display: flex;
    flex-direction: column;
    padding-top: 75px;
    z-index: 1;
    padding-bottom: 75px;
}

/* Meta */
.product__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product__category {
    color: var(--dark-blue);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 85.714%;
}

.product__sku {
    color: #5A747D;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 85.714%;
    text-transform: uppercase;
}

/* Título */
.product__title {
    color: #2E3C4A;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 20px;
}

/* Descrição */
.product__description {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

.product__colors+.product__colors {
    margin-top: 10px;
}

.product__description-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.product__description p {
    color: #5A747D;
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%;
}

.product__description p:not(:last-child) {
    margin-bottom: 15px;
}

.product__read-more {
    overflow: hidden;
    color: #829CA4;
    text-align: right;
    text-overflow: ellipsis;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 173.333%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    width: fit-content;
    align-self: self-end;
}

.product__read-more:hover {
    opacity: 0.6;
}

/* Cores */
.product__colors {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.product__colors-label {
    color: var(--dark-blue);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 171.429%;
}

.product__colors-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product__color {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    border: 0.2px solid #b2b6b9;
    border-radius: 10px;
    padding: 7px 9px;
    cursor: pointer;
    color: #5A747D;
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.product__color-img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    display: block;
    border: 1px solid gray;
}

.product__color:hover {
    background-color: #DCE1E4;
    border-color: transparent;
}

.product__color--active {
    border-color: var(--white);
    background-color: var(--white);
    cursor: defaul;
    pointer-events: none;
}

/* Caixa contacto */
.product__contact-box {
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product__contact-question {
    color: var(--dark-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.product__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9FACBA;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 153.846%;
    letter-spacing: 0.39px;
    text-transform: uppercase;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.product__contact-link::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 14px;
    background-image: url('assets/images/icons/arrowGray.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.product__contact-link:hover {
    opacity: 0.8;
}

.product__contact-link:hover::after {
    transform: translateX(4px);
}

/* Accordion */
.prod-accordion-item {
    background-color: transparent;
    overflow: hidden;
    margin-bottom: 15px;
    display: block;
}

.prod-accordion-item::details-content {
    display: block;
    block-size: 0;
    overflow: hidden;
    transition: all 0.4s allow-discrete;
}

.prod-accordion-item[open]::details-content {
    block-size: auto;
    block-size: calc-size(auto, size);
}

.prod-accordion-header {
    display: flex;
    align-items: center;
    padding: 20px;
    color: var(--dark-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    cursor: pointer;
    position: relative;
    user-select: none;
    outline: none;
    background-color: #DCE1E4;
    border-radius: 10px;
}

.prod-accordion-header::-webkit-details-marker,
.prod-accordion-header::marker {
    display: none;
    content: "";
}

.prod-accordion-header::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.icon-caracteristicas::before {
    background-image: url('assets/images/icons/specs.svg');
}

.icon-dimensoes::before {
    background-image: url('assets/images/icons/dimensions.svg');
}

.icon-referencias::before {
    background-image: url('assets/images/icons/ref.svg');
}

.icon-downloads::before {
    background-image: url('assets/images/icons/downloadSpecs.svg');
}

.prod-accordion-header::after {
    content: '';
    position: absolute;
    right: 20px;
    width: 14px;
    height: 14px;
    background-image: url("assets/images/icons/arrowLit.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
    transform: rotate(180deg);
}

.prod-accordion-item[open] .prod-accordion-header::after {
    transform: rotate(0deg);
}

.prod-accordion-content {
    background-color: transparent;
    padding-block: 15px;
}

.accordion-inner-text {
    color: #829CA4;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 185.714%;
    padding: 0 35px;
}

.accordion-inner-text p {
    margin: 0 0 15px 0;
}

.product-specs-list {
    width: 100%;
    margin-top: 10px;
    padding: 0;
}

.product-specs-list .spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #B6C0C9;
}

.product-specs-list dt {
    overflow: hidden;
    color: #5B6977;
    text-overflow: ellipsis;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 185.714%;
}

.product-specs-list dd {
    overflow: hidden;
    color: #5B6977;
    text-overflow: ellipsis;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 185.714%;
}

.download-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.download-title {
    color: #5B6977;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 185.714%;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--dark-blue);
    border: none;
    border-radius: 8px;
    padding: 16px 23px;
    color: var(--light-blue);
    font-size: 11.197px;
    font-style: normal;
    font-weight: 500;
    line-height: 153.846%;
    letter-spacing: 0.336px;
    cursor: pointer;
}

.download-btn::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("assets/images/icons/download.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* =========================================================
    ABOUT PAGES
   ========================================================= */
.about__hero {
    height: 98.1vh;
    position: relative;
}

.about__hero-content {
    position: absolute;
    bottom: 110px;
    left: 60px;
    z-index: 3;
}

.about__hero-title {
    color: #3E0F22;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.about__hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24%;
    aspect-ratio: 455 / 590;
    background-image: url('assets/images/logoTransparent.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 5;
    pointer-events: none;
}

/* ABOUT — INTRO */
.about__intro {
    background-color: #EAEFF2;
    min-height: 43.1vh;
}

.about__intro .intro__container {
    gap: 310px;
}

.about__intro .intro__heading {
    max-width: 600px;
}

/*ABOUT — CATEGORIAS / O QUE FAZEMOS*/
.about__categories {
    background-color: #F7F9FA;
}

.about__categories .categories__subtitle {
    max-width: 804px;
    text-wrap: unset;
}

.about__categories .highlights {
    padding-top: 20px;
}

/* ABOUT — MISSÃO */
.about__mission {
    background-color: var(--main-blue);
    padding: 70px 60px;
    min-height: 62vh;
}

.about__mission-container {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    gap: 310px;
    align-items: flex-start;
}

.about__mission-col--left {
    flex: 1;
    max-width: 600px;
}

.about__mission-title {
    color: var(--dark-blue);
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 138.462%;
}

.about__mission-col--right {
    flex: 1;
    max-width: 587px;
    display: flex;
    flex-direction: column;
}

.about__mission-text {
    color: var(--steel-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 175%;
}

/* ABOUT — VISÃO E VALORES */
.about__vision {
    background-color: #F7F9FA;
    padding: 70px 60px;
}

.about__vision-intro {
    display: flex;
    gap: 310px;
    align-items: flex-start;
    max-width: 1920px;
    margin: 0 auto 200px;
}

.about__vision-col--left {
    flex: 1;
    max-width: 600px;
}

.about__vision-title {
    color: var(--dark-blue);
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 138.462%;
}

.about__vision-col--right {
    flex: 1;
    max-width: 587px;
}

.about__vision-text {
    color: var(--steel-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 175%;
}

/* Valores */
.about__values {
    max-width: 1920px;
    margin: 0 auto;
}

.about__values-title {
    color: var(--dark-blue);
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 138.462%;
    margin-bottom: 20px;
}

.about__values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Value Card */
.value-card {
    background-color: #EAEFF2;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 350px;
    gap: 10px;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.value-card-content {
    min-height: 145px;
}

.value-card__title {
    color: var(--main-blue);
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 10px;
}

.value-card__text {
    color: var(--steel-blue);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 178.571%;
}

/*ABOUT - TECH*/
.about-tech {
    background-color: #F7F9FA;
}

/* =========================================================
    CONTACTS PAGE
   ========================================================= */
.contacts {
    margin: 0 auto;
}

.contacts__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    padding: 240px 60px 40px;
    max-width: 1920px;
    margin: 0 10% 0 auto;
}

.contacts__top-left {
    max-width: 633px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contacts__title {
    color: var(--dark-blue);
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.contacts__subtitle {
    color: var(--steel-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 175%;
}

.contacts__top-right {
    display: flex;
    gap: 68px;
    align-items: flex-start;
}

/* Morada */
.contacts__address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contacts__address p {
    color: var(--dark-blue);
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 175%;
}

/* Info contactos */
.contacts__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacts__email {
    color: #88ADB9;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    transition: opacity 0.2s ease;
}

.contacts__email:hover {
    opacity: 0.7;
}

.contacts__phones {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacts__phone-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contacts__phone {
    color: var(--dark-blue);
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    transition: opacity 0.2s ease;
}

.contacts__phone:hover {
    opacity: 0.7;
}

.contacts__phone-note {
    color: #667E96;
    font-size: 9px;
    font-style: normal;
    font-weight: 275;
    line-height: 111.111%;
    text-transform: uppercase;
}

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

.contacts__image img {
    width: 100%;
    height: 84vh;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* POINTSALE */
.pointsale {
    background-color: var(--light-blue);
    padding: 100px 60px 60px;
    position: relative;
    overflow: hidden;
}

.pointsale::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
    aspect-ratio: 769 / 585;
    background-image: url('assets/images/logoPurpleContact.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    pointer-events: none;
    z-index: 0;
}

/* Header */
.pointsale__header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.pointsale__title {
    color: var(--dark-blue);
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 138.462%;
    margin-bottom: 8px;
}

.pointsale__subtitle {
    color: var(--steel-blue);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 175%;
}

.pointsale-card__maps:hover::after {
    transform: translateX(4px);
}

.pointsale-card__maps::after {
    transition: transform 0.3s ease;
}

/* FORM CONTACT */
.contact-form {
    background-color: #F7F9FA;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    padding: 120px 0 140px;
    display: flex;
    justify-content: center;
}

.contact-form__card {
    background-color: #EAEFF2;
    border-radius: 30px;
    padding: 50px;
    width: 100%;
    max-width: 1020px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Header */
.contact-form__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form__title {
    color: var(--dark-blue);
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 138.462%;
}

.contact-form__subtitle {
    color: var(--steel-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 175%;
    max-width: 427px;
}

/* Form */
.contact-form__form {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px 13px;
}

.response-ajax,
.form-field-error {
    color: #3E0F22;
    font-size: 12px;
    line-height: 1.5;
    margin: 5px 20px;
}

.response-ajax {
    margin: 0;
}

.response-ajax.success {
    padding: 20px;
    margin: 15px 0 0 0;
    background-color: #151d24;
    border-radius: 20px;
    color: #fff;
}

/* Field */
.form-field {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-field__label {
    color: #3E0F22;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 142.857%;
    position: relative;
    top: 11px;
    left: 12px;
    z-index: 1;
    background-color: #EAEFF2;
    width: fit-content;
    padding-inline: 10px;
}

.form-field__input::placeholder,
.form-field__textarea::placeholder {
    color: var(--steel-blue);
}

.form-field__input,
.form-field__select,
.form-field__textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid #CDD7DC;
    border-radius: 58px;
    padding: 16px 20px;
    color: var(--steel-blue);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    outline: none;
    transition: border-color 0.2s ease;
    appearance: none;
}

.form-field__input:focus,
.form-field__select:focus,
.form-field__textarea:focus {
    border-color: var(--main-blue);
}

/* Select */
.form-field__select-wrap {
    position: relative;
}

.form-field__select-wrap::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    width: 14px;
    height: 14px;
    background-image: url('assets/images/icons/chevronBlack.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.form-field__select {
    cursor: pointer;
}

.form-field__textarea {
    border-radius: 25px;
    resize: none;
    min-height: 275px;
}

/* Footer checkbox + submit */
.form-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
    margin-top: 25px;
}

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    flex: 1;
}

.form-checkbox__box {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 1px solid #B5C7D0;
    border-radius: 5px;
    flex-shrink: 0;
    background-color: transparent;
    position: relative;
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    transition: all 0.2s ease;
}

.form-checkbox__box:checked {
    background-image: url('assets/images/icons/check.svg');
    background-color: #E8EDED;
}

.form-checkbox__box:hover {
    background-color: #E8EDED;
}

.form-checkbox__text {
    color: var(--steel-blue);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 157.143%;
    max-width: 429px;
}

.form-checkbox__text>a {
    text-decoration: underline;
}

/* Submit */
.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #F7F9FA;
    color: var(--dark-blue);
    font-size: 11.197px;
    font-style: normal;
    font-weight: 500;
    line-height: 153.846%;
    letter-spacing: 0.336px;
    text-transform: uppercase;
    padding: 16px 23px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.form-submit:hover {
    background-color: var(--black);
    color: var(--white);
}

/*Select style*/
.form-field__select.is-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.form-field__select-trigger {
    width: 100%;
    background-color: transparent;
    border: 1px solid #CDD7DC;
    border-radius: 30px;
    padding: 16px 20px;
    color: var(--steel-blue);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-field__select-wrap.is-open .form-field__select-trigger {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #EAEFF2;
    border-bottom: 1px solid #CDD7DC;
}

.form-field__select-wrap.is-open::after {
    transform: translateY(-50%) rotate(270deg);
}

.form-field__select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #EAEFF2;
    border: 1px solid #CDD7DC;
    border-top: none;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    z-index: 99;
    display: none;
}

.form-field__select-wrap.is-open .form-field__select-options {
    display: block;
}

.form-field__select-option-item {
    padding: 16px 20px;
    color: var(--steel-blue);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.form-field__select-option-item:nth-child(even) {
    background-color: #DAE3E8;
}

.form-field__select-option-item:hover {
    background-color: #CDD7DC;
    color: var(--dark-blue);
}

/* =========================================================
    COMMON
   ========================================================= */
.common-page {
    padding-block: 240px 140px;
}

.common-container {
    max-width: 891px;
    margin: 0 auto;
}

.common-title {
    color: var(--dark-blue);
    font-size: clamp(22px, 2vw, 31px);
    font-style: normal;
    font-weight: 500;
    line-height: 103.226%;
}

.common-content {
    margin: 15px auto;
}

.common-content h2 {
    color: var(--dark-blue);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 135%;
    margin-block: 20px 15px;
}

.common-content h2 span {
    color: var(--main-blue);
}

.common-content p {
    color: var(--steel-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 190%;
    margin-bottom: 10px;
}

.common-content p strong {
    font-weight: 600;
}

.common-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}

.common-content ul li {
    color: var(--steel-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 190%;
    padding-left: 15px;
    position: relative;
}

.common-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--steel-blue);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

table th {
    color: var(--main-blue);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 170%;
    text-align: left;
    padding: 10px 20px 13px;
    border-bottom: 1px solid #EAEAEA;
    border-right: 1px solid #EAEAEA;
}

.prod-accordion-content table td,
.prod-accordion-content table th {
    border-color: #dbdbdb;
    padding: 10px;
}

.prod-accordion-content table th {
    line-height: 1.2;
}

table th:last-child {
    border-right: none;
}

table td {
    color: var(--steel-blue);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding: 15px 20px;
    border-bottom: 1px solid #EAEAEA;
    border-right: 1px solid #EAEAEA;
    vertical-align: top;
}

table td:last-child {
    border-right: none;
}

table tbody tr:last-child td {
    border-bottom: none;
}

.last-update {
    color: var(--steel-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 190%;
    padding-top: 25px;
}

.last-update strong {
    font-weight: 700;
}

/* =========================================================
    RESPONSIVO
   ========================================================= */
@media screen and (max-height: 800px) {
    .hero {
        height: 100vh;
        min-height: 500px;
    }

    .hero__content {
        padding-bottom: 60px;
    }

    .header__overlay {
        height: 100vh;
    }
}

@media screen and (max-width:1700px) {
    .contacts__image img {
        width: 100%;
        height: 80vh;
    }
}

@media screen and (max-width: 1650px) {
    .value-card-content {
        min-height: 169px;
    }
}

@media screen and (max-width: 1600px) {
    .header__container {
        padding: 50px;
    }

    .custom-logo-link img {
        width: 260px;
    }

    .overlay__logo img {
        width: 260px;
    }

    .header__overlay {
        height: 680px;
    }

    .overlay__search {
        margin-top: 100px;
    }

    .menu-item>a {
        font-size: 42px;
    }

    .hero {
        min-height: 650px;
    }

    .hero__content {
        padding: 0 50px 80px 50px;
    }

    .hero__title {
        font-size: 42px;
        max-width: 650px;
    }

    .hero__water {
        width: 550px;
        height: 700px;
    }

    /*INTRO*/
    .intro {
        padding: 65px 50px 0 50px;
    }

    .intro__container {
        gap: 140px;
    }

    .intro__heading {
        max-width: 620px;
        text-wrap: balance;
    }

    /*CATEGORIES*/
    .categories {
        padding: 80px 60px;
    }

    .category-card__title {
        font-size: 30px;
    }

    .category-card__description {
        font-size: 15px;
    }

    .category-card__content {
        padding: 30px;
    }

    .highlights {
        padding-top: 100px;
    }

    .highlights__container {
        gap: 40px;
    }

    .highlights__item {
        gap: 18px;
    }

    .highlights__icon {
        width: 40px;
        height: 40px;
    }

    .highlights__text {
        font-size: 14px;
    }

    /*CATALOG*/
    .catalog {
        padding: 80px 50px 100px;
    }

    .catalog__grid {
        gap: 22px 18px;
    }

    .catalog__banner {
        max-width: 1050px;
        padding: 35px 0 0 55px;
        margin-top: 70px;
    }

    .catalog__banner-content {
        gap: 42px;
        padding-block: 36px 80px;
    }

    .catalog__banner-title {
        font-size: 34px;
        max-width: 165px;
    }

    /*CLIENTS*/
    .clients {
        padding-block: 140px;
    }

    .clients__track {
        gap: 16px;
    }

    .clients__slide-text {
        padding-right: 45px;
        max-width: 400px;
    }

    .clients__title {
        font-size: 24px;
    }

    .clients__desc {
        font-size: 15px;
    }

    /*TECH*/
    .tech {
        padding-block: 60px 80px;
    }

    .tech__container {
        gap: 100px;
        max-width: 1220px;
    }

    .tech__title {
        font-size: 24px;
    }

    .tech__text {
        font-size: 15px;
    }

    .tech__image img {
        max-width: 700px;
    }

    /*FOOTER*/
    .footer__container {
        padding: 50px 50px 0;
    }

    .footer__top {
        gap: 36px;
        padding-bottom: 70px;
        grid-template-columns: 57.1% 14.5% 1fr;
    }

    .footer__logo {
        width: 700px;
    }

    .footer__brand {
        padding-bottom: 28px;
    }

    .footer::after {
        background-size: 85%;
    }

    /*PAGE ARCHIVE*/
    .archive-hero {
        height: 32vh;
    }

    .archive-section {
        padding: 50px;
    }

    .archive__header {
        margin-bottom: 35px;
    }

    .archive__title {
        font-size: 28px;
    }

    .archive__desc {
        font-size: 15px;
    }

    .archive__toolbar {
        gap: 35px;
        margin-bottom: 40px;
    }

    .archive__search-input {
        font-size: 15px;
    }

    .archive__filters-btn {
        font-size: 15px;
    }

    .archive__grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .navigation.pagination {
        margin-top: 50px;
    }

    /*SINGLE PAGE*/
    .breadcrumb {
        padding: 140px 50px 0;
    }

    .product__gallery {
        height: 750px;
        padding: 40px 0 40px 50px;
    }

    .product {
        column-gap: 60px;
    }

    .product__thumbs {
        left: 110px;
    }

    .product__info {
        padding-top: 60px;
    }

    .product__title {
        font-size: 28px;
    }

    .product__description p {
        font-size: 15px;
    }

    .product__color {
        font-size: 15px;
    }

    .prod-accordion-header {
        font-size: 15px;
        padding: 18px;
    }

    .accordion-inner-text {
        font-size: 13px;
        padding: 0 25px;
    }

    .product-specs-list dt,
    .product-specs-list dd {
        font-size: 13px;
    }

    .download-title {
        font-size: 13px;
    }

    .download-btn {
        padding: 14px 20px;
    }

    /*ABOUT PAGE*/
    .about__hero {
        height: 90vh;
    }

    .about__hero-content {
        bottom: 90px;
        left: 50px;
    }

    .about__hero-title {
        font-size: 28px;
    }

    .about__hero::after {
        width: 22%;
    }

    /* Intro */
    .about__intro .intro__container {
        gap: 250px;
    }

    .about__intro .intro__heading {
        max-width: 550px;
        font-size: 24px;
    }

    .about__intro .intro__col--right {
        max-width: 420px;
    }

    .about__mission,
    .about__vision {
        padding: 60px 50px;
    }

    .about__mission-container,
    .about__vision-intro {
        gap: 250px;
    }

    .about__mission-col--left,
    .about__vision-col--left {
        max-width: 550px;
    }

    .about__vision-intro {
        margin-bottom: 160px;
    }

    .about__mission-title,
    .about__vision-title,
    .about__values-title {
        font-size: 24px;
    }

    .about__mission-text,
    .about__vision-text {
        font-size: 15px;
    }

    .value-card__title {
        font-size: 32px;
    }

    .value-card {
        min-height: 300px;
        padding: 25px;
    }

    /*CONTACTS PAGE*/
    .contacts__top {
        padding: 200px 50px 35px;
        gap: 50px;
        margin: 0 auto;
    }

    .contacts__title {
        font-size: 28px;
    }

    .contacts__subtitle {
        font-size: 15px;
        text-wrap: balance;
    }

    .contacts__top-right {
        gap: 50px;
    }

    .contacts__image img {
        height: 78vh;
    }

    .pointsale {
        padding: 90px 50px 50px;
    }

    .pointsale__body {
        gap: 90px;
    }

    .pointsale__title {
        font-size: 24px;
    }

    .pointsale__subtitle {
        font-size: 15px;
    }

    .contact-form {
        padding: 100px 0 120px;
    }

    .contact-form__card {
        padding: 40px;
        max-width: 950px;
    }

    /*COMMON PAGES*/
    .common-page {
        padding-block: 200px 120px;
    }

    .common-content h2 {
        font-size: 21px;
        margin-block: 18px 14px;
    }

    .common-content p,
    .common-content ul li {
        font-size: 15px;
    }

    .last-update {
        font-size: 15px;
        padding-top: 22px;
    }

    .value-card__title {
        font-size: 28px;
    }
}

@media screen and (max-width: 1400px) {
    .pointsale {
        padding: 80px 40px 40px;
    }

    .header__container {
        padding: 40px;
    }

    .custom-logo-link img {
        width: 220px;
    }

    .overlay__logo img {
        width: 220px;
    }

    .header__overlay-container {
        padding: 40px;
    }

    .header__overlay {
        height: 620px;
    }

    .overlay__search {
        margin-top: 80px;
    }

    .menu-item>a {
        font-size: 38px;
    }

    .overlay__search-input {
        font-size: 30px;
    }

    .overlay__search-input::placeholder {
        font-size: 30px;
    }

    .menu-item {
        width: calc(100% + 80px);
        margin-left: -40px;
        margin-right: -40px;
    }

    .menu-item>a {
        padding-right: 40px;
    }

    .hero {
        height: 100vh;
        min-height: 550px;
    }

    .hero__content {
        padding: 0 40px 70px 40px;
    }

    .hero__title {
        font-size: 38px;
        max-width: 580px;
    }

    .hero__water {
        width: 480px;
        height: 620px;
    }

    /*INTRO*/
    .intro {
        padding: 60px 40px 0 40px;
    }

    .intro.about__intro {
        padding: 50px 60px;
    }

    .intro__container {
        gap: 100px;
    }

    .intro__heading {
        max-width: 550px;
    }

    /*CATEGORIES*/
    .categories {
        padding: 70px 40px;
    }

    .categories__title {
        font-size: 24px;
    }

    .categories__subtitle {
        font-size: 15px;
    }

    .category-card__title {
        font-size: 28px;
    }

    .category-card__description {
        font-size: 14px;
    }

    .category-card__content {
        padding: 25px;
    }

    .highlights {
        padding-top: 90px;
    }

    .highlights__container {
        gap: 32px;
    }

    .highlights__icon {
        width: 38px;
        height: 38px;
    }

    /*CATALOG*/
    .catalog {
        padding: 70px 40px 90px;
    }

    .catalog__title {
        font-size: 24px;
    }

    .catalog__subtitle {
        font-size: 15px;
    }

    .product-card__name {
        font-size: 16px;
    }

    .catalog__banner {
        max-width: 920px;
        padding: 30px 0 0 45px;
        margin-top: 60px;
    }

    .catalog__banner-content {
        gap: 34px;
        padding-block: 30px 70px;
    }

    .catalog__banner-title {
        font-size: 30px;
        max-width: 160px;
    }

    .catalog__banner-text {
        font-size: 12px;
    }

    .catalog__banner-btn {
        padding: 11px 18px;
    }

    .catalog__banner-image img {
        bottom: -4.1%;
        right: -4.3%;
    }

    .catalog__banner-image {
        width: 425px;
        height: 280px;
    }

    /*CLIENTS*/
    .clients {
        padding-block: 120px;
    }

    .clients__track {
        gap: 14px;
    }

    .clients__slide-text {
        padding-right: 40px;
        max-width: 360px;
    }

    .clients__title {
        font-size: 22px;
    }

    .clients__desc {
        font-size: 14px;
    }

    /*TECH*/
    .tech {
        padding-block: 50px 70px;
    }

    .tech__container {
        gap: 70px;
        max-width: 1000px;
    }

    .tech__title {
        font-size: 22px;
    }

    .tech__image img {
        max-width: 580px;
    }

    /*FOOTER*/
    .footer__container {
        padding: 40px 40px 0;
    }

    .footer__top {
        gap: 30px;
        padding-bottom: 60px;
    }

    .footer__logo {
        width: 580px;
    }

    .footer::after {
        background-size: 70%;
    }

    /*PAGE ARCHIVE*/
    .archive-hero {
        height: 30vh;
    }

    .archive-section {
        padding: 40px;
    }

    .archive__header {
        margin-bottom: 30px;
    }

    .archive__title {
        font-size: 26px;
    }

    .archive__desc {
        font-size: 14px;
        text-wrap: pretty;
    }

    .archive__toolbar {
        gap: 28px;
        margin-bottom: 35px;
    }

    .archive__search {
        padding: 11px 18px 11px 48px;
    }

    .archive__search::before {
        left: 18px;
        width: 22px;
        height: 22px;
    }

    .archive__search-input {
        font-size: 14px;
    }

    .archive__filters-btn {
        font-size: 14px;
    }

    /*PAGE ARCHIVE*/
    .breadcrumb {
        padding: 120px 40px 0;
    }

    .product {
        column-gap: 50px;
    }

    .product__gallery {
        height: 650px;
        padding: 40px 0 40px 40px;
    }

    .product__thumbs {
        left: 85px;
        gap: 12px;
    }

    .product__thumb {
        width: 44px;
        height: 44px;
    }

    .product__info {
        padding-top: 50px;
    }

    .product__title {
        font-size: 26px;
    }

    .product__description p {
        font-size: 14px;
    }

    .product__read-more {
        font-size: 14px;
    }

    .product__color {
        font-size: 14px;
        padding: 6px 8px;
    }

    .product__contact-box {
        padding: 20px;
    }

    .product__contact-question {
        font-size: 15px;
    }

    .product__contact-link {
        font-size: 12px;
    }

    /*PAGE ABOUT*/
    .about__hero-content {
        bottom: 70px;
        left: 40px;
    }

    .about__hero-title {
        font-size: 26px;
    }

    .about__intro .intro__container {
        gap: 200px;
    }

    .about__intro .intro__heading {
        max-width: 480px;
        font-size: 22px;
    }

    .about__intro .intro__col--right {
        max-width: 380px;
    }

    .about__mission,
    .about__vision {
        padding: 50px 40px;
    }

    .about__mission-container,
    .about__vision-intro {
        gap: 200px;
    }

    .about__mission-col--left,
    .about__vision-col--left {
        max-width: 480px;
    }

    .about__vision-intro {
        margin-bottom: 130px;
    }

    .about__mission-title,
    .about__vision-title,
    .about__values-title {
        font-size: 22px;
    }

    .about__mission-text,
    .about__vision-text {
        font-size: 14px;
    }

    .value-card__title {
        font-size: 26px;
    }

    .value-card {
        min-height: 270px;
    }

    .about__values-grid {
        gap: 20px;
    }

    /*PAGE CONTACTS*/
    .contacts__top {
        padding: 180px 40px 30px;
        gap: 40px;
    }

    .contacts__title {
        font-size: 26px;
    }

    .contacts__top-right {
        gap: 40px;
    }

    .contacts__image img {
        height: 72vh;
    }

    .pointsale__title {
        font-size: 22px;
    }

    .pointsale__subtitle {
        font-size: 14px;
        text-wrap: balance;
    }

    .contact-form__card {
        padding: 35px;
        max-width: 850px;
    }

    .intro__heading,
    .contact-form__title {
        font-size: 24px;
    }

    .contact-form__subtitle {
        font-size: 15px;
    }

    /*COMMON PAGES*/
    .common-page {
        padding-block: 180px 100px;
    }

    .common-content h2 {
        font-size: 20px;
    }

    .common-content p,
    .common-content ul li {
        font-size: 14px;
    }

    .last-update {
        font-size: 14px;
    }
}

@media screen and (max-width: 1300px) {
    .value-card-content {
        min-height: 181px;
    }
}

@media screen and (max-width: 1280px) {
    .common-content h2 {
        font-size: 19px;
    }

    .value-card__title {
        font-size: 22px;
    }
}

@media screen and (max-width: 1200px) {
    .header__container {
        padding: 30px;
    }

    .overlay__logo img,
    .custom-logo-link img {
        width: 200px;
    }

    .header__overlay-container {
        padding: 30px;
    }

    .header__overlay::before {
        background-size: 80%;
        background-position: left 112%;
        bottom: 0;
    }

    .overlay__search {
        margin-top: 70px;
        max-width: 100%;
    }

    .menu-item>a {
        font-size: 32px;
    }

    .overlay__search-input {
        font-size: 26px;
    }

    .overlay__search-input::placeholder {
        font-size: 26px;
    }

    .menu-item {
        width: calc(100% + 60px);
        margin-left: -30px;
        margin-right: -30px;
    }

    .menu-item>a {
        padding-right: 30px;
    }

    .overlay__nav {
        margin-top: 60px;
    }

    .hero {
        height: 95vh;
        min-height: 480px;
    }

    .hero__content {
        padding: 0 30px 60px 30px;
    }

    .hero__title {
        font-size: 34px;
        max-width: 520px;
    }

    .hero__water {
        width: 400px;
        height: 520px;
    }

    /*INTRO*/
    .intro {
        padding: 50px 30px 0 30px;
    }

    .intro.about__intro {
        padding: 50px 30px;
    }

    .intro__container {
        gap: 60px;
    }

    .intro__heading {
        font-size: 22px;
        max-width: 480px;
    }

    .intro__col>p {
        font-size: 15px;
    }

    .intro__col--right {
        gap: 20px;
    }

    /*CATEGORIES*/
    .categories {
        padding: 60px 30px;
    }

    .categories__grid {
        gap: 16px;
    }

    .categories__title {
        font-size: 22px;
    }

    .categories__subtitle {
        font-size: 14px;
        max-width: 480px;
    }

    .category-card__title {
        font-size: 26px;
    }

    .category-card__description {
        font-size: 13px;
    }

    .category-card__content {
        padding: 22px;
    }

    .categories__btn {
        font-size: 12px;
    }

    .highlights {
        padding-top: 80px;
    }

    .highlights__container {
        gap: 24px;
    }

    .highlights__item {
        gap: 14px;
        padding-right: 20px;
    }

    .highlights__icon {
        width: 36px;
        height: 36px;
    }

    .highlights__text {
        font-size: 13px;
        text-wrap: balance;
    }

    /*CATALOG*/
    .catalog {
        padding: 60px 30px 80px;
    }

    .catalog__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px 16px;
    }

    .catalog__title {
        font-size: 22px;
    }

    .catalog__subtitle {
        font-size: 14px;
    }

    .product-card__name {
        font-size: 15px;
    }

    .catalog__banner {
        max-width: 820px;
        padding: 25px 0 0 30px;
        margin-top: 50px;
        min-height: 260px;
    }

    .catalog__banner-content {
        gap: 28px;
        padding-block: 0;
    }

    .catalog__banner-title {
        font-size: 28px;
        max-width: 180px;
    }

    .catalog__banner-body {
        max-width: 240px;
        gap: 10px;
    }

    .catalog__banner-image {
        width: 310px;
        height: 230px;
    }

    .catalog__banner-image img {
        bottom: 0;
        right: -4.3%;
    }

    /*CLIENTS*/
    .clients {
        padding-block: 100px;
    }

    .clients__track {
        gap: 14px;
    }

    .clients__slide-text {
        padding-right: 35px;
        max-width: 320px;
    }

    .clients__title {
        font-size: 20px;
    }

    .clients__desc {
        font-size: 13px;
    }

    /*TECH*/
    .tech__container {
        gap: 40px;
        max-width: 875px;
    }

    .tech__title {
        font-size: 20px;
    }

    .tech__text {
        font-size: 14px;
    }

    .tech__image img {
        max-width: 480px;
    }

    /*FOOTER*/
    .footer__container {
        padding: 35px 30px 0;
    }

    .footer__top {
        gap: 24px;
        grid-template-columns: 50.1% 18.5% 1fr;
    }

    .footer__logo {
        width: 480px;
    }

    .footer__brand {
        padding-bottom: 24px;
    }

    .footer__phone-note {
        font-size: 8px;
    }

    .footer::after {
        background-size: 55%;
    }

    /*PAGE ARCHIVE*/
    .archive-hero {
        height: 28vh;
    }

    .archive-section {
        padding: 30px;
    }

    .archive__header {
        margin-bottom: 25px;
    }

    .archive__title {
        font-size: 24px;
    }

    .archive__toolbar {
        gap: 24px;
        margin-bottom: 30px;
    }

    .archive__filters-panel {
        width: 320px;
    }

    .navigation.pagination {
        margin-top: 45px;
    }

    .navigation.pagination .page-numbers {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    /*SINGLE PAGE*/
    .breadcrumb {
        padding: 110px 30px 0;
    }

    .breadcrumb__item {
        font-size: 12px;
    }

    .product {
        column-gap: 40px;
        grid-template-columns: 50% 43.15%;
    }

    .product__gallery {
        height: 550px;
        padding: 20px 0 30px 30px;
    }

    .product__thumbs {
        left: 60px;
        max-height: 180px;
        gap: 10px;
    }

    .product__thumb {
        width: 40px;
        height: 40px;
    }

    .product__info {
        padding-top: 40px;
    }

    .product__title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .product__meta {
        margin-bottom: 16px;
    }

    .product__category,
    .product__sku {
        font-size: 13px;
    }

    .product__colors-label {
        font-size: 13px;
    }

    .prod-accordion-header {
        font-size: 14px;
        padding: 16px;
    }

    .prod-accordion-header::before {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

    .prod-accordion-header::after {
        right: 16px;
        width: 12px;
        height: 12px;
    }

    .product-specs-list .spec-row {
        padding: 8px 12px;
    }

    /*ABOUT PAGE*/
    .about__hero-content {
        bottom: 60px;
        left: 30px;
    }

    .about__hero-title {
        font-size: 24px;
    }

    .about__intro .intro__container {
        gap: 150px;
    }

    .about__intro .intro__heading {
        max-width: 420px;
        font-size: 20px;
    }

    .about__intro .intro__col--right {
        max-width: 340px;
    }

    .about__mission,
    .about__vision {
        padding: 45px 30px;
    }

    .about__mission-container,
    .about__vision-intro {
        gap: 150px;
    }

    .about__mission-col--left,
    .about__vision-col--left {
        max-width: 420px;
    }

    .about__mission-col--right,
    .about__vision-col--right {
        max-width: 420px;
    }

    .about__vision-intro {
        margin-bottom: 100px;
    }

    .about__mission-title,
    .about__vision-title,
    .about__values-title {
        font-size: 20px;
    }

    .value-card {
        min-height: 250px;
        padding: 22px;
        border-radius: 16px;
    }

    .value-card-content {
        min-height: 206px;
    }

    /*PAGE CONTACTS*/
    .contacts__top {
        padding: 160px 30px 25px;
        gap: 30px;
    }

    .contacts__title {
        font-size: 24px;
    }

    .contacts__top-left {
        max-width: 480px;
    }

    .contacts__top-right {
        gap: 30px;
    }

    .contacts__image img {
        height: 65vh;
    }

    .pointsale {
        padding: 70px 30px 30px;
    }

    .pointsale__body {
        gap: 50px;
    }

    .pointsale__header {
        margin-bottom: 40px;
    }

    .pointsale__title {
        font-size: 20px;
    }

    .pointsale-card {
        padding: 22px;
    }

    .pointsale-card__name {
        font-size: 17px;
    }

    .contact-form {
        padding: 70px 0 90px;
    }

    .contact-form__card {
        padding: 30px;
        max-width: 750px;
    }

    .contact-form__title {
        font-size: 22px;
    }

    .contact-form__subtitle {
        font-size: 14px;
    }

    .form-field__input,
    .form-field__select,
    .form-field__textarea,
    .form-field__select-trigger,
    .form-field__select-option-item {
        font-size: 14px;
    }

    .form-field__label {
        font-size: 12px;
    }

    .form-field__textarea {
        min-height: 240px;
    }

    /*COMMON PAGES*/
    .common-page {
        padding-block: 160px 90px;
    }

    .common-container {
        max-width: 750px;
    }

    table th {
        font-size: 13px;
        padding: 8px 14px 10px;
    }

    table td {
        font-size: 12px;
        padding: 10px 14px;
    }

    .prod-accordion-content table td,
    .prod-accordion-content table th {
        font-size: 10px;
    }
}

@media screen and (max-width: 1024px) {
    .header__container {
        padding: 25px;
    }

    .header__overlay-container {
        padding: 25px;
    }

    .hamburger__line {
        width: 28px;
    }

    .header__overlay::before {
        background-size: 70%;
        background-position: left 110%;
    }

    .overlay__search {
        margin-top: 60px;
    }

    .overlay__search::after {
        width: 30px;
        height: 30px;
    }

    .overlay__search-input {
        font-size: 22px;
        padding-left: 45px;
    }

    .overlay__search-input::placeholder {
        font-size: 22px;
    }

    .menu-item>a {
        font-size: 28px;
    }

    .menu-item {
        width: calc(100% + 50px);
        margin-left: -25px;
        margin-right: -25px;
    }

    .menu-item>a {
        padding-right: 25px;
    }

    .overlay__nav {
        margin-top: 50px;
    }

    .close__line {
        width: 30px;
    }

    .hero {
        height: 85vh;
        min-height: 420px;
    }

    .hero__content {
        padding: 0 25px 50px 25px;
    }

    .hero__title {
        font-size: 30px;
        max-width: 460px;
    }

    .hero__water {
        width: 350px;
        height: 460px;
    }

    /*INTRO*/
    .intro {
        padding: 45px 25px;
        min-height: 50vh;
    }

    .intro.about__intro {
        padding: 25px;
        min-height: 43vh;
    }

    .intro__container {
        gap: 30px;
    }

    .intro__heading {
        font-size: 20px;
        max-width: 100%;
    }

    .intro__col>p {
        font-size: 14px;
    }

    .intro__col--right {
        max-width: 100%;
    }

    /*CATEGORIES*/
    .categories {
        padding: 50px 25px;
    }

    .categories__header {
        margin-bottom: 25px;
    }

    .categories__title {
        font-size: 20px;
    }

    .categories__subtitle {
        max-width: 440px;
    }

    /* Scroll horizontal */
    .category-card__title {
        font-size: 26px;
    }

    .category-card__description {
        font-size: 14px;
    }

    .category-card__content {
        padding: 25px;
    }

    .categories__btn {
        font-size: 12px;
    }

    .highlights {
        padding-top: 70px;
    }

    .highlights__container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .highlights__item {
        flex: 1 1 calc(25% - 15px);
        gap: 12px;
        border-right: 1px solid #C7C7C7;
        padding-right: 16px;
        max-width: none;
    }

    .highlights__item:last-child {
        border-right: none;
    }

    .highlights__icon {
        width: 34px;
        height: 34px;
    }

    .highlights__text {
        font-size: 12px;
        text-wrap: balance;
    }

    /*CATALOG*/
    .catalog {
        padding: 50px 25px 70px;
    }

    .catalog__header {
        align-items: flex-end;
        gap: 10px;
    }

    .catalog__title {
        font-size: 20px;
    }

    .catalog__link-all {
        font-size: 12px;
        gap: 10px;
    }

    .product-card__details {
        font-size: 13px;
    }

    .catalog__banner {
        padding: 20px 0 0 25px;
        margin-top: 45px;
        max-width: 700px;
    }

    .catalog__banner-content {
        gap: 24px;
    }

    .catalog__banner-title {
        font-size: 26px;
        max-width: 135px;
    }

    .catalog__banner-body {
        max-width: 220px;
    }

    .catalog__banner-btn {
        padding: 10px 16px;
    }

    .catalog__banner-image {
        width: 277px;
        height: 230px;
    }

    /*CLIENTS*/
    .clients {
        padding-block: 80px;
    }

    .clients__track {
        gap: 12px;
    }

    .clients__slide-text {
        padding-right: 30px;
    }

    .clients__title {
        font-size: 18px;
    }

    /*TECH*/
    .tech {
        padding: 70px 40px;
    }

    .tech__container {
        gap: 30px;
    }

    .tech__title {
        font-size: 18px;
    }

    .tech__image img {
        max-width: 400px;
    }

    .tech__btn {
        font-size: 12px;
    }

    /*FOOTER*/
    .footer__container {
        padding: 30px 25px 0;
    }

    .footer__top {
        gap: 20px;
        grid-template-columns: 49.1% 23.5% 1fr;
    }

    .footer__menus {
        gap: 16px;
    }

    .footer::after {
        background-size: 58%;
    }

    .footer__bottom-container {
        padding: 15px 55px 15px;
    }

    .footer__brand {
        padding-bottom: 15px;
    }

    /*PAGE ARCHIVE*/
    .archive-hero {
        height: 26vh;
    }

    .archive-section {
        padding: 25px;
    }

    .archive__title {
        font-size: 22px;
    }

    .archive__desc {
        font-size: 13px;
    }

    .archive__toolbar {
        gap: 20px;
    }

    .archive__search {
        padding: 10px 16px 10px 42px;
    }

    .archive__search::before {
        left: 14px;
        width: 20px;
        height: 20px;
    }

    .archive__search-input {
        font-size: 13px;
    }

    .archive__filters-btn {
        font-size: 13px;
        gap: 10px;
    }

    .archive__filters-btn::after {
        width: 15px;
        height: 15px;
    }

    .archive__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .archive__filters-panel {
        width: 300px;
        right: 0;
    }

    .close-btn {
        width: 18px;
        height: 18px;
    }

    .filter-header {
        padding: 25px 40px 18px;
    }

    .filter-header h2 {
        font-size: 14px;
    }

    .accordion-header {
        font-size: 15px;
        padding: 15px 0;
    }

    .checkbox-container {
        font-size: 13px;
    }

    .section-title-bar {
        font-size: 12px;
        padding: 7px 40px;
    }

    .section-content {
        padding: 12px 40px;
    }

    .categories-group {
        padding: 5px 40px 20px;
    }

    .accordion-item {
        margin-left: -40px;
        margin-right: -40px;
        padding-left: 40px;
        padding-right: 40px;
    }

    /*SINGLE PAGE*/
    .breadcrumb {
        padding: 100px 25px 0;
    }

    .product {
        column-gap: 30px;
    }

    .product__gallery {
        height: 480px;
        padding: 20px 0 25px 25px;
    }

    .product__thumbs {
        left: 40px;
    }

    .product__title {
        font-size: 22px;
    }

    .product__color {
        font-size: 13px;
    }

    .prod-accordion-header {
        font-size: 13px;
        padding: 14px;
    }

    .accordion-inner-text {
        font-size: 12px;
        padding: 0 20px;
    }

    .accordion-inner-text p {
        margin: 0;
    }

    .product-specs-list dt,
    .product-specs-list dd {
        font-size: 12px;
    }

    .download-btn {
        padding: 12px 18px;
    }

    /*ABOUT PAGE*/
    .about__hero-content {
        bottom: 50px;
        left: 25px;
    }

    .about__hero-title {
        font-size: 22px;
    }

    .about__intro .intro__container {
        gap: 100px;
    }

    .about__intro .intro__heading {
        max-width: 380px;
        font-size: 18px;
    }

    .about__intro .intro__col--right {
        max-width: 300px;
    }

    .about__mission,
    .about__vision {
        padding: 40px 25px;
    }

    .about__mission {
        min-height: 31vh;
    }

    .about__categories .categories__subtitle {
        text-wrap: balance;
    }

    .about__mission-container,
    .about__vision-intro {
        gap: 100px;
    }

    .about__mission-col--left,
    .about__vision-col--left {
        max-width: 380px;
    }

    .about__mission-col--right,
    .about__vision-col--right {
        max-width: 380px;
    }

    .about__vision-intro {
        margin-bottom: 80px;
    }

    .about__mission-title,
    .about__vision-title,
    .about__values-title {
        font-size: 18px;
    }

    .about__values-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        overflow-x: visible;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .value-card {
        flex: 1;
    }

    .value-card__title {
        font-size: 24px;
    }

    .value-card-content {
        min-height: auto;
    }

    .tech__content {
        max-width: 390px;
    }

    /*CONTACTS PAGE*/
    .contacts__top {
        padding: 140px 25px 20px;
        gap: 24px;
    }

    .contacts__top-left {
        max-width: 420px;
    }

    .contacts__top-right {
        gap: 24px;
    }

    .contacts__image img {
        height: 60vh;
    }

    .pointsale {
        padding: 60px 25px 25px;
    }

    .pointsale__body {
        gap: 36px;
    }

    .pointsale__header {
        margin-bottom: 35px;
    }

    .pointsale-card {
        padding: 18px;
        border-radius: 16px;
    }

    .pointsale-card__name {
        font-size: 15px;
    }

    .pointsale-card__maps {
        font-size: 12px;
        gap: 10px;
    }

    .pointsale::before {
        width: 50%;
    }

    .contact-form {
        padding: 60px 0 80px;
    }

    .contact-form__card {
        padding: 25px;
        max-width: 650px;
        border-radius: 25px;
    }

    .contact-form__title {
        font-size: 20px;
    }

    .form-field__textarea {
        min-height: 200px;
    }

    .form-row {
        gap: 10px;
    }

    .form-checkbox__text {
        font-size: 12px;
    }

    /*COMMON PAGES*/
    .common-page {
        padding-block: 140px 80px;
    }

    .common-container {
        max-width: 680px;
    }

    .common-content h2 {
        font-size: 18px;
        margin-block: 16px 12px;
    }

    .last-update {
        font-size: 13px;
        padding-top: 18px;
    }
}

@media screen and (max-width: 1024px) and (orientation: portrait) {
    .hero {
        height: 800px;
        min-height: 420px;
    }
}

@media screen and (max-width: 950px) {
    .tech__content {
        max-width: 340px;
    }
}

@media screen and (max-width: 900px) {
    .header__container {
        padding: 20px;
    }

    .header__overlay-container {
        padding: 20px;
    }

    .header__hamburger {
        gap: 6px;
    }

    .header__overlay::before {
        background-position: left 108%;
    }

    .overlay__search {
        margin-top: 50px;
    }

    .overlay__search-input {
        font-size: 20px;
        padding-left: 40px;
    }

    .overlay__search-input::placeholder {
        font-size: 20px;
    }

    .overlay__search::after {
        width: 24px;
        height: 24px;
    }

    .menu-item>a {
        font-size: 24px;
        padding-block: 16px;
    }

    .menu-item {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
    }

    .menu-item>a {
        padding-right: 20px;
    }

    .overlay__nav {
        margin-top: 40px;
    }

    .hero {
        height: 80vh;
        min-height: 380px;
    }

    .hero__content {
        padding: 0 20px 40px 20px;
    }

    .hero__title {
        font-size: 28px;
        max-width: 420px;
    }

    .hero__water {
        width: 300px;
        height: 400px;
    }

    /*INTRO*/
    .intro {
        padding: 40px 20px
    }

    .intro__container {
        gap: 24px;
    }

    .intro__heading {
        font-size: 19px;
    }

    /*CATEGORIES*/
    .categories {
        padding: 45px 20px;
    }

    .categories__title {
        font-size: 19px;
    }

    .category-card__title {
        font-size: 24px;
    }

    .category-card__description {
        font-size: 13px;
    }

    .category-card__content {
        padding: 22px;
    }

    .highlights {
        padding-top: 60px;
    }

    .highlights__container {
        gap: 16px;
    }

    .highlights__item {
        flex: 1 1 calc(25% - 12px);
        gap: 10px;
        padding-right: 12px;
    }

    .highlights__icon {
        width: 32px;
        height: 32px;
    }

    /*CATALOG*/
    .catalog {
        padding: 45px 20px 60px;
    }

    .catalog__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px 14px;
    }

    .catalog__grid .product-card:nth-child(3n+1):nth-last-child(1) {
        display: none;
    }

    .catalog__title {
        font-size: 19px;
    }

    .product-card__name {
        font-size: 14px;
    }

    /*CLIENTS*/
    .clients {
        padding-block: 70px;
    }

    .clients__slide-text {
        padding-right: 25px;
        max-width: 85%;
    }

    .clients__title {
        font-size: 17px;
    }

    .clients__desc {
        font-size: 12px;
    }

    /*TECH*/
    .tech__container {
        gap: 24px;
    }

    .tech__content {
        gap: 6px;
    }

    .tech__image img {
        max-width: 340px;
    }

    .tech__btn {
        font-size: 11px;
        gap: 8px;
    }

    /*FOOTER*/
    .footer__container {
        padding: 30px 20px 0;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
    }

    .footer::after {
        background-size: 50%;
    }

    .footer__menus {
        gap: 16px;
        order: 3;
    }

    /*PAGE ARCHIVE*/
    .archive-hero {
        height: 25vh;
    }

    .archive-section {
        padding: 20px;
    }

    .archive__header {
        margin-bottom: 20px;
    }

    .archive__title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .archive__desc {
        font-size: 12px;
    }

    .archive__toolbar {
        gap: 16px;
        margin-bottom: 25px;
    }

    .archive__search-input {
        font-size: 12px;
    }

    .archive__filters-btn {
        font-size: 12px;
        gap: 8px;
    }

    .archive__filters-panel {
        width: 100%;
        right: 0;
        border-radius: 12px;
        max-width: 100vw;
    }

    .navigation.pagination {
        margin-top: 40px;
    }

    .navigation.pagination .page-numbers {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .navigation.pagination .prev.page-numbers,
    .navigation.pagination .next.page-numbers {
        width: 14px;
        height: 14px;
    }

    /*SINGLE PAGE*/
    .breadcrumb {
        padding: 90px 20px 0;
    }

    .product {
        column-gap: 24px;
        grid-template-columns: 46% 47.15%;
    }

    .product__gallery {
        height: 420px;
        padding: 20px 0 20px 20px;
    }

    .product__thumbs {
        left: 20px;
        gap: 8px;
    }

    .product__thumb {
        width: 36px;
        height: 36px;
    }

    .product__info {
        padding-top: 30px;
    }

    .product__title {
        font-size: 20px;
    }

    .product__description p {
        font-size: 13px;
    }

    .product__read-more {
        font-size: 13px;
    }

    .product__contact-question {
        font-size: 14px;
    }

    .product__contact-link {
        font-size: 11px;
    }

    .product__contact-link::after {
        width: 16px;
        height: 11px;
    }

    /*ABOUT PAGE*/
    .about__hero-content {
        bottom: 40px;
        left: 20px;
    }

    .about__hero::after {
        width: 26%;
    }

    .about__intro .intro__container {
        gap: 60px;
    }

    .about__intro .intro__heading {
        max-width: 320px;
        font-size: 17px;
    }

    .about__mission {
        min-height: 35vh;
    }

    .value-card__text {
        line-height: 170.571%;
    }

    .about__mission,
    .about__vision {
        padding: 35px 20px;
    }

    .about__mission-container,
    .about__vision-intro {
        gap: 60px;
    }

    .about__mission-col--left,
    .about__vision-col--left {
        max-width: 320px;
    }

    .about__mission-col--right,
    .about__vision-col--right {
        max-width: 320px;
    }

    .about__vision-intro {
        margin-bottom: 60px;
    }

    .about__mission-title,
    .about__vision-title,
    .about__values-title {
        font-size: 17px;
    }

    .about__values-grid {
        gap: 16px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .value-card {
        flex: 0 0 250px;
        min-height: 210px;
        padding: 18px;
    }

    .value-card__title {
        font-size: 22px;
    }

    /*CONTACTS PAGE*/
    .contacts__top {
        flex-direction: column;
        padding: 130px 20px 20px;
        gap: 20px;
    }

    .contacts__phones {
        flex-direction: row;
        gap: 25px;
    }

    .contacts__top-left {
        max-width: 100%;
    }

    .contacts__top-right {
        gap: 24px;
    }

    .contacts__image img {
        height: 45vh;
    }

    .pointsale {
        padding: 50px 20px 0;
        max-height: none;
    }

    .pointsale__body {
        gap: 24px;
    }

    .pointsale__header {
        margin-bottom: 30px;
    }

    .pointsale__map {
        max-width: 400px;
        margin: 0 auto;
    }

    .pointsale-card {
        padding: 16px;
    }

    .pointsale-card__name {
        font-size: 14px;
    }

    .pointsale::before {
        content: '';
        position: absolute;
        left: -15%;
        bottom: 8%;
        width: 100%;
        aspect-ratio: 769 / 585;
        background-image: url(assets/images/logoPurpleContactMobile.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top left;
        pointer-events: none;
        z-index: 0;
    }

    .contact-form {
        padding: 50px 0 70px;
    }

    .contact-form__card {
        padding: 22px;
        max-width: 96%;
    }

    .contact-form__title {
        font-size: 19px;
    }

    .form-footer {
        gap: 16px;
    }

    /*COMMON PAGES*/
    .common-page {
        padding-block: 120px 70px;
    }

    .common-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .common-content h2 {
        font-size: 17px;
    }

    .common-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #A2B8C7 transparent;
        white-space: nowrap;
    }

    .common-content table::-webkit-scrollbar {
        height: 4px;
    }

    .common-content table::-webkit-scrollbar-thumb {
        background-color: #A2B8C7;
        border-radius: 10px;
    }

    .common-content table th,
    .common-content table td {
        white-space: normal;
        min-width: 120px;
    }

    .common-content table th {
        font-size: 12px;
    }

    .common-content table td {
        font-size: 11px;
    }
}

@media screen and (max-width: 820px) {
    .header__overlay {
        height: 50vh;
    }

    .catalog__banner {
        flex-direction: row;
        max-width: 100%;
        padding: 25px 25px 0;
        gap: 20px;
        min-height: auto;
    }

    .catalog__banner-content {
        flex-direction: column;
        gap: 12px;
        padding-block: 0;
        flex: 1;
        place-self: flex-start;
    }

    .catalog__banner-title {
        max-width: 100%;
        font-size: 24px;
    }

    .catalog__banner-body {
        max-width: 100%;
        gap: 10px;
    }

    .catalog__banner-btn {
        font-size: 10px;
        padding: 10px 16px;
    }

    .catalog__banner-image {
        width: 45%;
        height: 220px;
        flex-shrink: 0;
    }

    .catalog__banner-image img {
        width: 100%;
        bottom: -10%;
        right: 0;
    }

    .catalog__header {
        flex-wrap: wrap;
        margin-bottom: -12px;
    }

    .catalog__header-left {
        order: 2;
        top: -34px;
        position: relative;
    }

    .catalog__link-all {
        order: 1;
        margin-left: auto;
        margin-top: 15px;
    }

    .highlights {
        padding-top: 55px;
    }

    .highlights__container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .highlights__item {
        border-right: none;
        padding-right: 0;
        max-width: none;
        gap: 14px;
    }

    .highlights__item:nth-child(1),
    .highlights__item:nth-child(2) {
        border-bottom: 1px solid #C7C7C7;
        padding-bottom: 30px;
    }

    .highlights__icon {
        width: 34px;
        height: 34px;
    }

    .highlights__text {
        font-size: 13px;
    }

    .footer__brand {
        padding-bottom: 10px;
    }

    .footer__bottom-container {
        padding: 15px 55px 17px;
    }

    .hero.about__hero {
        height: 60vh;
    }
}

@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .header__overlay {
        height: 100%;
    }

    .header__container {
        padding: 20px 25px;
    }

    .header__overlay-container {
        padding: 20px 25px;
    }

    .hamburger__line {
        width: 24px;
    }

    .header__hamburger {
        gap: 5px;
        padding: 15px 8px;
    }

    .header__overlay::before {
        background-position: left 106%;
    }

    .overlay__close {
        width: 50px;
    }

    .close__line {
        width: 26px;
    }

    .overlay__search {
        margin-top: 80px;
    }

    .overlay__search-input {
        font-size: 18px;
    }

    .overlay__search-input::placeholder {
        font-size: 18px;
    }

    .menu-item>a {
        font-size: 28px;
        padding-block: 14px;
    }

    .menu-item {
        width: calc(100% + 50px);
        margin-left: -25px;
        margin-right: -25px;
    }

    .menu-item>a {
        padding-right: 25px;
    }

    .overlay__nav {
        margin-top: 30px;
    }

    .hero {
        height: 75vh;
        min-height: 350px;
    }

    .hero__content {
        padding: 0 20px 40px 20px;
    }

    .hero__title {
        font-size: 26px;
    }

    .hero__image {
        object-position: center center;
    }

    .hero__water {
        width: 250px;
        height: 340px;
        right: -20px;
    }

    /*INTRO*/
    .intro {
        padding: 35px 20px;
        min-height: 60vh;
    }

    .intro__container {
        flex-direction: column;
        gap: 16px;
    }

    .intro__heading {
        font-size: 18px;
    }

    .intro__col--right {
        max-width: 100%;
        gap: 14px;
    }

    /*CATEGORIES*/
    .categories {
        padding: 40px 20px;
    }

    .categories__header {
        margin-bottom: 20px;
    }

    .categories__title {
        font-size: 18px;
        max-width: 100%;
    }

    .category-card__description {
        min-height: 32px;
    }

    .category-card__title {
        font-size: 22px;
    }

    .category-card__content {
        padding: 20px;
    }

    .highlights {
        padding-top: 50px;
    }

    .highlights__container {
        gap: 24px;
    }

    .highlights__icon {
        width: 32px;
        height: 32px;
    }

    /*CATALOG*/
    .catalog {
        padding: 40px 20px 50px;
    }

    .catalog__title {
        font-size: 18px;
    }

    .product-card__category {
        font-size: 9px;
    }

    .product-card__details {
        font-size: 12px;
    }

    .product-card {
        gap: 10px;
    }

    .product-card__info {
        gap: 3px;
    }

    /*CLIENTS*/
    .clients {
        padding-block: 60px;
    }

    .clients__track {
        gap: 10px;
    }

    .clients__slide {
        border-radius: 14px;
        width: 80%;
        height: 265px;
    }

    .clients__slide-text {
        padding-right: 20px;
        gap: 0;
    }

    .clients__title {
        font-size: 16px;
    }

    /*TECH*/
    .tech {
        padding: 30px 20px;
    }

    .tech__container {
        flex-direction: column;
        gap: 20px;
        align-items: start;
    }

    .tech__content {
        max-width: 80%;
        gap: 6px;
    }

    .tech__image {
        justify-content: center;
    }

    .tech__image img {
        max-width: 90%;
    }

    /*FOOTER*/
    .footer__container {
        padding: 30px 20px 0;
    }

    .footer__top {
        gap: 20px;
        padding-bottom: 30px;
    }

    .footer__brand {
        padding-bottom: 20px;
    }

    .footer__contacts {
        gap: 30px;
    }

    .footer__bottom-container {
        padding: 18px 25px;
    }

    .footer__blisq img {
        width: 28px;
    }

    .footer__logo {
        width: 400px;
    }

    .footer__financiamento-container {
        padding: 31px 25px;
    }

    .footer::after {
        background-size: 72%;
    }

    /*PAGE ARCHIVE*/
    .archive-hero__img--desktop {
        display: none !important;
    }

    .archive-hero__img--mobile {
        display: block !important;
    }

    .archive-hero {
        height: 25vh;
    }

    .archive-section {
        padding: 20px;
    }

    .archive__title {
        font-size: 18px;
    }

    .archive__toolbar {
        gap: 14px;
    }

    .archive__search {
        padding: 9px 14px 9px 38px;
    }

    .archive__search::before {
        left: 12px;
        width: 18px;
        height: 18px;
    }

    .archive__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .archive__filters-btn {
        font-size: 12px;
    }

    .archive__filters-btn::after {
        width: 14px;
        height: 14px;
    }

    .close-btn {
        width: 16px;
        height: 16px;
    }

    .filter-header {
        padding: 20px 30px 15px;
    }

    .filter-header h2 {
        font-size: 13px;
    }

    .accordion-header {
        font-size: 14px;
        padding: 14px 0;
    }

    .checkbox-container {
        font-size: 12px;
        padding-left: 28px;
    }

    .checkbox-container input {
        width: 16px;
        height: 16px;
    }

    .checkbox-container::after {
        width: 16px;
        height: 16px;
        background-size: 45%;
    }

    .section-title-bar {
        font-size: 11px;
        padding: 6px 30px;
    }

    .section-content {
        padding: 10px 30px;
        gap: 10px;
    }

    .categories-group {
        padding: 5px 30px 15px;
    }

    .accordion-item {
        margin-left: -30px;
        margin-right: -30px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .navigation.pagination {
        margin-top: 35px;
    }

    .navigation.pagination .nav-links {
        gap: 4px;
    }

    /*SINGLE PAGE*/
    .breadcrumb {
        padding: 120px 20px 0;
    }

    .breadcrumb__list {
        gap: 5px;
        row-gap: 0;
    }

    .breadcrumb__item {
        gap: 5px;
    }

    .product {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .product__gallery {
        position: relative;
        height: 450px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding: 20px 0 0;
    }

    .product__main-image {
        height: 100%;
        width: 100%;
        padding: 0 20px;
    }

    .product__thumbs {
        position: absolute;
        left: 30px;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        max-height: 200px;
        overflow-y: auto;
        overflow-x: visible;
        gap: 8px;
        z-index: 2;
    }

    .product__thumb {
        width: 40px;
        height: 40px;
    }

    .product__info {
        padding: 30px 20px;
    }

    .product__title {
        font-size: 22px;
    }

    .product__colors-list {
        gap: 10px;
    }

    /*ABOUT PAGE*/
    .about__hero-content {
        bottom: 35px;
        left: 20px;
    }

    .about__intro .intro__container {
        flex-direction: column;
        gap: 20px;
    }

    .about__intro .intro__heading {
        max-width: 100%;
        font-size: 16px;
    }

    .about__intro .intro__col--right {
        max-width: 100%;
    }

    .about__mission,
    .about__vision {
        padding: 30px 20px;
        min-height: auto;
    }

    .about__mission-container,
    .about__vision-intro {
        flex-direction: column;
        gap: 20px;
        max-width: 80%;
        margin: unset;
    }

    .about__mission-col--left,
    .about__vision-col--left,
    .about__mission-col--right,
    .about__vision-col--right {
        max-width: 100%;
    }

    .about__vision-intro {
        margin-bottom: 40px;
    }

    .about__mission-title,
    .about__vision-title {
        font-size: 16px;
    }

    .about__values-grid {
        gap: 14px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .value-card__title {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .intro.about__intro {
        min-height: auto;
    }



    /*CONTACTS PAGE*/
    .contacts__top {
        padding: 120px 20px 20px;
        gap: 20px;
    }

    .contacts__top-right {
        gap: 20px;
    }

    .contacts__image img {
        height: 50vh;
    }

    .pointsale {
        padding: 40px 20px 0;
    }

    .pointsale__body {
        flex-direction: column;
        gap: 40px;
        max-width: 100%;
    }

    .pointsale__map {
        max-width: 350px;
        margin: 0 auto;
    }

    .pointsale__map img {
        max-width: 100%;
    }

    .pointsale__list-wrap {
        margin-top: 0;
        width: 100%;
    }

    .pointsale__header {
        margin-bottom: 25px;
    }

    .pointsale__list-wrap::after,
    .pointsale__list-wrap::before {
        height: 60px;
    }

    .contact-form {
        padding: 40px 0 70px;
    }

    .contact-form__card {
        padding: 20px;
        max-width: 100%;
        margin: 0 20px;
        gap: 8px;
    }

    .contact-form__title {
        font-size: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .form-field__input,
    .form-field__select,
    .form-field__textarea,
    .form-field__select-trigger,
    .form-field__select-option-item {
        font-size: 13px;
    }

    .form-field__textarea {
        min-height: 160px;
        border-radius: 20px;
    }

    .form-footer {
        flex-direction: column;
        gap: 14px;
    }

    .form-submit {
        width: 100%;
    }

    /*COMMON PAGES*/
    .common-page {
        padding-block: 100px 60px;
    }

    .common-container {
        padding: 0 20px;
    }

    .common-content h2 {
        font-size: 16px;
        margin-block: 14px 10px;
    }

    .common-content ul li::before {
        top: 10px;
        width: 3px;
        height: 3px;
    }

    .last-update {
        font-size: 12px;
        padding-top: 16px;
    }
}

@media screen and (max-width: 700px) {
    .catalog__header {
        gap: 12px;
    }

    .catalog__banner-body {
        max-width: 100%;
    }

    .catalog__banner {
        max-width: 100%;
        gap: 20px
    }

    .catalog__banner-image {
        height: 185px;
    }
}

@media screen and (max-width: 680px) {
    .hero {
        height: 70vh;
        min-height: 300px;
    }

    .hero__content {
        padding: 0 18px 35px 18px;
    }

    .hero__title {
        font-size: 24px;
    }

    .hero__water {
        width: 200px;
        height: 280px;
        right: -30px;
        bottom: -20px;
    }

    /*INTRO*/

    .intro {
        padding: 35px 18px;
    }

    .intro__container {
        gap: 14px;
    }

    /*CATEGORIES*/
    .categories__grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
        margin-bottom: 30px;
        margin-left: -25px;
        margin-right: -25px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .categories__grid::-webkit-scrollbar {
        display: none;
    }

    .category-card {
        scroll-snap-align: start;
        flex: 0 0 230px;
    }

    /*CATALOG*/
    .catalog {
        padding: 35px 18px 45px;
    }

    .catalog__link-all {
        align-self: flex-start;
    }

    /*ARCHIVE PAGE*/
    .archive-hero {
        height: 25vh;
    }
}

@media screen and (max-width:640px) {
    .about__values-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        margin-left: -18px;
        margin-right: -18px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .about__values-grid::-webkit-scrollbar {
        display: none;
    }

    .value-card {
        flex: 0 0 260px;
        min-height: auto;
    }

    .value-card__text {
        min-height: 16vh;
    }
}

@media screen and (max-width: 600px) {
    .header__container {
        padding: 18px 20px;
    }

    .header__overlay-container {
        padding: 18px 20px;
    }

    .hamburger__line {
        width: 22px;
        height: 2px;
    }

    .header__hamburger {
        gap: 5px;
    }

    .close__line {
        width: 24px;
    }

    .overlay__search {
        margin-top: 60px;
    }

    .overlay__search-input {
        font-size: 16px;
        padding-left: 35px;
    }

    .overlay__search-input::placeholder {
        font-size: 16px;
    }

    .overlay__search::after {
        width: 20px;
        height: 20px;
    }

    .menu-item>a {
        font-size: 22px;
        padding-block: 12px;
    }

    .menu-item {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
    }

    .menu-item>a {
        padding-right: 20px;
    }

    .hero {
        height: 65vh;
        min-height: 250px;
    }

    .hero__content {
        padding: 0 18px 30px 18px;
    }

    .hero__title {
        font-size: 22px;
    }

    .hero__btn {
        font-size: 12px;
        gap: 8px;
    }

    .hero__btn::after {
        width: 16px;
        height: 12px;
    }

    .hero__water {
        width: 180px;
        height: 250px;
        right: -40px;
        bottom: -30px;
    }

    /*INTRO*/
    .intro__container {
        gap: 12px;
    }

    .intro__col--right {
        gap: 12px;
    }

    /*CATEGORIES*/
    .categories {
        padding: 30px 18px;
    }

    .categories__grid {
        gap: 12px;
        margin-bottom: 25px;
    }

    .category-card {
        flex: 0 0 230px;
    }

    .category-card__title {
        font-size: 20px;
    }

    .category-card__description {
        font-size: 12px;
    }

    .category-card__content {
        padding: 18px;
    }

    .categories__btn {
        gap: 6px;
    }

    .categories__btn::after {
        width: 14px;
        height: 10px;
    }

    .highlights {
        padding-top: 40px;
    }

    .highlights__container {
        gap: 20px;
    }

    .highlights__item:nth-child(1),
    .highlights__item:nth-child(2) {
        padding-bottom: 20px;
    }

    .highlights__icon {
        width: 30px;
        height: 30px;
    }

    .highlights__text {
        font-size: 12px;
    }

    /*CATALOG*/
    .catalog {
        padding: 30px 18px 40px;
    }

    .catalog__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 12px;
    }

    .catalog__grid .product-card:last-child,
    .catalog__grid .product-card:nth-child(3n+1):nth-last-child(1) {
        display: flex;
    }

    .product-card__name {
        font-size: 13px;
    }

    .catalog__banner {
        flex-direction: column;
        padding: 20px 18px 0;
        gap: 16px;
    }

    .catalog__banner-content {
        gap: 10px;
    }

    .catalog__banner-title {
        font-size: 20px;
    }

    .catalog__banner-image {
        width: 100%;
        height: 220px;
    }

    .catalog__banner-image img {
        width: 70%;
        bottom: -15%;
        right: 0;
    }

    /*CLIENTS*/
    .clients {
        padding-block: 50px;
    }

    .clients__slide-text {
        padding-right: 18px;
    }

    /*TECH*/
    .tech__container {
        gap: 16px;
    }

    .tech__btn {
        gap: 6px;
    }

    .tech__btn::after {
        width: 14px;
        height: 10px;
    }

    /*FOOTER*/
    .footer__container {
        padding: 30px 18px 0;
        display: flex;
        flex-direction: column;
    }

    .footer__brand {
        padding-bottom: 30px;
    }

    .footer__top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 45px 18px;
        padding-bottom: 25px;
    }

    .footer__address {
        order: 1;
    }

    .footer__contacts {
        order: 2;
        flex-direction: column;
        gap: 14px;
    }

    .footer__menus {
        order: 3;
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .footer__logo {
        width: 100%;
    }

    .footer__bottom-container {
        padding: 14px 18px;
    }

    .footer__financiamento-container {
        padding: 20px 18px;
    }

    .footer::after {
        background-size: 80%;
        bottom: -1%;
        right: 0;
    }

    /*PAGE ARCHIVE*/
    .archive-section {
        padding: 18px;
    }

    .archive__header {
        margin-bottom: 18px;
    }

    .archive__title {
        font-size: 16px;
    }

    .archive__desc {
        font-size: 12px;
    }

    .archive__toolbar {
        gap: 12px;
    }

    .archive__search {
        width: 100%;
    }

    .archive__filters-panel {
        top: 100%;
        right: 0;
        width: 100%;
    }

    .navigation.pagination .page-numbers {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    /*SINGLE PAGE*/
    .breadcrumb {
        padding: 110px 18px 0;
    }

    .breadcrumb__item {
        font-size: 11px;
    }

    .breadcrumb__item::after {
        width: 12px;
        height: 12px;
    }

    .product__gallery {
        height: 400px;
    }

    .product__main-image {
        padding: 0 18px;
    }

    .product__thumbs {
        left: 26px;
        max-height: 170px;
        gap: 6px;
    }

    .product__thumb {
        width: 36px;
        height: 36px;
    }

    .product__info {
        padding: 25px 18px;
    }

    .product__title {
        font-size: 20px;
    }

    .product__description p {
        font-size: 12px;
    }

    .product__color {
        font-size: 12px;
        padding: 5px 7px;
        gap: 5px;
    }

    .product__color-img {
        width: 16px;
        height: 16px;
    }

    .product__contact-box {
        padding: 18px;
    }

    .product__contact-question {
        font-size: 13px;
    }

    .product__contact-link {
        gap: 6px;
    }

    .product__contact-link::after {
        width: 14px;
        height: 10px;
    }

    .prod-accordion-header {
        font-size: 12px;
        padding: 12px;
        border-radius: 8px;
    }

    .prod-accordion-header::before {
        width: 18px;
        height: 18px;
    }

    .prod-accordion-header::after {
        right: 12px;
        width: 10px;
        height: 10px;
    }

    .accordion-inner-text {
        padding: 0;
    }

    .accordion-inner-text>ul {
        padding: 0 20px;
    }

    .product-specs-list dt,
    .product-specs-list dd {
        font-size: 11px;
    }

    .product-specs-list .spec-row {
        padding: 6px 10px;
    }

    .download-title {
        font-size: 12px;
    }

    .download-btn {
        font-size: 9px;
        padding: 10px 16px;
    }

    .download-btn::after {
        width: 12px;
        height: 12px;
    }

    /*ABOUT PAGE*/
    .about__hero-content {
        bottom: 30px;
        left: 18px;
    }

    .about__intro .intro__container {
        gap: 16px;
    }

    .about__mission-container,
    .about__vision-intro {
        max-width: 100%;
    }

    .tech__content {
        max-width: 100%;
    }

    .about__mission,
    .about__vision {
        padding: 25px 18px;
    }

    .about__mission-container,
    .about__vision-intro {
        gap: 16px;
    }

    .about__values-grid {
        gap: 12px;
        margin-left: -18px;
        margin-right: -18px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .value-card {
        min-height: 170px;
        border-radius: 14px;
    }

    .value-card__title {
        font-size: 18px;
    }

    .value-card-content {
        min-height: auto;
    }

    /*CONTACTS PAGE*/
    .contacts__top {
        padding: 110px 18px 18px;
        gap: 16px;
    }

    .contacts__phones {
        flex-direction: column;
        gap: 10px;
    }

    .contacts__image img {
        height: 40vh;
    }

    .pointsale {
        padding: 30px 18px 0;
    }

    .pointsale__header {
        margin-bottom: 20px;
    }

    .pointsale__list {
        max-height: 350px;
    }

    .pointsale-card {
        padding: 15px;
        border-radius: 14px;
        gap: 6px;
    }

    .pointsale-card__status,
    .pointsale-card__hours {
        font-size: 12px;
    }

    .pointsale-card__maps {
        font-size: 11px;
        gap: 8px;
    }

    .contact-form {
        padding: 30px 0 70px;
    }

    .contact-form__card {
        margin: 0 18px;
        padding: 18px;
        border-radius: 20px;
    }

    .form-field__label {
        font-size: 11px;
        top: 8px;
        left: 12px;
    }

    .form-field__textarea {
        border-radius: 16px;
        min-height: 140px;
    }

    .form-checkbox {
        gap: 10px;
    }

    .form-checkbox__box {
        width: 20px;
        height: 20px;
    }

    /*COMMON PAGES*/
    .common-container {
        padding: 0 18px;
    }

    .common-content table th {
        font-size: 11px;
        padding: 6px 10px 8px;
    }

    .common-content table td {
        font-size: 10px;
        padding: 8px 10px;
    }
}

@media screen and (max-width: 550px) {
    .catalog__banner-image {
        height: 200px;
    }

    .catalog__header-left {
        top: 0;
    }

    .catalog__header {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 500px) {
    .catalog__banner-content {
        gap: 5px;
        flex-direction: column;
    }

    .catalog__banner-title {
        max-width: 100%;
    }

    .catalog__banner-image img {
        width: 300px;
        bottom: -20%;
        right: 0;
    }

    .catalog__banner-image {
        height: 175px;
    }

    /*CLIENTS*/
    .clients__slide {
        width: 90%;
    }

    /*FOOTER*/
    .footer__top {
        gap: 65px 18px;
    }
}

@media screen and (max-width: 480px) {
    .header__container {
        padding: 15px 18px;
    }

    .header__overlay-container {
        padding: 15px 18px;
    }

    .overlay__search {
        margin-top: 50px;
    }

    .menu-item>a {
        font-size: 18px;
        padding-block: 10px;
    }

    .overlay__search-input {
        font-size: 14px;
        padding-left: 30px;
    }

    .overlay__search-input::placeholder {
        font-size: 14px;
    }

    .overlay__search::after {
        width: 18px;
        height: 18px;
    }

    .menu-item {
        width: calc(100% + 36px);
        margin-left: -18px;
        margin-right: -18px;
    }

    .menu-item>a {
        padding-right: 18px;
    }

    .overlay__nav {
        margin-top: 25px;
    }

    .hero {
        height: 60vh;
        min-height: 200px;
    }

    .hero__content {
        padding: 0 15px 25px 15px;
    }

    .hero__title {
        font-size: 20px;
        max-width: 90%;
        margin-bottom: 10px;
    }

    .hero__btn {
        font-size: 11px;
        gap: 6px;
    }

    .hero__btn::after {
        width: 14px;
        height: 10px;
    }

    .hero__water {
        width: 150px;
        height: 210px;
        right: -50px;
        bottom: -40px;
    }

    /*INTRO*/
    .intro {
        padding: 35px 15px;
    }

    .intro__container {
        gap: 12px;
    }

    .intro__heading {
        font-size: 16px;
    }

    /*CATEGORIES*/
    .categories {
        padding: 40px 15px;
    }

    .category-card__title {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .category-card__content {
        padding: 15px;
    }

    .categories__btn {
        gap: 5px;
    }

    .categories__btn::after {
        width: 12px;
        height: 9px;
    }

    .highlights {
        padding-top: 35px;
    }

    .highlights__text {
        font-size: 11px;
    }

    .highlights__container {
        gap: 16px 8px;
    }

    .highlights__item {
        gap: 12px;
    }

    .highlights__icon {
        width: 28px;
        height: 28px;
    }

    /*CATALOG*/
    .catalog {
        padding: 25px 15px 50px;
    }

    .catalog__link-all {
        gap: 6px;
    }

    .catalog__link-all::after {
        width: 14px;
        height: 10px;
    }

    .product-card__category {
        font-size: 8px;
    }

    .product-card__name {
        font-size: 14px;
    }

    /*CLIENTS*/
    .clients__track {
        gap: 8px;
    }

    .clients__slide {
        border-radius: 12px;
        height: 250px;
    }

    .clients__slide-text {
        padding-right: 15px;
    }

    /*TECH*/
    .tech {
        padding: 45px 15px;
    }

    .tech__container {
        gap: 14px;
    }

    .tech__btn::after {
        width: 12px;
        height: 9px;
    }

    /*FOOTER*/
    .footer__container {
        padding: 30px 15px 0;
    }

    .footer__top {
        padding-bottom: 20px;
    }

    .footer__bottom-container {
        padding: 12px 15px;
    }

    .footer::after {
        background-size: 90%;
    }

    /*PAGE ARCHIVE*/
    .archive-hero {
        height: 22vh;
    }

    .archive-section {
        padding: 15px 15px 45px;
    }

    .archive__desc {
        font-size: 11px;
    }

    .archive__toolbar {
        gap: 10px;
    }

    .archive__search {
        padding: 8px 12px 8px 34px;
    }

    .archive__search::before {
        filter: invert(53%) sepia(9%) saturate(1008%);
        mix-blend-mode: normal;
        filter: invert(52%) sepia(13%) saturate(760%) hue-rotate(172deg) brightness(92%) contrast(88%);
    }

    .archive__search::before {
        left: 10px;
        width: 16px;
        height: 16px;
    }

    .archive__search-input::placeholder {
        color: #6E7F91;
    }

    .archive__search-input {
        font-size: 11px;
    }

    .archive__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 10px;
    }

    .archive__filters-btn {
        font-size: 11px;
    }

    .close-btn {
        width: 14px;
        height: 14px;
    }

    .filter-header {
        padding: 16px 20px 12px;
    }

    .filter-header h2 {
        font-size: 12px;
    }

    .accordion-header {
        font-size: 13px;
        padding: 12px 0;
    }

    .accordion-header::after {
        width: 10px;
        height: 10px;
    }

    .checkbox-container {
        font-size: 11px;
        padding-left: 26px;
    }

    .checkbox-container input {
        width: 15px;
        height: 15px;
    }

    .checkbox-container::after {
        width: 15px;
        height: 15px;
    }

    .section-title-bar {
        padding: 5px 20px;
    }

    .section-content {
        padding: 8px 20px;
        gap: 8px;
    }

    .categories-group {
        padding: 5px 20px 12px;
    }

    .accordion-item {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .navigation.pagination {
        margin-top: 30px;
    }

    /*SINGLE PAGE*/
    .breadcrumb {
        padding: 100px 15px 0;
    }

    .product__gallery {
        height: 340px;
    }

    .product__main-image {
        padding: 0 15px;
    }

    .product__thumbs {
        left: 22px;
        max-height: 140px;
    }

    .product__info {
        padding: 20px 15px;
    }

    .product__title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .product__meta {
        margin-bottom: 12px;
        gap: 6px;
    }

    .product__category,
    .product__sku {
        font-size: 12px;
    }

    .product__colors-label {
        font-size: 12px;
    }

    .product__color {
        font-size: 11px;
    }

    .product__read-more {
        font-size: 12px;
    }

    .prod-accordion-item {
        margin-bottom: 10px;
    }

    .prod-accordion-content {
        padding-block: 10px;
    }

    /*ABOUT PAGE*/
    .about__hero-content {
        bottom: 25px;
        left: 15px;
    }

    .about__hero-title {
        font-size: 24px;
    }

    .about__intro .intro__heading {
        line-height: 150%;
    }

    .about__intro .intro__container {
        gap: 14px;
    }

    .about__mission,
    .about__vision {
        padding: 25px 15px 45px;
    }

    .about__mission-container,
    .about__vision-intro {
        gap: 14px;
    }

    .about__vision-intro {
        margin-bottom: 30px;
    }

    .about__values-grid {
        gap: 10px;
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    /*CONTACTS PAGE*/
    .contacts__top {
        padding: 100px 15px 15px;
        gap: 14px;
    }

    .contacts__top-right {
        gap: 16px;
    }

    .contacts__image img {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .pointsale {
        padding: 25px 15px 0;
    }

    .pointsale__list {
        gap: 10px;
    }

    .pointsale-card {
        padding: 12px;
        border-radius: 12px;
        gap: 4px;
    }

    .pointsale-card__status,
    .pointsale-card__hours {
        font-size: 11px;
    }

    .pointsale-card__name {
        font-size: 13px;
    }

    .pointsale-card__maps {
        gap: 6px;
    }

    .pointsale-card__maps::after {
        width: 14px;
        height: 11px;
    }

    .contact-form__card {
        margin: 0 15px;
        padding: 16px;
        border-radius: 18px;
    }

    /*COMMON PAGES*/
    .common-container {
        padding: 0 15px;
    }

    .last-update {
        padding-top: 14px;
    }
}

@media screen and (max-width: 450px) {
    .highlights__item {
        flex: 1;
        gap: 10px;
    }

    .highlights__text {
        font-size: 10px;
    }

    .highlights__item:nth-child(1),
    .highlights__item:nth-child(2) {
        border-bottom: none;
        padding-bottom: 0;
    }

    .product__gallery {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .product__main-image {
        height: 300px;
        padding: 0 15px;
        order: 1;
    }

    .product__thumbs {
        position: static;
        transform: none;
        flex-direction: row;
        max-height: none;
        overflow-y: visible;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        gap: 8px;
        max-width: 80%;
        margin-top: 10px;
        order: 2;
    }

    .product__thumbs::-webkit-scrollbar {
        display: none;
    }

    .product__thumb {
        width: 43px;
        height: 43px;
        flex-shrink: 0;
    }

    .product__info {
        padding: 20px 15px;
    }

    .product__contact-question {
        font-size: 12px;
    }

    .tech__text {
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 400px) {
    .hero__title {
        font-size: 18px;
    }

    .hero__water {
        width: 130px;
        height: 180px;
        right: -50px;
        bottom: -40px;
    }

    /*INTRO*/
    .intro__container {
        gap: 10px;
    }

    .intro__col>p {
        line-height: 150%;
    }

    /*CATEGORIES*/
    .category-card {
        flex: 0 0 230px;
    }

    .category-card__title {
        font-size: 16px;
    }

    .category-card__description {
        line-height: 130%;
    }

    .category-card__content {
        padding: 12px;
    }

    .highlights {
        padding-top: 30px;
    }

    .highlights__container {
        gap: 14px;
    }

    .highlights__icon {
        width: 24px;
        height: 24px;
    }

    .highlights__text {
        font-size: 10px;
    }

    /*CATALOG*/
    .catalog {
        padding: 22px 12px 50px;
    }

    .catalog__header-left {
        top: 0;
    }

    .catalog__grid {
        gap: 14px 10px;
    }

    .product-card {
        gap: 8px;
    }

    /*CLIENTS*/
    .clients__slide-text {
        padding-right: 14px;
    }

    /*TECH*/
    .tech {
        padding-block: 22px 30px;
    }

    /*FOOTER*/
    .footer__top {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding-bottom: 0;
    }

    .footer__address {
        order: 1;
    }

    .footer__contacts {
        order: 2;
        flex-direction: column;
        gap: 12px;
    }

    .footer__nav {
        width: 100%;
    }

    .footer__bottom-container {
        padding: 10px 12px;
    }

    .footer::after {
        background-size: 100%;
        bottom: 0;
    }

    /*PAGE ARCHIVE*/
    .archive-hero {
        height: 20vh;
    }

    .archive-section {
        padding: 12px;
    }

    .navigation.pagination .page-numbers {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }

    /*SINGLE PAGE*/
    .breadcrumb {
        padding: 95px 12px 0;
    }

    .product__main-image {
        height: 260px;
        padding: 0 12px;
    }

    .product__thumbs {
        gap: 6px;
        max-width: 85%;
    }

    .product__thumb {
        width: 38px;
        height: 38px;
    }

    .product__info {
        padding: 18px 12px;
    }

    .product__title {
        font-size: 16px;
    }

    .product__contact-box {
        padding: 15px;
    }

    .prod-accordion-header {
        font-size: 11px;
        padding: 10px;
    }

    /*ABOUT PAGE*/
    .about__mission,
    .about__vision {
        padding: 25px 12px;
    }

    .about__values-grid {
        gap: 10px;
        margin-left: -12px;
        margin-right: -12px;
        padding-left: 12px;
        padding-right: 12px;
    }

    /*CONTACTS PAGE*/
    .contacts__top {
        padding: 95px 12px 12px;
    }

    .contacts__title {
        font-size: 18px;
    }

    .contacts__top-right {
        flex-direction: column;
        gap: 14px;
    }

    .pointsale {
        padding: 22px 12px 0;
    }

    .pointsale__list {
        max-height: 280px;
    }

    .contact-form__card {
        margin: 0 12px;
        padding: 14px;
        border-radius: 16px;
    }

    /*COMMON PAGES*/
    .common-container {
        padding: 0 12px;
    }
}

@media screen and (max-width: 375px) {
    .header__container {
        padding: 12px 15px;
    }

    .header__overlay-container {
        padding: 12px 15px;
    }

    .hamburger__line {
        width: 20px;
    }

    .header__hamburger {
        gap: 4px;
        padding: 10px 6px;
    }

    .close__line {
        width: 20px;
    }

    .overlay__close {
        width: 44px;
    }

    .overlay__search {
        margin-top: 40px;
    }

    .menu-item>a {
        font-size: 16px;
        padding-block: 8px;
    }

    .menu-item {
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-right: -15px;
    }

    .menu-item>a {
        padding-right: 15px;
    }

    .hero__btn {
        gap: 5px;
    }

    .hero__btn::after {
        width: 12px;
        height: 9px;
    }

    .hero__water {
        width: 110px;
        height: 160px;
        right: -50px;
        bottom: -40px;
    }

    /*INTRO*/
    .intro__container {
        gap: 8px;
    }

    .intro__col--right {
        gap: 8px;
    }

    /*CATEGORIES*/
    .categories__header {
        margin-bottom: 16px;
    }

    .categories__grid {
        gap: 10px;
        margin-bottom: 20px;
    }

    .category-card {
        flex: 0 0 220px;
    }

    .category-card__content {
        padding: 12px;
    }

    .highlights {
        padding-top: 25px;
    }

    .highlights__container {
        gap: 12px;
    }

    .highlights__icon {
        width: 22px;
        height: 22px;
    }

    /*CATALOG*/
    .catalog {
        padding: 20px 12px 50px;
    }

    .catalog__banner-image {
        height: 162px;
    }

    /*CLIENTS*/
    .clients__track {
        gap: 8px;
    }

    .clients__slide {
        border-radius: 10px;
    }

    .clients__slide-text {
        padding-right: 12px;
    }

    /*TECH*/
    .tech {
        padding-block: 20px 25px;
    }

    .tech__container {
        gap: 12px;
    }

    /*FOOTER*/
    .footer__top {
        padding-bottom: 16px;
    }

    .footer__bottom-container {
        padding: 10px 12px;
    }

    .footer::after {
        background-size: 110%;
    }

    /*PAGE ARCHIVE*/
    .archive-hero {
        height: 20vh;
    }

    .archive-section {
        padding: 12px;
    }

    .archive__header {
        margin-bottom: 14px;
    }

    .archive__title {
        margin-bottom: 6px;
    }

    .archive__toolbar {
        gap: 8px;
    }

    .archive__filters-btn {
        gap: 6px;
    }

    .archive__filters-btn::after {
        width: 12px;
        height: 12px;
    }

    .filter-header {
        padding: 14px 15px 10px;
    }

    .accordion-header {
        font-size: 12px;
        padding: 10px 0;
    }

    .close-btn {
        width: 12px;
        height: 12px;
    }

    .checkbox-container {
        padding-left: 24px;
    }

    .section-title-bar {
        padding: 5px 15px;
    }

    .section-content {
        padding: 6px 15px;
        gap: 6px;
    }

    .categories-group {
        padding: 5px 15px 10px;
    }

    .accordion-item {
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    /*SINGLE PAGE*/
    .breadcrumb {
        padding: 90px 12px 0;
    }

    .product__main-image {
        height: 240px;
    }

    .product__thumbs {
        gap: 6px;
        max-width: 90%;
    }

    .product__thumb {
        width: 34px;
        height: 34px;
    }

    .product__info {
        padding: 15px 12px;
    }

    .product__title {
        font-size: 15px;
    }

    .product__contact-link {
        font-size: 9px;
    }

    .download-btn {
        padding: 8px 14px;
    }

    /*ABOUT PAGE*/
    .about__intro .intro__container {
        gap: 12px;
    }

    .about__mission,
    .about__vision {
        padding: 18px 12px;
    }

    .about__mission-container,
    .about__vision-intro {
        gap: 12px;
    }

    .about__values-grid {
        gap: 8px;
        margin-left: -12px;
        margin-right: -12px;
        padding-left: 12px;
        padding-right: 12px;
    }

    /*CONTACTS PAGE*/
    .contacts__top {
        padding: 90px 12px 12px;
        gap: 12px;
    }

    .pointsale {
        padding: 20px 12px 0;
    }

    .pointsale__header {
        margin-bottom: 16px;
    }

    .pointsale__list {
        max-height: 260px;
        gap: 8px;
    }

    .pointsale-card {
        padding: 10px;
    }

    .pointsale-card__name {
        font-size: 12px;
    }

    .pointsale::before {
        bottom: 12%;
    }

    .contact-form__card {
        margin: 0 12px;
        padding: 14px;
        border-radius: 16px;
    }

    /*COMMON PAGES*/
    .common-container {
        padding: 0 12px;
    }
}

@media screen and (max-width: 350px) {
    .hero__water {
        width: 100px;
        height: 140px;
    }

    .catalog__banner {
        gap: 0;
    }
}