﻿/* --- RESET E BASES --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html {
    scroll-behavior: smooth;
}

body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
    background: #000; 
    overflow-x: hidden; 
}

[hidden] {
    display: none !important;
}

section[id],
main[id] {
    scroll-margin-top: 78px;
}

/* --- PRELOADER --- */
#preloader {
    --preloader-logo-width: min(540px, 88vw);
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #000; display: flex; justify-content: center; align-items: center; z-index: 2000;
    transition: opacity 1.15s ease-in-out, visibility 1.15s;
}
.reveal-container {
    position: relative;
    width: 0;
    overflow: hidden;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    animation: reveal-logo 4.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.preloader-logo-visual {
    width: var(--preloader-logo-width);
    aspect-ratio: 676 / 139;
    position: relative;
    overflow: hidden;
}
.preloader-logo {
    position: absolute;
    top: -188%;
    left: -25%;
    width: 152.5%;
    max-width: none;
    display: block;
}
.loading-bar { width: 84%; height: 2px; margin-top: 0; background: rgba(255, 255, 255, 0.94); border-radius: 999px; box-shadow: 0 0 10px rgba(255, 255, 255, 0.18); }
@keyframes reveal-logo { 0% { width: 0; } 100% { width: var(--preloader-logo-width); } }
#preloader.fade-out { opacity: 0; visibility: hidden; }

/* --- NAVBAR FIXA --- */
.navbar {
    display: flex; align-items: center; gap: 16px; padding: 8px 32px;
    background: transparent; position: fixed; width: 100%; top: 0; z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.navbar.nav-scrolled {
    background: rgba(248, 245, 239, 0.66);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    backdrop-filter: blur(18px) saturate(160%);
    padding: 7px 32px;
    border-color: rgba(40, 33, 22, 0.08);
    box-shadow: 0 14px 28px rgba(13, 11, 8, 0.08);
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo {
    width: auto;
    height: 52px;
    max-width: min(320px, 40vw);
    object-fit: contain;
    transform: scale(1.02);
    transform-origin: left center;
    transition: filter 0.5s ease, transform 0.35s ease;
}
.nav-scrolled .nav-logo {
    filter: brightness(0);
    transform: scale(0.98);
}

.nav-panel {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.nav-links { flex: 1; display: flex; justify-content: center; }
.nav-category-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-links a { 
    margin: 0 12px; text-decoration: none; color: #fff; 
    font-size: 12px; letter-spacing: 0.08em; font-weight: bold; 
    transition: color 0.5s ease;
}
.nav-scrolled .nav-links a { color: #000; }
.nav-links a:hover { opacity: 0.7; }

.nav-category-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    min-width: 240px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(22, 20, 18, 0.92);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
    opacity: 0;
    transform: translate(-50%, 8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-category-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
}

.nav-category-wrap:hover .nav-category-menu,
.nav-category-wrap:focus-within .nav-category-menu {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.nav-links .nav-category-menu a,
.nav-scrolled .nav-links .nav-category-menu a {
    display: block;
    margin: 0;
    padding: 11px 12px;
    border-radius: 12px;
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links .nav-category-menu a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.12);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.user-area.is-loading {
    opacity: 0.7;
}

.nav-admin-shortcut {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #171514;
    background: linear-gradient(135deg, rgba(233, 214, 184, 0.98), rgba(188, 162, 120, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

.nav-admin-shortcut:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.user-identity {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 5px 9px 5px 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
}

.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(233, 214, 184, 0.96), rgba(181, 154, 114, 0.94));
    color: #171514;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.user-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.welcome-message {
    max-width: 220px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    transition: opacity 0.35s ease, transform 0.35s ease, color 0.5s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 1;
    transform: none;
}

.user-meta {
    max-width: 220px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-login-btn {
    appearance: none;
    background: transparent;
    text-decoration: none;
    color: #fff;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.5s ease;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 7px 14px;
    cursor: pointer;
}
.nav-login-btn:hover { background: #fff; color: #000; }

.nav-scrolled .nav-login-btn {
    color: #000;
    border-color: rgba(0,0,0,0.2);
}
.nav-scrolled .nav-login-btn:hover { background: #000; color: #fff; }

.nav-scrolled .user-identity {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.08);
}

.nav-scrolled .nav-admin-shortcut {
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.nav-scrolled .welcome-message { color: #1d1d1f; }
.nav-scrolled .user-meta { color: rgba(29, 29, 31, 0.64); }

.user-quick-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-user-action {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #171514;
    background: linear-gradient(135deg, rgba(233, 214, 184, 0.96), rgba(181, 154, 114, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.22s ease, filter 0.22s ease;
}

.nav-user-action:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
}

.nav-logout-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.nav-logout-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
}

.nav-scrolled .nav-logout-btn {
    color: #1d1d1f;
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
}

.nav-login-btn.swap-anim {
    animation: authSwapIn 0.28s ease;
}

@keyframes authSwapIn {
    0% { opacity: 0.2; transform: translateY(-4px); }
    100% { opacity: 1; transform: translateY(0); }
}

.icon-btn { 
    background: none; border: none; color: #fff; 
    font-size: 17px; cursor: pointer; transition: all 0.5s ease; 
}
.nav-scrolled .icon-btn { color: #000; }

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 14px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.nav-toggle-line {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-scrolled .nav-toggle {
    color: #000;
    border-color: rgba(0, 0, 0, 0.14);
}

.navbar.menu-open .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar.menu-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.navbar.menu-open .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.cart-wrapper { position: relative; }
#cart-count {
    position: absolute; top: -8px; right: -10px; background: #fff; color: #000;
    font-size: 10px; font-weight: bold; padding: 2px 6px; border-radius: 50%;
    display: none; border: 1px solid #000;
}
.nav-scrolled #cart-count { background: #000; color: #fff; }

.search-panel {
    position: fixed;
    top: 60px;
    right: 32px;
    width: min(460px, calc(100% - 40px));
    z-index: 1200;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.search-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.search-panel-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #d7d9df;
    border-radius: 14px;
    padding: 8px;
    backdrop-filter: blur(8px);
}

#search-input {
    flex: 1;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #1d1d1f;
    padding: 10px 12px;
}

.search-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #e5e6eb;
    background: #fff;
    color: #1d1d1f;
    cursor: pointer;
}

#search-result-info {
    display: block;
    margin-top: 8px;
    color: #1f2228;
    font-size: 12px;
}

/* --- HERO / INTRO --- */
.hero-container { position: relative; min-height: 100svh; height: 100vh; display: flex; align-items: center; justify-content: center; }
#bg-video { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; object-fit: cover; opacity: 0; z-index: -1; transition: opacity 2s ease-in-out; }

.content-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
    gap: clamp(48px, 9vw, 180px);
    padding: 0 10% 8%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.box {
    flex: 1;
    max-width: 520px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.left-content { align-items: flex-start; text-align: left; }
.right-content { align-items: flex-end; text-align: right; max-width: 440px; }
.main-logo-lockup {
    width: 100%;
    max-width: 640px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.main-logo-visual {
    width: min(540px, 100%);
    aspect-ratio: 676 / 139;
    position: relative;
    overflow: hidden;
}

.main-logo {
    position: absolute;
    top: -188%;
    left: -25%;
    width: 152.5%;
    max-width: none;
    display: block;
}

.main-logo-line {
    width: min(520px, 100%);
    height: 2px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.18);
}

.year-container { display: flex; align-items: center; justify-content: flex-end; margin-bottom: 25px; height: 60px; }
.year-text { font-size: 2.2rem; font-weight: bold; color: #fff; margin: 0 10px; }
.leaf { width: 35px; filter: brightness(0) invert(1); }
.desc-texto {
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    line-height: 1.62;
    font-size: 1rem;
    max-width: 440px;
}

.right-content .desc-texto {
    max-width: 410px;
    margin-left: auto;
}

.animate #bg-video, .animate .content-wrapper, .animate .navbar { opacity: 1; }

.member-spotlight {
    width: min(1180px, calc(100% - 32px));
    margin: 22px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, 320px) auto;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(145deg, rgba(12, 12, 12, 0.64), rgba(32, 28, 24, 0.54)),
        radial-gradient(circle at left top, rgba(181, 154, 114, 0.2), transparent 46%);
    backdrop-filter: blur(10px);
    color: #fff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.member-spotlight-copy {
    min-width: 0;
}

.member-spotlight-badge {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(247, 242, 233, 0.9);
}

.member-spotlight-title {
    margin-top: 12px;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 0.96;
    letter-spacing: -0.02em;
    color: #fff;
}

.member-spotlight-description {
    margin-top: 10px;
    max-width: 56ch;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.12rem, 1.6vw, 1.42rem);
    line-height: 1.35;
    color: rgba(247, 242, 233, 0.88);
}

.member-spotlight-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.member-metric {
    min-height: 92px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-metric strong {
    font-family: "Manrope", sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: #f7efe1;
}

.member-metric span {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.7);
}

.member-spotlight-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.member-spotlight-btn {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(135deg, rgba(233, 214, 184, 0.98), rgba(181, 154, 114, 0.94));
    color: #171514;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.22s ease, filter 0.22s ease, background 0.22s ease;
}

.member-spotlight-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
}

.member-spotlight-btn.secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #756b5f;
}

/* --- LOJA POR EMOCAO --- */
.emotion-shop-section {
    background: linear-gradient(180deg, #f7f4ef 0%, #f1ece4 100%);
    color: #1d1b18;
    padding: 88px 6% 86px;
}

.emotion-shell {
    max-width: 1280px;
    margin: 0 auto;
}

.emotion-intro {
    max-width: 760px;
    margin-bottom: 26px;
}

.emotion-intro h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.1rem, 4vw, 3.5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: 12px 0 10px;
    color: #171614;
}

.emotion-intro p {
    font-family: "Manrope", sans-serif;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #4d473f;
    max-width: 64ch;
}

.emotion-board {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    grid-template-rows: 230px 230px;
    grid-template-areas:
        "main top copy"
        "main bottom copy";
    gap: 14px;
}

.emotion-media {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #e8e2d8;
    border: 1px solid rgba(34, 32, 28, 0.1);
}

.emotion-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.emotion-media-main { grid-area: main; min-height: 474px; }
.emotion-media-top { grid-area: top; }
.emotion-media-bottom { grid-area: bottom; }

.emotion-media-caption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    min-height: 28px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
}

.emotion-copy {
    grid-area: copy;
    background: #efebe4;
    border: 1px solid rgba(35, 33, 29, 0.16);
    border-radius: 24px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.emotion-copy small {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    font-size: 11px;
    color: #6a6156;
}

.emotion-copy h3 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #2a2927;
}

.emotion-copy img {
    width: 100%;
    max-width: 280px;
    max-height: 84px;
    object-fit: contain;
    object-position: left;
    align-self: flex-start;
    opacity: 0.82;
}

.emotion-tags {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.emotion-tag {
    min-height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(39, 35, 30, 0.2);
    background: #fff;
    color: #1f1d1a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.emotion-tag:hover {
    transform: translateY(-1px);
    background: #f4eee4;
    border-color: rgba(39, 35, 30, 0.34);
}

/* --- PRODUTOS (VITRINE DINÃ‚MICA) --- */
.produtos-sessao { background-color: #f6f5ef; padding: 110px 4%; color: #000; transition: background-color 0.8s ease; }
.produtos-header { max-width: 1200px; margin: 0 auto 60px; border-top: 1px solid #333; padding-top: 30px; }

.produtos-categorias {
    width: min(1500px, 100%);
    margin: 0 auto;
    display: grid;
    gap: clamp(58px, 8vw, 104px);
}

.produtos-header .section-title-label {
    display: block;
    width: fit-content;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.1rem, 5vw, 4.6rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
    text-transform: none;
    color: #111;
    font-weight: 700;
}

.product-category-section {
    scroll-margin-top: 92px;
}

.product-category-header {
    border-top: 1px solid rgba(29, 29, 31, 0.84);
    padding-top: 22px;
    margin-bottom: 34px;
}

.product-category-header h2 {
    max-width: none;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.1rem, 4.8vw, 4rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
    color: #111;
}

.produtos-grid { 
    display: flex; 
    flex-wrap: wrap; /* Permite que os produtos pulem linha */
    justify-content: center; 
    gap: 40px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.product-category-grid {
    width: 100%;
}

.produto-card { 
    display: flex; 
    flex-direction: column; 
    background: #fff; 
    padding: 20px; 
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    width: 300px; /* Largura fixa para manter o padrÃ£o Apple */
    border-radius: 12px; /* Cantos mais arredondados estilo Apple */
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.produto-link-detalhe {
    text-decoration: none;
    color: inherit;
}

.produto-image { 
    position: relative; 
    overflow: hidden; 
    display: flex; 
    justify-content: center; 
    padding: 20px; 
    height: 300px; /* Altura fixa para alinhar os cards */
}

.produto-image img { 
    max-width: 100%; 
    max-height: 100%;
    object-fit: contain; /* Garante que a foto nÃ£o corte */
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1); 
}

.produto-image .produto-link-detalhe {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.produto-card:hover { transform: translateY(-5px); }
.produto-card:hover .produto-image img { transform: scale(1.08); }

.produto-destaque-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    background: #fff3c7;
    color: #785300;
    border: 1px solid #f3d87a;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 10px;
}

.produto-fav-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.78);
    color: #fff;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.produto-info { padding: 15px 5px; }
.produto-info h3 { font-size: 1.1rem; font-weight: 500; margin-bottom: 8px; }
.produto-subtitle-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.exclusive-topics-row {
    margin-top: 16px;
    margin-bottom: 0;
}

.produto-subtitle-row span {
    padding: 6px 10px;
    border-radius: 999px;
    background: #f2ede4;
    border: 1px solid rgba(39, 35, 30, 0.1);
    color: #5e5549;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.destaque-subtitle-row {
    margin-bottom: 14px;
}
.preco { font-weight: 600; color: #1d1d1f; }
.produto-estoque {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #6e6e73;
    font-weight: 600;
}

.produto-estoque.is-empty {
    color: #9b2c2c;
}

.btn-comprar { 
    position: absolute; bottom: 0; left: 0; width: 100%; 
    background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
    color: #fff; border: none; padding: 15px; 
    transform: translateY(101%); transition: transform 0.4s ease; cursor: pointer; 
}
.produto-card:hover .btn-comprar { transform: translateY(0); }

.btn-comprar:disabled {
    transform: translateY(0);
    background: rgba(33, 30, 28, 0.62);
    color: rgba(255, 255, 255, 0.78);
    cursor: not-allowed;
}

.btn-comprar.is-loading {
    transform: translateY(0);
    background: rgba(33, 30, 28, 0.72);
    cursor: progress;
}

.btn-comprar.is-done {
    transform: translateY(0);
    background: linear-gradient(135deg, #2f6f4e, #5e8f69);
}

/* --- APRESENTACAO DO PRODUTO | VERSAO CURADA --- */
.apresentacao-detalhada {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: clamp(76px, 8vh, 96px) 0 clamp(34px, 5vh, 56px);
    color: #f7f4ef;
    background: #161412;
}

.destaque-bg-video,
.destaque-bg-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.destaque-bg-video {
    object-fit: cover;
    opacity: 0.36;
    filter: saturate(0.95) contrast(1.08) brightness(0.72);
}

.destaque-bg-overlay {
    background:
        radial-gradient(circle at 18% 18%, rgba(214, 190, 151, 0.18), transparent 34%),
        linear-gradient(90deg, rgba(18, 16, 14, 0.92) 0%, rgba(24, 22, 19, 0.76) 46%, rgba(17, 16, 15, 0.92) 100%);
    z-index: 1;
}

.apple-layout-container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
}

.product-showcase {
    min-height: calc(100vh - 142px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.88fr);
    align-items: center;
    gap: clamp(24px, 4vw, 54px);
}

.image-sticky {
    position: relative;
    min-height: 0;
    height: min(68vh, 620px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: clamp(24px, 3vw, 38px);
    border: 1px solid rgba(236, 221, 198, 0.16);
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.13), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(12, 12, 12, 0.26));
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.image-sticky::after {
    content: "";
    position: absolute;
    inset: auto 10% 0;
    height: 26%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.34), transparent 70%);
    filter: blur(20px);
    opacity: 0.8;
}

.img-hero-apple {
    position: relative;
    z-index: 1;
    max-width: 86%;
    max-height: 86%;
    object-fit: contain;
    filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.36));
}

.info-scrolling {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.content-block {
    margin: 0;
    padding: clamp(24px, 3vw, 36px);
    border-left: 4px solid transparent;
    border-radius: clamp(24px, 3vw, 32px);
    border-top: 1px solid rgba(236, 221, 198, 0.24);
    border-right: 1px solid rgba(236, 221, 198, 0.16);
    border-bottom: 1px solid rgba(236, 221, 198, 0.12);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055));
    backdrop-filter: blur(8px);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
    transition: border 0.5s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.content-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 62px rgba(0, 0, 0, 0.34);
}

/* Classes para animação de scroll */
.reveal-on-scroll, .bento-item, .content-block, .apple-title, .apple-description, .produto-card, .essencia-card, .contact-shell, .contact-icon-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.reveal-visible { opacity: 1 !important; transform: translateY(0) !important; }

.badge {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: rgba(236, 229, 218, 0.84);
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
}

.apple-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.15rem, 4.5vw, 4.35rem);
    font-weight: 650;
    margin-bottom: 12px;
    line-height: 0.94;
    letter-spacing: -0.035em;
    color: #f8f6f2;
    text-wrap: balance;
}

.apple-price {
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.18rem, 1.8vw, 1.55rem);
    color: #ead8b9;
    font-weight: 800;
    margin: 12px 0 14px;
}

.apple-description {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.08rem, 1.45vw, 1.38rem);
    line-height: 1.32;
    color: rgba(245, 240, 232, 0.9);
    margin-bottom: 18px;
    max-width: 40ch;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.destaque-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-apple-buy {
    min-height: 46px;
    padding: 0 26px;
    background: linear-gradient(130deg, #e8d8bd, #b99c70);
    color: #1b1a18;
    border: 1px solid rgba(244, 236, 223, 0.52);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.btn-apple-buy:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.destaque-mini-note {
    max-width: 26ch;
    color: rgba(245, 240, 232, 0.72);
    font-size: 0.82rem;
    line-height: 1.35;
}

.destaque-trust,
.bento-grid {
    display: none !important;
}

.destaque-carousel-slot {
    width: 100%;
    min-width: 0;
}

.destaque-carousel-controls {
    width: 100%;
    margin: 0;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(236, 221, 198, 0.16);
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 8px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
}

.destaque-carousel-track {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.destaque-carousel-track::-webkit-scrollbar {
    display: none;
}

.destaque-carousel-nav {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(245, 240, 232, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(245, 240, 232, 0.86);
    cursor: pointer;
    display: grid;
    place-items: center;
}

.destaque-carousel-nav:hover {
    background: rgba(255, 255, 255, 0.18);
}

.destaque-carousel-dot {
    flex: 0 0 auto;
    min-height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(245, 240, 232, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(245, 240, 232, 0.8);
    padding: 0 16px;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.035em;
    cursor: pointer;
    white-space: nowrap;
    scroll-snap-align: center;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.destaque-carousel-dot.active {
    background: #f3ead9;
    color: #1f1a13;
    border-color: #f3ead9;
    transform: scale(1.03);
}

/* --- NASCIMENTO DA MARCA --- */
.nossa-essencia-video { background-color: #fcfbf7; color: #000; overflow: hidden; }
.essencia-conteudo-wrapper { display: flex; min-height: 85vh; align-items: center; }
.essencia-texto-coluna { flex: 1; padding: 80px 10%; }
.essencia-titulo { font-size: 3rem; font-weight: 600; margin-bottom: 40px; letter-spacing: -1px; }
.p-essencia { color: #333; font-size: 1.15rem; line-height: 1.8; margin-bottom: 25px; }
.essencia-quote { border-left: 2px solid #000; padding-left: 30px; margin: 50px 0; font-style: italic; font-size: 1.2rem; color: #1d1d1f; }
.essencia-video-coluna { flex: 1.2; height: 100vh; }
.video-aesop-frame { width: 100%; height: 100%; position: relative; }
.video-uva-full { width: 100%; height: 100%; object-fit: cover; }

/* --- MODAL DE CONFIRMAÃ‡ÃƒO --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; z-index: 3000; transition: 0.4s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
    background: #fff; width: 90%; max-width: 500px; padding: 40px;
    border-radius: 28px; position: relative; transform: translateY(30px); transition: 0.4s;
}
.modal-overlay.active .modal-content { transform: translateY(0); }

.close-modal { position: absolute; top: 25px; right: 25px; background: none; border: none; font-size: 28px; cursor: pointer; color: #888; }
.modal-title { font-weight: 600; font-size: 1.5rem; margin-bottom: 30px; color: #1d1d1f; }
.modal-product-display { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; padding: 20px; background: #f5f5f7; border-radius: 16px; }
.mini-prod-img { width: 90px; height: 90px; object-fit: contain; }
.modal-prod-details p { font-size: 1.1rem; font-weight: 500; margin-bottom: 5px; }
.modal-prod-details span { font-weight: bold; color: #0071e3; font-size: 1.2rem; }
.modal-actions { display: flex; gap: 15px; }
.btn-continue, .btn-go-cart { flex: 1; padding: 18px; border-radius: 12px; cursor: pointer; font-size: 13px; font-weight: 600; transition: 0.3s; }
.btn-continue { background: #fff; border: 1px solid #d2d2d7; color: #1d1d1f; }
.btn-continue:hover { background: #f5f5f7; }
.btn-go-cart { background: #000; color: #fff; border: none; }
.btn-go-cart:hover { background: #333; }
.auth-notice { margin-top: 30px; padding: 15px; background: #f6f5ef; border-radius: 12px; display: flex; align-items: center; gap: 12px; font-size: 13px; color: #6e6e73; }

/* --- RESPONSIVIDADE --- */
@media (max-width: 1024px) {
    .product-showcase {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .image-sticky {
        position: relative;
        top: 0;
        width: 100%;
        height: min(56vh, 460px);
        margin-bottom: 0;
    }
    .bento-grid { grid-template-columns: 1fr; }
    .item-video { grid-column: span 1; height: 280px; }
    .essencia-conteudo-wrapper { flex-direction: column; }
    .essencia-video-coluna { width: 100%; height: 50vh; order: -1; }
    .navbar { padding: 9px 20px; }
    .content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    .box {
        min-height: 0;
        align-items: center;
        text-align: center;
    }
    .right-content { text-align: center; align-items: center; }
    .desc-texto,
    .right-content .desc-texto {
        max-width: 520px;
        margin: 0 auto;
    }
    .year-container { justify-content: center; }
    .apple-title { font-size: 2.5rem; }
    .produtos-grid { gap: 20px; }
    .emotion-board {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px auto;
        grid-template-areas:
            "main main"
            "top bottom"
            "copy copy";
    }
    .emotion-media-main {
        min-height: 220px;
    }
    .emotion-tags {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- NASCIMENTO DA MARCA | VERSAO ESTRUTURADA --- */
.nossa-essencia-video {
    background: linear-gradient(120deg, #f8f5ef 0%, #f2ece2 100%);
    color: #171717;
}

.essencia-conteudo-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 70px 5%;
    gap: 36px;
}

.essencia-texto-coluna {
    padding: 0;
}

.essencia-titulo {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 14px 0 24px;
}

.essencia-grid-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.essencia-card {
    background: #fff;
    border: 1px solid #e8dece;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 10px 24px rgba(47, 32, 15, 0.06);
}

.essencia-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #1f1f22;
}

.essencia-card p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #4c4d52;
}

.essencia-quote {
    border-left: 3px solid #101217;
    border-radius: 4px;
    margin: 28px 0 0;
    padding: 8px 0 8px 20px;
    background: rgba(255, 255, 255, 0.35);
}

.essencia-video-coluna {
    height: auto;
    min-height: 620px;
}

.video-aesop-frame {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.18);
}

.video-controls-hint {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(0, 0, 0, 0.52);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 8px 12px;
}

/* --- CONTATO + ASSINATURA --- */
.contact-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 16%, rgba(189, 169, 136, 0.15), transparent 42%),
        radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.08), transparent 40%),
        linear-gradient(140deg, #171717, #1f1e1c 56%, #292621);
    color: #fff;
    padding: 84px 5% 64px;
    border-top: 1px solid rgba(185, 164, 132, 0.24);
}

.contact-shell {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(185, 164, 132, 0.26);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 40px);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(4px);
}

.contact-shell h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3.2vw, 2.7rem);
    margin: 10px 0 12px;
    color: #f8f5ef;
}

.contact-shell .label {
    color: rgba(185, 164, 132, 0.94);
}

.contact-shell p {
    font-family: "Manrope", sans-serif;
    font-size: clamp(1rem, 1.45vw, 1.15rem);
    color: rgba(246, 241, 234, 0.86);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    line-height: 1.65;
}

.contact-icons-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.contact-icon-card {
    min-height: 96px;
    text-decoration: none;
    color: #f8f5ef;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
    border: 1px solid rgba(185, 164, 132, 0.28);
    border-radius: 22px;
    padding: 18px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    text-align: left;
    font-weight: 600;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-icon-card.primary-contact {
    background: linear-gradient(145deg, rgba(43, 139, 81, 0.92), rgba(185, 164, 132, 0.2));
    border-color: rgba(213, 225, 196, 0.45);
}

.contact-icon-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    font-size: 20px;
    color: #15120e;
    background: #f8f1e5;
    text-align: center;
}

.contact-icon-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.contact-channel {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    color: #f8f5ef;
}

.contact-value {
    font-family: "Manrope", sans-serif;
    font-size: 0.8rem;
    color: rgba(242, 236, 228, 0.76);
    line-height: 1.22;
    word-break: break-word;
}

.contact-icon-card:hover {
    transform: translateY(-4px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    border-color: rgba(235, 212, 178, 0.6);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.26);
}

.contact-icon-card:active {
    transform: translateY(-1px);
}

.contact-shell .plants-home-actions {
    justify-content: center;
    margin-top: 24px;
}

.contact-shell .plants-home-link,
.contact-shell .plants-home-link:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f4eadb, #c9a76e);
    color: #17120c;
    text-decoration: none;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.contact-shell .plants-home-link.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #f7efe3;
    border: 1px solid rgba(247, 239, 227, 0.22);
}

.contact-shell .plants-home-link:hover {
    transform: translateY(-2px);
}

/* --- NOSSA ESSENCIA | CINEMA --- */
.nossa-essencia-cinema {
    position: relative;
    overflow: hidden;
    color: #f4efe8;
    background: #09080d;
    min-height: 100vh;
}

.cinema-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cinema-film {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.6) contrast(1.08) brightness(0.55);
}

.cinema-mask {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(180, 132, 68, 0.22), transparent 36%),
        radial-gradient(circle at 88% 75%, rgba(32, 45, 70, 0.28), transparent 40%),
        linear-gradient(120deg, rgba(8, 7, 12, 0.88) 20%, rgba(8, 7, 12, 0.7) 55%, rgba(8, 7, 12, 0.9) 100%);
}

.cinema-grain {
    position: absolute;
    inset: -120%;
    opacity: 0.13;
    pointer-events: none;
    background-image: radial-gradient(#fff 0.45px, transparent 0.45px);
    background-size: 3px 3px;
    animation: grainShift 8s steps(8) infinite;
}

@keyframes grainShift {
    0% { transform: translate(0, 0); }
    20% { transform: translate(9%, -6%); }
    40% { transform: translate(-6%, 8%); }
    60% { transform: translate(7%, 5%); }
    80% { transform: translate(-4%, -7%); }
    100% { transform: translate(0, 0); }
}

.cinema-content {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 92px 6% 86px;
}

.cinema-header .label {
    color: rgba(245, 232, 211, 0.92);
}

.cinema-header h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 0.94;
    letter-spacing: -0.01em;
    margin: 16px 0 18px;
    color: #fff;
    text-wrap: balance;
}

.cinema-header p {
    max-width: 840px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.3;
    color: rgba(245, 239, 230, 0.88);
}

.cinema-story-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.cinema-story-card {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border-radius: 18px;
    padding: 22px 22px 24px;
    backdrop-filter: blur(4px);
}

.cinema-story-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: #f7ead3;
    margin-bottom: 10px;
}

.cinema-story-card p {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.32rem;
    line-height: 1.35;
    color: rgba(244, 237, 225, 0.92);
}

.cinema-branding {
    margin-top: 24px;
}

.cinema-branding h3 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin-bottom: 14px;
    color: #f8edd8;
}

