/* ============================================
   DECORAÇO — Design System & Global Styles
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
    /* Brand Palette */
    --color-night:        #0B0B0B;
    --color-jet:          #333533;
    --color-eggshell:     #F2ECDD;
    --color-saffron:      #F5CB5C;
    --color-gold-dark:    #CD9C20;
    --color-gold:         #A07F3A;
    --color-wheat:        #C8AA6F;
    --color-charcoal:     #2F2F2F;
    --color-teal:         #3ED5BB;
    --color-black:        #000000;
    --color-soft-sand:    #E3D5BB;

    /* Semantic Aliases */
    --bg-primary:         var(--color-night);
    --bg-secondary:       var(--color-charcoal);
    --bg-light:           var(--color-eggshell);
    --text-primary:       var(--color-eggshell);
    --text-secondary:     var(--color-wheat);
    --text-dark:          var(--color-night);
    --accent-primary:     var(--color-saffron);
    --accent-secondary:   var(--color-gold);
    --accent-teal:        var(--color-teal);

    /* Typography */
    --font-display:       'Cormorant Garamond', Georgia, serif;
    --font-body:          'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing Scale */
    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  1.5rem;
    --space-lg:  2.5rem;
    --space-xl:  4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Transitions */
    --transition-fast:    0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-base:    0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow:    0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Layout */
    --container-max:      1440px;
    --container-padding:  clamp(1.5rem, 4vw, 4rem);
    --header-height:      80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    zoom: 0.8;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

