/* =========================================================
IMPORTAÇÃO DE FONTES
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Inter:wght@300;400;500;600&display=swap');

/* =========================================================
VARIÁVEIS GLOBAIS
========================================================= */

:root {
    --black: #0F0F0F;
    --gold: #C7A16B;
    --gold-hover: #B48D57;
    --white: #FFFFFF;
    --text: #5E5E5E;
    --border: #EAEAEA;
    --bg: #F7F7F5;
    --radius: 24px;
    --transition: .3s ease;
}

/* =========================================================
RESET GLOBAL
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    background: #fff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================================
TIPOGRAFIA GLOBAL
========================================================= */

.section-title h2,
.hero-content h1,
.page-header h1,
.single-info h1,
.gallery-top h1,
.products-top h1,
.about-content h2,
.about-hero h1,
.about-cta h2,
.whatsapp-content h2,
.footer-logo,
.product-info h2,
.product-info h3,
.gallery-info h2,
.home-differential-item h3,
.about-differential-item h3,
.differential-card h3,
.category-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.mini-title,
.hero-mini-title,
.products-mini-title,
.single-category,
.gallery-top span,
.page-header span,
.product-category,
.gallery-info span,
.about-hero-content span,
.about-cta-box span {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* =========================================================
HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 26px 0;
    transition: var(--transition);

    /* 93% transparente */
    background: rgba(15, 15, 15, 0.1);
    backdrop-filter: blur(2px);
}

.site-header.scrolled {
    /* Fundo forte ao fazer scroll */
    background: rgba(15, 15, 15, 0.88);
    backdrop-filter: blur(10px);
    padding: 16px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 30px;
    letter-spacing: 2px;
    font-family: 'Cormorant Garamond', serif;
}

.menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.menu a {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    position: relative;
    padding: 10px 0;
}

.menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.menu a:hover::after {
    width: 100%;
}

/* =========================================================
MENU MOBILE
========================================================= */

.mobile-menu-button {
    width: 54px;
    height: 54px;
    border: none;
    background: none;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: 10001;
}

.mobile-menu-button span {
    width: 28px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 90%;
    height: 100vh;
    background: #111;
    z-index: 10000;
    padding: 120px 40px;
    transition: .4s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu-list a {
    color: #fff;
    font-size: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

/* =========================================================
HERO
========================================================= */

.hero,
.hero-slide {
    position: relative;
}

.hero-slide {
    height: 100vh;
}

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

.hero-overlay,
.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
}

.hero-content,
.about-hero-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
}

.hero-content h1 {
    font-size: 88px;
    line-height: .95em;
    letter-spacing: -2px;
    max-width: 820px;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6em;
    max-width: 520px;
}

/* =========================================================
SEÇÕES GERAIS
========================================================= */

.home-categories,
.home-about,
.about-section,
.home-whatsapp-block {
    padding: 120px 0;
}

.home-products,
.home-differentials,
.about-differentials,
.related-products,
.about-cta {
    padding-bottom: 120px;
}

.products-page,
.single-product,
.gallery-page,
.about-page {
    padding: 160px 0 120px;
}

.section-title {
    margin-bottom: 42px;
}

.section-title h2 {
    font-size: 58px;
}

/* =========================================================
GRIDS
========================================================= */

.categories-grid,
.products-grid,
.gallery-grid,
.differentials-home-grid,
.about-differentials,
.differentials-grid {
    display: grid;
    gap: 28px;
}

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

.products-grid,
.gallery-grid,
.about-differentials,
.differentials-grid,
.differentials-home-grid {
    grid-template-columns: repeat(3, 1fr);
}

.home-about-grid,
.about-grid,
.whatsapp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* =========================================================
SINGLE GRID AJUSTADO
========================================================= */

.single-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

/* =========================================================
CARDS
========================================================= */

.category-card,
.product-image,
.gallery-card,
.home-differential-item,
.about-differential-item,
.differential-card,
.about-image,
.home-about-image,
.whatsapp-image,
.rf-main-image {
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-card,
.home-differential-item,
.about-differential-item,
.differential-card {
    background: #F7F7F5;
}

.gallery-card {
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .04);
    transition: .4s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, .08);
}



/* =========================================================
   CATEGORY PREMIUM
========================================================= */

.category-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 32px;
}