.cinema-branding-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.voice-card {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(6, 8, 13, 0.48);
    padding: 16px 16px 18px;
}

.voice-card strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #f8edd8;
}

.voice-card p {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.28rem;
    line-height: 1.3;
    color: rgba(243, 237, 228, 0.9);
}

.cinema-quote {
    margin-top: 22px;
    border-left: 3px solid rgba(248, 237, 216, 0.78);
    padding: 8px 0 8px 16px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.24;
    color: rgba(255, 249, 238, 0.95);
    max-width: 860px;
}

/* --- ASSINATURA DEV --- */
.site-signature {
    background: linear-gradient(140deg, #141414, #1c1b19 52%, #25221e);
    border-top: 1px solid rgba(185, 164, 132, 0.3);
    padding: 30px 14px 32px;
}

.signature-shell {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.signature-shell p {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    color: #f8f5ef;
    margin-bottom: 8px;
}

.signature-shell small {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 0.98rem;
    color: rgba(242, 236, 228, 0.78);
    margin-bottom: 16px;
}

.dev-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    color: #f8f5ef;
    border: 1px solid rgba(185, 164, 132, 0.38);
    background: rgba(255, 255, 255, 0.08);
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.dev-email-btn:hover {
    transform: translateY(-1px);
    background: rgba(185, 164, 132, 0.18);
    border-color: rgba(185, 164, 132, 0.62);
}

.cookie-consent {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
    padding: 16px;
    border: 1px solid rgba(32, 25, 19, 0.12);
    border-radius: 20px;
    background: rgba(255, 250, 243, 0.96);
    color: #201913;
    box-shadow: 0 24px 60px rgba(32, 25, 19, 0.18);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-consent-copy strong {
    display: block;
    margin-bottom: 4px;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
}

.cookie-consent-copy p {
    margin: 0;
    max-width: 64ch;
    color: #66584b;
    line-height: 1.55;
}

.cookie-consent-copy a {
    display: inline-flex;
    margin-top: 8px;
    color: #6d5129;
    font-weight: 800;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-consent-actions button {
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(32, 25, 19, 0.18);
    border-radius: 999px;
    background: #fff;
    color: #201913;
    font-weight: 800;
    cursor: pointer;
}

.cookie-consent-actions button[data-consent="all"] {
    background: #201913;
    color: #fff;
}

@media (max-width: 1024px) {
    .search-panel {
        top: 58px;
        right: 16px;
        width: calc(100% - 32px);
    }

    .contact-icon-card {
        min-width: 0;
    }

    .site-signature p {
        font-size: 14px;
    }

    .site-signature small {
        font-size: 12px;
    }

    .cinema-content {
        padding: 74px 5% 68px;
    }

    .cinema-story-grid {
        grid-template-columns: 1fr;
    }

    .cinema-branding-grid {
        grid-template-columns: 1fr;
    }

    .cinema-story-card p,
    .voice-card p {
        font-size: 1.18rem;
    }
}

@media (max-width: 900px) {
    .navbar {
        justify-content: space-between;
        gap: 12px;
        padding: 8px 14px;
    }

    .navbar.nav-scrolled {
        padding: 7px 14px;
    }

    .navbar.menu-open {
        background: rgba(10, 10, 10, 0.76);
        backdrop-filter: blur(12px);
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
    }

    .navbar.menu-open.nav-scrolled {
        background: rgba(255, 255, 255, 0.96);
    }

    .nav-logo {
        height: 42px;
        max-width: min(250px, 54vw);
        transform: scale(1.02);
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-panel {
        display: none;
        order: 3;
        width: 100%;
        flex: 0 0 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 14px;
        border-radius: 20px;
        background: rgba(19, 18, 17, 0.82);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
    }

    .navbar.nav-scrolled .nav-panel {
        background: rgba(255, 255, 255, 0.94);
        border-color: rgba(0, 0, 0, 0.08);
    }

    .navbar.menu-open .nav-panel {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .nav-category-wrap {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-category-menu {
        position: static;
        min-width: 0;
        margin: 6px 0 0;
        padding: 6px;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: none;
        border-radius: 14px;
    }

    .nav-category-menu::before {
        display: none;
    }

    .nav-category-wrap:hover .nav-category-menu,
    .nav-category-wrap:focus-within .nav-category-menu {
        transform: none;
    }

    .nav-links a {
        margin: 0;
        padding: 12px 14px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-links .nav-category-menu a,
    .nav-scrolled .nav-links .nav-category-menu a {
        padding: 10px 12px;
        font-size: 10px;
    }

    .navbar.nav-scrolled .nav-links a {
        background: rgba(0, 0, 0, 0.04);
    }

    .nav-actions {
        margin-left: auto;
        gap: 10px;
    }

    .nav-actions .icon-btn,
    .nav-toggle {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.06);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-scrolled .nav-actions .icon-btn,
    .nav-scrolled .nav-toggle {
        background: rgba(0, 0, 0, 0.03);
        border-color: rgba(0, 0, 0, 0.1);
    }

    .user-area {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
    }

    .user-identity {
        width: 100%;
        border-radius: 18px;
        padding: 12px;
    }

    .user-copy {
        min-width: 0;
    }

    .welcome-message,
    .user-meta {
        max-width: 100%;
        white-space: normal;
        line-height: 1.35;
    }

    .nav-login-btn {
        width: 100%;
        text-align: center;
    }

    .user-quick-actions {
        width: 100%;
    }

    .nav-user-action {
        flex: 1;
    }

    .hero-container {
        min-height: auto;
        height: auto;
        padding: 126px 0 42px;
        align-items: flex-end;
    }

    .content-wrapper {
        gap: 32px;
        padding: 0 18px;
    }

    .member-spotlight {
        width: calc(100% - 36px);
        margin-top: 26px;
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .member-spotlight-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .member-spotlight-actions {
        justify-content: flex-start;
    }

    .main-logo-lockup {
        max-width: min(460px, 88vw);
        margin-bottom: 10px;
    }

    .main-logo-visual {
        width: 100%;
    }

    .year-container {
        margin-bottom: 16px;
    }

    .year-text {
        font-size: 1.9rem;
    }

    .leaf {
        width: 28px;
    }

    .desc-texto {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .emotion-shop-section {
        padding: 70px 18px 64px;
    }

    .emotion-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "main main"
            "top bottom"
            "copy copy";
        gap: 10px;
    }

    .emotion-media {
        border-radius: 18px;
    }

    .emotion-media img {
        object-position: center 28%;
    }

    .emotion-media-main {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .emotion-media-top,
    .emotion-media-bottom {
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .emotion-copy {
        gap: 14px;
        min-height: 0;
        padding: 18px 16px;
    }

    .emotion-tags {
        grid-template-columns: 1fr;
    }

    .produtos-sessao {
        padding: 74px 18px;
    }

    .produtos-header {
        margin-bottom: 28px;
    }

    .produtos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 12px;
    }

    .produto-card {
        width: auto;
        min-width: 0;
        padding: 12px;
        border-radius: 16px;
    }

    .produto-image {
        height: auto;
        min-height: 0;
        padding: 0;
        gap: 10px;
        flex-direction: column;
    }

    .produto-image .produto-link-detalhe {
        min-height: 156px;
        padding: 12px;
        border-radius: 14px;
        background: #f8f4ec;
    }

    .produto-info {
        padding: 10px 2px 4px;
    }

    .produto-info h3 {
        font-size: 0.98rem;
        margin-bottom: 6px;
    }

    .produto-subtitle-row {
        gap: 6px;
        margin-bottom: 8px;
    }

    .produto-subtitle-row span {
        padding: 5px 8px;
        font-size: 10px;
    }

    .preco {
        font-size: 0.98rem;
    }

    .produto-estoque {
        margin-top: 6px;
        font-size: 11px;
    }

    .produto-destaque-tag,
    .produto-fav-tag {
        top: 10px;
        padding: 4px 8px;
        font-size: 9px;
    }

    .btn-comprar {
        position: static;
        transform: none;
        min-height: 40px;
        padding: 10px 12px;
        border-radius: 12px;
        font-size: 0.84rem;
        line-height: 1.2;
    }

    .apresentacao-detalhada {
        padding: 80px 0 74px;
    }

    .apple-layout-container {
        padding: 0 18px;
    }

    .image-sticky {
        width: min(100%, 360px);
        height: auto;
        aspect-ratio: 4 / 5;
        margin: 0 auto 24px;
        border-radius: 22px;
    }

    .img-hero-apple {
        max-width: 76%;
        max-height: 76%;
    }

    .content-block {
        padding: 26px 20px 24px;
    }

    .apple-description {
        max-width: none;
    }

    .bento-grid {
        gap: 12px;
    }

    .bento-item {
        min-height: 180px;
        padding: 24px;
    }

    .item-video {
        height: 220px;
    }

    .bento-overlay {
        left: 18px;
        bottom: 18px;
    }

    .cinema-content {
        padding: 68px 18px 60px;
    }

    .cinema-header p {
        font-size: 1.2rem;
    }

    .cinema-story-card h3,
    .cinema-branding h3 {
        font-size: 1.5rem;
    }

    .cinema-story-card p,
    .voice-card p {
        font-size: 1.12rem;
    }

    .contact-section {
        padding: 72px 18px 56px;
    }

    .contact-icons-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-icon-card {
        width: 100%;
        min-height: 82px;
        padding: 16px;
        border-radius: 20px;
        justify-content: flex-start;
    }

    .contact-icon-card i {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .contact-icon-text {
        display: flex;
    }

    .modal-content {
        padding: 28px 18px 22px;
        border-radius: 22px;
    }

    .modal-product-display {
        gap: 14px;
        margin-bottom: 24px;
        padding: 16px;
    }

    .modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    section[id],
    main[id] {
        scroll-margin-top: 92px;
    }

    .search-panel {
        top: 76px;
        right: 12px;
        width: calc(100% - 24px);
    }

    .content-wrapper {
        gap: 24px;
    }

    .user-avatar {
        width: 32px;
        height: 32px;
    }

    .nav-user-action,
    .member-spotlight-btn {
        width: 100%;
    }

    .user-quick-actions,
    .member-spotlight-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-logout-btn {
        width: 100%;
        border-radius: 14px;
    }

    .year-text {
        font-size: 1.7rem;
    }

    .emotion-intro h2,
    .cinema-header h2 {
        line-height: 1;
    }

    .emotion-copy h3 {
        font-size: clamp(2.05rem, 9vw, 2.6rem);
    }

    .emotion-board {
        gap: 8px;
    }

    .emotion-media {
        border-radius: 16px;
    }

    .emotion-media-main {
        aspect-ratio: 16 / 11;
    }

    .emotion-media-top,
    .emotion-media-bottom {
        aspect-ratio: 1 / 0.92;
    }

    .emotion-copy {
        padding: 16px 14px;
    }

    .emotion-copy img {
        max-width: 220px;
        max-height: 68px;
    }

    .produto-card {
        padding: 10px;
        border-radius: 16px;
    }

    .produto-image .produto-link-detalhe {
        min-height: 144px;
        padding: 10px;
    }

    .produto-info h3 {
        font-size: 0.92rem;
    }

    .produto-subtitle-row span {
        padding: 4px 7px;
        font-size: 9px;
    }

    .preco {
        font-size: 0.92rem;
    }

    .produto-estoque {
        font-size: 10px;
    }

    .btn-comprar {
        min-height: 38px;
        padding: 9px 10px;
        font-size: 0.78rem;
    }

    .apple-title {
        font-size: 2rem;
    }

    .apple-description {
        font-size: 1.15rem;
    }

    .member-spotlight {
        width: calc(100% - 24px);
        margin-top: 22px;
        padding: 16px;
        border-radius: 22px;
    }

    .member-spotlight-title {
        font-size: 1.8rem;
    }

    .member-spotlight-description {
        font-size: 1.08rem;
    }

    .member-spotlight-metrics {
        grid-template-columns: 1fr;
    }

    .image-sticky {
        width: min(100%, 290px);
        border-radius: 18px;
    }

    .img-hero-apple {
        max-width: 72%;
        max-height: 72%;
    }

    .destaque-trust span {
        width: 100%;
        justify-content: center;
    }

    .bento-item h3 {
        font-size: 1.05rem;
    }

    .cinema-story-card,
    .voice-card {
        padding: 18px 16px;
    }

    .contact-shell {
        text-align: center;
    }

    .signature-shell {
        text-align: left;
    }

    .contact-shell p,
    .signature-shell small {
        line-height: 1.45;
    }

    .contact-icons-row {
        gap: 10px;
    }

    .contact-icon-card {
        width: 100%;
        min-height: 76px;
        min-width: 0;
        padding: 14px;
        border-radius: 18px;
    }

    .contact-icon-card i {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .dev-email-btn {
        width: 100%;
        justify-content: center;
    }

    .modal-title {
        font-size: 1.28rem;
        margin-bottom: 20px;
    }

    .modal-product-display {
        flex-direction: column;
        text-align: center;
    }

    .auth-notice {
        align-items: flex-start;
    }
}

.nature-portal-section {
    padding: 88px 24px 32px;
    background:
        linear-gradient(135deg, rgba(10, 23, 19, 0.92), rgba(15, 35, 29, 0.68)),
        url("Natureza.jpg") center/cover no-repeat;
}

.nature-portal-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: center;
}

.nature-portal-copy h2 {
    margin: 16px 0 18px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    line-height: 0.94;
    letter-spacing: -0.03em;
    color: #f6f1e8;
}

.nature-portal-copy p {
    max-width: 620px;
    margin: 0;
    color: rgba(246, 241, 232, 0.78);
    font-size: 1.08rem;
    line-height: 1.7;
}

.nature-portal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.nature-portal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #dcc7a4, #f2e3c6);
    color: #16241f;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.nature-portal-btn.secondary {
    background: transparent;
    color: #f6f1e8;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.nature-portal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.16);
}

.nature-portal-visual {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.nature-portal-visual img {
    width: 100%;
    aspect-ratio: 0.96 / 1;
    object-fit: cover;
    filter: saturate(0.9);
}

.nature-portal-badge {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(245, 240, 230, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(20px);
    color: #f8f3eb;
}

.nature-portal-badge strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.nature-portal-badge span {
    color: rgba(248, 243, 235, 0.76);
    line-height: 1.5;
}

@media (max-width: 920px) {
    .nature-portal-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .nature-portal-section {
        padding: 72px 18px 24px;
    }

    .nature-portal-actions {
        flex-direction: column;
    }
}

.plants-home-section {
    --plants-bg: #08130d;
    --plants-panel: rgba(17, 34, 22, 0.74);
    --plants-panel-soft: rgba(230, 239, 224, 0.08);
    --plants-card: rgba(14, 26, 18, 0.92);
    --plants-border: rgba(226, 235, 220, 0.12);
    --plants-copy: #f3f5ef;
    --plants-muted: rgba(243, 245, 239, 0.72);
    --plants-accent: #d8c7a4;
    --plants-green: #93c46e;
    position: relative;
    overflow: hidden;
    padding: 108px 24px 84px;
    color: var(--plants-copy);
    background:
        radial-gradient(circle at 18% 18%, rgba(113, 157, 88, 0.26), transparent 0 28%),
        radial-gradient(circle at 85% 12%, rgba(219, 199, 163, 0.15), transparent 0 24%),
        linear-gradient(180deg, rgba(9, 20, 12, 0.52), rgba(7, 13, 9, 0.84)),
        url("Natureza.jpg") center center / cover fixed no-repeat,
        linear-gradient(180deg, #102117 0%, #08110b 100%);
    isolation: isolate;
}

.plants-home-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(6, 14, 9, 0.52), rgba(11, 21, 14, 0.74)),
        radial-gradient(circle at 30% 20%, rgba(114, 160, 88, 0.18), transparent 0 28%);
    opacity: 1;
    z-index: -2;
}

.plants-home-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 12, 8, 0.02), rgba(6, 12, 8, 0.38)),
        radial-gradient(circle at 70% 30%, rgba(113, 157, 88, 0.12), transparent 34%);
    z-index: -1;
}

.plants-home-shell {
    width: min(1220px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.plants-home-head,
.plants-home-toolbar,
.plant-hero-card,
.plants-home-catalog,
.plants-home-promo-card {
    border: 1px solid var(--plants-border);
    background: linear-gradient(180deg, rgba(17, 31, 21, 0.82), rgba(10, 20, 13, 0.92));
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.plants-home-head {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) auto;
    gap: 26px;
    align-items: end;
    padding: 34px 36px;
    border-radius: 34px;
}

.plants-home-head-copy {
    min-width: 0;
}

.plants-home-section .label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(243, 245, 239, 0.72);
}

.plants-home-section .label::before {
    content: "";
    width: 26px;
    height: 1px;
    background: rgba(243, 245, 239, 0.46);
}

.plants-home-head h2 {
    max-width: 840px;
    margin: 16px 0 16px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.1rem, 5.6vw, 5.5rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    color: var(--plants-copy);
}

.plants-home-head p {
    max-width: 720px;
    margin: 0;
    color: var(--plants-muted);
    line-height: 1.72;
    font-size: 1.02rem;
}

.plants-home-story-note {
    display: grid;
    gap: 10px;
    max-width: 720px;
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(243, 245, 239, 0.08), rgba(243, 245, 239, 0.03));
    border: 1px solid rgba(243, 245, 239, 0.1);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.plants-home-story-note strong {
    color: var(--plants-copy);
    font-size: 0.94rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.plants-home-story-note p {
    margin: 0;
    max-width: none;
    color: rgba(243, 245, 239, 0.78);
    line-height: 1.76;
    font-size: 0.98rem;
}

.plants-home-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.plants-home-section .plants-home-link,
.plants-home-section .plants-home-link:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f0eadf, #d7c49f);
    color: #122014;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.plants-home-section .plants-home-link.secondary {
    background: rgba(243, 245, 239, 0.04);
    color: var(--plants-copy);
    border: 1px solid rgba(243, 245, 239, 0.14);
}

.plants-home-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 22px 24px;
    border-radius: 30px;
}

.plants-home-search-block,
.plants-home-filter-block {
    display: grid;
    gap: 12px;
}

.plants-home-search-label,
.plants-home-filter-label {
    margin: 0;
    color: rgba(243, 245, 239, 0.68);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.plants-home-search-field {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    padding: 0 16px 0 18px;
    border-radius: 22px;
    background: rgba(243, 245, 239, 0.06);
    border: 1px solid rgba(243, 245, 239, 0.08);
}

.plants-home-search-field i {
    color: rgba(243, 245, 239, 0.6);
}

.plants-home-search-field input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    color: var(--plants-copy);
    font-size: 1rem;
}

.plants-home-search-field input::placeholder {
    color: rgba(243, 245, 239, 0.42);
}

.plants-home-search-button {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 16px;
    background: rgba(86, 133, 75, 0.32);
    color: var(--plants-copy);
    cursor: pointer;
}

.plants-home-chip-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.plants-home-chip {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(243, 245, 239, 0.12);
    background: rgba(243, 245, 239, 0.04);
    color: rgba(243, 245, 239, 0.88);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.plants-home-chip:hover,
.plants-home-chip.is-active {
    transform: translateY(-1px);
    background: rgba(137, 188, 102, 0.18);
    border-color: rgba(137, 188, 102, 0.42);
}

.plants-home-featured,
.plants-home-grid,
.plants-home-promo {
    display: grid;
}

.plant-hero-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: 0;
    overflow: hidden;
    border-radius: 38px;
}

.plant-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 25%, rgba(112, 153, 91, 0.22), transparent 0 28%),
        linear-gradient(90deg, rgba(5, 11, 7, 0.16), transparent 40%);
    pointer-events: none;
}

.plant-hero-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
    align-content: center;
    padding: 42px 40px;
}

.plant-hero-kicker {
    margin: 0;
    color: rgba(243, 245, 239, 0.62);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.plant-hero-copy h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    color: var(--plants-copy);
    font-size: clamp(3rem, 5.2vw, 5.8rem);
    line-height: 0.9;
    letter-spacing: -0.045em;
}

.nature-subtitle-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nature-subtitle-row span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
}

.plant-hero-subtitles {
    margin-top: -2px;
}

.plant-hero-subtitles span {
    background: rgba(243, 245, 239, 0.1);
    border: 1px solid rgba(243, 245, 239, 0.12);
    color: rgba(243, 245, 239, 0.86);
}

.plant-hero-price {
    color: var(--plants-accent);
    font-size: 1.55rem;
    font-weight: 700;
}

.plant-hero-description {
    max-width: 560px;
    color: var(--plants-muted);
    line-height: 1.75;
}

.plant-hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.plant-hero-fact {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(243, 245, 239, 0.05);
    border: 1px solid rgba(243, 245, 239, 0.08);
}

.plant-hero-fact strong {
    color: rgba(243, 245, 239, 0.62);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.plant-hero-fact span {
    color: var(--plants-copy);
    line-height: 1.4;
}

.plant-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.plant-hero-btn,
.plant-hero-btn:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f1eadf, #d9c59f);
    color: #122014;
    text-decoration: none;
    font-weight: 700;
}

.plant-hero-btn.secondary {
    background: transparent;
    color: var(--plants-copy);
    border: 1px solid rgba(243, 245, 239, 0.14);
}

.plant-hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: 34px;
    overflow: hidden;
}

.plant-hero-visual::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top, rgba(213, 225, 199, 0.2), transparent 0 38%),
        rgba(243, 245, 239, 0.06);
    border: 1px solid rgba(243, 245, 239, 0.08);
}

.plant-hero-image-shell {
    position: relative;
    z-index: 1;
    width: min(100%, 440px);
    aspect-ratio: 0.88 / 1;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.3);
}

