:root {
    --rosa-ballet: #e8b4b8;
    --rosa-claro: #f5d5d8;
    --rosa-suave: #faeaec;
    --lilas: #c4a6c9;
    --lilas-claro: #e8d5eb;
    --azul-ceu: #a8cce0;
    --verde-salvia: #a8c4a0;
    --amarelo-manteiga: #f0e4b8;
    --pessego: #f0c8a0;
    --dourado: #c4a265;
    --dourado-claro: #dcc898;
    --dourado-escuro: #a07d3f;
    --creme: #fdf8f0;
    --creme-escuro: #f5ede0;
    --marrom-suave: #8c7060;
    --texto: #5a4a3c;
    --texto-claro: #8a7a6c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Questrial', sans-serif;
    color: var(--texto);
    background-color: var(--creme);
    overflow-x: hidden;
}

/* ═══════ ANNOUNCEMENT ═══════ */
.announcement-bar {
    background: linear-gradient(135deg, var(--rosa-ballet), var(--lilas));
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ═══════ NAV ═══════ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(196, 162, 101, 0.15);
    transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 30px rgba(196, 162, 101, 0.1); }

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--texto);
}
.nav-logo img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.nav-logo-sub {
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--texto-claro);
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--texto);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 1px;
    background: var(--dourado);
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--dourado-escuro); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.cart-btn {
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}
.cart-btn svg { width: 22px; height: 22px; stroke: var(--texto); fill: none; stroke-width: 1.5; }
.cart-count {
    position: absolute;
    top: -2px; right: -4px;
    background: var(--rosa-ballet);
    color: white;
    font-size: 0.6rem;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Questrial', sans-serif;
}
.cart-count:empty { display: none; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}
.hamburger span { width: 22px; height: 1.5px; background: var(--texto); transition: 0.3s; }

/* ═══════ HERO ═══════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(170deg, var(--creme) 0%, var(--rosa-suave) 40%, var(--creme-escuro) 100%);
}
.hero-bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(232,180,184,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(196,166,201,0.12) 0%, transparent 50%);
    animation: bgShift 20s ease-in-out infinite alternate;
}
@keyframes bgShift { 0%{transform:scale(1)} 100%{transform:scale(1.05) rotate(1deg)} }

.hero-content {
    text-align: center;
    padding: 2rem;
    position: relative; z-index: 2;
    animation: fadeUp 1.2s ease-out;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }

.hero-logo {
    width: 120px; height: 120px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 40px rgba(196,162,101,0.2);
    mix-blend-mode: multiply;
    animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.hero-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.2rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}
.hero-sub {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--texto-claro);
    margin-bottom: 2.5rem;
}
.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--marrom-suave);
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.btn-gold {
    display: inline-block;
    padding: 15px 44px;
    background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
    color: white;
    text-decoration: none;
    font-size: 0.73rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 4px 20px rgba(196,162,101,0.3);
    font-family: 'Questrial', sans-serif;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(196,162,101,0.4); }

.btn-outline {
    display: inline-block;
    padding: 13px 36px;
    background: transparent;
    color: var(--dourado-escuro);
    text-decoration: none;
    font-size: 0.73rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1.5px solid var(--dourado);
    cursor: pointer;
    transition: all 0.4s;
    font-family: 'Questrial', sans-serif;
}
.btn-outline:hover { background: var(--dourado); color: white; }

.hero-scroll {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--texto-claro);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.hero-scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--dourado), transparent);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ═══════ SECTIONS COMMON ═══════ */
.section-label {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--dourado);
    margin-bottom: 1rem;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--texto);
    margin-bottom: 2rem;
    line-height: 1.3;
}
.section-divider {
    width: 120px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--dourado), transparent);
    margin: 0 auto;
}
.ornament {
    display: block;
    text-align: center;
    color: var(--dourado);
    font-size: 1.5rem;
    letter-spacing: 0.5em;
    margin: 2rem auto;
    opacity: 0.6;
}

/* ═══════ PAGE HEADER (for subpages) ═══════ */
.page-header {
    padding: 5rem 2rem 3rem;
    text-align: center;
    background: linear-gradient(170deg, var(--creme) 0%, var(--rosa-suave) 40%, var(--creme-escuro) 100%);
}
.page-header .section-label { margin-bottom: 0.8rem; }
.page-header .section-title { margin-bottom: 1rem; }
.page-header-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--texto-claro);
    max-width: 500px;
    margin: 0 auto;
}

