@import url('<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Text:ital@0;1&display=swap" rel="stylesheet">');

/* --- DESIGN SYSTEM TOKENS --- */
:root {
    --bg-dark: #0B0B0C;
    --bg-light: #F4F4F6;
    --card-bg: #FFFFFF;
    --text-light: #F7F7F5;
    --text-dark: #2A2A2A;
    --text-muted: #66666A;
    --gold: #C9A45C;
    --gold-dark: #A6803C;
    --gold-light: #E0C184;
    --whatsapp: #25D366;
    --whatsapp-dark: #1EBE57;
    --border-color: #E2E2E6;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-luxury: 'DM Serif Text', serif;
    --font-clean: 'DM Sans', sans-serif;
    --container-width: 1280px;
    --header-height: 95px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-clean);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

ul,
ol {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* --- UTILITIES & LAYOUT --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.text-gold {
    color: var(--gold);
}

.text-center {
    text-align: center;
}

.font-luxury {
    font-family: var(--font-luxury);
}

/* --- TITLES & HEADINGS --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-luxury);
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    color: var(--text-dark);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 12px auto 0 auto;
}

.section-subtitle {
    font-family: var(--font-clean);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-clean);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--bg-dark);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold-dark);
    box-shadow: 0 0 15px rgba(201, 164, 92, 0.3);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--gold-dark);
    border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: #FFF;
    border: 1px solid var(--whatsapp);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-dark);
    border-color: var(--whatsapp-dark);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* --- HEADER (DARK BY DEFAULT) --- */
header.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(11, 11, 12, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #222225;
    z-index: 1000;
    transition: var(--transition-smooth);
    color: var(--text-light);
}

header.main-header .header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header.main-header .logo-wrapper img {
    height: 60px;
    width: auto;
}

/* Navigation Menu */
nav.nav-menu ul {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav.nav-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    opacity: 0.8;
}

nav.nav-menu a:hover,
nav.nav-menu li.active a {
    opacity: 1;
    color: var(--gold);
}

/* Mobile Menu Hamburger Button */
.btn-mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1100;
}

.btn-mobile-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}

/* Hamburger active transformation */
.btn-mobile-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

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

/* --- HERO SLIDER --- */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: var(--header-height);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
}

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

.hero-slide .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.hero-slide.active .slide-bg {
    transform: scale(1);
}

.hero-slide .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 11, 12, 0.95) 20%, rgba(11, 11, 12, 0.4) 60%, rgba(11, 11, 12, 0.9) 100%);
    z-index: 1;
}

.hero-slide .slide-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    padding: 0 24px;
    color: var(--text-light);
}

.hero-slide .slide-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide .slide-title {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0;
    color: var(--text-light);
    transform: translateY(30px);
}

.hero-slide .slide-desc {
    font-size: 1.1rem;
    opacity: 0;
    color: rgba(247, 247, 245, 0.8);
    margin-bottom: 32px;
    font-weight: 300;
    transform: translateY(40px);
}

.hero-slide .slide-btn {
    opacity: 0;
    transform: translateY(50px);
}

/* Slide content animation on active class */
.hero-slide.active .slide-tag {
    animation: slideUpFade 0.6s forwards 0.2s;
}

.hero-slide.active .slide-title {
    animation: slideUpFade 0.7s forwards 0.4s;
}

.hero-slide.active .slide-desc {
    animation: slideUpFade 0.8s forwards 0.6s;
}

.hero-slide.active .slide-btn {
    animation: slideUpFade 0.9s forwards 0.8s;
}

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

/* Slider Controls */
.slider-bullets {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background-color: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-bullet.active {
    background-color: var(--gold);
    width: 28px;
    border-radius: 6px;
}

/* --- CATEGORIES SECTION --- */
.category-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.category-card {
    position: relative;
    height: 380px;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.category-card .card-bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.category-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 11, 12, 0.9) 15%, rgba(11, 11, 12, 0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: var(--transition-smooth);
    color: var(--text-light);
}

.category-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(11, 11, 12, 0.95) 25%, rgba(11, 11, 12, 0.4) 60%, rgba(11, 11, 12, 0.1) 100%);
}

.category-card h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.category-card p {
    font-size: 0.85rem;
    color: rgba(247, 247, 245, 0.8);
    margin-bottom: 16px;
}