.plant-hero-image-shell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plant-hero-badge {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(243, 245, 239, 0.88);
    color: #162218;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.plant-hero-floating {
    position: absolute;
    right: 30px;
    bottom: 28px;
    z-index: 2;
    display: grid;
    gap: 6px;
    max-width: 220px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(8, 15, 10, 0.74);
    border: 1px solid rgba(243, 245, 239, 0.12);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.28);
}

.plant-hero-floating strong {
    color: var(--plants-copy);
    font-size: 1rem;
}

.plant-hero-floating span {
    color: var(--plants-muted);
    line-height: 1.55;
    font-size: 0.92rem;
}

.plant-hero-floating small {
    color: rgba(243, 245, 239, 0.78);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plants-home-catalog {
    gap: 24px;
    padding: 28px;
    border-radius: 34px;
}

.plants-home-catalog-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
}

.plants-home-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(137, 188, 102, 0.12);
    color: rgba(240, 244, 236, 0.84);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.plants-home-catalog-head h3 {
    margin: 16px 0 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 0.96;
    color: var(--plants-copy);
}

.plants-home-catalog-head p {
    max-width: 360px;
    margin: 0;
    color: var(--plants-muted);
    line-height: 1.65;
    text-align: right;
}

.plants-home-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 18px;
}

