:root {
    /* Cores extraídas da imagem original e do mockup mobile */
    --dark-bg: #0b0c10;
    --light-bg: #c1b3e6;
    --app-bg: #eaddf8;
    /* Cor de fundo do mockup mobile */
    --text-light: #ffffff;
    --text-muted: #9ba0b4;
    --btn-lilac: #d1c4f7;
    --btn-dark: #1d1e26;
    --grid-color: rgba(255, 255, 255, 0.04);
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-color: var(--white-bg);
}

/* Layout Principal */
.split-layout {
    display: flex;
    min-height: 100vh;
    flex-wrap: wrap;
    position: relative;
}

.left-side {
    background-color: var(--dark-bg);
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px),
        radial-gradient(circle at 15% 30%, rgba(193, 179, 230, 0.12) 0%, transparent 65%);
    background-size: 150px 150px, 150px 150px, 100% 100%;
    background-position: center center;
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 6rem;
    position: relative;
}

.right-side {
    background-color: var(--light-bg);
    flex: 1 1 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

/* Navbar Absoluta */
.custom-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.brand-logo {
    width: 33%;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 4rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    position: absolute;
    /* filter: brightness(0) contrast(100%); */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    width: 100%;
    justify-content: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-action {
    width: 33%;
    display: flex;
    justify-content: flex-end;
}

/* Tipografia Hero */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&display=swap');

/* Container Principal Mobile */
.mobile-explore-section {
    padding: 0.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.mobile-explore-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.mobile-explore-text {
    font-size: 1rem;
    line-height: 1.4;
    color: #333;
    margin-bottom: 2rem;
    max-width: 95%;
}

/* Alinhamento dos Botões e do Badge na mesma linha */
.mobile-layout-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-btns-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Estilo dos Botões */
.btn-mobile-v2 {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-mobile-v2.solid {
    background-color: #b3a2e2;
    color: #1a1a1a;
}

.btn-mobile-v2.light {
    background-color: #cdc1f0;
    /* Tom mais suave para o segundo botão */
    color: #1a1a1a;
}

.btn-mobile-v2 .icon-dot {
    background: #1a1a1a;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

/* Badge Circular Compacto */
.mobile-mini-badge {
    position: relative;
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    border-radius: 50%;
    flex-shrink: 0;
    /* Impede o badge de esmagar */
}

.rotate-anim {
    width: 100%;
    height: 100%;
    animation: rotationLoop 12s linear infinite;
}

@keyframes rotationLoop {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.badge-text-style {
    fill: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.badge-center-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #b3a2e2;
    color: #1a1a1a;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    font-weight: 700;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 3rem;
}

/* Botões */
.btn-pill {
    border-radius: 50px;
    padding: 0.6rem 0.6rem 0.6rem 1.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.btn-pill:hover {
    transform: scale(1.02);
}

.btn-shop {
    background-color: var(--btn-lilac);
    color: var(--btn-dark);
}

.btn-shop .icon-circle {
    background-color: var(--btn-dark);
    color: var(--text-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.btn-get-started {
    background-color: var(--btn-dark);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-get-started .icon-circle {
    background-color: var(--text-light);
    color: var(--btn-dark);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.btn-demo {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-demo .play-circle {
    background-color: var(--text-light);
    color: var(--dark-bg);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    padding-left: 3px;
}

.actions-wrapper {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Imagem do Produto */
.product-image {
    width: 100%;
    object-fit: contain;
}

/* Selo Circular (Explore Now) */
.explore-badge {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background-color: var(--dark-bg);
    border-radius: 50%;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.rotating-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 12s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.explore-badge .arrow-down {
    background-color: var(--btn-lilac);
    color: var(--dark-bg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
}

/* Configurações de Tipografia e Layout (Slider) */
.featured-collection {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.featured-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 2.5rem;
    letter-spacing: 6px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

/* Container do Slider com Perspectiva */
.featured-slider-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 40px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.featured-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
    transition: all 0.4s ease-in-out;
    border: 4px solid #f5f5f5;
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Estilo dos Cards Laterais */
.side-card-left-0,
.side-card-right-0 {
    width: 200px;
    height: 450px;
    z-index: 3;
    margin: 0 -20px;
}

.side-card-left-1,
.side-card-right-1 {
    width: 160px;
    height: 385px;
    z-index: 2;
    margin: 0 -30px;
}

.side-card-left-2,
.side-card-right-2 {
    width: 155px;
    height: 330px;
    z-index: 1;
    margin: 0 -40px;
}

/* Card Principal */
.active-card {
    width: 320px;
    height: 520px;
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

/* Badge NEW */
.badge-new {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #fff;
    padding: 5px 15px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Estilos principais do botão (fundo lilás e formato pílula) */
.btn-shop {
    background-color: #d8cefe;
    /* Cor lilás baseada na imagem */
    color: #181824;
    /* Cor do texto escuro */
    border-radius: 50px;
    /* Deixa as bordas redondas tipo pílula */

    /* Padding: topo/baixo (8px), direita (8px), esquerda (24px) */
    /* A direita tem menos padding para o círculo escuro encaixar bem perto da borda */
    padding: 8px 8px 8px 24px;

    font-weight: 600;
    /* Texto mais gordinho (semi-bold) */
    font-size: 16px;
    gap: 16px;
    /* Espaço entre o texto e o círculo escuro */
    transition: background-color 0.2s ease;
}

/* Efeito ao passar o mouse (opcional, mas recomendado) */
.btn-shop:hover {
    background-color: #c4b8fa;
    /* Escurece o lilás levemente */
    color: #181824;
}

/* Estilos do círculo escuro com a setinha */
.icon-circle {
    background-color: #1c1c24;
    /* Fundo do círculo quase preto */
    color: #ffffff;
    /* Cor da seta branca */
    width: 36px;
    /* Largura do círculo */
    height: 36px;
    /* Altura do círculo */
    border-radius: 50%;
    /* Faz o elemento ficar um círculo perfeito */
    font-size: 14px;
    /* Tamanho do ícone da seta */
}

/* Botão de Cadeado Centralizado */
.btn-action-lock {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 55px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* =========================================
   Seção de Produtos (Grid)
   ========================================= */
.product-section {
    background-color: var(--white-bg);
    padding: 60px 0;
}

.product-card {
    background-color: #f0f1f3;
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    background-color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.star-icon {
    font-size: 1.2rem;
    color: #1d1e26;
    cursor: pointer;
    margin-bottom: 15px;
}

.product-img-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 20px 0; */
}

.product-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    margin-top: 20px;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    color: #1d1e26;
    margin-bottom: 30px;
}

.product-code {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-weight: 700;
    font-size: 12px;
    color: #1d1e26;
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #1d1e26;
}

.stock-dot {
    width: 12px;
    height: 12px;
    background-color: var(--btn-lilac);
    border-radius: 50%;
}

/* Instagram Section */
.instagram-section {
    background-color: #ffffff;
    overflow: hidden;
    padding-bottom: 100px !important;
}

.feed-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
}

.instagram-wrapper {
    padding-top: 40px;
    perspective: 1000px;
}

.insta-card {
    width: 345px;
    height: 528px;
    background-color: #eee;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, z-index 0s;
    margin: 0 -30px;
    position: relative;
}

.insta-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-card:hover {
    transform: rotate(0deg) scale(1.1) !important;
    z-index: 10;
}

.card-1 {
    transform: rotate(-15deg);
    z-index: 1;
}

.card-2 {
    transform: rotate(-5deg) translateY(-10px);
    z-index: 2;
}

.card-3 {
    transform: rotate(8deg) translateY(-30px);
    z-index: 3;
}

.card-4 {
    transform: rotate(-8deg) translateY(10px);
    z-index: 2;
}

.card-5 {
    transform: rotate(12deg);
    z-index: 1;
}

/* Custom Footer */
.custom-footer-container {
    background-color: var(--dark-bg);
    padding: 60px 0;
    font-family: 'Inter', sans-serif;
}

.footer-floating-card {
    background-color: #ffffff;
    border-radius: 50px;
    padding: 60px 80px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.footer-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #000000;
    margin-bottom: 25px;
}

.footer-inline-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-inline-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-inline-links a:hover {
    color: var(--btn-lilac);
}

.footer-card-logo {
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 60px;
    filter: brightness(0);
}

.footer-social-circles {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social-circles a {
    width: 38px;
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-social-circles a:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.footer-copyright-alt,
.footer-privacy-alt a {
    font-size: 0.85rem;
    color: #aaa;
    text-decoration: none;
}

/* Designer Section */
.designer-section {
    position: relative;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
}

.section-title {
    font-size: 3.2rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.text-lavender {
    color: var(--btn-lilac);
    font-family: 'Playfair Display', serif;
}

.section-description {
    font-size: 1rem;
    max-width: 400px;
    margin-left: auto;
}

.video-content {
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    height: 550px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 5;
}

.logo-circle {
    width: 24px;
    height: 24px;
    background: rgb(0, 0, 0);
    border-radius: 50%;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

.explore-badge-dark {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.badge-text {
    font-size: 10px;
    font-weight: bold;
    fill: #ffffff;
    letter-spacing: 1px;
}

.badge-arrow {
    position: absolute;
    font-size: 1.5rem;
    color: #ffffff;
}

.explore-badge-dark svg {
    animation: rotateText 15s linear infinite;
}

.profile {
    background: #f0f1f3;
    border-radius: 50px;
}

.titulo {
    padding: 40px 0 20px;
}

.titulo h5 {
    color: #666;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
}

/* ========================================================================= */
/* RESPONSIVIDADE TABLET                                                     */
/* ========================================================================= */

@media (max-width: 991px) and (min-width: 769px) {
    .split-layout {
        flex-direction: column;
    }

    .left-side,
    .right-side {
        flex: none;
        width: 100%;
        padding: 4rem 3rem;
    }

    .product-section .container-fluid {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

/* ========================================================================= */
/* MOBILE (<= 768px) — Recriação fiel ao mockup do app Luxuosa              */
/* ========================================================================= */
@media (max-width: 768px) {

    /* ---------- NAVBAR estilo aplicativo ---------- */
    .custom-navbar {
        position: relative;
        padding: 1rem 1.25rem 0.75rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
    }

    /* Botão "voltar" via pseudo no navbar */
    .custom-navbar::before {
        content: "\2190";
        /* ← */
        order: 1;
        font-size: 1.5rem;
        color: var(--btn-dark);
        font-weight: 600;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex: none;
    }

    .brand-logo {
        width: auto;
        order: 2;
        flex: 1;
        justify-content: center;
        position: relative;
    }

    .logo-img {
        position: relative;
        height: 1.9rem;
    }

    .nav-links {
        display: none !important;
    }

    .nav-action {
        width: auto;
        order: 3;
        flex: none;
    }

    .logo-img {
        filter: brightness(0) contrast(100%);
    }

    /* Botão "menu" circular no canto direito */
    .btn-get-started {
        order: 3;
        background-color: transparent !important;
        border: 1.5px solid var(--btn-dark) !important;
        color: var(--btn-dark) !important;
        width: 40px;
        height: 40px;
        padding: 0 !important;
        border-radius: 50%;
        font-size: 0;
        position: relative;
        flex: none;
        gap: 0;
    }

    .btn-get-started::before {
        content: "\22EF";
        /* ⋯ */
        font-size: 1.4rem;
        color: var(--btn-dark);
        line-height: 1;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -55%);
        font-weight: 700;
    }

    .btn-get-started>*,
    .btn-get-started .icon-circle {
        display: none !important;
    }

    /* ---------- HERO: Card escuro arredondado ---------- */
    .split-layout {
        padding: 0 1rem;
        display: block;
        min-height: auto;
        flex-wrap: nowrap;
    }

    .left-side {
        background: linear-gradient(to right,
                #0a0a0a 0%,
                /* Quase preto na extremidade esquerda */
                #1a1428 20%,
                /* Roxo muito escuro profundo */
                #4b3b6b 60%,
                /* Roxo intermediário */
                #8e7fb8 100%
                /* Lilás claro/médio na extremidade direita */
            );
        border-radius: 26px;
        padding: 0;
        margin: 0 0 1.25rem 0;
        text-align: left;
        box-shadow: 0 18px 40px rgba(20, 10, 40, 0.18);
        overflow: hidden;
        position: relative;
        min-height: 210px;
        width: 100%;
        flex: none;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /* Tag superior "Herança e Identidade" */
    .hero-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem !important;
        line-height: 1.19;
        margin: 0;
        padding: 1.5rem 1.5rem 0;
        color: var(--text-light);
        max-width: 70%;
        text-transform: uppercase;
        font-weight: 700;
        position: relative;
        z-index: 3;

    }

    .hero-title::before {
        content: "Herança e Identidade";
        display: block;
        font-family: 'Inter', sans-serif;
        font-size: 0.90rem;
        font-weight: 500;
        text-transform: none;
        color: rgba(255, 255, 255, 0.75);
        margin-bottom: 1rem;
        letter-spacing: 0.3px;
    }

    /* Subtítulo escondido dentro do card (vai para baixo via .titulo) */
    .hero-subtitle {
        display: none;
    }

    /* Lado direito: imagem luxc.png ocupando metade direita do card */
    .right-side {
        background: transparent;
        padding: 0;
        position: absolute;
        top: 0;
        right: 16px;
        bottom: 0;
        width: 74%;
        height: 100%;
        display: block;
        flex: none;
        z-index: 2;
        pointer-events: none;
    }

    .product-image {
        content: url('luxc.png');
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
        object-position: bottom right;
    }

    /* Botões circulares (coroa + sacola) na base do card, à esquerda */
    .actions-wrapper {
        position: relative;
        z-index: 4;
        flex-direction: row;
        gap: 0.6rem;
        align-items: center;
        padding: 0 1.5rem 1.5rem;
        margin: auto 0 0 0;
    }

    .actions-wrapper .btn-pill,
    .actions-wrapper .btn-demo {
        width: 40px;
        height: 40px;
        padding: 0 !important;
        border-radius: 50%;
        background-color: var(--btn-lilac) !important;
        color: var(--btn-dark) !important;
        justify-content: center;
        align-items: center;
        font-size: 0;
        position: relative;
        overflow: hidden;
        gap: 0;
        border: none !important;
        display: inline-flex;
    }

    .actions-wrapper .btn-pill>*,
    .actions-wrapper .btn-demo>*,
    .actions-wrapper .btn-pill .icon-circle,
    .actions-wrapper .btn-demo .play-circle {
        display: none !important;
    }

    .actions-wrapper .btn-shop::before {
        content: "\f521";
        /* fa-crown */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 1.05rem;
        color: var(--btn-dark);
    }

    .actions-wrapper .btn-demo::before {
        content: "\f290";
        /* fa-bag-shopping */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 1.05rem;
        color: var(--btn-dark);
    }

    /* Esconde o selo rotativo do hero */
    .explore-badge {
        display: none;
    }

    /* --- Estilização da Coleção de Inverno dentro do Media Query --- */

    .featured-collection {
        padding: 0px 0 2px;
        overflow: hidden;
        /* Garante que as fotos laterais não criem scroll horizontal */
        background-color: #fff;
    }

    /* Ajuste dos textos */
    .featured-collection .feed-title {
        font-size: 1.6rem;
        letter-spacing: 3px;
        margin-bottom: 10px;
    }

    .featured-collection .titulo h5 {
        font-size: 0.85rem;
        line-height: 1.4;
        padding: 0 20px;
        color: #666;
    }

    .featured-collection .titulo h5 br {
        display: none;
        /* Remove a quebra de linha forçada no mobile */
    }

    /* Container do Slider */
    .featured-slider-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        height: 400px;
        /* Altura controlada para o mobile */
        perspective: 1000px;
    }

    /* Configuração Geral dos Cards no Mobile */
    .featured-card {
        position: absolute;
        /* Sobrepõe os cards para criar o efeito da imagem */
        transition: all 0.4s ease;
        border-radius: 15px;
        border: 2px solid #f5f5f5;
    }

    /* Card Central (Ativo) */
    .active-card {
        position: relative;
        /* Mantém o espaço central */
        width: 200px !important;
        height: 320px !important;
        z-index: 10;
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    /* Cards Imediatamente ao lado (0) */
    .side-card-left-0 {
        display: block !important;
        width: 160px !important;
        height: 260px !important;
        z-index: 5;
        transform: translateX(-80px) scale(0.9);
        /* Puxa para trás do central */
        opacity: 0.8;
    }

    .side-card-right-0 {
        display: block !important;
        width: 160px !important;
        height: 260px !important;
        z-index: 5;
        transform: translateX(80px) scale(0.9);
        /* Puxa para trás do central */
        opacity: 0.8;
    }

    /* Cards das extremidades (1) - Diminuídos para caber na tela */
    .side-card-left-1 {
        display: block !important;
        width: 130px !important;
        height: 220px !important;
        z-index: 2;
        transform: translateX(-140px) scale(0.8);
        opacity: 0.5;
    }

    .side-card-right-1 {
        display: block !important;
        width: 130px !important;
        height: 220px !important;
        z-index: 2;
        transform: translateX(140px) scale(0.8);
        opacity: 0.5;
    }

    /* Esconder os cards (2) no mobile para não poluir visualmente */
    .side-card-left-2,
    .side-card-right-2 {
        display: none !important;
    }

    /* Badge "Novo" */
    .badge-new {
        top: 15px;
        left: 15px;
        padding: 3px 10px;
        font-size: 9px;
    }

    /* Botão de Cadeado */
    .btn-action-lock {
        width: 44px;
        height: 44px;
        bottom: -22px;
        /* Metade para fora do card */
        font-size: 1rem;
        z-index: 20;
        top: 21rem;
    }

    .mobile-hiden {
        display: none;
    }

    .titulo {
        padding: 0px 20px 20px;
    }

    /* 1. Remove o esmagamento lateral do container no mobile */
    .product-section .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }

    /* Ajuste dos títulos da secção */
    .product-section .titulo h5 {
        font-size: 0.95rem;
        padding: 0 15px;
        line-height: 1.4;
    }

    .product-section .titulo h5 br {
        display: none;
        /* Remove quebras de linha longas no telemóvel */
    }

    /* 2. Força a exibição perfeita em 2 colunas (Grelha 2x2) */
    .product-section .row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        /* Espaçamento elegante entre os cards */
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Reseta as margens padrões das colunas do Bootstrap */
    .product-section .col {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    /* 3. Estilização Estética e Premium dos Cards de Produto */
    .product-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 10px;
        box-shadow: 0 4px 16px rgba(26, 20, 40, 0.06);
        /* Sombra suave roxa/escura */
        border: 1px solid rgba(26, 20, 40, 0.04);
        display: flex;
        flex-direction: column;
        height: 100%;
        /* Garante que todos os cards tenham a mesma altura */
        position: relative;
        transition: transform 0.2s ease;
    }

    /* Contentor da Imagem Quadrado Perfeito */
    .product-img-wrapper {
        background-color: #f8f7fa;
        /* Fundo neutro suave atrás da peça */
        border-radius: 12px;
        overflow: hidden;
        aspect-ratio: 1 / 1;
        /* Mantém a imagem sempre quadrada estilo e-commerce moderno */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
    }

    .product-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Faz a foto preencher o quadrado sem distorcer */
    }

    /* Posicionamento do Ícone de Estrela */
    .product-card .star-icon {
        position: absolute;
        top: 18px;
        right: 18px;
        z-index: 5;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(4px);
        padding: 6px;
        border-radius: 50%;
        font-size: 0.8rem;
        color: #1a1428;
    }

    /* Informações do Produto */
    .product-info {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        padding: 0 4px;
    }

    .product-name {
        font-size: 0.9rem;
        font-weight: 700;
        color: #1a1428;
        margin-bottom: 2px;
        line-height: 1.2;
    }

    .product-code {
        font-size: 10px;
        color: #8e8a99;
        margin-bottom: 10px;
    }

    /* Rodapé do Card (Preço e Stock) */
    .product-footer {
        display: flex;
        align-items: center;
        gap: 2px;
        margin-top: auto;
        /* Empurra os valores sempre para o fundo do card */
    }

    .product-price {
        font-size: 12px;
        font-weight: 800;
        color: #1a1428;
    }

    .product-stock {
        font-size: 8px;
        color: #5c5866;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    .stock-dot {
        width: 6px;
        height: 6px;
        background-color: #2ec4b6;
        /* Ponto verde/turquesa vibrante para disponível */
        border-radius: 50%;
        display: inline-block;
    }

    /* Ajuste do botão inferior "Explorar mais Chapéus" */
    .product-section .actions-wrapper {
        margin-top: 10px;
        margin-bottom: 20px;
        width: 100%;
    }

    .product-img-wrapper {
        padding: 0px 0;
    }

    /* ========================================================================= */
    /* SEÇÃO: COLEÇÃO DE INVERNO (INSTAGRAM SECTION)                             */
    /* ========================================================================= */
    .instagram-section {
        padding: 40px 0 !important;
        background-color: #ffffff;
    }

    .instagram-section .feed-title {
        font-size: 1.6rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .instagram-section .titulo h5 {
        font-size: 0.85rem;
        line-height: 1.4;
        padding: 0 20px;
        color: #666;
    }

    .instagram-section .titulo h5 br {
        display: none;
        /* Remove a quebra de linha forçada no mobile */
    }

    /* Container das Cartas */
    .instagram-wrapper {
        margin-top: 2rem !important;
        padding-top: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        overflow: visible;
        /* Garante que a rotação das pontas não seja cortada */
    }

    /* Redimensionamento proporcional das cartas para caber na tela mobile */
    .instagram-section .insta-card {
        width: 85px;
        /* Proporcional para telas de até 360px-410px */
        height: 130px;
        /* Mantém a proporção idêntica ao desktop */
        margin: 0 -12px;
        /* Ajuste de sobreposição para o novo tamanho */
        border-radius: 8px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    }

    /* Suavização das translações verticais para a escala mobile */
    .instagram-section .card-1 {
        transform: rotate(-15deg);
    }

    .instagram-section .card-2 {
        transform: rotate(-5deg) translateY(-4px);
    }

    .instagram-section .card-3 {
        transform: rotate(8deg) translateY(-12px);
    }

    .instagram-section .card-4 {
        transform: rotate(-8deg) translateY(4px);
    }

    .instagram-section .card-5 {
        transform: rotate(12deg);
    }

    /* Reset e Ajuste do Botão (Evita que vire o círculo compacto do Hero) */
    .instagram-section .actions-wrapper {
        margin-top: 2.5rem !important;
        padding: 0 !important;
        display: flex !important;
        justify-content: center !important;
        width: 100%;
    }

    .instagram-section .actions-wrapper .btn-pill {
        width: auto !important;
        height: auto !important;
        font-size: 0.85rem !important;
        font-family: 'Inter', sans-serif;
        padding: 0.5rem 0.5rem 0.5rem 1.5rem !important;
        border-radius: 50px !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 1rem !important;
        background-color: var(--btn-lilac) !important;
        color: var(--btn-dark) !important;
    }

    /* Remove o ícone de coroa/sacola injetado pelas regras gerais do mobile */
    .instagram-section .actions-wrapper .btn-pill::before {
        display: none !important;
    }

    /* Força a exibição correta do círculo da seta */
    .instagram-section .actions-wrapper .btn-shop .icon-circle {
        display: flex !important;
        background-color: var(--btn-dark) !important;
        color: var(--text-light) !important;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
    }

    .instagram-section {
        display: none;
    }

    .explore-badge-dark {
        top: 76%;
        right: 5%;
    }


}

/* ---------- Telas muito pequenas ---------- */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.45rem;
        max-width: 60%;
    }

    .left-side {
        min-height: 380px;
    }

    .product-img-wrapper img {
        max-height: 95px;
    }

    .product-name {
        font-size: 0.85rem;
    }

    .featured-title {
        font-size: 1.35rem;
    }
}

/* ---------- Telas muito pequenas ---------- */
@media (max-width: 1280px) {
    .hero-title {
        font-size: 3.5rem;
    }
}