.category-card .card-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.category-card .card-link::after {
    content: '→';
    transition: var(--transition-smooth);
}

.category-card:hover .card-link::after {
    transform: translateX(5px);
}

/* --- TABS & CAROUSEL DE DESTAQUES (HOME) --- */
.highlights-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--border-color);
    background-color: var(--card-bg);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-dark);
}

.tab-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.tab-btn.active {
    background-color: var(--gold-dark);
    color: var(--text-light);
    border-color: var(--gold-dark);
    box-shadow: 0 4px 12px rgba(166, 128, 60, 0.2);
}

.carousel-wrapper {
    display: none;
}

.carousel-wrapper.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.carousel-container {
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    padding: 10px 0;
    width: 100%;
}

.carousel-track::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.carousel-item {
    flex: 0 0 calc(25% - 18px);
    min-width: 260px;
}

/* Carrossel navigation arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    color: var(--gold);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.carousel-arrow:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.carousel-arrow-left {
    left: -24px;
}

.carousel-arrow-right {
    right: -24px;
}

/* --- SUPER FILTROS --- */
.filters-wrapper {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 6px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

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

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
    font-weight: 600;
}

.filter-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-control {
    width: 100%;
    height: 48px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 0 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.filter-control:focus {
    border-color: var(--gold);
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(201, 164, 92, 0.1);
}

select.filter-control {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23A6803C' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
}

.search-input {
    padding-right: 40px;
}

.search-icon {
    position: absolute;
    right: 14px;
    color: var(--gold-dark);
    pointer-events: none;
}

.filter-results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.filter-active-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    background-color: var(--border-color);
    color: var(--text-dark);
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 20px;
    gap: 8px;
}

.filter-tag-close {
    cursor: pointer;
    font-weight: 800;
    color: var(--gold-dark);
}

.btn-reset-filters {
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-reset-filters:hover {
    color: var(--gold);
}

/* --- PRODUCT GRID --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Product Card */
.product-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 164, 92, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    background-color: #FFFFFF;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}

.product-image-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

/* Badge tags (Legibilidade Reforçada) */
.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.badge-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.badge-gender-masculino {
    background-color: #0f2e5c;
    color: #fff;
}

.badge-gender-feminino {
    background-color: #610d32;
    color: #fff;
}

.badge-gender-unissex {
    background-color: #401061;
    color: #fff;
}

/* Classificação de Cor para Catálogos (B2B Legibilidade) */
.badge-catalog {
    font-weight: 800;
    border-radius: 4px;
    font-size: 0.7rem;
    letter-spacing: 1.2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 5px 12px;
}

.badge-catalog-importado {
    background-color: #0F3C7A !important;
    color: #FFFFFF !important;
}

.badge-catalog-arabe {
    background-color: #B58A30 !important;
    color: #FFFFFF !important;
}

.badge-catalog-inspiracao {
    background-color: #3E4044 !important;
    color: #FFFFFF !important;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-brand {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-dark);
    margin-bottom: 6px;
    font-weight: 600;
}

.product-title {
    font-family: var(--font-clean);
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.4rem;
}

.product-olfactory {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    flex-grow: 1;
}

.product-olfactory strong {
    color: var(--text-dark);
    font-weight: 600;
}

.product-footer {
    padding: 0 20px 20px 20px;
    margin-top: auto;
}

.btn-card-action {
    width: 100%;
    padding: 12px;
    font-size: 0.75rem;
}

/* Zero results block */
.no-results {
    grid-column: 1 / -1;
    padding: 80px 24px;
    border-radius: 6px;
    background-color: var(--card-bg);
    border: 1px dashed var(--border-color);
    color: var(--text-dark);
}

.no-results h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.no-results p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* --- B2B EXCLUSIVE SECTION (DARK BACKGROUND) --- */
.b2b-exclusive-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-top: 1px solid #222225;
    border-bottom: 1px solid #222225;
}

.b2b-exclusive-section .section-title {
    color: var(--text-light);
}

.b2b-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.b2b-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.b2b-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 600;
}

.b2b-title {
    font-size: 2.8rem;
    color: var(--text-light);
}

.b2b-desc {
    color: rgba(247, 247, 245, 0.8);
    font-size: 1.05rem;
}