.plant-home-card {
    display: grid;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(243, 245, 239, 0.08);
    background: linear-gradient(180deg, rgba(243, 245, 239, 0.05), rgba(243, 245, 239, 0.02));
    min-height: 100%;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.plant-home-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 223, 171, 0.22);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22);
}

.plant-home-card.is-selected {
    border-color: rgba(200, 223, 171, 0.38);
    box-shadow: 0 24px 46px rgba(34, 64, 39, 0.24);
}

.plant-home-card-media {
    position: relative;
    display: block;
    width: 100%;
    appearance: none;
    padding: 20px 20px 0;
    text-decoration: none;
    border: none;
    background: transparent;
    text-align: left;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.plant-home-card-media::before {
    content: "";
    position: absolute;
    inset: 16px 16px auto;
    height: calc(100% - 16px);
    border-radius: 24px 24px 0 0;
    background: linear-gradient(180deg, rgba(239, 245, 236, 0.16), rgba(239, 245, 236, 0.05));
}

.plant-home-card-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.08;
    object-fit: contain;
    object-position: center;
    border-radius: 22px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(239, 245, 236, 0.94), rgba(239, 245, 236, 0.48));
    transition: transform 0.45s ease;
}

.plant-home-card:hover .plant-home-card-media img {
    transform: translateY(-4px) scale(1.02);
}

