@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #E87A1E;
    --dark: #2D2D2D;
    --light-bg: #FAFAF8;
    --border: #E8E4DF;
    --text-muted: #8A8580;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--light-bg);
    color: var(--dark);
    overflow-x: hidden;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.back-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.2s, opacity 0.2s;
    flex-shrink: 0;
    opacity: 0.65;
    margin-right: 4px;
    position: relative;
    top: 2px;
}
.back-arrow:hover {
    background: rgba(0,0,0,0.06);
    opacity: 1;
}
.back-arrow img {
    width: 18px;
    height: 18px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--dark);
    margin-right: auto;
}

.logo-icon {
    height: 40px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
}

.logo-text {
    display: none;
}

nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

nav a:hover, nav a.active {
    color: var(--dark);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
}

/* HAMBURGER BUTTON */
.menu-toggle {
    display: none;
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.menu-toggle svg {
    width: 18px;
    height: 18px;
    color: var(--dark);
}

.menu-toggle .icon-close {
    display: none;
}

.menu-toggle.open .icon-hamburger {
    display: none;
}

.menu-toggle.open .icon-close {
    display: block;
}

/* MOBILE NAV OVERLAY */
.nav-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 200;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-mobile-overlay.visible {
    opacity: 1;
}

/* MOBILE NAV PANEL */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    flex-direction: column;
    overflow-y: auto;
}

.nav-mobile.open {
    transform: translateX(0);
}

.nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}

.nav-mobile-header span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav-mobile-close {
    width: 32px;
    height: 32px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.nav-mobile-close svg {
    width: 16px;
    height: 16px;
    color: var(--dark);
}

.nav-mobile-links {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
}

.nav-mobile-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    text-decoration: none;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
    border-left: 3px solid transparent;
}

.nav-mobile-links a:hover {
    background: var(--light-bg);
}

.nav-mobile-links a.active {
    color: var(--orange);
    border-left-color: var(--orange);
    background: #FDF8F3;
}

.nav-mobile-footer {
    margin-top: auto;
    padding: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.nav-mobile-footer span {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* HERO SECTION */
.hero {
    margin-top: 73px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero-image {
    position: relative;
}

.hero-image-bg {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #C8B896 0%, #B8A886 25%, #D4C4A8 50%, #C0B090 75%, #A89878 100%);
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(210,195,170,0.8) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(190,175,150,0.6) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255,255,255,0.03) 8px, rgba(255,255,255,0.03) 16px);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
    position: relative;
}

.hero-icon {
    width: 50px;
    height: 50px;
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
    margin-bottom: 64px;
}

.breadcrumb {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-line {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: 6px;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero-material {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-material .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}

.hero-material .tag {
    background: #F5F0EB;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 48px;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--dark);
    color: white;
}

.btn-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--dark);
}

.btn svg {
    width: 16px;
    height: 16px;
}

/* COLORS SECTION */
.colors-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
}

.section-header-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 8px;
}

.section-header-left p {
    color: var(--text-muted);
    font-size: 14px;
}

.color-count {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.colors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 16px;
}

.color-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    border: 2px solid transparent;
}

.color-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.color-card.active {
    border-color: var(--dark);
}

.color-swatch {
    height: 80px;
    width: 100%;
}

.color-name {
    padding: 10px 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    color: var(--dark);
}

/* SPECS SECTION */
.specs-section {
    padding: 80px 40px 120px;
    background: white;
}

.specs-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.spec-card {
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.spec-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.spec-card-header {
    padding: 24px 28px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.spec-card-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
}

.spec-card-icon {
    width: 32px;
    height: 32px;
    background: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-card-icon svg {
    width: 16px;
    height: 16px;
    color: white;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-top: 1px solid var(--border);
    transition: background 0.2s;
}

.spec-table tr:hover {
    background: rgba(0,0,0,0.02);
}

.spec-table td {
    padding: 14px 28px;
    font-size: 13px;
}

.spec-table td:first-child {
    color: var(--text-muted);
    font-weight: 400;
}

.spec-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.5px;
}

/* FOOTER */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 40px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 32px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.footer-text {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* INDEX / CATALOG GRID */
.catalog-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.catalog-linha-group {
    margin-bottom: 80px;
}

.catalog-linha-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.catalog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--dark);
    border: 1px solid var(--border);
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}

.catalog-card-image {
    width: 100%;
    height: auto;
    display: block;
    background: linear-gradient(145deg, #C8B896 0%, #B8A886 50%, #A89878 100%);
}

.catalog-card-body {
    padding: 24px;
}

.catalog-card-linha {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.catalog-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.catalog-card-material {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.catalog-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
}

.catalog-card-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}

.catalog-card:hover .catalog-card-btn svg {
    transform: translateX(4px);
}

/* COLLECTION HERO (index pages) */
.collection-hero {
    margin-top: 73px;
    padding: 100px 40px 60px;
    background: var(--dark);
    color: white;
    text-align: center;
}

.collection-hero-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

.collection-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 16px;
}