.category-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: 1s ease;
}

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .75),
            rgba(0, 0, 0, .15),
            transparent);
    z-index: 1;
}

.category-content {
    position: absolute;
    left: 34px;
    bottom: 34px;
    z-index: 2;
}

.category-content h3 {
    color: #fff;
    font-size: 42px;
    line-height: .95em;
    letter-spacing: -1px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}




.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    cursor: pointer;
}

.category-card img {
    transition: 1s ease;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .72),
            rgba(0, 0, 0, .15),
            rgba(0, 0, 0, .05));
    z-index: 1;
    transition: .5s ease;
}

.category-content {
    position: absolute;
    left: 34px;
    bottom: 34px;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 18px;
}

.category-card h3 {
    color: #fff;
    font-size: 44px;
    line-height: .95em;
    letter-spacing: -1px;
    transform: translateY(14px);
    opacity: .9;
    transition: .5s ease;
}

.category-button {
    width: fit-content;
    height: 46px;
    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);

    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;

    transform: translateY(16px);
    opacity: 0;

    transition: .5s ease;
}

/* HOVER */

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

.category-card:hover .category-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, .82),
            rgba(0, 0, 0, .25),
            rgba(0, 0, 0, .08));
}

.category-card:hover h3 {
    transform: translateY(0);
    opacity: 1;
}

.category-card:hover .category-button {
    transform: translateY(0);
    opacity: 1;
}

/* =========================================================
IMAGENS
========================================================= */

.category-card img,
.product-image img,
.gallery-image img,
.whatsapp-image img,
.about-image img,
.home-about-image img {
    width: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.category-card img,
.product-image img,
.gallery-image img {
    height: 420px;
}

.about-image img,
.home-about-image img {
    height: 700px;
}

.whatsapp-image img {
    height: 620px;
}

.category-card:hover img,
.product-card:hover img,
.gallery-card:hover img,
.whatsapp-image:hover img,
.rf-main-image:hover img {
    transform: scale(1.05);
}

/* =========================================================
PRODUTOS
========================================================= */

.productsSwiper {
    width: 100%;
    overflow: hidden;
}

.productsSwiper .swiper-wrapper {
    display: flex;
}

.productsSwiper .swiper-slide {
    height: auto;
}

.product-info {
    padding-top: 18px;
}

.product-info h2,
.product-info h3 {
    font-size: 30px;
    margin-top: 8px;
}

.products-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 60px;
}

.products-top h1 {
    font-size: 72px;
    line-height: 1em;
    margin-top: 14px;
}

.products-top p {
    max-width: 420px;
    color: var(--text);
    line-height: 1.8em;
}

.products-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 60px;
}

.products-filters a {
    height: 48px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #F5F5F5;
    transition: var(--transition);
    font-size: 14px;
}

.products-filters a:hover {
    background: var(--gold);
    color: #111;
}

/* =========================================================
SINGLE PRODUTO
========================================================= */












/* =========================================================
IMPORTAÇÃO DE FONTES
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Inter:wght@300;400;500;600&display=swap');

/* =========================================================
VARIÁVEIS GLOBAIS
========================================================= */

:root {
    --black: #0F0F0F;
    --gold: #C7A16B;
    --gold-hover: #B48D57;
    --white: #FFFFFF;
    --text: #5E5E5E;
    --border: #EAEAEA;
    --bg: #F7F7F5;
    --radius: 24px;
    --transition: .3s ease;
}

/* =========================================================
RESET GLOBAL
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    background: #fff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================================
TIPOGRAFIA GLOBAL
========================================================= */

.section-title h2,
.hero-content h1,
.page-header h1,
.single-info h1,
.gallery-top h1,
.products-top h1,
.about-content h2,
.about-hero h1,
.about-cta h2,
.whatsapp-content h2,
.footer-logo,
.product-info h2,
.product-info h3,
.gallery-info h2,
.home-differential-item h3,
.about-differential-item h3,
.differential-card h3,
.category-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.mini-title,
.hero-mini-title,
.products-mini-title,
.single-category,
.gallery-top span,
.page-header span,
.product-category,
.gallery-info span,
.about-hero-content span,
.about-cta-box span {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* =========================================================
HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 26px 0;
    transition: var(--transition);

    background: rgba(15, 15, 15, 0.1);
    backdrop-filter: blur(2px);
}