.plant-home-card-badge {
    position: absolute;
    left: 30px;
    top: 30px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(8, 15, 10, 0.76);
    color: rgba(243, 245, 239, 0.92);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plant-home-card-body {
    display: grid;
    gap: 14px;
    padding: 22px 22px 24px;
}

.plant-home-card-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
}

.plant-home-card-eyebrow {
    margin: 0 0 6px;
    color: rgba(243, 245, 239, 0.52);
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.plant-home-card-body h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    color: var(--plants-copy);
    font-size: 2.05rem;
    line-height: 0.94;
}

.plant-home-card-title-link,
.plant-home-card-title-link:visited {
    color: inherit;
    text-decoration: none;
}

.plant-home-card-title-link:hover {
    color: var(--plants-accent);
}

.plant-home-subtitles {
    margin-top: 8px;
}

.plant-home-subtitles span {
    background: rgba(137, 188, 102, 0.12);
    border: 1px solid rgba(137, 188, 102, 0.2);
    color: rgba(243, 245, 239, 0.86);
}

.plant-home-card-plus,
.plant-home-card-plus:visited {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(137, 188, 102, 0.16);
    border: 1px solid rgba(137, 188, 102, 0.28);
    color: var(--plants-copy);
    text-decoration: none;
    flex-shrink: 0;
    cursor: pointer;
}