.collection-hero-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* LANDING PAGE */
.landing-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
    background: var(--light-bg);
    position: relative;
}

.landing-hero-content {
    max-width: 800px;
}

.landing-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 24px;
}

.landing-title {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 400;
    letter-spacing: 8px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark);
}

.landing-title span {
    color: var(--orange);
}

.landing-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 56px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.landing-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.collections-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.collection-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 480px;
    text-decoration: none;
    display: block;
}

.collection-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.collection-card:hover .collection-card-bg {
    transform: scale(1.05);
}

.collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
}

.collection-card-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: white;
}

.collection-card-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

.collection-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.collection-card-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
}

/* COMING SOON */
.coming-soon-section {
    padding: 80px 40px;
    text-align: center;
}

.coming-soon-badge {
    display: inline-block;
    background: #F5F0EB;
    color: var(--orange);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.coming-soon-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   HERO CAROUSEL
═══════════════════════════════════════════════════════════════ */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 800px;
    margin-top: 73px;
    overflow: hidden;
    background: var(--dark);
}

.hero-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.hero-carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.hero-carousel-content {
    position: absolute;
    bottom: 100px;
    left: 60px;
    max-width: 520px;
    color: white;
}

.hero-carousel-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

.hero-carousel-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    letter-spacing: 6px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-carousel-desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    font-weight: 300;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: white;
    padding: 16px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, transform 0.2s;
}

.btn-hero:hover {
    background: #d06a10;
    transform: translateY(-2px);
}

/* Carousel navigation buttons */
.hero-carousel-btn {
    position: absolute;
    bottom: 28px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-carousel-btn svg {
    width: 16px;
    height: 16px;
}

.hero-carousel-btn:hover {
    background: rgba(255,255,255,0.3);
}

.hero-carousel-prev { left: 24px; }
.hero-carousel-next { right: 24px; }

/* Carousel dots */
.hero-carousel-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.active {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.2);
}

.hero-dot:hover {
    border-color: white;
}

/* ═══════════════════════════════════════════════════════════════
   INDEX PAGE — STATS STRIP
═══════════════════════════════════════════════════════════════ */
.stats-strip {
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 40px;
}

.stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   INDEX PAGE — SECTION HEADERS (scoped to index)
═══════════════════════════════════════════════════════════════ */
.idx-section-header {
    text-align: center;
    margin-bottom: 64px;
}

.idx-section-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

.idx-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--dark);
}

/* ═══════════════════════════════════════════════════════════════
   INDEX PAGE — COLLECTIONS GRID (v2 cards)
═══════════════════════════════════════════════════════════════ */
.collection-card-v2 {
    background: white;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.cc-thumbnails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 140px);
    gap: 2px;
    background: var(--border);
}

.cc-thumbnails img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #F0EDE8;
}

.cc-body {
    padding: 28px 32px 32px;
    flex: none;
    display: flex;
    flex-direction: column;
    background: white;
    position: relative;
    z-index: 1;
}

.cc-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
}

.cc-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--dark);
    margin-bottom: 12px;
}

.cc-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 24px;
}

.cc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
}

.cc-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.collection-card-v2:hover .cc-link svg {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT SLIDERS
═══════════════════════════════════════════════════════════════ */
.sliders-section {
    padding: 40px 0 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-slider-block {
    padding: 40px 40px 0;
}

.slider-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.slider-label {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--dark);
    margin-bottom: 4px;
}

.slider-count {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.slider-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.slider-btn svg {
    width: 16px;
    height: 16px;
    color: var(--dark);
}

.slider-btn:hover {
    border-color: var(--dark);
    background: var(--dark);
}

.slider-btn:hover svg {
    color: white;
}

.slider-see-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--orange);
    margin-left: 8px;
}

.slider-see-all:hover {
    text-decoration: underline;
}

/* Slider viewport — horizontal scroll */
.slider-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider-viewport::-webkit-scrollbar {
    display: none;
}

.slider-viewport.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.slider-track {
    display: flex;
    gap: 24px;
    padding-bottom: 8px;
}

.slider-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.slider-card-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(145deg, #C8B896 0%, #B8A886 50%, #A89878 100%);
}

.slider-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.slider-card:hover .slider-card-img-wrap img {
    transform: scale(1.05);
}

.slider-card-body {
    padding: 20px;
}