/* ═══════ MOODBOARD BANNER ═══════ */
.moodboard { padding: 0; overflow: hidden; }
.moodboard img { width: 100%; display: block; }

/* ═══════ ABOUT ═══════ */
.about {
    padding: 7rem 2rem;
    background: var(--creme);
}
.about-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.about-text {
    font-size: 1rem;
    line-height: 2;
    color: var(--texto-claro);
    max-width: 650px;
    margin: 0 auto;
}
.about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.35rem;
    color: var(--marrom-suave);
    margin-top: 3rem;
    padding: 2rem;
    border-left: 2px solid var(--dourado-claro);
    text-align: left;
    max-width: 550px;
    margin-left: auto; margin-right: auto;
    line-height: 1.7;
}

/* ═══════ PRODUCT HERO ═══════ */
.product-hero {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--creme-escuro) 0%, var(--rosa-suave) 50%, var(--creme-escuro) 100%);
    position: relative;
}
.product-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dourado-claro), transparent);
}
.product-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.product-image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(140,112,96,0.2);
}
.product-image-frame img {
    width: 100%;
    display: block;
    transition: transform 0.8s;
}
.product-image-frame:hover img { transform: scale(1.03); }
.product-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(253,248,240,0.92);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.63rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dourado-escuro);
    border: 1px solid var(--dourado-claro);
}

.product-info .section-label { text-align: left; }
.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.product-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--texto-claro);
    margin-bottom: 1.5rem;
}
.product-description {
    font-size: 0.92rem;
    line-height: 1.9;
    color: var(--texto-claro);
    margin-bottom: 1.5rem;
}
.product-includes h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}
.includes-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 2rem;
}
.includes-list li {
    font-size: 0.82rem;
    color: var(--texto-claro);
    padding-left: 18px;
    position: relative;
}
.includes-list li::before {
    content: '\2726';
    position: absolute; left: 0;
    color: var(--dourado);
    font-size: 0.55rem;
    top: 3px;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 0.3rem;
}
.product-price-installment {
    font-size: 0.8rem;
    color: var(--texto-claro);
    margin-bottom: 1.5rem;
}
.product-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ═══════ LAUNCH OPTIONS ═══════ */
.launch-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.launch-option {
    background: var(--creme);
    border: 1px solid rgba(196,162,101,0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}
.launch-option h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--texto);
    margin-bottom: 0.5rem;
}
.launch-option .product-price { margin-bottom: 0.3rem; }
.launch-option .product-price-installment { margin-bottom: 1rem; }
.launch-option .btn-gold { width: 100%; text-align: center; }
.launch-option-kit {
    border-color: var(--dourado);
    box-shadow: 0 4px 20px rgba(196,162,101,0.15);
}
.kit-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
    color: white;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    padding: 4px 14px;
    border-radius: 50px;
    font-family: 'Questrial', sans-serif;
    text-transform: uppercase;
}

/* ═══════ NOTEBOOKS GRID ═══════ */
.notebooks-section {
    padding: 6rem 2rem;
    background: var(--creme);
}
.notebooks-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.notebooks-header {
    text-align: center;
    margin-bottom: 3rem;
}
.notebooks-banner {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(140,112,96,0.15);
    margin-bottom: 3rem;
}
.notebooks-banner img {
    width: 100%;
    display: block;
}

.notebooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}

.notebook-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(196,162,101,0.1);
    transition: all 0.4s;
    position: relative;
}
.notebook-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(196,162,101,0.15);
}
.notebook-card-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}
.notebook-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.notebook-card:hover .notebook-card-img img { transform: scale(1.05); }

.notebook-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(90,74,60,0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s;
}
.notebook-card:hover .notebook-card-overlay {
    background: rgba(90,74,60,0.15);
}
.notebook-card-overlay button {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
}
.notebook-card:hover .notebook-card-overlay button {
    opacity: 1;
    transform: translateY(0);
}