.b2b-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.b2b-bullet-item {
    display: flex;
    gap: 16px;
}

.b2b-bullet-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(201, 164, 92, 0.2);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.b2b-bullet-text h4 {
    font-family: var(--font-clean);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-light);
}

.b2b-bullet-text p {
    color: rgba(247, 247, 245, 0.7);
    font-size: 0.85rem;
}

/* Right side Image layout */
.b2b-images-wrapper {
    position: relative;
    height: 480px;
}

.b2b-img-1 {
    width: 80%;
    height: 85%;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #222225;
}

.b2b-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 60%;
    object-fit: cover;
    border-radius: 6px;
    border: 4px solid var(--bg-dark);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* --- BRANDS SECTION (SEPHORA STYLE LOGOS) --- */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.brand-text-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 20px;
    text-align: center;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.brand-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.brand-card-logo {
    max-height: 72px;
    /* Reduzido para proporção menor */
    max-width: 100px;
    width: auto;
    object-fit: contain;
    /*filter: brightness(0) opacity(0.55);*/
    /* Grayscale flat by default */
    transition: var(--transition-smooth);
    margin-bottom: 4px;
}

.brand-text-card span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.brand-text-card:hover {
    border-color: var(--gold);
    background-color: rgba(201, 164, 92, 0.04);
}

.brand-text-card:hover .brand-card-logo {
    filter: none;
    /* Reveal original colors/flat brand coloring */
    transform: scale(1.04);
}

.brand-text-card:hover span {
    color: var(--gold-dark);
}

/* --- DIFFERENTIALS SECTION --- */
.diffs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.diff-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.diff-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.diff-icon {
    font-size: 2rem;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.diff-card h3 {
    font-family: var(--font-clean);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.diff-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- CALL TO ACTION FINAL (DARK BACKGROUND) --- */
.cta-final-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--bg-dark);
    border-top: 1px solid #222225;
    overflow: hidden;
    color: var(--text-light);
}

.cta-final-section .section-title {
    color: var(--text-light);
}

.cta-final-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/conversation-about-fragrances.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.2rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(247, 247, 245, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

/* --- HERO TEXT CONTRAST FIXED (SOBRE / CONTATO) --- */
.about-hero,
.contact-hero {
    background-color: var(--bg-dark);
    color: var(--text-light) !important;
}

.about-hero::before,
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 11, 12, 0.85) 0%, rgba(11, 11, 12, 0.55) 100%);
    z-index: 2;
    pointer-events: none;
}

.about-hero h1,
.about-hero p,
.about-hero span,
.contact-hero h1,
.contact-hero p,
.contact-hero span {
    color: var(--text-light) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    /* design-system readability improvement */
}

/* --- FOOTER (DARK) --- */
footer.main-footer {
    background-color: var(--bg-dark);
    border-top: 1px solid #222225;
    padding: 80px 0 32px 0;
    color: var(--text-light);
}

footer.main-footer a,
footer.main-footer p,
footer.main-footer h4,
footer.main-footer li,
footer.main-footer div,
footer.main-footer strong {
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-text {
    font-size: 0.9rem;
    color: rgba(247, 247, 245, 0.7) !important;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: var(--font-clean);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold) !important;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--gold) !important;
    opacity: 1;
    padding-left: 4px;
}

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

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-contact-item strong {
    color: var(--text-light);
    font-weight: 500;
}

.footer-bottom-container {
    border-top: 1px solid #222225;
    padding-top: 32px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(247, 247, 245, 0.6) !important;
}

/* --- PRODUCT DETAIL PAGE (produto.php) --- */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    margin-top: calc(var(--header-height) + 40px);
    align-items: start;
    padding: 0 16px;
    /* Adicionando o espaçamento interno lateral para não grudar na tela */
}