.slider-card-linha {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.slider-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.slider-card-material {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   INDEX PAGE — PALETTE PREVIEW
═══════════════════════════════════════════════════════════════ */
.palette-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.palette-strip {
    display: flex;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 48px;
}

.palette-strip span {
    flex: 1;
}

/* ═══════════════════════════════════════════════════════════════
   INDEX PAGE — FOOTER CTA
═══════════════════════════════════════════════════════════════ */
.footer-cta {
    background: var(--dark);
    padding: 80px 40px;
    text-align: center;
}

.footer-cta-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
}

.footer-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    color: white;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.footer-cta-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 40px;
}

.btn-cta {
    background: var(--orange);
    color: white;
    border-radius: 2px;
    transition: background 0.2s, transform 0.2s;
}

.btn-cta:hover {
    background: #d06a10;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   RELATED PRODUCTS — "Mais da Coleção"
═══════════════════════════════════════════════════════════════ */
.related-section {
    padding: 80px 40px 100px;
    background: var(--light-bg);
}

.related-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.related-slider {
    position: relative;
    margin-top: 48px;
}

.related-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.related-viewport::-webkit-scrollbar {
    display: none;
}

.related-viewport.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.related-track {
    display: flex;
    gap: 20px;
    padding-bottom: 8px;
}

.related-card {
    flex: 0 0 220px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.related-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background: linear-gradient(145deg, #C8B896 0%, #B8A886 50%, #A89878 100%);
    transition: transform 0.6s ease;
}

.related-card:hover .related-card-img {
    transform: scale(1.05);
}

.related-card-body {
    padding: 16px 18px 20px;
}

.related-card-linha {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.related-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--dark);
}

/* Navigation buttons */
.related-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.related-btn svg {
    width: 16px;
    height: 16px;
    color: var(--dark);
}

.related-btn:hover {
    border-color: var(--dark);
    background: var(--dark);
}

.related-btn:hover svg {
    color: white;
}

.related-btn-prev {
    left: -20px;
}

.related-btn-next {
    right: -20px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 48px 32px;
    }

    .hero-title {
        font-size: 48px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .colors-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .landing-title {
        font-size: 56px;
    }

    .collection-hero-title {
        font-size: 44px;
    }

    .hero-carousel { max-height: 600px; }
    .hero-carousel-title { font-size: 48px; }
    .hero-carousel-content { bottom: 80px; left: 40px; max-width: 420px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .slider-card { flex: 0 0 260px; }

    .related-btn-prev { left: -12px; }
    .related-btn-next { right: -12px; }
    .related-card { flex: 0 0 200px; }
}

@media (max-width: 1100px) {
    nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-mobile {
        display: flex;
    }

    .header-inner {
        position: relative;
        justify-content: center;
    }
    .back-arrow {
        position: absolute;
        left: 40px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        margin-right: 0;
    }
    .logo {
        margin-right: 0;
    }
    .menu-toggle {
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .back-arrow {
        left: 20px;
    }
    .menu-toggle {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 14px 20px;
    }

    .hero-content {
        padding: 32px 20px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .colors-section {
        padding: 60px 20px;
    }

    .specs-section {
        padding: 60px 20px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .catalog-section {
        padding: 60px 20px;
    }

    .landing-title {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .collections-section {
        padding: 60px 20px;
    }

    .collection-hero {
        padding: 80px 20px 40px;
    }

    .collection-hero-title {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .hero-carousel { max-height: 500px; height: 80vh; }
    .hero-carousel-title { font-size: 36px; letter-spacing: 3px; }
    .hero-carousel-desc { font-size: 13px; margin-bottom: 24px; }
    .hero-carousel-content { bottom: 60px; left: 24px; right: 24px; max-width: none; }
    .hero-carousel-btn { width: 32px; height: 32px; }
    .hero-carousel-btn svg { width: 14px; height: 14px; }
    .hero-carousel-prev { left: 12px; }
    .hero-carousel-next { right: 12px; }
    .stats-strip { padding: 32px 20px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-number { font-size: 36px; }
    .idx-section-title { font-size: 28px; letter-spacing: 2px; }
    .collections-grid { grid-template-columns: 1fr; }
    .cc-thumbnails { grid-template-rows: repeat(2, 180px); }
    .cc-body { padding: 20px 24px 24px; }
    .cc-name { font-size: 22px; }
    .product-slider-block { padding: 32px 20px 0; }
    .slider-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .slider-label { font-size: 22px; }
    .slider-card { flex: 0 0 240px; }
    .slider-card-img-wrap { height: 160px; }
    .palette-section { padding: 60px 20px; }
    .footer-cta { padding: 60px 20px; }
    .footer-cta-title { font-size: 28px; letter-spacing: 2px; }

    .related-section { padding: 60px 20px 80px; }
    .related-slider { margin-top: 32px; }
    .related-card { flex: 0 0 180px; }
    .related-card-img { height: 140px; }
    .related-card-body { padding: 12px 14px 16px; }
    .related-card-name { font-size: 16px; }
    .related-btn { display: none; }
}
