/* ===================================================================================
   PRELOADER 100% CSS (SEM JAVASCRIPT) - TOPO DO ARQUIVO
   =================================================================================== */
#isa-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0b0b0b;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.6s ease;
}

/* Classe disparada pelo JS após carregar tudo */
#isa-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo-container {
    max-width: 150px;
    height: auto;
    animation: pulseLogo 2s infinite ease-in-out;
}

.preloader-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border-top-color: #D4AF37;
    animation: spinLoader 1s linear infinite;
}

@keyframes spinLoader {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(0.96);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

/* ===================================================================================
   AJUSTE DE ANIMAÇÃO DO HERO (SÓ INICIA APÓS CARREGAMENTO)
   =================================================================================== */
/* Garante animação premium SEM deixar o hero invisível por muito tempo.
   Mantemos transição, mas não bloqueamos render (evita FOUC em produção quando load atrasa).
*/
.hero-text-container,
.hero-slide-first {
    opacity: 1;
    /* antes: 0 */
    transform: translateY(0);
    /* antes: 20px */
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Se body.site-carregado existir, reaplica o estado final (sem efeito visual extra) */
body.site-carregado .hero-text-container,
body.site-carregado .hero-slide-first {
    opacity: 1;
    transform: translateY(0);
}






/* ===================================================================================
   01. RESET BÁSICO DE CSS
   =================================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f0f0f0;
    overflow-x: hidden;
    /* Corta transbordamentos laterais em telas pequenas */
}






/* ===================================================================================
   02. CABEÇALHO PRINCIPAL (HEADER DE LUXO)
   =================================================================================== */
.header-isa {
    background-color: #000000;
    color: #ffffff;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* --- Área do Logo --- */
.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-isa {
    height: 80px;
    width: auto;
}

/* --- Menu de Navegação (Desktop) --- */
.nav-isa {
    flex: 1;
    display: flex;
    justify-content: center;
    height: 100%;
}

.menu-isa {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.menu-item-isa {
    text-decoration: none;
    color: #D4AF37;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu-item-isa:hover,
.menu-item-isa.active {
    color: #ffffff;
}

/* --- Bloco de Ações (Direita) --- */
.actions-isa {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Carrinho */
.cart-container {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.cart-icon-isa {
    color: #D4AF37;
    transition: color 0.3s ease;
}

.cart-container:hover .cart-icon-isa {
    color: #ffffff;
}

.cart-badge-isa {
    background-color: #E74C3C;
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -6px;
    right: -8px;
}



/* ===================================================================================
   BARRA DE PESQUISA (RESPONSIVA E CORRIGIDA)
   =================================================================================== */
.search-container-isa {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    /* Adicionado um contorno leve para destacar no fundo */
    border-radius: 25px;
    display: flex;
    align-items: center;
    height: 40px;
    overflow: hidden;
    width: 300px;
    max-width: 100%;
    /* Garante que nunca ultrapassa o ecrã */
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    /* Garante que fica por cima de outros elementos e clicável */
}

/* Foco na barra inteira para uma experiência mais premium */
.search-container-isa:focus-within {
    border-color: #B8860B;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.15);
}

.search-icon-isa {
    color: #888888;
    margin-left: 15px;
    flex-shrink: 0;
    /* CRÍTICO: Impede o ícone de sumir ou ser esmagado em telas menores */
}

.search-input-isa {
    border: none;
    outline: none;
    padding: 0 10px;
    font-size: 13px;
    color: #333333;
    flex: 1;
    min-width: 0;
    /* Permite que o input encolha corretamente sem quebrar o flexbox */
    background: transparent;
}

.search-input-isa::placeholder {
    color: #aaaaaa;
    font-style: italic;
}

.search-button-isa {
    background: linear-gradient(135deg, #CFB53B 0%, #B8860B 100%);
    color: #ffffff;
    border: none;
    height: 100%;
    padding: 0 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
    /* Impede o botão de texto de ser deformado */
}

.search-button-isa:hover {
    opacity: 0.9;
}

/* ===================================================================================
   ADAPTAÇÃO PARA TELAS MENORES (TABLETS E MOBILE)
   =================================================================================== */
@media (max-width: 768px) {
    .search-container-isa {
        width: 100%;
        /* Ocupa o espaço disponível do container pai no mobile */
        max-width: 400px;
        /* Limita um tamanho máximo elegante */
        height: 42px;
        /* Ligeiramente maior no mobile para facilitar o toque com o dedo */
        margin: 10px 0;
        /* Dá espaço respirável nas laterais/vertical */
    }

    .search-button-isa {
        padding: 0 15px;
        /* Reduz ligeiramente o botão para dar mais espaço ao texto digitado */
        font-size: 12px;
    }
}

@media (max-width: 400px) {

    /* Em telemóveis muito pequenos, o botão com texto "Procurar" pode ocupar muito espaço.
       Se quiseres, podemos ocultar o texto e deixar apenas o ícone, ou reduzir o padding */
    .search-button-isa {
        padding: 0 12px;
    }
}





/* --- Gatilho do Menu Hamburguer --- */
.menu-toggle-isa {
    display: none;
    /* Escondido por padrão no desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle-isa span {
    width: 100%;
    height: 2px;
    background-color: #D4AF37;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

/* Animação para transformar o hamburguer num 'X' quando ativo */
.menu-toggle-isa.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ffffff;
}

.menu-toggle-isa.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle-isa.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ffffff;
}





/* ===================================================================================
   03. RESPONSIVIDADE DO MENU & TOP BAR
   =================================================================================== */
@media (max-width: 991px) {
    .header-isa {
        padding: 0 30px;
        height: 85px;
    }

    .logo-isa {
        height: 60px;
    }

    .menu-toggle-isa {
        display: flex;
        /* Surge o botão do menu */
    }

    /* Transformação da barra de navegação em painel lateral deslizante */
    .nav-isa {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: #0b0b0b;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.6);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 120px 40px 40px 40px;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1050;
    }

    .nav-isa.open {
        right: 0;
        /* Desliza para dentro da tela */
    }

    .menu-isa {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        width: 100%;
    }

    .menu-item-isa {
        font-size: 19px;
        width: 100%;
        display: block;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    }
}


/* ===================================search===================================================== */
.search-container-isa {
    width: 220px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    /* Transição suave de expansão */
}

/* Ícone Font Awesome da esquerda no Desktop */
.search-icon-isa {
    color: #888888;
    margin-left: 15px;
    font-size: 14px;
}

/* Garante que o texto do botão pode ser escondido sem quebrar o layout */
.search-button-isa .btn-text-isa {
    display: inline;
}

/* O ícone dentro do botão fica escondido no desktop */
.search-button-isa .fa-magnifying-glass {
    display: none;
}

/* ===================================================================================
   RESPONSIVIDADE E EFEITO EXPANSÍVEL NO MOBILE
   =================================================================================== */
@media (max-width: 650px) {
    .header-isa {
        padding: 0 20px;
    }

    /* Estado Inicial: Botão Compacto e Redondo no Mobile */
    .search-container-isa {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        justify-content: center;
        position: relative;
        border: none;
        background: transparent;
        /* Deixa o fundo invisível para destacar apenas o botão circular */
    }

    /* Oculta o input por padrão com opacidade e pointer-events para não ser clicável enquanto fechado */
    .search-input-isa {
        opacity: 0;
        visibility: hidden;
        width: 0;
        padding: 0;
        transition: all 0.3s ease;
    }

    /* Esconde o ícone fixo da esquerda no mobile */
    .search-icon-isa {
        display: none;
    }

    /* O botão transforma-se no círculo dourado completo */
    .search-button-isa {
        width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 50%;
        position: absolute;
        right: 0;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #CFB53B 0%, #B8860B 100%);
        z-index: 2;
    }

    /* Esconde o texto "Procurar" no mobile */
    .search-button-isa .btn-text-isa {
        display: none;
    }

    /* Mostra o lindo ícone da Font Awesome centralizado no círculo */
    .search-button-isa .fa-magnifying-glass {
        display: block;
        font-size: 15px;
        color: #ffffff;
    }


    /* ==========================================
       ESTADO EXPANDIDO (Ativado via JavaScript)
       ========================================== */
    .search-container-isa.active-search {
        width: 150px;
        /* Largura que ele vai assumir ao abrir no mobile */
        border-radius: 25px;
        background-color: #ffffff;
        border: 1px solid #B8860B;
        padding-left: 15px;
    }

    /* Revela o campo de texto quando o container abrir */
    .search-container-isa.active-search .search-input-isa {
        opacity: 1;
        visibility: visible;
        width: calc(100% - 50px);
        /* Ocupa o espaço restante descontando o botão */
        padding: 0 10px;
    }
}





/* ===================================================================================
   04. SEÇÃO HERO (TOTALMENTE FLUIDA)
   =================================================================================== */
.hero-section {
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
    margin-top: 0;
}

.hero-content {
    max-width: 650px;
    color: #ffffff;
    animation: fadeInUp 1s ease;
}

.colecao-text {
    color: #ac9754;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 10px;
}

.hero-title {
    font-family: serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title span {
    font-family: serif;
    font-weight: 600;
    color: #af9231;
}

.hero-subtitle {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 400;
}

/* --- Grupo de Botões Alinhados --- */
.hero-btn-group {
    display: inline-flex;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 10;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-explorar {
    color: #ffffff;
    background: linear-gradient(135deg, #CFB53B 0%, #B8860B 100%);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
    border-radius: 6px 0 0 6px;
    padding: 0 35px;
    position: relative;
    z-index: 2;
    margin-right: -4px;
}

.btn-explorar:hover {
    transform: translateY(-3px);
    filter: brightness(1.15);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.5);
}

.btn-categoria {
    color: #e0f7fa;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.18) 0%, rgba(0, 119, 182, 0.28) 100%);
    border: 1px solid rgba(0, 180, 216, 0.4);
    border-left: none;
    border-radius: 0 6px 6px 0;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(4px);
}

.btn-categoria span {
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-categoria:hover {
    transform: translateY(-3px);
    color: #ffffff;
    border-color: rgba(0, 204, 255, 0.8);
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.4) 0%, rgba(0, 119, 182, 0.5) 100%);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.3);
}

/* Responsividade do Hero */
@media (max-width: 768px) {
    .hero-section {
        padding: 0 25px;
        text-align: center;
        justify-content: center;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .hero-btn-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-hero {
        width: 100%;
        border-radius: 6px !important;
        margin: 0 !important;
        border-left: 1px solid rgba(0, 180, 216, 0.4) !important;
    }
}






/* ===================================================================================
   05. SEÇÃO EXPLORE CATEGORIAS (ALTA PERFORMANCE E ANTI-LAG)
   =================================================================================== */
.section-explore-categorias {
    padding: 80px 8%;
    background-color: #ffffff;
    text-align: center;
}

.categorias-header {
    margin-bottom: 50px;
}

.subtitulo-explore {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #B8860B;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.titulo-categoria {
    font-size: 42px;
    font-family: 'Playfair Display', 'Inter', serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 2px;
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    width: 100%;
}

.categoria-card {
    position: relative;
    height: 190px;
    border-radius: 9999px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px 25px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);

    /* Prepara os cards ocultos para animação no scroll */
    opacity: 0;
    transform: translateY(30px);
    background-color: #f5f5f5;

    /* Aceleração Nativa por GPU (Evita engasgos de frame) */
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);

    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.4s ease,
        opacity 0.6s ease;
}

/* Quando ganha o foco ativo pelo JS */
.section-explore-categorias.active .categoria-card {
    opacity: 1;
    transform: translateY(0) translateZ(0);
    animation: pulseLoading 1.5s infinite ease-in-out;
}

/* Efeito Cascata Ajustado */
.section-explore-categorias.active .categoria-card:nth-child(1) {
    transition-delay: 0.05s;
}

.section-explore-categorias.active .categoria-card:nth-child(2) {
    transition-delay: 0.15s;
}

.section-explore-categorias.active .categoria-card:nth-child(3) {
    transition-delay: 0.25s;
}

.section-explore-categorias.active .categoria-card:nth-child(4) {
    transition-delay: 0.35s;
}

.card-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    backface-visibility: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease-in;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
    opacity: 0;
    will-change: opacity;
    transition: opacity 0.5s ease;
}

.card-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: color 0.3s ease, transform 0.3s ease, opacity 0.4s ease-in;
}

.section-explore-categorias.active .card-img,
.section-explore-categorias.active .card-title {
    opacity: 1;
}

.section-explore-categorias.active .card-img {
    transition-delay: 0.3s;
}

.section-explore-categorias.active .card-title {
    transition-delay: 0.4s;
}

/* Hover dos Cards (Suave a 60fps) */
.categoria-card:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.categoria-card:hover .card-img {
    transform: scale(1.08) translateZ(0);
}

.categoria-card:hover .card-overlay {
    opacity: 1;
}

.categoria-card:hover .card-title {
    color: #DFC54B;
    transform: translateY(-3px) translateZ(0) !important;
}

/* Responsividade da Grid */
@media (max-width: 1024px) {
    .categorias-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .titulo-categoria {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .categorias-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .categoria-card {
        height: 190px;
    }



    .titulo-categoria {
        font-size: 28px;
    }

    .section-explore-categorias {
        padding: 50px 20px;
    }
}







/* ===================================================================================
   06. KEYFRAMES DE SUPORTE
   =================================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseLoading {
    0% {
        background-color: #f2f2f2;
    }

    50% {
        background-color: #e6e6e6;
    }

    100% {
        background-color: #f2f2f2;
    }
}




/* ===================================================================================
   07. SEÇÃO PRODUTOS EM DESTAQUE (HOVER PREMIUM & SKELETON)
   =================================================================================== */
.section-produtos-destaque {
    padding: 60px 8% 100px 8%;
    background-color: #ffffff;
}

.produtos-header {
    text-align: center;
    margin-bottom: 40px;
}

.titulo-produtos {
    font-size: 38px;
    font-family: 'Playfair Display', 'Inter', serif;
    font-weight: 500;
    color: #111111;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

/* Card do Produto com preparação para o Fade-In */
.produto-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    position: relative;

    /* Configuração para a animação de scroll */
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
    backface-visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        opacity 0.5s ease,
        box-shadow 0.3s ease;
}

/* Disparado via JS quando o usuário rola a tela */
.section-produtos-destaque.active .produto-card {
    opacity: 1;
    transform: translateY(0);
}

/* Efeito Cascata Premium (Aparecem um por um) */
.section-produtos-destaque.active .produto-card:nth-child(1) {
    transition-delay: 0.1s;
}

.section-produtos-destaque.active .produto-card:nth-child(2) {
    transition-delay: 0.2s;
}

.section-produtos-destaque.active .produto-card:nth-child(3) {
    transition-delay: 0.3s;
}

.section-produtos-destaque.active .produto-card:nth-child(4) {
    transition-delay: 0.4s;
}

.produto-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Container da Imagem */
.produto-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

/* --- EFEITO SKELETON LOADING --- */
.skeleton-loading {
    background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 50%, #f2f2f2 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Imagem esconde enquanto carrega, depois surge suave */
.produto-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease;
}

/* Quando a imagem terminar de carregar, o JS adiciona esta classe */
.produto-img.loaded {
    opacity: 1;
}

/* Hover na imagem */
.produto-card:hover .produto-img.loaded {
    transform: scale(1.03);
}

/* Menu de Ações Hover */
.produto-actions-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s ease;
    z-index: 5;
}

.produto-card:hover .produto-actions-hover {
    opacity: 1;
    transform: translateY(0);
}

.btn-action-icon {
    background-color: #B8860B;
    color: #ffffff;
    border: none;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-add-carrinho {
    flex: 1;
    background-color: #B8860B;
    color: #ffffff;
    border: none;
    height: 48px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-action-icon:hover,
.btn-add-carrinho:hover {
    background-color: #966d08;
}

/* Informações do Produto */
.produto-info {
    padding: 20px 15px;
    text-align: left;
    background-color: #ffffff;
    border-top: 1px solid #f5f5f5;
}

.produto-nome {
    font-size: 15px;
    color: #333333;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
    min-height: 42px;
}

.produto-preco {
    font-size: 16px;
    color: #B8860B;
    font-weight: 600;
    display: block;
}

/* Responsividade */
@media (max-width: 1024px) {
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .titulo-produtos {
        font-size: 32px;
    }
}

@media (max-width: 500px) {
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);

    }

    /* .produto-image-wrapper {
        height: 240px;
    
    } */

    @media (max-width: 500px) {
        .produto-image-wrapper {
            height: 180px;
        }
    }

    .section-produtos-destaque {
        padding: 40px 20px 60px 20px;
    }
}




/* ===================================================================================
   08. SEÇÃO AS MELHORES BOLSAS (HOVER PREMIUM & SKELETON DETALHADO)
   =================================================================================== */
.section-bolsas-destaque {
    padding: 60px 8% 100px 8%;
    background-color: #ffffff;
}

.bolsas-header {
    text-align: center;
    margin-bottom: 40px;
}

.titulo-bolsas {
    font-size: 38px;
    font-family: 'Playfair Display', 'Inter', serif;
    font-weight: 500;
    color: #111111;
}

.bolsas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

/* Card da Bolsa com Fade-In */
.bolsa-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    position: relative;

    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
    backface-visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        opacity 0.5s ease,
        box-shadow 0.3s ease;
}

/* Disparado via Scroll */
.section-bolsas-destaque.active .bolsa-card {
    opacity: 1;
    transform: translateY(0);
}

/* Efeito Cascata Ajustado para as Bolsas */
.section-bolsas-destaque.active .bolsa-card:nth-child(1) {
    transition-delay: 0.1s;
}

.section-bolsas-destaque.active .bolsa-card:nth-child(2) {
    transition-delay: 0.2s;
}

.section-bolsas-destaque.active .bolsa-card:nth-child(3) {
    transition-delay: 0.3s;
}

.section-bolsas-destaque.active .bolsa-card:nth-child(4) {
    transition-delay: 0.4s;
}

.bolsa-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Container da Imagem */
.bolsa-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

/* Imagem da Bolsa */
.bolsa-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease;
}

.bolsa-img.loaded {
    opacity: 1;
}

.bolsa-card:hover .bolsa-img.loaded {
    transform: scale(1.03);
}

/* Bloco Hover das Ações */
.bolsa-actions-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s ease;
    z-index: 5;
}