.notebook-card-info {
    padding: 1rem 1.2rem 1.2rem;
}
.notebook-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2px;
}
.notebook-card-desc {
    font-size: 0.72rem;
    color: var(--texto-claro);
    font-style: italic;
    margin-bottom: 0.6rem;
}
.notebook-card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--dourado-escuro);
    font-weight: 500;
}
.notebook-card-installment {
    font-size: 0.68rem;
    color: var(--texto-claro);
}
.add-cart-small {
    display: block;
    width: 100%;
    margin-top: 0.8rem;
    padding: 10px;
    background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Questrial', sans-serif;
    transition: opacity 0.3s;
}
.add-cart-small:hover { opacity: 0.9; }

/* ═══════ NOTEBOOK FEATURED / COMING SOON ═══════ */
.notebook-card.featured {
    border: 2px solid var(--dourado);
    box-shadow: 0 8px 30px rgba(196,162,101,0.2);
}
.notebook-card.featured .notebook-card-img::after {
    content: 'PRE-VENDA';
    position: absolute;
    top: 12px; left: 12px;
    background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
    color: white;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 2;
    font-family: 'Questrial', sans-serif;
}
.notebook-card.coming-soon .notebook-card-img img {
    filter: blur(6px);
    transform: scale(1.05);
}
.notebook-card.coming-soon:hover .notebook-card-img img {
    filter: blur(6px);
    transform: scale(1.08);
}
.notebook-card.coming-soon .notebook-card-img::after {
    content: 'Futuro Lancamento';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: white;
    background: rgba(90,74,60,0.35);
    z-index: 2;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.notebook-card.coming-soon .notebook-card-overlay { display: none; }
.notebook-card.coming-soon .add-cart-small { display: none; }
.notebook-card.coming-soon .notebook-card-price { display: none; }
.notebook-card.coming-soon .notebook-card-installment { display: none; }

/* ═══════ FEATURES ═══════ */
.features { padding: 6rem 2rem; background: var(--creme); }
.features-inner { max-width: 1000px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 3.5rem; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.feature-card {
    text-align: center;
    padding: 2rem 1.2rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(253,248,240,0.5), rgba(245,237,224,0.3));
    border: 1px solid rgba(196,162,101,0.1);
    transition: all 0.4s;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(196,162,101,0.1);
}
.feature-icon {
    width: 56px; height: 56px;
    margin: 0 auto 1.2rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rosa-suave), var(--lilas-claro));
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--dourado-escuro); fill: none; stroke-width: 1.5; }
.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
}
.feature-desc { font-size: 0.8rem; line-height: 1.7; color: var(--texto-claro); }

/* ═══════ GALLERY ═══════ */
.gallery { padding: 5rem 2rem; background: linear-gradient(180deg, var(--rosa-suave), var(--creme)); }
.gallery-inner { max-width: 1100px; margin: 0 auto; }
.gallery-header { text-align: center; margin-bottom: 3rem; }
.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}
.gallery-mosaic .g-big {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ═══════ PALETTE ═══════ */
.palette-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--creme) 0%, var(--rosa-suave) 100%);
}
.palette-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.palette-colors { display: flex; justify-content: center; gap: 1.8rem; margin-top: 2.5rem; flex-wrap: wrap; }
.palette-swatch { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.swatch-circle {
    width: 60px; height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 3px solid white;
    transition: transform 0.3s;
}
.swatch-circle:hover { transform: scale(1.1); }
.swatch-name { font-size: 0.68rem; letter-spacing: 0.1em; color: var(--texto-claro); }

/* ═══════ TESTIMONIAL ═══════ */
.testimonial { padding: 6rem 2rem; background: var(--creme); text-align: center; }
.testimonial-inner { max-width: 650px; margin: 0 auto; }
.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--marrom-suave);
    margin-bottom: 1.5rem;
}
.testimonial-quote::before {
    content: '\201C';
    font-size: 3.5rem;
    display: block;
    color: var(--dourado-claro);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.testimonial-author {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--texto-claro);
}
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 1.5rem; }
.testimonial-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--dourado-claro);
    opacity: 0.3;
    cursor: pointer;
    transition: opacity 0.3s;
    border: none;
}
.testimonial-dot.active { opacity: 1; }

/* ═══════ INSTAGRAM CTA ═══════ */
.instagram-cta {
    padding: 4.5rem 2rem;
    background: linear-gradient(135deg, var(--rosa-suave), var(--lilas-claro), var(--creme));
    text-align: center;
}
.instagram-handle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--dourado-escuro);
    margin-top: 1rem;
    display: inline-block;
    text-decoration: none;
    transition: color 0.3s;
}
.instagram-handle:hover { color: var(--rosa-ballet); }