.plant-home-card-plus {
    border: none;
    appearance: none;
}

.plant-home-card.is-selected .plant-home-card-plus {
    background: rgba(214, 231, 191, 0.22);
    border-color: rgba(214, 231, 191, 0.3);
}

.plant-home-card-description {
    margin: 0;
    color: var(--plants-muted);
    line-height: 1.7;
}

.plant-home-card-footer {
    display: grid;
    gap: 12px;
}

.plant-home-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    appearance: none;
    padding: 0 18px;
    border: 1px solid rgba(200, 223, 171, 0.24);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(200, 223, 171, 0.2), rgba(137, 188, 102, 0.1));
    color: var(--plants-copy);
    text-decoration: none;
    font: inherit;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.plant-home-card.is-selected .plant-home-card-cta {
    border-color: rgba(215, 228, 198, 0.42);
    background: linear-gradient(135deg, rgba(215, 228, 198, 0.3), rgba(137, 188, 102, 0.16));
}

.plant-home-card-cta:hover {
    transform: translateY(-1px);
    border-color: rgba(200, 223, 171, 0.38);
    background: linear-gradient(135deg, rgba(214, 231, 191, 0.28), rgba(137, 188, 102, 0.14));
}

.plant-home-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.plant-home-card-meta span {
    color: rgba(243, 245, 239, 0.72);
}

.plant-home-card-meta strong {
    color: var(--plants-accent);
    font-size: 1.12rem;
}

.plants-home-empty {
    grid-column: 1 / -1;
    display: grid;
    gap: 16px;
    padding: 32px;
    border-radius: 24px;
    background: rgba(243, 245, 239, 0.04);
    border: 1px dashed rgba(243, 245, 239, 0.14);
}

.plants-home-empty h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--plants-copy);
}

.plants-home-empty p {
    margin: 0;
    color: var(--plants-muted);
    line-height: 1.65;
}

.plants-home-reset {
    justify-self: start;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(243, 245, 239, 0.14);
    border-radius: 999px;
    background: transparent;
    color: var(--plants-copy);
    cursor: pointer;
}

.plants-home-promo-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 22px;
    align-items: center;
    padding: 30px 32px;
    border-radius: 32px;
}

.plants-home-promo-copy {
    display: grid;
    gap: 12px;
}

.plants-home-promo-copy h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    line-height: 0.96;
    color: var(--plants-copy);
}

.plants-home-promo-copy p {
    margin: 0;
    color: var(--plants-muted);
    line-height: 1.72;
}

.plants-home-promo-stats {
    display: grid;
    gap: 12px;
}

.plants-home-promo-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 20px;
    background: rgba(243, 245, 239, 0.05);
    border: 1px solid rgba(243, 245, 239, 0.08);
    color: var(--plants-copy);
}

.plants-home-promo-pill span {
    color: var(--plants-muted);
}

.events-home-section {
    --events-bg: #e6efe3;
    --events-surface: #f7f4ec;
    --events-surface-soft: rgba(255, 255, 255, 0.68);
    --events-border: rgba(29, 55, 38, 0.1);
    --events-copy: #173325;
    --events-muted: rgba(23, 51, 37, 0.68);
    --events-accent: #d9c49f;
    position: relative;
    overflow: hidden;
    padding: 94px 24px 88px;
    background:
        radial-gradient(circle at 12% 14%, rgba(129, 167, 111, 0.24), transparent 0 20%),
        radial-gradient(circle at 88% 16%, rgba(221, 203, 167, 0.24), transparent 0 22%),
        linear-gradient(180deg, #d9e7d7 0%, #e5efe3 42%, #eef4ea 100%);
    color: var(--events-copy);
}

.events-home-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
        url("Natureza.jpg") center center / cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.events-home-shell {
    position: relative;
    z-index: 1;
    width: min(1220px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.events-home-head,
.events-home-hero,
.events-home-city-section,
.events-home-featured-section,
.events-home-timeline-section {
    border: 1px solid var(--events-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 244, 236, 0.96));
    box-shadow: 0 28px 56px rgba(19, 39, 28, 0.08);
    backdrop-filter: blur(18px);
}

.events-home-head {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    gap: 24px;
    align-items: end;
    padding: 34px 36px;
    border-radius: 36px;
}

.events-home-head-copy .label {
    color: rgba(23, 51, 37, 0.72);
}

.events-home-head-copy .label::before {
    background: rgba(23, 51, 37, 0.34);
}

.events-home-head-copy h2 {
    max-width: 840px;
    margin: 16px 0 16px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 5.4vw, 5.1rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
}

.events-home-head-copy p {
    max-width: 720px;
    margin: 0;
    color: var(--events-muted);
    line-height: 1.72;
}

.events-home-head-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.events-home-metric {
    min-width: 130px;
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(31, 71, 49, 0.06);
}

.events-home-metric strong {
    font-size: 1.8rem;
    line-height: 1;
}

.events-home-metric span {
    color: var(--events-muted);
    font-size: 0.9rem;
}

.events-home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 26px;
    padding: 34px 36px;
    border-radius: 36px;
}

.events-home-copy {
    display: grid;
    align-content: center;
    gap: 18px;
}

.events-home-kicker,
.events-home-block-kicker,
.events-home-city-pill,
.events-home-stage-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(73, 118, 83, 0.12);
    color: rgba(23, 51, 37, 0.76);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.events-home-copy h3 {
    max-width: 580px;
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.9rem, 5.2vw, 5rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
}

.events-home-copy p {
    max-width: 560px;
    margin: 0;
    color: var(--events-muted);
    line-height: 1.76;
}

.events-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.events-home-btn,
.events-home-btn:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f0eadf, #d7c49f);
    color: #183325;
    text-decoration: none;
    font-weight: 700;
}