/* Left Column - REDUCED IMAGE SIZE & CENTERED */
.product-detail-media {
    position: relative;
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    max-width: 440px;
    /* Reduzida para 440px para melhor visualização */
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    margin: 0 auto;
    /* Centered */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.product-detail-media img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-detail-brand-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(201, 164, 92, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 3px;
    z-index: 2;
}

/* Right Column (sequência exata) */
.product-detail-info {
    display: flex;
    flex-direction: column;
}

/* 1. MARCA */
.product-info-brand {
    color: var(--gold-dark);
    font-family: var(--font-clean);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

/* 2. NOME DO PERFUME */
.product-info-name {
    font-family: var(--font-luxury);
    font-size: 2.5rem;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 16px;
}

/* 3. TIPO E INSPIRAÇÃO */
.product-info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.tag-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: #EBEBEF;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
}

.tag-badge.tag-prive {
    background-color: rgba(201, 164, 92, 0.12);
    color: var(--gold-dark);
    border: 1px solid rgba(201, 164, 92, 0.2);
}

/* 4. METADADOS TÉCNICOS */
.product-technical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 32px;
}

.tech-item {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tech-item strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* 5. SELETOR INTELIGENTE DE VOLUMETRIA */
.product-volume-selector {
    margin-bottom: 32px;
}

.volume-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.volume-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.volume-btn {
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    background-color: #FFFFFF;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-dark);
}

.volume-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.volume-btn.active {
    background-color: var(--gold-dark);
    color: var(--text-light);
    border-color: var(--gold-dark);
}

/* 6, 7, 8. NOTAS OLFATIVAS */
.olfactory-notes-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.note-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.note-row-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
    font-weight: 600;
}