/* ═══════ NEWSLETTER ═══════ */
.newsletter { padding: 5rem 2rem; background: var(--creme); text-align: center; }
.newsletter-inner { max-width: 480px; margin: 0 auto; }
.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
    border-radius: 50px;
    overflow: hidden;
    border: 1.5px solid var(--dourado-claro);
    background: white;
}
.newsletter-form input {
    flex: 1;
    padding: 13px 22px;
    border: none; outline: none;
    font-family: 'Questrial', sans-serif;
    font-size: 0.85rem;
    color: var(--texto);
    background: transparent;
}
.newsletter-form input::placeholder { color: var(--texto-claro); }
.newsletter-form button {
    padding: 13px 24px;
    background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
    color: white;
    border: none;
    font-family: 'Questrial', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s;
}
.newsletter-form button:hover { opacity: 0.9; }

/* ═══════ FOOTER ═══════ */
.footer {
    padding: 3.5rem 2rem 1.5rem;
    background: var(--creme-escuro);
    border-top: 1px solid rgba(196,162,101,0.15);
}
.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-brand p { font-size: 0.83rem; line-height: 1.7; color: var(--texto-claro); max-width: 250px; margin-top: 1rem; }
.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { text-decoration: none; font-size: 0.78rem; color: var(--texto-claro); transition: color 0.3s; }
.footer-col ul a:hover { color: var(--dourado-escuro); }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social a {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid var(--dourado-claro);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.footer-social a:hover { background: var(--dourado); border-color: var(--dourado); }
.footer-social a:hover svg { stroke: white; }
.footer-social svg { width: 15px; height: 15px; stroke: var(--dourado); fill: none; stroke-width: 1.5; }
.footer-bottom {
    max-width: 1000px;
    margin: 2.5rem auto 0;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(196,162,101,0.1);
    text-align: center;
    font-size: 0.7rem;
    color: var(--texto-claro);
}

/* ═══════ CART DRAWER ═══════ */
.cart-overlay {
    position: fixed; inset: 0;
    background: rgba(90,74,60,0.3);
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
    position: fixed;
    top: 0; right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--creme);
    z-index: 501;
    box-shadow: -8px 0 40px rgba(0,0,0,0.1);
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}
.cart-drawer.open { right: 0; }

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(196,162,101,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.1em;
}
.cart-close {
    background: none; border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--texto-claro);
    padding: 5px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}
.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--texto-claro);
}
.cart-empty-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.4; }
.cart-empty p { font-size: 0.9rem; }

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(196,162,101,0.08);
    align-items: center;
}
.cart-item-img {
    width: 70px; height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--creme-escuro);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2px;
}
.cart-item-variant { font-size: 0.72rem; color: var(--texto-claro); margin-bottom: 4px; }
.cart-item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--dourado-escuro);
}
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}
.qty-btn {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1px solid var(--dourado-claro);
    background: transparent;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--texto);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.qty-btn:hover { background: var(--dourado); color: white; border-color: var(--dourado); }
.qty-num { font-size: 0.85rem; min-width: 20px; text-align: center; }

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(196,162,101,0.15);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
}
.cart-total span:last-child { color: var(--dourado-escuro); font-weight: 600; }
.cart-footer .btn-gold { width: 100%; text-align: center; display: block; }
.cart-whatsapp-note {
    text-align: center;
    margin-top: 0.8rem;
    font-size: 0.7rem;
    color: var(--texto-claro);
}

/* ═══════ MOBILE MENU ═══════ */
.mobile-menu {
    display: none;
    position: fixed; inset: 0;
    background: rgba(253,248,240,0.98);
    backdrop-filter: blur(20px);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    text-decoration: none;
    color: var(--texto);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    letter-spacing: 0.15em;
    transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--dourado); }
.mobile-menu-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: none; border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--texto);
}