.bolsa-card:hover .bolsa-actions-hover {
    opacity: 1;
    transform: translateY(0);
}

.btn-bolsa-action-icon {
    background-color: #B8860B;
    color: #ffffff;
    border: none;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-bolsa-add-carrinho {
    flex: 1;
    background-color: #B8860B;
    color: #ffffff;
    border: none;
    height: 48px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-bolsa-action-icon:hover,
.btn-bolsa-add-carrinho:hover {
    background-color: #966d08;
}

/* Informações */
.bolsa-info {
    padding: 20px 15px;
    text-align: left;
    background-color: #ffffff;
    border-top: 1px solid #f5f5f5;
}

.bolsa-nome {
    font-size: 15px;
    color: #333333;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
    min-height: 42px;
}

.bolsa-preco {
    font-size: 16px;
    color: #B8860B;
    font-weight: 600;
    display: block;
}

/* Responsividade das Bolsas */
@media (max-width: 1024px) {
    .bolsas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .titulo-bolsas {
        font-size: 32px;
    }
}

@media (max-width: 500px) {
    .bolsas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bolsa-image-wrapper {
        height: 280px;
    }

    .section-bolsas-destaque {
        padding: 40px 20px 60px 20px;
    }
}






/* ===================================================================================
   09. SEÇÃO BANNER PROMOCIONAL DINÂMICO (EDITORIAL)
   =================================================================================== */
.section-promo-editorial {
    padding: 60px 8%;
    background-color: #ffffff;
}

.promo-container {
    display: flex;
    width: 100%;
    min-height: 450px;
    background-color: #917319;
    /* Cor base dourada/ouro da referência */
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

    /* Configuração padrão para animação ao rolar a página */
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.8s ease;
}

/* Ativação por Scroll via JS */
.section-promo-editorial.active .promo-container {
    opacity: 1;
    transform: translateY(0);
}

/* --- COLUNA DA ESQUERDA (IMAGENS) --- */
.promo-image-side {
    position: relative;
    width: 35%;
    /* Proporção ideal baseada na imagem de referência */
    min-width: 320px;
    height: 450px;
    background-color: #eaeaea;
    overflow: hidden;
}

.promo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    filter: blur(5px);
    transition: opacity 0.8s ease-in-out, filter 0.8s ease-in-out;
    z-index: 1;
}

.promo-slide.active {
    opacity: 1;
    filter: blur(0);
    z-index: 2;
}

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

/* --- COLUNA DA DIREITA (CONTEÚDO TEXTUAL) --- */
.promo-content-side {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px;
    color: #ffffff;
}

.promo-text-wrapper {
    position: absolute;
    left: 60px;
    right: 60px;
    opacity: 0;
    transform: translateX(15px);
    transition: opacity 0.6s ease-in-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    /* Evita cliques em botões invisíveis */
}

.promo-text-wrapper.active {
    position: relative;
    left: 0;
    right: 0;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.promo-brand-tag {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.75);
    display: block;
    margin-bottom: 15px;
}

.promo-title {
    font-size: 64px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.promo-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 550px;
}

/* Botão de Ação Dinâmico */
.btn-promo-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #D4AF37;
    /* Dourado contrastante */
    color: #000000;
    text-decoration: none;
    padding: 0 35px;
    height: 50px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-promo-action:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* --- RESPONSIVIDADE DO BANNER --- */
@media (max-width: 991px) {
    .promo-container {
        flex-direction: column;
        /* Empilha no tablet/mobile */
        min-height: auto;
    }

    .promo-image-side {
        width: 100%;
        height: 350px;
    }

    .promo-content-side {
        padding: 40px;
    }

    .promo-title {
        font-size: 44px;
    }
}

@media (max-width: 600px) {
    .section-promo-editorial {
        padding: 40px 20px;
    }

    .promo-content-side {
        padding: 30px 20px;
    }

    .promo-title {
        font-size: 36px;
    }

    .promo-description {
        font-size: 15px;
    }
}






/* ===================================================================================
   10. SEÇÃO BIJUTERIAS & ACESSÓRIOS (HOVER PREMIUM & SKELETON)
   =================================================================================== */
.section-bijuterias-destaque {
    padding: 60px 8% 100px 8%;
    background-color: #ffffff;
}

.bijuterias-header {
    text-align: center;
    margin-bottom: 40px;
}

.titulo-bijuterias {
    font-size: 38px;
    font-family: 'Playfair Display', 'Inter', serif;
    font-weight: 500;
    color: #111111;
}

.bijuterias-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

/* Card da Bijuteria com Fade-In */
.bijuteria-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    position: relative;

    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
    backface-visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        opacity 0.5s ease,
        box-shadow 0.3s ease;
}