.site-header.scrolled {
    background: rgba(15, 15, 15, 0.88);
    backdrop-filter: blur(10px);
    padding: 16px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 30px;
    letter-spacing: 2px;
    font-family: 'Cormorant Garamond', serif;
}

/* =========================================================
SINGLE PRODUTO PREMIUM
========================================================= */

.single-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 70px;
    align-items: start;
}

/* GALERIA */

.rf-gallery {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 18px;

    position: sticky;
    top: 120px;
}

/* THUMBS */

.rf-thumbs {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rf-thumb {
    width: 100%;
    aspect-ratio: 1/1;

    object-fit: cover;

    border-radius: 18px;

    cursor: pointer;

    opacity: .45;

    transition: .35s ease;

    border: 2px solid transparent;

    background: #f3f3f3;
}

.rf-thumb:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.rf-thumb.active {
    opacity: 1;
    border-color: var(--gold);
}

/* IMAGEM PRINCIPAL */

.rf-main-image {
    position: relative;

    overflow: hidden;

    border-radius: 32px;

    background: #f3f3f3;

    aspect-ratio: 1/1;
}

.rf-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 1.2s ease;
}

.rf-main-image:hover img {
    transform: scale(1.04);
}

/* INFORMAÇÕES */

.single-info {
    position: sticky;
    top: 120px;
}

.single-category {
    display: inline-block;
    margin-bottom: 18px;
}

.single-info h1 {
    font-size: 72px;
    line-height: .95em;

    letter-spacing: -2px;

    margin: 18px 0 30px;
}

.single-description {
    color: var(--text);

    font-size: 18px;
    line-height: 1.9em;
}

.single-specs {
    margin-top: 42px;

    display: flex;
    flex-direction: column;
    gap: 24px;
}

.spec-item {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.spec-item strong {
    display: block;

    margin-bottom: 10px;

    font-size: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.spec-item span {
    color: var(--text);
}

/* BOTÃO */

.single-specs .whatsapp-button {
    margin-top: 12px;
    width: fit-content;
}

/* RESPONSIVO */

@media(max-width:1024px) {

    .single-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .rf-gallery,
    .single-info {
        position: relative;
        top: auto;
    }

}

@media(max-width:767px) {

    .rf-gallery {
        grid-template-columns: 1fr;
    }

    .rf-thumbs {
        flex-direction: row;
        overflow: auto;
        padding-bottom: 6px;
    }

    .rf-thumb {
        min-width: 78px;
        width: 78px;
        border-radius: 14px;
    }

    .single-info h1 {
        font-size: 48px;
    }

    .single-description {
        font-size: 16px;
    }

}








/* =========================================================
GALERIA PREMIUM
========================================================= */

.gallery-page {
    padding: 160px 0 120px;
    background: #F7F7F5;
}


/* =========================================================
TOPO
========================================================= */

.gallery-top {
    margin-bottom: 60px;
}

.gallery-top span {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.gallery-top h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    line-height: 1em;
    font-weight: 500;
    margin-top: 14px;
}


/* =========================================================
LAYOUT
========================================================= */

.gallery-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 34px;
    align-items: start;
}


/* =========================================================
SIDEBAR
========================================================= */

.gallery-sidebar {
    position: sticky;
    top: 120px;

    background: #111;
    border-radius: 28px;

    padding: 30px;

    overflow: hidden;
}


/* =========================================================
FILTROS
========================================================= */

.sidebar-filter h4 {
    color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.sidebar-filter ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-filter li {
    margin: 0;
}

.sidebar-filter a {
    min-height: 54px;

    display: flex;
    align-items: center;

    padding: 0 18px;

    background: rgba(255, 255, 255, .05);

    border-radius: 14px;

    color: #fff;

    transition: .3s ease;
}

.sidebar-filter a:hover {
    background: var(--gold);
    color: #111;

    transform: translateX(4px);
}


/* =========================================================
BOTÃO LIMPAR
========================================================= */

.clear-filters {
    width: 100%;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 28px;

    border-radius: 16px;

    background: var(--gold);

    color: #111;

    font-weight: 600;

    transition: .3s ease;
}

.clear-filters:hover {
    background: var(--gold-hover);
}


/* =========================================================
CONTEÚDO
========================================================= */

.gallery-content {
    min-width: 0;
}


/* =========================================================
GRID
========================================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}


/* =========================================================
CARD
========================================================= */

.gallery-card {
    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    transition: .4s ease;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .04);
}

.gallery-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}