.events-home-btn.secondary {
    background: transparent;
    color: var(--events-copy);
    border: 1px solid rgba(23, 51, 37, 0.14);
}

.events-home-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 520px;
}

.events-home-arch {
    position: relative;
    width: min(100%, 420px);
    aspect-ratio: 0.82 / 1.04;
    padding: 20px 20px 0;
    overflow: hidden;
    border-radius: 240px 240px 30px 30px;
    background: linear-gradient(180deg, #dce8db 0%, #edf3ea 60%, #dbe8dc 100%);
    box-shadow: 0 24px 44px rgba(17, 37, 25, 0.14);
}

.events-home-arch::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 60%;
    height: 22px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(16, 34, 22, 0.12);
    filter: blur(10px);
}

.events-home-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 220px 220px 24px 24px;
}

.events-home-stage {
    position: absolute;
    right: 0;
    bottom: 14px;
    display: grid;
    gap: 8px;
    width: min(76%, 300px);
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(16, 36, 24, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f7f4ec;
    box-shadow: 0 20px 36px rgba(12, 25, 16, 0.18);
}

.events-home-stage strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 0.96;
}

.events-home-stage p {
    margin: 0;
    color: rgba(247, 244, 236, 0.76);
    line-height: 1.6;
}

.events-home-city-section,
.events-home-featured-section,
.events-home-timeline-section {
    display: grid;
    gap: 22px;
    padding: 28px;
    border-radius: 32px;
}

.events-home-block-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.events-home-block-head h3 {
    margin: 14px 0 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.3rem, 4.1vw, 3.8rem);
    line-height: 0.94;
}

.events-home-block-head p {
    margin: 0;
    color: var(--events-muted);
    line-height: 1.7;
}

.events-home-cities-grid,
.events-home-featured-grid {
    display: grid;
    gap: 20px;
}

.events-home-cities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.events-home-city-card,
.events-home-card,
.events-home-empty {
    border-radius: 28px;
    background: #faf7f0;
    border: 1px solid rgba(23, 51, 37, 0.08);
    box-shadow: 0 18px 36px rgba(16, 33, 22, 0.08);
}

.events-home-city-card {
    display: grid;
    gap: 14px;
    padding: 24px;
}

.events-home-city-card strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.1rem;
    line-height: 0.96;
}

.events-home-city-card p {
    margin: 0;
    color: #576960;
    line-height: 1.7;
}

.events-home-city-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #355444;
    font-size: 0.92rem;
}

.events-home-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.events-home-card {
    overflow: hidden;
}

.events-home-card-media {
    display: block;
}

.events-home-card-media img {
    width: 100%;
    aspect-ratio: 1 / 0.78;
    object-fit: cover;
}

.events-home-card-body {
    display: grid;
    gap: 16px;
    padding: 24px;
}

.events-home-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #5a6b62;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.events-home-card-body h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 0.96;
}

.events-home-card-body p {
    margin: 0;
    color: #55675d;
    line-height: 1.7;
}

.events-home-card-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.events-home-card-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(73, 118, 83, 0.08);
    color: #365545;
    font-size: 0.86rem;
}

.events-home-card-link {
    color: #183325;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.events-home-timeline {
    display: grid;
    gap: 14px;
}

.events-home-timeline-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(73, 118, 83, 0.06);
}

.events-home-timeline-index {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 51, 37, 0.12);
    color: #183325;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.events-home-timeline-copy {
    display: grid;
    gap: 6px;
}

.events-home-timeline-copy strong {
    color: #183325;
    font-size: 1.02rem;
}

.events-home-timeline-copy p {
    margin: 0;
    color: #5b6e64;
}

.events-home-timeline-link {
    color: #183325;
    text-decoration: none;
    font-weight: 800;
}

.events-home-empty {
    padding: 26px;
}

.events-home-empty h4 {
    margin: 0 0 10px;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}

.events-home-empty p {
    margin: 0;
    color: #5a6b62;
    line-height: 1.7;
}

@media (max-width: 1080px) {
    .plants-home-head,
    .plants-home-toolbar,
    .plant-hero-card,
    .plants-home-promo-card,
    .events-home-head,
    .events-home-hero {
        grid-template-columns: 1fr;
    }

    .plants-home-actions,
    .plants-home-chip-list {
        justify-content: flex-start;
    }

    .plants-home-catalog-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .plants-home-catalog-head p {
        max-width: none;
        text-align: left;
    }

    .plants-home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plant-hero-visual {
        min-height: 520px;
    }

    .events-home-head-metrics,
    .events-home-cities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .events-home-featured-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .plants-home-section {
        padding: 82px 18px 60px;
    }

    .events-home-section {
        padding: 78px 18px 60px;
    }

    .plants-home-head,
    .plants-home-toolbar,
    .plants-home-catalog,
    .plants-home-promo-card,
    .events-home-head,
    .events-home-hero,
    .events-home-city-section,
    .events-home-featured-section,
    .events-home-timeline-section {
        border-radius: 28px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .plants-home-head {
        padding-top: 26px;
        padding-bottom: 26px;
    }

    .plants-home-head h2 {
        font-size: clamp(2.6rem, 11vw, 4.4rem);
    }

    .plants-home-story-note {
        padding: 16px 18px;
    }

    .plants-home-toolbar {
        gap: 16px;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .plants-home-chip-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .plants-home-chip-list::-webkit-scrollbar {
        height: 0;
    }

    .plant-hero-copy {
        padding: 28px 24px;
    }

    .plant-hero-copy h3 {
        font-size: clamp(2.8rem, 13vw, 4.6rem);
    }

    .plant-hero-facts {
        grid-template-columns: 1fr;
    }

    .plant-hero-visual {
        min-height: 360px;
        padding: 20px;
    }

    .plant-hero-image-shell {
        width: 100%;
        max-width: 380px;
    }

    .plant-hero-floating {
        right: 18px;
        left: 18px;
        bottom: 18px;
        max-width: none;
    }

    .plants-home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plant-home-card-body h3 {
        font-size: 1.7rem;
    }

    .events-home-head h2,
    .events-home-copy h3 {
        font-size: clamp(2.5rem, 11vw, 4.2rem);
    }

    .events-home-head-metrics,
    .events-home-cities-grid,
    .events-home-featured-grid {
        grid-template-columns: 1fr;
    }

    .events-home-visual {
        min-height: 360px;
    }

    .events-home-arch {
        width: min(100%, 320px);
    }

    .events-home-stage {
        position: static;
        width: 100%;
        margin-top: 14px;
    }

    .events-home-timeline-item {
        grid-template-columns: 1fr;
        justify-items: start;
    }
}

@media (max-width: 560px) {
    .plants-home-actions,
    .plant-hero-actions,
    .events-home-actions {
        flex-direction: column;
    }

    .plants-home-grid {
        grid-template-columns: 1fr;
    }

    .plants-home-story-note {
        padding: 14px 16px;
    }

    .plants-home-search-field {
        min-height: 58px;
    }

    .plant-home-card-plus,
    .plants-home-search-button {
        width: 44px;
        height: 44px;
    }

    .events-home-block-head {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* --- HOME PREMIUM REFATORADA | 2026-04-30 --- */
:root {
    --jabo-ink: #181511;
    --jabo-ink-soft: #433a31;
    --jabo-cream: #f7f2e9;
    --jabo-cream-2: #eee5d7;
    --jabo-gold: #c8a66f;
    --jabo-gold-soft: #ead8ba;
    --jabo-green: #294537;
    --jabo-card: rgba(255, 252, 246, 0.82);
    --jabo-border: rgba(44, 35, 25, 0.12);
    --jabo-shadow: 0 28px 70px rgba(42, 31, 19, 0.12);
    --jabo-grid: min(1440px, calc(100% - clamp(32px, 6vw, 96px)));
}

body {
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--jabo-cream);
    color: var(--jabo-ink);
}

.hero-container {
    isolation: isolate;
    min-height: 100svh;
    background: #0e0d0c;
    overflow: hidden;
}

.hero-container::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 62%, rgba(232, 211, 176, 0.2), transparent 0 32%),
        radial-gradient(circle at 80% 12%, rgba(35, 56, 44, 0.26), transparent 0 26%),
        linear-gradient(90deg, rgba(7, 6, 5, 0.78), rgba(11, 10, 9, 0.32) 48%, rgba(7, 6, 5, 0.72));
}

#bg-video {
    z-index: 0;
    opacity: 0;
    filter: saturate(0.94) contrast(1.06) brightness(0.8);
}

.content-wrapper {
    position: relative;
    z-index: 2;
    width: var(--jabo-grid);
    margin: 0 auto;
    padding: 118px 0 86px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: end;
    gap: clamp(20px, 3.5vw, 52px);
}

.box {
    min-height: 0;
    max-width: none;
}

.left-content {
    grid-column: span 7;
    align-items: flex-start;
}

.right-content {
    grid-column: 9 / span 4;
    align-items: flex-start;
    text-align: left;
    max-width: none;
}

.main-logo-lockup {
    max-width: min(540px, 100%);
    margin-bottom: 24px;
}

.main-logo-line {
    width: min(420px, 78%);
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.18));
}