/* --- Typography --- */
.display-xl {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.display-lg {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.display-md {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
}

.heading-sm {
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.body-text {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    font-weight: 300;
    line-height: 1.8;
}

/* --- Layout Utilities --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.section {
    padding: var(--space-3xl) 0;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
    background-color: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(200, 170, 111, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 72px;
    width: auto;
    transition: opacity var(--transition-fast);
}

.header-logo img:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-primary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-primary);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: min(100vh, 912px);
    min-height: 500px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    min-width: 100%;
    min-height: 100%;
    transform: scale(1);
    transition: transform 8s ease-out;
    image-rendering: auto;
}

.hero-slide.active img {
    transform: scale(1);
    transition: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: var(--space-lg);
    padding-bottom: var(--space-3xl);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-tag-line {
    width: 32px;
    height: 1px;
    background: var(--accent-primary);
}

.hero-tag-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-primary);
}

.hero-title {
    max-width: 800px;
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.hero-title em {
    font-style: italic;
    color: var(--accent-primary);
}

.hero-subtitle {
    max-width: 500px;
    color: rgba(242, 236, 221, 0.7);
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 1.1s;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 1.4s;
}

/* Slider Navigation Dots */
.hero-dots {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--container-padding);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(242, 236, 221, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.hero-dot.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: scale(1.3);
}

.hero-dot:hover {
    border-color: var(--text-primary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--accent-primary);
    color: var(--color-night);
}

.btn-primary:hover {
    background: var(--color-gold-dark);
    color: var(--color-eggshell);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 203, 92, 0.2);
}

.btn-outline {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(242, 236, 221, 0.3);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.btn-text {
    padding: 0.5rem 0;
    background: none;
    color: var(--text-primary);
}

.btn-text .btn-arrow {
    display: inline-block;
    transition: transform var(--transition-fast);
}

.btn-text:hover {
    color: var(--accent-primary);
}

.btn-text:hover .btn-arrow {
    transform: translateX(6px);
}

/* ============================================
   ABOUT / INTRO SECTION
   ============================================ */
.about-section {
    padding: var(--space-3xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-label {
    color: var(--accent-primary);
    margin-bottom: var(--space-md);
}

.about-title {
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.about-text {
    color: rgba(242, 236, 221, 0.65);
    margin-bottom: var(--space-lg);
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: rgba(242, 236, 221, 0.65);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: var(--space-lg);
}

.about-body p {
    margin: 0;
}

.about-sub-heading {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.about-list li {
    display: flex;
    gap: 0.6rem;
    align-items: baseline;
}

.about-list li::before {
    content: '•';
    color: var(--accent-primary);
    flex-shrink: 0;
    font-size: 1rem;
}

.about-list.teal li::before {
    color: var(--accent-teal);
}

.about-stats {
    display: flex;
    gap: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(200, 170, 111, 0.15);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--accent-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(242, 236, 221, 0.5);
    margin-top: 0.5rem;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.about-image-accent {
    position: absolute;
    bottom: -1px;
    left: -1px;
    width: 120px;
    height: 120px;
    border-left: 1px solid var(--accent-primary);
    border-bottom: 1px solid var(--accent-primary);
    pointer-events: none;
}

/* ============================================
   FEATURED CATEGORIES
   ============================================ */
.categories-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
}

.section-header-left .section-label {
    color: var(--accent-primary);
    margin-bottom: var(--space-sm);
}

.section-header-left .section-title {
    color: var(--text-primary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.category-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    transition: background var(--transition-base);
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(
        180deg,
        transparent 30%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    transform: translateY(10px);
    transition: transform var(--transition-base);
}

.category-card:hover .category-card-content {
    transform: translateY(0);
}

.category-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.category-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-primary);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

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

/* ============================================
   HIGHLIGHT / CTA BAND
   ============================================ */
.highlight-band {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.highlight-band-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.highlight-band-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-band-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 11, 0.75);
}

.highlight-band-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.highlight-band-title {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.highlight-band-text {
    color: rgba(242, 236, 221, 0.6);
    margin-bottom: var(--space-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-black);
    padding: var(--space-3xl) 0 var(--space-lg);
    border-top: 1px solid rgba(200, 170, 111, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand-logo {
    height: 80px;
    width: auto;
    margin-bottom: var(--space-md);
}

.footer-brand-text {
    font-size: 0.9rem;
    color: rgba(242, 236, 221, 0.5);
    line-height: 1.7;
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: var(--space-md);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(242, 236, 221, 0.5);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(200, 170, 111, 0.08);
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(242, 236, 221, 0.3);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(242, 236, 221, 0.15);
    border-radius: 50%;
    color: rgba(242, 236, 221, 0.5);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

/* ============================================
   VIEW TOGGLE BAR (Móveis ↔ Lojas)
   ============================================ */
.view-toggle-bar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(200, 170, 111, 0.08);
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.view-toggle-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 44px;
}

/* Labels */
.view-toggle-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(242, 236, 221, 0.35);
    cursor: pointer;
    transition: color var(--transition-fast);
    user-select: none;
}

.view-toggle-label:hover {
    color: rgba(242, 236, 221, 0.6);
}

.view-toggle-label.is-active {
    color: var(--text-primary);
}

/* Switch Track */
.view-toggle-switch {
    position: relative;
    width: 48px;
    height: 24px;
    background: rgba(242, 236, 221, 0.1);
    border: 1px solid rgba(242, 236, 221, 0.15);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.view-toggle-switch:hover {
    border-color: rgba(242, 236, 221, 0.3);
}

/* Knob */
.view-toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-gold-dark);
    box-shadow: 0 2px 8px rgba(205, 156, 32, 0.4);
    transition: all var(--transition-base);
}

/* Active state: Lojas */
.view-toggle-switch.is-lojas .view-toggle-knob {
    left: calc(100% - 19px);
    background: var(--accent-teal);
    box-shadow: 0 2px 8px rgba(62, 213, 187, 0.4);
}

.view-toggle-switch.is-lojas {
    border-color: rgba(62, 213, 187, 0.3);
    background: rgba(62, 213, 187, 0.08);
}

/* Page transition overlay */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: var(--color-black);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.page-transition.is-active {
    opacity: 1;
    pointer-events: all;
}

/* Offset main content for fixed toggle bar */
body.has-toggle-bar main {
    padding-top: calc(var(--header-height) + 44px);
}

body.has-toggle-bar .hero {
    margin-top: calc(-1 * (var(--header-height) + 44px));
    padding-top: calc(var(--header-height) + 44px);
    height: min(100vh, 912px);
    min-height: calc(500px + var(--header-height) + 44px);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    width: 60px;
    height: auto;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-image-wrapper {
        aspect-ratio: 16/10;
        order: -1;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-lg);
        transition: right var(--transition-base);
        z-index: 1000;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        letter-spacing: 0.25em;
    }

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

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .hero-dots {
        flex-direction: row;
        bottom: var(--space-md);
        right: 50%;
        transform: translateX(50%);
    }

    .view-toggle-label {
        font-size: 0.6rem;
        letter-spacing: 0.15em;
    }

    .view-toggle-switch {
        width: 40px;
        height: 20px;
    }

    .view-toggle-knob {
        width: 14px;
        height: 14px;
        top: 2px;
        left: 2px;
    }

    .view-toggle-switch.is-lojas .view-toggle-knob {
        left: calc(100% - 16px);
    }

    .view-toggle-inner {
        height: 36px;
    }
}

@media (max-width: 480px) {
    .about-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
}