/* =========================================================
IMAGEM
========================================================= */

.gallery-image {
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 420px;

    object-fit: cover;

    transition: .6s ease;
}

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


/* =========================================================
INFO
========================================================= */

.gallery-info {
    padding: 24px;
}

.gallery-info span {
    color: var(--gold);

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.gallery-info h2 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 34px;
    line-height: 1em;

    font-weight: 500;

    margin: 14px 0 18px;
}

.gallery-info strong {
    font-size: 13px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
RESPONSIVO
========================================================= */

@media(max-width:1100px) {

    .gallery-layout {
        grid-template-columns: 1fr;
    }

    .gallery-sidebar {
        position: relative;
        top: auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media(max-width:767px) {

    .gallery-page {
        padding: 130px 0 80px;
    }

    .gallery-top h1 {
        font-size: 48px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-image img {
        height: 340px;
    }

}

/* =========================================================
WHATSAPP
========================================================= */

.whatsapp-content {
    max-width: 560px;
}

.whatsapp-content h2,
.about-content h2,
.home-about-content h2 {
    font-size: 64px;
    line-height: 1em;
    margin-bottom: 28px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    padding: 0 34px;
    background: var(--gold);
    color: #111;
    border-radius: 14px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--transition);
}

/* =========================================================
QUEM SOMOS
========================================================= */

.about-hero {
    max-width: 900px;
    margin: 0 auto 100px;
    text-align: center;
}

.about-hero h1 {
    font-size: 82px;
    line-height: 1em;
    margin: 24px 0;
}

.about-differential-item,
.home-differential-item,
.differential-card {
    padding: 40px;
}

.about-differential-item h3,
.home-differential-item h3,
.differential-card h3 {
    font-size: 34px;
    margin-bottom: 18px;
}

.about-differential-item p,
.home-differential-item p,
.differential-card p {
    color: var(--text);
    line-height: 1.8em;
}

.about-cta {
    background: #0F0F0F;
    border-radius: 30px;
    padding: 90px 60px;
    text-align: center;
    color: #fff;
}

.about-cta h2 {
    font-size: 64px;
    line-height: 1em;
    max-width: 800px;
    margin: 24px auto;
}

.about-cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, .75);
}

/* =========================================================
FOOTER
========================================================= */

.site-footer,
footer {
    background: var(--black);
    color: #fff;
}

.site-footer {
    padding: 100px 0 40px;
    margin-top: 120px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-logo {
    font-size: 48px;
    letter-spacing: 2px;
}

.footer-description {
    margin-top: 24px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.9em;
    max-width: 420px;
}

.footer-column h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--gold);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-column a {
    color: rgba(255, 255, 255, .72);
    transition: var(--transition);
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 30px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, .45);
    font-size: 14px;
}

/* =========================================================
RESPONSIVO
========================================================= */

@media(max-width:1200px) {

    .gallery-layout {
        flex-direction: column;
    }

    .gallery-sidebar {
        width: 100%;
        min-width: 100%;
        position: relative;
        top: auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:1024px) {

    .categories-grid,
    .products-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-about-grid,
    .about-grid,
    .whatsapp-grid,
    .single-grid,
    .products-top,
    .footer-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .differentials-home-grid,
    .about-differentials,
    .differentials-grid {
        grid-template-columns: 1fr;
    }

    .products-top {
        align-items: flex-start;
    }

    .hero-content h1 {
        font-size: 68px;
    }

    .whatsapp-content h2,
    .about-content h2,
    .home-about-content h2 {
        font-size: 52px;
    }

}

@media(max-width:767px) {

    .menu,
    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .hero-slide {
        height: 80vh;
    }

    .hero-content h1,
    .about-hero h1,
    .about-hero-content h1,
    .page-header h1,
    .products-top h1,
    .single-info h1,
    .gallery-top h1 {
        font-size: 48px;
    }

    .section-title h2,
    .whatsapp-content h2,
    .about-content h2,
    .home-about-content h2,
    .about-cta h2 {
        font-size: 42px;
    }

    .categories-grid,
    .products-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-image img,
    .home-about-image img,
    .whatsapp-image img {
        height: 420px;
    }

    .home-categories,
    .home-about,
    .home-whatsapp-block,
    .about-section {
        padding: 80px 0;
    }

    .about-page {
        padding: 130px 0 80px;
    }

    .about-cta {
        padding: 60px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-logo {
        font-size: 40px;
    }

}





/* SECTION */

.video-banner {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;

    display: flex;
    align-items: center;
}

/* VÍDEO */

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: translate(-50%, -50%);

    z-index: 1;
}

/* OVERLAY */

.video-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    z-index: 2;
}