.hero-kicker,
.hero-proof-row span,
.hero-service-card strong {
    font-family: "Manrope", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 900;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    color: #241b12;
    background: rgba(245, 232, 207, 0.92);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.hero-title {
    max-width: 820px;
    margin: 18px 0 18px;
    font-family: "Playfair Display", serif;
    font-size: clamp(3.2rem, 7.4vw, 7.6rem);
    line-height: 0.88;
    letter-spacing: -0.06em;
    color: #fff9ee;
    text-wrap: balance;
    text-shadow: 0 18px 54px rgba(0, 0, 0, 0.38);
}

.desc-texto {
    max-width: 650px;
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.72;
    color: rgba(255, 250, 242, 0.9);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.right-content .desc-texto {
    max-width: 390px;
    margin: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-btn,
.hero-btn:visited {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
}

.hero-btn-primary {
    background: linear-gradient(135deg, #f5e6cd, #c7a269 62%, #8d693a);
    color: #18110b;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}

.hero-btn-secondary {
    color: #fff7ec;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-proof-row span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    color: rgba(255, 248, 238, 0.9);
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.year-container {
    justify-content: flex-start;
    margin-bottom: 18px;
}

.hero-service-card {
    width: min(100%, 380px);
    margin-top: 24px;
    padding: 20px 22px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(14px);
}

.hero-service-card strong {
    display: block;
    color: #f6e4c8;
    margin-bottom: 9px;
}

.hero-service-card span {
    display: block;
    color: rgba(255, 250, 242, 0.84);
    line-height: 1.62;
}

.value-prop-section,
.emotion-shop-section,
.produtos-sessao,
.social-proof-section {
    background:
        radial-gradient(circle at 12% 8%, rgba(204, 167, 109, 0.12), transparent 0 28%),
        linear-gradient(180deg, #fbf8f1, #f2eadf);
    color: var(--jabo-ink);
}

.value-prop-section {
    padding: clamp(64px, 8vw, 112px) 0 48px;
    border-bottom: 1px solid rgba(44, 35, 25, 0.08);
}

.value-prop-shell,
.social-proof-shell {
    width: var(--jabo-grid);
    margin: 0 auto;
}

.value-prop-heading {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: clamp(22px, 5vw, 78px);
    align-items: end;
    margin-bottom: 28px;
    border-top: 1px solid rgba(24, 21, 17, 0.82);
    padding-top: 24px;
}

.value-prop-heading h2,
.social-proof-head h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 5.3vw, 5.4rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.value-prop-grid,
.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.value-card,
.proof-card {
    min-height: 240px;
    padding: clamp(22px, 3vw, 32px);
    border-radius: 32px;
    background: var(--jabo-card);
    border: 1px solid var(--jabo-border);
    box-shadow: var(--jabo-shadow);
    backdrop-filter: blur(12px);
}

.value-card span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    color: #6a4a1d;
    background: #fff0d0;
    border: 1px solid rgba(200, 166, 111, 0.28);
    font-weight: 900;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
}

.value-card h3,
.proof-card strong {
    display: block;
    margin: 34px 0 12px;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.55rem, 2.6vw, 2.25rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.value-card p,
.proof-card p,
.social-proof-head p {
    margin: 0;
    color: #645a50;
    line-height: 1.75;
}

.emotion-shop-section {
    padding: clamp(70px, 8vw, 118px) 0;
}

.emotion-shell,
.plants-home-shell {
    width: var(--jabo-grid);
    max-width: none;
}

.emotion-intro {
    max-width: 980px;
    margin-bottom: 34px;
    border-top: 1px solid rgba(24, 21, 17, 0.75);
    padding-top: 24px;
}

.emotion-intro h2 {
    max-width: 920px;
    font-size: clamp(2.4rem, 5.8vw, 6rem);
    line-height: 0.88;
    letter-spacing: -0.06em;
}

.emotion-intro p {
    max-width: 720px;
    font-size: 1.04rem;
}

.emotion-board {
    grid-template-columns: 1.1fr 0.82fr 1fr;
    grid-template-rows: minmax(260px, 1fr) minmax(260px, 1fr);
    gap: 18px;
}

.emotion-media,
.emotion-copy {
    border-radius: 34px;
    box-shadow: 0 24px 58px rgba(45, 33, 20, 0.1);
}

.emotion-copy {
    background:
        linear-gradient(150deg, rgba(30, 25, 20, 0.94), rgba(50, 42, 34, 0.9)),
        radial-gradient(circle at 20% 20%, rgba(200, 166, 111, 0.28), transparent 30%);
    color: #fff6e9;
    padding: clamp(24px, 3vw, 38px);
}

.emotion-copy small,
.emotion-copy h3 {
    color: #fff6e9;
}

.emotion-copy h3 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.6rem, 5.5vw, 5.8rem);
    letter-spacing: -0.06em;
}

.emotion-tags {
    margin-top: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.emotion-tag {
    min-height: 72px;
    justify-content: flex-start;
    gap: 12px;
    padding: 0 20px;
    border-radius: 24px;
    font-size: 0.92rem;
    box-shadow: 0 16px 38px rgba(49, 38, 25, 0.07);
}

.emotion-tag span {
    color: #8c6330;
    font-weight: 900;
}

.apresentacao-detalhada {
    min-height: 92vh;
    background: #171411;
}

.product-showcase {
    min-height: min(820px, calc(100svh - 96px));
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
}

.content-block {
    border-radius: 34px;
}

.btn-apple-buy {
    min-height: 52px;
    padding: 0 28px;
}

.produtos-sessao {
    padding: clamp(76px, 9vw, 132px) 0;
}

.produtos-categorias {
    width: var(--jabo-grid);
    gap: clamp(60px, 8vw, 110px);
}

.product-category-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 22px;
    border-top: 1px solid rgba(24, 21, 17, 0.84);
    padding-top: 20px;
}

.product-category-header h2 {
    font-size: clamp(2rem, 4vw, 4.3rem);
}

.produtos-grid {
    max-width: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.produto-card {
    width: auto;
    min-width: 0;
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 22px 52px rgba(41, 30, 17, 0.09);
    border: 1px solid rgba(44, 35, 25, 0.08);
}

.produto-image {
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    background: linear-gradient(145deg, #f6efe4, #fffaf2);
}

.produto-info h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.preco {
    display: inline-flex;
    align-items: center;
    margin-top: 6px;
    font-size: 1.1rem;
    color: #1f1811;
}

.btn-comprar {
    background: linear-gradient(135deg, #211811, #46311f);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nossa-essencia-cinema {
    min-height: auto;
}

.cinema-content {
    width: var(--jabo-grid);
    max-width: none;
    padding: clamp(74px, 9vw, 128px) 0;
}

.cinema-header h2 {
    max-width: 920px;
    font-size: clamp(2.4rem, 5.7vw, 6rem);
    letter-spacing: -0.055em;
}

.cinema-story-card {
    border-radius: 30px;
    padding: clamp(24px, 3vw, 36px);
}

.social-proof-section {
    padding: clamp(72px, 8vw, 116px) 0;
}

.social-proof-shell {
    display: grid;
    gap: 28px;
}

.social-proof-head {
    max-width: 980px;
    border-top: 1px solid rgba(24, 21, 17, 0.82);
    padding-top: 24px;
}

.social-proof-head p {
    max-width: 720px;
    margin-top: 18px;
    font-size: 1.04rem;
}

.proof-card {
    min-height: 210px;
}

.proof-card strong {
    margin-top: 0;
}

.contact-section {
    padding: clamp(74px, 8vw, 112px) 0 clamp(60px, 7vw, 86px);
}

.contact-shell {
    width: var(--jabo-grid);
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    text-align: left;
    align-items: center;
    gap: clamp(24px, 4vw, 52px);
    border-radius: 36px;
}

.contact-shell > .label,
.contact-shell > h2,
.contact-shell > p {
    grid-column: 1;
}

.contact-shell h2 {
    font-size: clamp(2.2rem, 5vw, 5rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
}

.contact-shell p {
    margin-left: 0;
    margin-right: 0;
}

.contact-icons-row {
    grid-column: 2;
    grid-row: 1 / span 4;
    grid-template-columns: 1fr;
}

.contact-shell .plants-home-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
}

@media (max-width: 1120px) {
    .content-wrapper,
    .value-prop-shell,
    .social-proof-shell,
    .emotion-shell,
    .plants-home-shell,
    .produtos-categorias,
    .cinema-content,
    .contact-shell {
        width: min(100% - 36px, 980px);
    }

    .content-wrapper,
    .product-showcase,
    .contact-shell,
    .value-prop-heading {
        grid-template-columns: 1fr;
    }

    .left-content,
    .right-content,
    .contact-shell > .label,
    .contact-shell > h2,
    .contact-shell > p,
    .contact-icons-row,
    .contact-shell .plants-home-actions {
        grid-column: 1;
        grid-row: auto;
    }

    .right-content {
        max-width: 620px;
    }

    .hero-title {
        max-width: 900px;
    }

    .value-prop-grid,
    .social-proof-grid,
    .produtos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .emotion-board {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "main main"
            "top bottom"
            "copy copy";
    }

    .emotion-copy {
        min-height: 280px;
    }

    .emotion-tags {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    :root {
        --jabo-grid: calc(100% - 32px);
    }

    .hero-container {
        min-height: 100svh;
        height: auto;
        padding: 104px 0 42px;
    }

    .content-wrapper {
        width: var(--jabo-grid);
        padding: 0;
        gap: 28px;
    }

    .main-logo-lockup {
        max-width: 320px;
    }

    .hero-title {
        font-size: clamp(2.55rem, 14vw, 4.7rem);
    }

    .hero-actions,
    .hero-btn {
        width: 100%;
    }

    .hero-proof-row span {
        font-size: 0.66rem;
    }

    .value-prop-section,
    .emotion-shop-section,
    .produtos-sessao,
    .social-proof-section {
        padding-left: 0;
        padding-right: 0;
    }

    .value-prop-heading,
    .value-prop-grid,
    .social-proof-grid,
    .produtos-grid,
    .cinema-story-grid {
        grid-template-columns: 1fr;
    }

    .value-card,
    .proof-card {
        min-height: auto;
        border-radius: 26px;
    }

    .emotion-board {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "top"
            "bottom"
            "copy";
    }

    .emotion-media-main,
    .emotion-media-top,
    .emotion-media-bottom {
        aspect-ratio: 4 / 3;
    }

    .emotion-tags {
        grid-template-columns: 1fr;
    }

    .product-category-header {
        grid-template-columns: 1fr;
    }

    .produto-card {
        border-radius: 24px;
    }

    .contact-shell {
        width: var(--jabo-grid);
        border-radius: 28px;
        padding: 24px 18px;
    }

    .contact-icon-card {
        min-height: 92px;
    }
}