/* Disparado via Scroll */
.section-bijuterias-destaque.active .bijuteria-card {
    opacity: 1;
    transform: translateY(0);
}

/* Efeito Cascata em Scroll */
.section-bijuterias-destaque.active .bijuteria-card:nth-child(1) {
    transition-delay: 0.1s;
}

.section-bijuterias-destaque.active .bijuteria-card:nth-child(2) {
    transition-delay: 0.2s;
}

.section-bijuterias-destaque.active .bijuteria-card:nth-child(3) {
    transition-delay: 0.3s;
}

.section-bijuterias-destaque.active .bijuteria-card:nth-child(4) {
    transition-delay: 0.4s;
}

.bijuteria-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Container da Imagem */
.bijuteria-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

/* Imagem do Produto */
.bijuteria-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease;
}

.bijuteria-img.loaded {
    opacity: 1;
}

.bijuteria-card:hover .bijuteria-img.loaded {
    transform: scale(1.03);
}

/* Menu de Ações Hover que surge de baixo */
.bijuteria-actions-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s ease;
    z-index: 5;
}

.bijuteria-card:hover .bijuteria-actions-hover {
    opacity: 1;
    transform: translateY(0);
}

.btn-bijuteria-action-icon {
    background-color: #B8860B;
    color: #ffffff;
    border: none;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-bijuteria-add-carrinho {
    flex: 1;
    background-color: #B8860B;
    color: #ffffff;
    border: none;
    height: 48px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-bijuteria-action-icon:hover,
.btn-bijuteria-add-carrinho:hover {
    background-color: #966d08;
}

/* Informações */
.bijuteria-info {
    padding: 20px 15px;
    text-align: left;
    background-color: #ffffff;
    border-top: 1px solid #f5f5f5;
}

.bijuteria-nome {
    font-size: 15px;
    color: #333333;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
    min-height: 42px;
}

.bijuteria-preco {
    font-size: 16px;
    color: #B8860B;
    font-weight: 600;
    display: block;
}

/* Responsividade */
@media (max-width: 1024px) {
    .bijuterias-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .titulo-bijuterias {
        font-size: 32px;
    }
}

@media (max-width: 500px) {
    .bijuterias-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bijuteria-image-wrapper {
        height: 280px;
    }

    .section-bijuterias-destaque {
        padding: 40px 20px 60px 20px;
    }
}





/* ===================================================================================
   11. SEÇÃO BANNER MARCAS INTERNACIONAIS (EDITORIAL BANNER)
   =================================================================================== */
.section-marcas-promo {
    padding: 60px 8%;
    background-color: #ffffff;
}

.marcas-container {
    display: flex;
    width: 100%;
    min-height: 450px;
    background-color: #8C6A0D;
    /* Tom ouro escuro exato da tua imagem */
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

    /* Configuração para surgimento suave com scroll */
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.8s ease;
}

/* Ativado via IntersectionObserver no JS */
.section-marcas-promo.active .marcas-container {
    opacity: 1;
    transform: translateY(0);
}

/* --- COLUNA ESQUERDA (IMAGENS) --- */
.marcas-image-side {
    position: relative;
    width: 35%;
    min-width: 320px;
    height: 450px;
    background-color: #eaeaea;
    overflow: hidden;
}

.marcas-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    filter: blur(4px);
    transition: opacity 0.8s ease-in-out, filter 0.8s ease-in-out;
    z-index: 1;
}

.marcas-slide.active {
    opacity: 1;
    filter: blur(0);
    z-index: 2;
}

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

/* --- COLUNA DIREITA (TEXTOS) --- */
.marcas-content-side {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px;
    color: #ffffff;
}

.marcas-text-wrapper {
    position: absolute;
    left: 60px;
    right: 60px;
    opacity: 0;
    transform: translateX(15px);
    transition: opacity 0.6s ease-in-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.marcas-text-wrapper.active {
    position: relative;
    left: 0;
    right: 0;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.marcas-brand-tag {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 15px;
}

.marcas-title {
    font-size: 56px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.marcas-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    max-width: 550px;
}

/* Botão Amarelo/Dourado Premium */
.btn-marcas-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #D6A111;
    /* Cor do botão da imagem */
    color: #000000;
    text-decoration: none;
    padding: 0 40px;
    height: 52px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-marcas-action:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 991px) {
    .marcas-container {
        flex-direction: column;
        min-height: auto;
    }

    .marcas-image-side {
        width: 100%;
        height: 350px;
    }

    .marcas-content-side {
        padding: 40px;
    }

    .marcas-title {
        font-size: 40px;
    }
}

@media (max-width: 600px) {
    .section-marcas-promo {
        padding: 40px 20px;
    }

    .marcas-content-side {
        padding: 30px 20px;
    }

    .marcas-title {
        font-size: 32px;
    }

    .marcas-description {
        font-size: 15px;
    }
}




/* ===================================================================================
   12. SEÇÃO PRODUTOS VARIADOS (HOVER PREMIUM & SKELETON)
   =================================================================================== */
.section-variados-destaque {
    padding: 60px 8% 100px 8%;
    background-color: #ffffff;
}

.variados-header {
    text-align: center;
    margin-bottom: 40px;
}

.titulo-variados {
    font-size: 38px;
    font-family: 'Playfair Display', 'Inter', serif;
    font-weight: 500;
    color: #111111;
}

.variados-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

/* Card Variado com Animação de Scroll */
.variado-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    position: relative;

    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
    backface-visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        opacity 0.5s ease,
        box-shadow 0.3s ease;
}

/* Ativação via scroll */
.section-variados-destaque.active .variado-card {
    opacity: 1;
    transform: translateY(0);
}

/* Efeito Cascata Ajustado para Produtos Variados */
.section-variados-destaque.active .variado-card:nth-child(1) {
    transition-delay: 0.1s;
}

.section-variados-destaque.active .variado-card:nth-child(2) {
    transition-delay: 0.2s;
}

.section-variados-destaque.active .variado-card:nth-child(3) {
    transition-delay: 0.3s;
}

.section-variados-destaque.active .variado-card:nth-child(4) {
    transition-delay: 0.4s;
}

.variado-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Container de Imagem */
.variado-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

/* Imagem do Produto */
.variado-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease;
}