/* CONTEÚDO */

.video-content {
    position: relative;
    z-index: 3;

    color: #fff;
}

.video-content h2 {
    font-size: 52px;
    margin-bottom: 20px;
}

.video-content p {
    font-size: 18px;
    max-width: 600px;
    line-height: 1.6;


}


/* =========================================================
CONTATO
========================================================= */

.contact-page {
    padding: 160px 0 120px;
    background: #F7F7F5;
}

.contact-top {
    max-width: 760px;
    margin-bottom: 70px;
}

.contact-top span {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-top h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    line-height: 1em;
    font-weight: 500;
    margin: 18px 0 24px;
}

.contact-top p {
    color: var(--text);
    font-size: 18px;
    line-height: 1.8em;
    max-width: 620px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr .7fr;
    gap: 40px;
    align-items: start;
}

.contact-form-box {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.contact-form-box p {
    margin-bottom: 20px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    border: none;
    background: #F5F5F5;
    border-radius: 16px;
    padding: 18px 20px;
    font-size: 15px;
    outline: none;
}

.contact-form-box textarea {
    height: 180px;
    resize: none;
}

.contact-form-box input[type="submit"] {
    background: var(--gold);
    color: #111;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: .3s ease;
}

.contact-form-box input[type="submit"]:hover {
    background: var(--gold-hover);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: #111;
    border-radius: 24px;
    padding: 34px;
}

.contact-card strong {
    display: block;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-card a {
    color: #fff;
    font-size: 22px;
    line-height: 1.5em;
    font-family: 'Cormorant Garamond', serif;
}

@media(max-width:1024px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:767px) {

    .contact-page {
        padding: 130px 0 80px;
    }

    .contact-top h1 {
        font-size: 48px;
    }

    .contact-form-box {
        padding: 28px;
    }

}

/* =========================================================
   RELATED PRODUCTS SWIPER FIX
========================================================= */

.related-products {
    overflow: hidden;
}

.relatedProductsSwiper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 10px;
}

.relatedProductsSwiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.relatedProductsSwiper .swiper-slide {
    height: auto;
    flex-shrink: 0;
}

.relatedProductsSwiper .product-card {
    display: block;
    height: 100%;
}

.relatedProductsSwiper .product-image {
    border-radius: 24px;
    overflow: hidden;
}

.relatedProductsSwiper .product-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: .5s ease;
}

.relatedProductsSwiper .product-card:hover img {
    transform: scale(1.04);
}

.relatedProductsSwiper .product-info {
    padding-top: 18px;
}

.relatedProductsSwiper .product-info h3 {
    font-size: 30px;
    margin-top: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

/* BOTÕES */

.relatedProductsSwiper .swiper-button-next,
.relatedProductsSwiper .swiper-button-prev {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(15, 15, 15, .85);
    backdrop-filter: blur(10px);
    color: #fff;
    transition: .3s ease;
}

.relatedProductsSwiper .swiper-button-next:hover,
.relatedProductsSwiper .swiper-button-prev:hover {
    background: var(--gold);
    color: #111;
}

.relatedProductsSwiper .swiper-button-next::after,
.relatedProductsSwiper .swiper-button-prev::after {
    font-size: 14px;
    font-weight: bold;
}

/* PAGINAÇÃO */

.relatedProductsSwiper .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.relatedProductsSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.relatedProductsSwiper .swiper-pagination-bullet-active {
    background: var(--gold);
}

/* RESPONSIVO */

@media (max-width: 767px) {

    .relatedProductsSwiper .product-image img {
        height: 320px;
    }

    .relatedProductsSwiper .product-info h3 {
        font-size: 24px;
    }

    .relatedProductsSwiper .swiper-button-next,
    .relatedProductsSwiper .swiper-button-prev {
        display: none;
    }
}