.note-row-content {
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* 9. DESCRIÇÃO LONGA */
.product-long-description {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 40px;
    margin-top: 40px;

}

.product-long-description p {
    margin-bottom: 16px;
}

/* 10. BOTÃO WHATSAPP */
.product-action-wrapper {
    margin-bottom: 40px;
}

.btn-product-quote {
    width: 100%;
    padding: 18px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.quote-notice {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
}

/* Recommended Section - CLEAR SEPARATION TO FIX COVERING/OVERLAP */
.recommended-section {
    margin-top: 80px;
    border-top: 1px solid var(--border-color);
    padding-top: 60px;
    clear: both;
    /* Prevents floated overlap */
    width: 100%;
}

.recommended-title {
    font-size: 2.2rem;
    margin-bottom: 32px;
}

/* --- ABOUT PAGE (sobre.php) --- */
.about-hero {
    height: 40vh;
    min-height: 300px;
    margin-top: var(--header-height);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/woman-with-bottle-perfume.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-light);
}

.about-hero-title {
    font-size: 3.5rem;
    color: var(--text-light);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-text {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.about-intro-text p {
    margin-bottom: 24px;
}

.about-intro-media {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Line of time steps */
.timeline-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
    position: relative;
}

.timeline-step-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.timeline-step-number {
    position: absolute;
    top: -24px;
    left: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--gold-dark);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-luxury);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.timeline-step-card h3 {
    font-family: var(--font-clean);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.timeline-step-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- CONTACT PAGE (contato.php) --- */
.contact-hero {
    height: 35vh;
    min-height: 250px;
    margin-top: var(--header-height);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/woman-applying-feminine-eau-de-parfum-her-wrist-closeup.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.25);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    color: var(--text-light);
}

.contact-hero-title {
    font-size: 3.5rem;
    margin-bottom: 16px;
    color: var(--text-light);
}

.contact-hero-cta {
    margin-top: 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

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

.contact-cards-minimal {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card-mini {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.contact-card-icon {
    font-size: 1.8rem;
    color: var(--gold-dark);
}

.contact-card-details h4 {
    font-family: var(--font-clean);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-dark);
    margin-bottom: 4px;
}

.contact-card-details p {
    font-size: 1rem;
    color: var(--text-dark);
}

/* Exclusive B2B notice */
.b2b-notice-box {
    background-color: rgba(201, 164, 92, 0.08);
    border: 1px solid rgba(201, 164, 92, 0.25);
    padding: 24px;
    border-radius: 6px;
    color: var(--text-dark);
}

.b2b-notice-box h3 {
    font-family: var(--font-clean);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.b2b-notice-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ Accordion */
.faq-section {
    margin-top: 40px;
}

.faq-title {
    font-size: 2rem;
    margin-bottom: 24px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Style for HTML5 details and summary */
.faq-accordion details {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
    color: var(--text-dark);
}

.faq-accordion details[open] {
    border-color: var(--gold-dark);
}

.faq-accordion summary {
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

/* Arrow indicator icon */
.faq-accordion summary::after {
    content: '+';
    font-family: var(--font-clean);
    font-size: 1.4rem;
    color: var(--gold-dark);
    transition: transform 0.3s ease;
}

.faq-accordion details[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

/* Hide default Chrome arrow indicator */
.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-accordion-content {
    padding: 0 24px 20px 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid transparent;
}

.faq-accordion details[open] .faq-accordion-content {
    border-top-color: var(--border-color);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    color: var(--text-dark);
}

.contact-form-title {
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.form-group-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-dark);
    font-weight: 600;
}

.form-input {
    width: 100%;
    height: 48px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 0 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--gold);
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(201, 164, 92, 0.1);
}

textarea.form-input {
    height: 120px;
    padding: 16px;
    resize: none;
}

select.form-input {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23A6803C' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.btn-form-submit {
    width: 100%;
    margin-top: 12px;
}

/* --- MOBILE STYLES (RESPONSIVE) --- */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .carousel-item {
        flex: 0 0 calc(33.333% - 16px);
    }

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

    .hero-slide .slide-title {
        font-size: 2.8rem;
    }

    .b2b-grid {
        gap: 40px;
    }

    .product-detail-layout {
        gap: 40px;
    }

    .product-info-name {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    /* Header & Navigation */
    .btn-mobile-menu {
        display: flex;
    }

    nav.nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-dark);
        border-top: 1px solid #222225;
        transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 999;
    }

    nav.nav-menu.active {
        left: 0;
    }

    nav.nav-menu ul {
        flex-direction: column;
        padding: 40px 24px;
        align-items: flex-start;
        gap: 24px;
    }

    nav.nav-menu a {
        font-size: 1.1rem;
    }

    .header-cta-btn {
        display: none;
    }

    /* Hero */
    .hero-slider-wrapper {
        height: 70vh;
    }

    .hero-slide .slide-title {
        font-size: 2.2rem;
    }

    .hero-slide .slide-desc {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    /* Categories & Grids */
    .category-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .category-card {
        height: 250px;
    }

    .filters-wrapper {
        padding: 20px;
    }

    .filters-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .carousel-item {
        flex: 0 0 calc(50% - 12px);
    }

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

    .b2b-images-wrapper {
        height: 350px;
        order: -1;
    }

    .diffs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Product Detail */
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
    }

    .product-detail-media {
        max-width: 100%;
        aspect-ratio: 1.2 / 1;
        padding: 20px;
    }

    .product-info-name {
        font-size: 2.2rem;
    }

    /* About page */
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-intro-media {
        order: -1;
    }

    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Contact page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .carousel-item {
        flex: 0 0 100%;
    }

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

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hero-slide .slide-title {
        font-size: 1.8rem;
    }

    .product-detail-media {
        aspect-ratio: 1 / 1;
    }

    .brand-text-card {
        padding: 16px;
        min-height: 60px;
    }

    .brand-text-card span {
        font-size: 0.8rem;
    }
}

/* --- BREADCRUMBS STYLES (SEO & USABILITY) --- */
.breadcrumb {
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding-left: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--border-color);
    font-size: 0.8rem;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    color: var(--gold-dark);
}

.breadcrumb li.active {
    color: var(--text-dark);
    font-weight: 500;
}

/* --- SCROLL TO TOP BUTTON --- */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    color: var(--gold);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* --- PIRÂMIDE OLFATIVA SEPHORA STYLE --- */
.olfactory-pyramid-container {
    margin-top: 32px;
    margin-bottom: 30px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.pyramid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pyramid-level {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    border-left: 4px solid transparent;
    background-color: rgba(0, 0, 0, 0.01);
}

.pyramid-level:hover {
    background-color: rgba(201, 164, 92, 0.03);
    transform: translateX(4px);
}

.level-icon {
    font-size: 1.8rem;
    line-height: 1;
    min-width: 40px;
    text-align: center;
}

.level-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.level-name {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.level-notes {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

.level-topo {
    border-left-color: #34D399;
    /* Green for Top */
}

.level-coracao {
    border-left-color: #F472B6;
    /* Pink for Heart */
}

.level-base {
    border-left-color: var(--gold);
    /* Gold/Brown for Base */
}