.variado-img.loaded {
    opacity: 1;
}

.variado-card:hover .variado-img.loaded {
    transform: scale(1.03);
}

/* Slider de Ações que sobe do fundo */
.variado-actions-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s ease;
    z-index: 5;
}

.variado-card:hover .variado-actions-hover {
    opacity: 1;
    transform: translateY(0);
}

.btn-variado-action-icon {
    background-color: #B8860B;
    color: #ffffff;
    border: none;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-variado-add-carrinho {
    flex: 1;
    background-color: #B8860B;
    color: #ffffff;
    border: none;
    height: 48px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-variado-action-icon:hover,
.btn-variado-add-carrinho:hover {
    background-color: #966d08;
}

/* Detalhes de Texto */
.variado-info {
    padding: 20px 15px;
    text-align: left;
    background-color: #ffffff;
    border-top: 1px solid #f5f5f5;
}

.variado-nome {
    font-size: 15px;
    color: #333333;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
    min-height: 42px;
    /* Garante alinhamento mesmo com títulos longos (como o do Batom) */
}

.variado-preco {
    font-size: 16px;
    color: #B8860B;
    font-weight: 600;
    display: block;
}

/* Responsividade */
@media (max-width: 1024px) {
    .variados-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .titulo-variados {
        font-size: 32px;
    }
}

@media (max-width: 500px) {
    .variados-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .variado-image-wrapper {
        height: 280px;
    }

    .section-variados-destaque {
        padding: 40px 20px 60px 20px;
    }
}






/* ===================================================================================
   13. SEÇÃO GALERIA ISA (LOOKBOOK MULTIMÉDIA)
   =================================================================================== */
.section-galeria-isa {
    padding: 60px 8% 100px 8%;
    background-color: #ffffff;
}

.galeria-header {
    text-align: center;
    margin-bottom: 50px;
}

.titulo-galeria {
    font-size: 38px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
}

.subtitulo-galeria {
    font-size: 16px;
    color: #666666;
    font-weight: 400;
}

/* Grid da Galeria */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
}

/* Contentor de cada imagem com efeito Fade-In por Scroll */
.galeria-item {
    position: relative;
    height: 480px;
    /* Altura ideal proporcional ao formato vertical */
    border-radius: 24px;
    /* Bordas arredondadas bem acentuadas como na imagem */
    overflow: hidden;
    background-color: #f5f5f5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);

    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
        opacity 0.6s ease;
}

/* Gatilho de Ativação do Scroll */
.section-galeria-isa.active .galeria-item {
    opacity: 1;
    transform: translateY(0);
}

/* Efeito Cascata Suave */
.section-galeria-isa.active .galeria-item:nth-child(1) {
    transition-delay: 0.1s;
}

.section-galeria-isa.active .galeria-item:nth-child(2) {
    transition-delay: 0.2s;
}

.section-galeria-isa.active .galeria-item:nth-child(3) {
    transition-delay: 0.3s;
}

.section-galeria-isa.active .galeria-item:nth-child(4) {
    transition-delay: 0.4s;
}

/* Imagem Interna com Efeito Premium de Zoom */
.galeria-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.0);
    transition: opacity 0.5s ease-in-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.galeria-img.loaded {
    opacity: 1;
}