/* ═══════ ANIMATIONS ═══════ */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════ TOAST ═══════ */
.toast {
    position: fixed;
    bottom: 2rem; right: 2rem;
    background: white;
    border: 1px solid var(--dourado-claro);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    z-index: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-check { color: var(--verde-salvia); font-size: 1.2rem; }

/* ═══════ CHECKOUT FORM ═══════ */
.cart-step { display: flex; flex-direction: column; height: calc(100vh - 60px); }
.checkout-form-area { flex: 1; overflow-y: auto; padding: 1.2rem 1.5rem; }
.checkout-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(196,162,101,0.12);
}
.form-row { margin-bottom: 1rem; }
.form-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--texto-claro);
    margin-bottom: 5px;
}
.form-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(196,162,101,0.2);
    border-radius: 10px;
    font-family: 'Questrial', sans-serif;
    font-size: 0.88rem;
    color: var(--texto);
    background: white;
    outline: none;
    transition: border-color 0.3s;
}
.form-input:focus { border-color: var(--dourado); }
.btn-small {
    padding: 11px 18px;
    background: var(--creme-escuro);
    border: 1.5px solid rgba(196,162,101,0.2);
    border-radius: 10px;
    font-family: 'Questrial', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--texto);
    white-space: nowrap;
    transition: all 0.3s;
}
.btn-small:hover { background: var(--dourado); color: white; border-color: var(--dourado); }
.cep-address {
    font-size: 0.78rem;
    color: var(--texto-claro);
    margin-top: 6px;
    font-style: italic;
}
.frete-options { display: flex; flex-direction: column; gap: 8px; margin-top: 0.5rem; }
.frete-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1.5px solid rgba(196,162,101,0.15);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}
.frete-option:hover { border-color: var(--dourado-claro); }
.frete-option.selected { border-color: var(--dourado); background: rgba(196,162,101,0.05); }
.frete-option input[type="radio"] { accent-color: var(--dourado); }
.frete-option-info { flex: 1; }
.frete-option-name { font-size: 0.85rem; font-weight: 500; }
.frete-option-days { font-size: 0.7rem; color: var(--texto-claro); }
.frete-option-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--dourado-escuro);
    font-weight: 500;
}
.frete-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem;
    color: var(--texto-claro);
    font-size: 0.85rem;
}
.spinner {
    width: 18px; height: 18px;
    border: 2px solid var(--dourado-claro);
    border-top-color: var(--dourado);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.cart-total-breakdown { margin-bottom: 1rem; }
.total-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--texto-claro);
    margin-bottom: 6px;
}
.total-final {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--texto);
    font-weight: 500;
    padding-top: 8px;
    border-top: 1px solid rgba(196,162,101,0.15);
    margin-top: 4px;
}
.total-final span:last-child { color: var(--dourado-escuro); font-weight: 600; }

.order-summary { margin-top: 0.5rem; }
.order-summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--texto-claro);
    padding: 6px 0;
    border-bottom: 1px solid rgba(196,162,101,0.06);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 0.8rem;
    font-size: 0.72rem;
    color: var(--texto-claro);
}

.btn-gold:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.checkout-loading {
    position: absolute; inset: 0;
    background: rgba(253,248,240,0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 10;
}
.checkout-loading p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--texto);
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-brand { font-size: 2.8rem; letter-spacing: 0.2em; }
    .hero-tagline { font-size: 1.2rem; }
    .hero-logo { width: 90px; height: 90px; }
    .product-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .product-info { text-align: center; }
    .product-info .section-label { text-align: center; }
    .product-buttons { justify-content: center; }
    .launch-options { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-mosaic { grid-template-columns: repeat(2, 1fr); }
    .gallery-mosaic .g-big { grid-column: span 2; grid-row: span 1; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .section-title { font-size: 2.1rem; }
}
@media (max-width: 600px) {
    .hero-brand { font-size: 2rem; letter-spacing: 0.12em; }
    .features-grid { grid-template-columns: 1fr; }
    .notebooks-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .gallery-mosaic { grid-template-columns: 1fr 1fr; }
    .palette-colors { gap: 1rem; }
    .swatch-circle { width: 48px; height: 48px; }
    .section-title { font-size: 1.7rem; }
    .product-name { font-size: 1.9rem; }
    .includes-list { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { max-width: 100%; margin: 1rem auto 0; }
    .footer-social { justify-content: center; }
    .newsletter-form { flex-direction: column; border-radius: 14px; }
    .newsletter-form input { text-align: center; }
}