/* Efeito de aproximação ao passar o rato (sem quebrar a borda redonda) */
.galeria-item:hover .galeria-img.loaded {
    transform: scale(1.06);
}

/* --- RESPONSIVIDADE DA GALERIA --- */
@media (max-width: 1024px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .galeria-item {
        height: 400px;
        border-radius: 18px;
    }

    .titulo-galeria {
        font-size: 32px;
    }
}

@media (max-width: 550px) {
    .galeria-grid {
        grid-template-columns: 1fr;
        /* Uma única coluna no telemóvel */
        gap: 15px;
    }

    .galeria-item {
        height: 350px;
        border-radius: 16px;
    }

    .section-galeria-isa {
        padding: 40px 20px 60px 20px;
    }

    .subtitulo-galeria {
        font-size: 14px;
        padding: 0 10px;
    }
}










/* ===================================================================================
   14. FOOTER LUXURY (RODAPÉ)
   =================================================================================== */
.footer-isa {

    width: 100%;
    /* Gradiente linear metálico espelhado fiel à imagem de referência */
    background: linear-gradient(to right, #ebd490 0%, #a38132 30%, #543f0e 50%, #a38132 70%, #ebd490 100%);
    position: relative;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 8% 50px 8%;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Bloco do Logo e Agrupamento */
.footer-brand-block {
    gap: 25px;
}

.footer-logo-wrapper {
    max-width: 180px;
    background-color: #000000;
    padding: 12px 20px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Títulos das Colunas (Tom Amarelo/Dourado Vibrante) */
.footer-title {
    color: #E2C034;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

/* Textos Gerais */
.footer-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 8px;
}

.font-whatsapp {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Lista de Links Rápidos */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

/* Efeito Hover Premium nos links do rodapé */
.footer-links-list a:hover {
    color: #E2C034;
    transform: translateX(4px);
}

.footer-admin-link {
    opacity: 0.28;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-admin-link a {
    color: #ffffff;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-admin-link:hover {
    opacity: 1;
    transform: translateX(4px);
}

/* Barra de Direitos Autorais Negra */
.footer-bottom-bar {
    background-color: #000000;
    width: 100%;
    padding: 18px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-bar p {
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
}

/* --- RESPONSIVIDADE DO FOOTER --- */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 colunas em tablets */
        gap: 35px;
        padding: 50px 5%;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        /* 1 única coluna empilhada no telemóvel */
        gap: 30px;
        padding: 40px 25px;
        text-align: left;
    }

    .footer-logo-wrapper {
        align-self: flex-start;
    }

    .footer-links-list a:hover {
        transform: translateX(0);
        /* Desativa deslocamento lateral no toque mobile */
    }
}