/* ============================================
   PENSATIVA - Sistema de Design
   Identidade: Editorial + Wellness + Botânica Contemporânea
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:wght@400;500;700&family=Cormorant+Garamond:wght@500;600;700&display=swap');

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ── PALETA BRAND ────────────────────────────── */
    --brand-ink:              #2c3326;
    --brand-ink-deep:         #252d20;
    --brand-olive:            #6b8e4e;
    --brand-sage:             #8ca672;
    --brand-terracotta:       #d97342;
    --brand-terracotta-dark:  #c76336;
    --brand-terracotta-deep:  #9b4d2b;
    --brand-apricot:          #f5a962;
    --brand-blush:            #fdeee0;
    --brand-paper:            #f1e6d4;
    --brand-forest:           #42563a;
    --brand-gray:             #b8b5a8;

    /* Superfícies */
    --surface-paper: #fffaf2;
    --surface-cream: #fdf3e8;
    --surface-warm:  #faf7f0;

    /* Linhas */
    --line-soft:      rgba(44, 51, 38, 0.13);
    --line-botanical: rgba(107, 142, 78, 0.24);

    /* Sombras */
    --shadow-paper:       0 18px 45px rgba(44, 51, 38, 0.08);
    --shadow-paper-hover: 0 24px 60px rgba(44, 51, 38, 0.12);
    --nb-border:          1px solid rgba(44, 51, 38, 0.12);
    --nb-shadow:          0 6px 16px rgba(44, 51, 38, 0.08);
    --nb-shadow-hover:    0 10px 22px rgba(44, 51, 38, 0.12);

    /* ── ALIASES LEGADOS ─────────────────────────── */
    --burnt-orange:  var(--brand-terracotta);
    --tangerine:     var(--brand-apricot);
    --leaf-green:    var(--brand-olive);
    --herb-green:    var(--brand-sage);
    --cream:         var(--brand-paper);
    --petal-peach:   var(--brand-blush);
    --sand:          var(--brand-paper);
    --warm-white:    var(--surface-warm);
    --dark-text:     var(--brand-ink);
    --soft-gray:     var(--brand-gray);
    --light-shadow:  rgba(217, 115, 66, 0.10);

    /* ── TIPOGRAFIA ──────────────────────────────── */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Alegreya Sans', -apple-system, system-ui, sans-serif;

    /* ── ESPAÇAMENTOS ────────────────────────────── */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;

    /* ── RAIOS ───────────────────────────────────── */
    --radius-soft:    20px;
    --radius-card:    26px;
    --radius-panel:   34px;
    --radius-full:    999px;
    --radius-organic: 40% 60% 50% 50% / 60% 50% 50% 40%;

    /* ── INTERATIVIDADE ──────────────────────────── */
    --touch-target: 44px;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    padding-top: 104px;
    font-family: var(--font-body);
    background:
        radial-gradient(circle at 12% 8%, rgba(245, 169, 98, 0.13), transparent 32rem),
        radial-gradient(circle at 88% 4%, rgba(140, 166, 114, 0.15), transparent 28rem),
        linear-gradient(180deg, #fff8ef 0%, var(--brand-paper) 58%, #efe2cf 100%);
    color: var(--brand-ink);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
    overscroll-behavior-y: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        linear-gradient(rgba(44, 51, 38, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(44, 51, 38, 0.018) 1px, transparent 1px);
    background-size: 42px 42px, 42px 42px;
    opacity: 0.18;
}

body.is-scroll-locked {
    overflow: hidden;
    touch-action: none;
}

/* ===== TIPOGRAFIA ELEGANTE ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.015em;
    color: var(--dark-text);
}

h1 {
    font-size: clamp(2.35rem, 4.6vw, 3.8rem);
    letter-spacing: -0.03em;
    line-height: 1.08;
}

h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.65rem);
    letter-spacing: -0.02em;
    line-height: 1.12;
}

h3 {
    font-size: clamp(1.28rem, 2.2vw, 1.75rem);
    line-height: 1.18;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ===== LAYOUT ASSIMÉTRICO E RESPIRADO ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== NAVEGAÇÃO MINIMALISTA ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    padding: 0.85rem 0;
    z-index: 1000;
    min-height: 104px;
    transition: background .28s ease, border-color .28s ease, box-shadow .28s ease, min-height .28s ease, backdrop-filter .28s ease;
}

.nav.is-scrolled {
    min-height: 76px;
    background: rgba(255, 248, 239, 0.78);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid rgba(44, 51, 38, 0.08);
    box-shadow: 0 8px 32px -20px rgba(44, 51, 38, 0.18);
}

.nav-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    min-height: 56px;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.nav-logo img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-logo:hover {
    opacity: 0.88;
}

.nav-logo:hover img {
    opacity: 0.92;
}

.nav-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.nav-brand-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.1;
    color: var(--brand-ink);
}

.nav-brand-subtitle {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    text-transform: lowercase;
    color: var(--brand-olive);
    opacity: 0.9;
    font-style: italic;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.nav-search {
    display: inline-flex;
    align-items: center;
    border: 2px solid rgba(44, 51, 38, 0.3);
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
}

.nav-search input {
    border: 0;
    padding: 0.55rem 0.75rem;
    min-width: 210px;
    font-size: 0.9rem;
}

.nav-search button {
    border: 0;
    background: var(--burnt-orange);
    color: #fff;
    padding: 0.55rem 0.75rem;
    cursor: pointer;
}

.nav-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 2px solid rgba(44, 51, 38, 0.22);
    background: #fff;
}

.nav-compare {
    white-space: nowrap;
}

.nav-links {
    position: static;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: none;
    z-index: 1;
    margin-left: 1rem;
}

.nav-links.active {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.nav-links li {
    width: auto;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--dark-text);
    padding: 0.55rem 0.7rem;
    background: transparent;
    border-radius: 0;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: '';
}

.nav-links a:hover {
    color: var(--burnt-orange);
}

.nav-links a.active {
    color: var(--burnt-orange);
}

.nav-links a.active::after {
    color: inherit;
}

/* Secondary tool/utility nav items */
.nav-links li.nav-tool-sep {
    display: inline-flex;
    align-items: center;
    padding: 0 0.3rem;
    pointer-events: none;
}
.nav-links li.nav-tool-sep::before {
    content: '';
    display: block;
    width: 1px;
    height: 1rem;
    background: var(--dark-text);
    opacity: 0.18;
}
.nav-links a.nav-tool {
    font-size: 0.88rem;
    font-weight: 500;
    opacity: 0.58;
}
.nav-links a.nav-tool:hover {
    opacity: 1;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 0;
    color: var(--dark-text);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
    color: var(--burnt-orange);
}

.nav-overlay {
    display: none;
}

.nav-close {
    display: none;
}

/* ===== COMPONENTES ORGÂNICOS ===== */

/* Hero Editorial */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-xl) 0;
    contain: layout paint;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-eyebrow {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--herb-green);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    max-width: min(36ch, 100%);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(44, 51, 38, 0.78);
    margin-bottom: 1.75rem;
    line-height: 1.65;
    max-width: 58ch;
}

.hero-tools {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-tools .btn {
    font-size: 0.86rem;
    min-height: 36px;
    padding: 0.42rem 0.85rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.hero-search {
    margin-bottom: 1.5rem;
}

.hero-search-label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--herb-green);
    font-weight: 700;
}

.hero-search-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.55rem;
}

.hero-search-row input {
    width: 100%;
    min-height: 54px;
    border: 2px solid rgba(44, 51, 38, 0.4);
    border-radius: 16px;
    padding: 0.85rem 0.95rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.92);
}

.hero-search-row .btn {
    margin: 0;
    width: auto;
    min-width: 126px;
}

.hero-search-hints {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.6rem;
}

.hero-search-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.95rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    border-radius: 999px;
    border: 1px solid var(--line-soft);
    background: rgba(241, 230, 212, 0.6);
    color: var(--brand-ink);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color .18s ease, background-color .18s ease;
}

.hero-search-chip:hover {
    background: #fff;
    border-color: var(--brand-olive);
}

.home-priority-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.priority-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.priority-card .btn {
    margin-top: auto;
}


.faq-list {
    display: grid;
    gap: 0.7rem;
}

.faq-item {
    border: 1px solid rgba(44, 51, 38, 0.16);
    border-radius: 14px;
    padding: 0.75rem 0.9rem;
    background: #fff;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
}

.faq-item p {
    margin: 0.6rem 0 0;
    color: rgba(44, 51, 38, 0.9);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

/* Decoração Botânica */
.hero-decoration {
    position: absolute;
    right: -10%;
    top: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--tangerine) 0%, transparent 70%);
    opacity: 0.15;
    border-radius: var(--radius-organic);
    z-index: 1;
    animation: float 20s ease-in-out infinite;
}

.hero-decoration-2 {
    position: absolute;
    left: -5%;
    bottom: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--leaf-green) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
    z-index: 1;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 46px;
    padding: .72rem 1rem;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--burnt-orange);
    color: white;
    box-shadow: 0 4px 12px var(--light-shadow);
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn-primary:hover {
    background: var(--brand-terracotta-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(107, 142, 78, 0.25);
}

.btn-secondary {
    background: var(--cream);
    color: var(--dark-text);
    border: 1px solid var(--leaf-green);
}

.btn-secondary:hover {
    background: var(--leaf-green);
    color: white;
}

.btn-ghost {
    background: transparent;
    color: var(--burnt-orange);
    border: 1px solid var(--burnt-orange);
}

.btn-ghost:hover {
    background: var(--burnt-orange);
    color: white;
}


.btn:disabled,
.btn[disabled],
.btn.is-disabled {
  opacity: .55;
  cursor: not-allowed;
}

.card-actions,
.association-actions,
.detail-actions,
.strain-card-actions,
.partner-actions,
.community-form-actions,
.moderation-actions,
.studio-actions {
  display: grid;
  gap: .55rem;
  align-items: stretch;
}

.association-card,
.strain-search-card {
  display: flex;
  flex-direction: column;
}

.association-actions {
  margin-top: auto;
  padding-top: .9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.association-actions .btn,
.detail-actions .btn,
.strain-card-actions .btn {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding-inline: .85rem;
  justify-content: center;
  text-align: center;
}

.detail-actions {
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Cards Editoriais */
.card {
    background: white;
    border-radius: 20px;
    padding: var(--space-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 51, 38, 0.1);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card-organic {
    border-radius: var(--radius-card);
    position: relative;
    overflow: hidden;
}

.card-organic::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--tangerine) 0%, transparent 50%);
    opacity: 0.05;
    pointer-events: none;
}

/* Seções Assimétricas */
.section {
    padding: 4rem 0;
}

.section-alternate {
    background: var(--cream);
}

.section-header {
    max-width: 600px;
    margin-bottom: var(--space-lg);
}

.strains-hero {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--herb-green);
    margin-bottom: var(--space-xs);
    font-weight: 700;
}

.section-title {
    margin-bottom: var(--space-sm);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.7;
    max-width: 56ch;
    margin: 0 auto;
}

.section-description {
    font-size: 1.1rem;
    color: var(--soft-gray);
    line-height: 1.7;
}

/* Grid Orgânico (não uniforme) */
.organic-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.organic-grid-asymmetric {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 2fr 1fr;
}

.organic-grid-asymmetric .card:first-child {
    grid-row: span 2;
}

/* Tags e Badges */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.32rem 0.75rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.2;
    border-radius: 999px;
    background: rgba(241, 230, 212, 0.7);
    color: var(--brand-ink);
    border: 1px solid var(--line-soft);
    white-space: nowrap;
    margin-right: 0.4rem;
    margin-bottom: 0.4rem;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.tag:hover {
    background: #fff;
    border-color: rgba(44, 51, 38, 0.22);
    transform: translateY(-1px);
}

.tag-thc {
    background: rgba(217, 115, 66, 0.15);
    color: var(--brand-terracotta);
    border-color: rgba(217, 115, 66, 0.30);
}

.tag-cbd {
    background: rgba(107, 142, 78, 0.15);
    color: var(--brand-olive);
    border-color: rgba(107, 142, 78, 0.30);
}

.tag-mixed {
    background: rgba(248, 201, 141, 0.6);
    color: var(--brand-ink);
    border-color: rgba(217, 115, 66, 0.40);
}

/* Badge de Confiança */
.confidence-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.32rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.2;
    border: 1px solid var(--line-soft);
    white-space: nowrap;
}

.confidence-confirmado {
    background: rgba(107, 142, 78, 0.16);
    color: var(--brand-olive);
    border-color: rgba(107, 142, 78, 0.35);
}

.confidence-comunitario {
    background: rgba(241, 230, 212, 0.7);
    color: var(--brand-ink);
    border-color: var(--line-soft);
}

.confidence-incompleto {
    background: rgba(217, 115, 66, 0.14);
    color: var(--brand-terracotta);
    border-color: rgba(217, 115, 66, 0.30);
}

.confidence-validacao {
    background: rgba(248, 201, 141, 0.65);
    color: var(--brand-ink);
    border-color: rgba(217, 115, 66, 0.40);
}

.partner-spotlight {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 360px);
    gap: var(--space-md);
    align-items: center;
    background: linear-gradient(135deg, rgba(217, 115, 66, 0.10), rgba(140, 166, 114, 0.12));
}

.partner-spotlight-media {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.partner-spotlight-media img {
    width: auto;
    max-width: min(100%, 420px);
    max-height: 320px;
    height: auto;
    object-fit: contain;
    display: block;
}

.partner-page-hero {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: var(--space-lg);
    align-items: start;
    margin-bottom: var(--space-lg);
}

.partner-logo-card {
    background: linear-gradient(145deg, rgba(245, 237, 215, 0.92), white);
    text-align: center;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.partner-logo-card img {
    width: 100%;
    max-width: min(100%, 300px);
    max-height: 240px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 1rem;
}

.partner-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0 0;
}

.partner-kpi {
    padding: 1rem;
    background: rgba(245, 237, 215, 0.75);
}

.partner-kpi-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--soft-gray);
    margin-bottom: 0.35rem;
}

.partner-kpi-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.partner-card-muted {
    background: rgba(245, 237, 215, 0.65);
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.32rem 0.85rem;
    background: rgba(217, 115, 66, 0.14);
    color: var(--brand-terracotta);
    border: 1px solid rgba(217, 115, 66, 0.30);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.partner-story p:last-child,
.partner-logo-card p:last-child,
.partner-card-muted p:last-child,
.partner-grid .card p:last-child {
    margin-bottom: 0;
}

.blog-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(44, 51, 38, 0.78);
    margin-bottom: 1.25rem;
}

.blog-breadcrumbs span:last-child {
    color: var(--burnt-orange);
    font-weight: 700;
}

.blog-category-grid,
.blog-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.blog-category-card,
.blog-post-card {
    background: linear-gradient(145deg, rgba(245, 237, 215, 0.72), white);
}

.blog-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
    padding: 0.32rem 0.85rem;
    background: rgba(107, 142, 78, 0.15);
    color: var(--brand-olive);
    border: 1px solid rgba(107, 142, 78, 0.30);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

.blog-category-card p:last-child,
.blog-post-card p:last-child {
    margin-bottom: 0;
}

.blog-section-stack {
    display: grid;
    gap: 2rem;
}

.blog-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
}

.blog-article-layout > * {
    width: min(100%, 840px);
    margin-inline: auto;
}

.blog-article-card,
.blog-article-aside {
    background: linear-gradient(145deg, rgba(245, 237, 215, 0.72), white);
}

.blog-article-card {
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.blog-article-lead {
    font-size: 1.12rem;
    color: rgba(44, 51, 38, 0.85);
    max-width: 62ch;
}

.blog-article-meta {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(245, 237, 215, 0.72);
    border-left: 4px solid var(--burnt-orange);
}

.blog-article-meta p {
    margin: 0.75rem 0 0;
}

.blog-article-card strong {
    color: #42563a;
    font-weight: 700;
}

.blog-summary-list {
    padding-left: 1.25rem;
    margin: 1rem 0 1.5rem;
}

.blog-summary-list li + li {
    margin-top: 0.45rem;
}

.blog-article-card h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-article-card p + p {
    margin-top: 1rem;
}

.blog-article-aside {
    width: min(100%, 840px);
}

.partner-timeline {
    display: grid;
    gap: 1rem;
}

.partner-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .partner-spotlight,
    .partner-page-hero {
        grid-template-columns: 1fr;
    }

    .partner-spotlight-media,
    .partner-logo-card {
        min-height: 0;
    }

    .partner-spotlight-media img,
    .partner-logo-card img {
        max-width: 220px;
    }

    .blog-article-layout {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--dark-text);
    color: var(--cream);
    padding: var(--space-lg) 0 var(--space-md);
    margin-top: var(--space-xl);
    min-height: 320px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    min-height: 180px;
}

.footer-section h4 {
    color: var(--tangerine);
    margin-bottom: var(--space-sm);
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: var(--cream);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--tangerine);
}

.footer-disclaimer {
    border-top: 1px solid rgba(241, 230, 212, 0.2);
    padding-top: var(--space-md);
    font-size: 0.9rem;
    opacity: 0.7;
    text-align: center;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .organic-grid-asymmetric {
        grid-template-columns: 1fr;
    }
    
    .organic-grid-asymmetric .card:first-child {
        grid-row: span 1;
    }
}

/* Hero pages: body has no padding-top so the hero flows under the transparent header */
body[data-page="home"] {
    padding-top: 0;
}

/* Hero needs extra top padding to clear fixed header height */
body[data-page="home"] .hero {
    padding-top: max(var(--space-xl), 7rem);
}

@media (max-width: 768px) {
    :root {
        --space-xl: 3rem;
        --space-lg: 2rem;
    }

    body {
        padding-top: 76px;
    }

    .nav-logo {
        gap: 0.75rem;
    }

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

    .nav-brand-title {
        font-size: 1.2rem;
    }

    .nav-brand-subtitle {
        display: none;
    }

  .nav-actions {
        gap: 0.5rem;
    }

    .nav-search {
        display: none;
    }

    .nav-compare {
        font-size: 0.82rem;
    }

    .nav-links {
        margin-left: 0;
        margin-top: 0.6rem;
        justify-content: center;
    }
    
    .hero {
        min-height: auto;
        padding: var(--space-lg) 0;
    }
    
    .hero-tools {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-search-row {
        grid-template-columns: 1fr;
    }

    .hero-search-row .btn {
        width: 100%;
    }

    .hero-decoration,
    .hero-decoration-2 {
        opacity: 0.05;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===== UTILIDADES ===== */
.text-center { text-align: center; }
.text-burnt-orange { color: var(--burnt-orange); }
.text-leaf-green { color: var(--leaf-green); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

/* ===== BRAND UI REFRESH (Card Play + Narrativa em Movimento) ===== */

.nav-links a {
    border: 2px solid transparent;
    border-radius: 16px;
}

.nav-links a:hover,
.nav-links a.active {
    border-color: rgba(107, 142, 78, 0.35);
    box-shadow: 0 10px 20px rgba(44, 51, 38, 0.12);
    transform: translateY(-1px);
}

.btn {
    border: var(--nb-border);
    border-radius: 999px;
    box-shadow: var(--nb-shadow);
    text-transform: none;
    letter-spacing: 0.015em;
    transition: transform .24s ease, box-shadow .24s ease, background-color .24s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--nb-shadow-hover);
}

.btn-dark {
    background: var(--brand-ink);
    color: var(--brand-blush);
    border: 1px solid var(--brand-ink);
}

.btn-dark:hover {
    background: var(--brand-olive);
    border-color: var(--brand-olive);
}

.card,
.card-organic {
    border: var(--nb-border);
    border-radius: 24px;
    box-shadow: var(--nb-shadow);
    transition: transform .3s ease, box-shadow .3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--nb-shadow-hover);
}

.hero-decoration,
.hero-decoration-2 {
    opacity: 0.24;
    filter: saturate(1.25) contrast(1.05);
    animation: heroDrift 12s ease-in-out infinite;
}

.hero-title,
.section-title {
    animation: subtleReveal .65s ease both;
}

.organic-grid .card,
.partner-grid .card,
.blog-post-card {
    animation: subtleReveal .55s ease both;
}

@keyframes subtleReveal {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroDrift {
    0%, 100% { transform: translateY(0) rotate(0.01deg); }
    50% { transform: translateY(-8px) rotate(0.01deg); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-decoration,
    .hero-decoration-2,
    .hero-title,
    .section-title,
    .organic-grid .card,
    .partner-grid .card,
    .blog-post-card {
        animation: none !important;
    }
}

/* Strain search experience */
.strain-search-shell {
  --strain-terracotta: #d97342;
  --strain-tangerine: #f5a962;
  --strain-green: #6b8e4e;
  --strain-green-soft: #8ca672;
  --strain-ink: #2c3326;
  --strain-beige: #fdeee0;
  --strain-beige-soft: #f1e6d4;
  font-family: 'Alegreya Sans', sans-serif;
  color: var(--strain-ink);
}

.strain-search-shell h1,
.strain-search-shell h2,
.strain-search-shell h3,
.strain-search-shell h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--strain-ink);
}

.strain-search-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.strain-search-mobile-controls {
  display: none;
}

.strain-active-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0 0 .75rem;
}

.strain-active-chips.is-empty {
  display: none;
}

.strain-active-chip {
    border: 1px solid rgba(107, 142, 78, 0.34);
    border-radius: 999px;
    padding: 0.32rem 0.75rem;
    background: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    color: var(--brand-ink);
    white-space: nowrap;
}

.strain-search-filters {
  position: sticky;
  top: 80px;
  z-index: 30;
  max-height: calc(100vh - 96px);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(160deg, var(--strain-beige) 0%, var(--strain-beige-soft) 100%);
  border: 1px solid rgba(107, 142, 78, 0.32);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(44, 51, 38, 0.1);
  scroll-behavior: smooth;
}

.strain-filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .65rem;
  margin-bottom: .6rem;
}

.strain-filters-header h3 {
  margin: 0;
}

.strain-search-filters label,
.strain-search-filters p,
.strain-search-filters input,
.strain-search-filters span {
  font-family: 'Alegreya Sans', sans-serif;
  color: var(--strain-ink);
}

.strain-search-filters input[type="search"] {
  width: 100%;
  border: 1px solid rgba(107, 142, 78, 0.38);
  border-radius: 12px;
  padding: .7rem .8rem;
  margin: .4rem 0 1rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--strain-ink);
}

.strain-price-group {
  margin-bottom: 1rem;
}

.strain-review-filter {
  margin-bottom: 1rem;
  padding: .6rem .65rem;
  border: 1px dashed rgba(107, 142, 78, 0.45);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
}

.strain-review-filter label {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-weight: 700;
}

.strain-review-filter p {
  margin: .45rem 0 0;
  font-size: .86rem;
  opacity: .86;
}

.strain-price-labels {
  display: flex;
  justify-content: space-between;
  color: rgba(140, 166, 114, 0.62);
  margin-bottom: .4rem;
}

.strain-checkbox-list {
  display: grid;
  gap: .35rem;
  max-height: 240px;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}

.strain-tag-list {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
}

.strain-tag-list .strain-effect-btn {
    border-radius: 999px;
    border: 1px solid rgba(217, 115, 66, 0.35);
    background: rgba(255, 255, 255, 0.7);
    color: var(--brand-ink);
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
    text-transform: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.strain-tag-list .strain-effect-btn:hover {
    transform: translateY(-1px);
    background: #fff;
    border-color: rgba(217, 115, 66, 0.55);
    box-shadow: 0 6px 14px rgba(44, 51, 38, 0.08);
}

.strain-tag-list .strain-effect-btn.active {
    background: var(--brand-terracotta);
    color: #fff;
    border-color: var(--brand-terracotta);
}

.strain-search-results-header {
  border-left: 4px solid var(--strain-green);
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(245, 169, 98, 0.18) 0%, rgba(140, 166, 114, 0.2) 100%);
  color: var(--strain-ink);
  animation: strainStoryFloat 7s ease-in-out infinite;
}

.strain-search-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .9rem;
}

.strain-results-heading {
    display: grid;
    gap: .2rem;
}

.strain-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 0;
}

.strain-cat-pill {
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--border-color, #ddd);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.strain-cat-pill:hover {
  border-color: var(--primary, #2d6a4f);
  color: var(--primary, #2d6a4f);
}

.strain-cat-pill.active {
  background: var(--primary, #2d6a4f);
  color: #fff;
  border-color: var(--primary, #2d6a4f);
}

.strain-product-cat-badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  background: var(--light-bg, #f0f0f0);
  border-radius: 4px;
  margin-top: 0.25rem;
}

.strain-search-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(44, 51, 38, 0.10);
  border-radius: 24px;
  background: rgba(250, 247, 240, 0.92);
  box-shadow: 0 18px 44px rgba(44, 51, 38, 0.08);
  color: var(--strain-ink);
  transition: transform .28s ease, box-shadow .28s ease;
  animation: strainCardEnter .45s ease both;
}

.strain-search-media {
  position: relative;
  margin: -.5rem -.5rem .95rem;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #F1E6D4;
  isolation: isolate;
}

.strain-search-media[data-image-status="missing"] {
  border: 1px dashed rgba(107, 142, 78, 0.38);
  background: linear-gradient(145deg, rgba(244, 237, 224, 0.98), rgba(236, 228, 210, 0.95));
}

.strain-search-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.38) 42%, rgba(255, 255, 255, 0) 78%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.strain-search-media.is-loading::before {
  opacity: 1;
  animation: strainImageSkeleton 1.15s ease-in-out infinite;
}

@keyframes strainImageSkeleton {
  100% {
    transform: translateX(120%);
  }
}

.strain-search-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: transparent;
}

.strain-search-media img.is-hidden {
  display: none;
}

.strain-image-badge {
    position: absolute;
    left: 0.7rem;
    bottom: 0.7rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
    background: rgba(255, 250, 242, 0.92);
    border: 1px solid rgba(44, 51, 38, 0.10);
    color: var(--brand-ink);
    white-space: nowrap;
    z-index: 2;
}

.strain-image-badge.confirmed {
    background: rgba(107, 142, 78, 0.16);
    border-color: rgba(107, 142, 78, 0.35);
    color: var(--brand-olive);
}

.strain-image-badge.reference {
    background: rgba(228, 246, 220, 0.96);
    border-color: rgba(107, 142, 78, 0.34);
}

.strain-image-badge.illustration {
    background: rgba(217, 115, 66, 0.14);
    border-color: rgba(217, 115, 66, 0.30);
    color: var(--brand-terracotta);
}

.strain-image-badge.missing {
    background: rgba(248, 201, 141, 0.55);
    border-color: rgba(217, 115, 66, 0.40);
    color: var(--brand-ink);
}

.strain-image-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: .2rem;
  padding: .9rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(140, 166, 114, .28), transparent 34%),
    radial-gradient(circle at 78% 12%, rgba(245, 169, 98, .24), transparent 28%),
    linear-gradient(135deg, #FDEEE0, #F1E6D4);
  color: #2C3326;
  z-index: 1;
}
.strain-image-placeholder.editorial {
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(114, 134, 86, .22), transparent 58%),
    radial-gradient(70% 60% at 100% 0%, rgba(185, 108, 71, .16), transparent 52%),
    linear-gradient(140deg, #F9F1E4 0%, #F2E7D5 52%, #EEE2CC 100%);
}
.strain-image-placeholder.editorial::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(115deg, rgba(87, 108, 66, 0.08) 0 2px, transparent 2px 100%),
    radial-gradient(circle at 15% 85%, rgba(107, 142, 78, 0.14), transparent 30%);
  mix-blend-mode: multiply;
  opacity: .5;
}

.strain-image-placeholder.is-visible,
.strain-search-media.has-image-error .strain-image-placeholder {
  display: flex;
}

.strain-image-placeholder strong {
  font-family: "Alegreya", "Alegreya Sans", serif;
  font-size: 1.05rem;
  line-height: 1.2;
}

.strain-image-placeholder small {
  font-size: .78rem;
  color: rgba(44, 51, 38, .64);
}

.placeholder-kicker {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(44, 51, 38, .58);
  font-weight: 700;
}

.strain-search-card-header {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  align-items: flex-start;
}

.strain-card-actions {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-top: auto;
  padding-top: 1rem;
}

.strain-card-primary-action {
  width: 100%;
  min-height: 46px;
  justify-content: center;
  text-align: center;
}

.strain-card-secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: center;
  justify-content: center;
  font-size: .92rem;
  line-height: 1.25;
}

.strain-card-link-action {
  appearance: none;
  border: 0;
  background: transparent;
  color: #D97342;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: .2rem .05rem;
  line-height: 1.2;
}

.strain-card-link-action:hover,
.strain-card-link-action:focus-visible {
  color: #2C3326;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.strain-card-link-action:focus-visible {
  outline: 2px solid rgba(217, 115, 66, 0.4);
  border-radius: 4px;
}

.strain-action-separator {
  color: rgba(44, 51, 38, .36);
}

.strain-community-cta {
  white-space: normal;
}

.strain-community-invite {
  margin: .45rem 0 0;
  font-size: .84rem;
  line-height: 1.35;
  color: rgba(44, 51, 38, 0.68);
}

.strain-match-context {
  margin: .35rem 0 0;
  font-size: .82rem;
  opacity: .88;
}

.strain-review-signals {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .35rem;
  align-items: center;
  min-height: 1.9rem;
}

.strain-community-badge,
.strain-review-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .18rem .56rem;
  font-size: .78rem;
  line-height: 1;
  border: 1px solid rgba(107, 142, 78, 0.3);
  background: rgba(255, 255, 255, 0.88);
  min-height: 1.55rem;
  white-space: nowrap;
  box-sizing: border-box;
}

.strain-community-badge {
  background: rgba(107, 142, 78, 0.16);
  border-color: rgba(107, 142, 78, 0.5);
}

.strain-review-count.has-review {
  border-color: rgba(217, 115, 66, 0.45);
  background: rgba(245, 169, 98, 0.18);
}

.strain-review-count.no-review {
  border-color: rgba(44, 51, 38, 0.2);
  background: rgba(255, 255, 255, 0.82);
}

.strain-review-count {
  min-width: 7.6rem;
  height: 1.55rem;
}

.strain-patient-summary {
  margin: .85rem 0 .65rem;
  padding: .72rem 0 0;
  border-top: 1px solid rgba(44, 51, 38, .10);
  background: transparent;
}

.strain-patient-label {
  margin: 0 0 .28rem;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(44, 51, 38, .58);
  font-weight: 700;
}

.strain-patient-tags {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
  color: #2C3326;
}

.strain-price-line {
  margin-top: .65rem;
  font-size: .95rem;
  color: rgba(44, 51, 38, .82);
    margin-bottom: .45rem;
}

.strain-card-actions {
    margin-top: .2rem;
}

.strain-price-line strong {
  font-weight: 700;
}

.strain-reason-copy {
  margin-top: 0;
  padding: .7rem .85rem;
  border-radius: 16px;
  background: rgba(245, 169, 98, 0.14);
  border: 1px solid rgba(217, 115, 66, 0.18);
}

.strain-image-disclaimer {
  margin-top: 0;
  font-size: .85rem;
  color: rgba(44, 51, 38, 0.74);
}

.strain-community-disclaimer {
  margin: .32rem 0 0;
  font-size: .8rem;
  color: rgba(44, 51, 38, 0.66);
}

.community-field-hint {
  margin: -0.45rem 0 0.75rem;
  font-size: 0.82rem;
  color: rgba(44, 51, 38, 0.68);
}

.optional-label {
  font-weight: 500;
  color: rgba(44, 51, 38, 0.62);
}

.strain-card-carousel-track { position: relative; width:100%; height:100%; }
.strain-card-carousel-image{ position:absolute; inset:0; transition: opacity .35s ease; opacity:1; }
.strain-card-carousel-image.is-hidden{ opacity:0; pointer-events:none; }
.strain-card-media-carousel .strain-card-carousel-button{ position:absolute; top:50%; transform:translateY(-50%); width:32px; height:32px; border-radius:999px; border:1px solid rgba(44,51,38,.25); background:rgba(244,236,222,.74); color:var(--brand-ink-deep); backdrop-filter: blur(4px); box-shadow:0 4px 14px rgba(44,51,38,.15); z-index:3; cursor:pointer; opacity:.0; transition:opacity .25s ease, background .25s ease; }
.strain-card-media-carousel .strain-card-carousel-button:hover{ background:rgba(44,51,38,.74); color:#f4eee1; }
.strain-card-media-carousel:hover .strain-card-carousel-button{ opacity:1; }
.strain-card-media-carousel .strain-card-carousel-button.is-prev{ left:.55rem; }
.strain-card-media-carousel .strain-card-carousel-button.is-next{ right:.55rem; }
.strain-card-carousel-indicator{ position:absolute; right:.65rem; bottom:.65rem; z-index:3; border-radius:999px; padding:.14rem .48rem; font-size:.72rem; background:rgba(35,48,31,.72); color:#f9f1e4; border:1px solid rgba(249,241,228,.35); }
@media (max-width: 980px){ .strain-card-media-carousel .strain-card-carousel-button{ opacity:1; width:36px; height:36px; } }

.strain-gallery-strip {
  display: flex;
  gap: .55rem;
  overflow-x: auto;
  padding: .25rem 0 .5rem;
  scroll-snap-type: x mandatory;
}

.strain-gallery-strip img {
  flex: 0 0 120px;
  width: 120px;
  height: 82px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(44, 51, 38, 0.12);
  background: rgba(241, 230, 212, 0.9);
  scroll-snap-align: start;
}

.strain-expand-content {
  display: none;
  margin-top: .85rem;
  padding-top: .65rem;
  border-top: 1px dashed rgba(107, 142, 78, 0.4);
}

.strain-expand-content.open {
  display: block;
}

@media (max-width: 980px) {
  .association-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .association-actions .btn:first-child,
  .strain-card-actions .btn:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .detail-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .association-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .strain-card-secondary-actions {
    justify-content: flex-start;
  }
}

@media (min-width: 980px) {
  .strain-search-layout {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    align-items: start;
  }
}

@media (max-width: 979px) {
  .strain-search-mobile-controls {
    position: sticky;
    top: 72px;
    z-index: 32;
    display: flex;
    gap: .5rem;
    margin-bottom: .65rem;
    padding: .5rem;
    border-radius: 14px;
    backdrop-filter: blur(8px);
    background: rgba(253, 238, 224, 0.9);
    border: 1px solid rgba(107, 142, 78, 0.24);
  }

  .strain-search-mobile-controls .btn {
    flex: 1;
  }

  .strain-filters-header .strain-clear-filters {
    display: none;
  }

  .strain-search-filters {
    position: static;
    display: none;
    max-height: none;
    overflow: visible;
    border-radius: 18px;
  }

  .strain-search-filters.is-open {
    display: block;
  }

  .strain-search-card {
    border-radius: 18px;
  }

  .strain-search-results-header {
    animation: none;
  }
}

@media (min-width: 980px) {
  .strain-search-filters {
    display: block !important;
  }
}

@keyframes strainCardEnter {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes strainStoryFloat {
  0%, 100% {
    background-position: 0% 50%;
    transform: translateY(0);
  }
  50% {
    background-position: 100% 50%;
    transform: translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .strain-search-results-header,
  .strain-search-card,
  .strain-tag-list .strain-effect-btn {
    animation: none;
    transition: none;
  }

  .strain-search-results-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.newsletter-prompt {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(25, 23, 20, 0.55);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.newsletter-prompt-card {
  position: relative;
  width: min(520px, 100%);
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  padding: 1rem 1rem 1.1rem;
}

.newsletter-prompt-kicker {
  margin: 0 0 .35rem;
  color: #6b8e4e;
  font-weight: 700;
}

.newsletter-prompt-close {
  position: absolute;
  top: .55rem;
  right: .55rem;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .14);
  background: #fff;
  cursor: pointer;
}

.newsletter-prompt-form {
  display: flex;
  gap: .5rem;
}

.newsletter-prompt-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  padding: .65rem .75rem;
}

.newsletter-prompt-footnote {
  margin: .55rem 0 0;
  opacity: .68;
  font-size: .86rem;
}

@media (max-width: 640px) {
  .newsletter-prompt-form {
    flex-direction: column;
  }
}

/* ===== MOBILE EXPERIENCE 2026 ===== */

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

.container,
.container-narrow,
.nav-inner {
  padding-inline: clamp(0.9rem, 3.8vw, 1.4rem);
}

a,
button,
input,
select,
textarea,
[role="button"] {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(217, 115, 66, 0.6);
  outline-offset: 2px;
}

.hero-helper {
  margin-top: .95rem;
  font-size: .92rem;
  opacity: .78;
}

.path-card {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.path-card .btn {
  margin-top: auto;
}

.path-icon {
  font-size: 2.2rem;
}

@media (max-width: 768px) {
  body {
    font-size: 15.5px;
    line-height: 1.62;
  }

  h1 { font-size: clamp(2rem, 8vw, 2.5rem); }
  h2 { font-size: clamp(1.6rem, 6.4vw, 2rem); }
  h3 { font-size: clamp(1.2rem, 5.2vw, 1.45rem); }

  .section {
    padding: clamp(2.4rem, 11vw, 3.2rem) 0;
  }

  .btn {
    min-height: var(--touch-target);
    justify-content: center;
    width: 100%;
    padding: .85rem 1rem;
  }

  .nav {
    padding: .35rem 0;
    min-height: 76px;
    /* Hotfix: z-index must beat .nav-overlay (100000) inside .page stacking context */
    z-index: 100010 !important;
  }

  .nav-inner {
    gap: .4rem;
  }

  .nav-logo {
    min-width: 0;
    gap: .55rem;
  }

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

  .nav-brand-copy {
    display: flex;
  }

  .nav-brand-title {
    display: block;
    font-size: 1.2rem;
  }

  .nav-brand-subtitle {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-compare,
  .nav-search {
    display: none;
  }

  .nav-social-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    min-width: var(--touch-target);
    min-height: var(--touch-target);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(44, 51, 38, 0.18);
    background: rgba(255, 255, 255, 0.7);
    color: var(--dark-text);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 100001;
    position: relative;
    transition: background 0.15s, transform 0.15s;
  }

  .nav-toggle:hover { background: #fff; }

  .nav-toggle[aria-expanded="true"] {
    background: #fff;
    border-color: rgba(44, 51, 38, 0.28);
  }

  /* hotfix: backdrop overlay — visível em mobile, abaixo do drawer (z 99990) */
  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 31, 20, 0.72);
    z-index: 100000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
    border: none;
    cursor: default;
    -webkit-tap-highlight-color: transparent;
  }

  body.menu-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  /* Bloquear scroll quando menu aberto */
  body.menu-open {
    overflow: hidden;
  }

  /* nav-inner sem position:relative em mobile → nav-links fica relativo ao .nav (sticky) */
  .nav-inner {
    position: static;
  }

  /* hotfix: drawer sólido — fundo opaco, z-index alto, iOS Safari safe */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    z-index: 100002;
    background: #0A1F14;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.15rem;
    padding: calc(var(--nav-height, 74px) + 1rem) 1.25rem 1.5rem;
    list-style: none;
    margin: 0;
    min-height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.18s ease, visibility 0s linear 0.18s;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 0 0.5rem auto;
    border: 1px solid rgba(247, 242, 232, 0.35);
    border-radius: 999px;
    background: transparent;
    color: #F7F2E8;
    font-size: 1.45rem;
    cursor: pointer;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 56px;
    padding: 0.8rem 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    justify-content: center;
    color: #F7F2E8;
    text-decoration: none;
    letter-spacing: 0.01em;
    border-radius: 12px;
    transition: background 0.14s, color 0.14s;
    pointer-events: auto;
    border-bottom: none;
    border-right: none;
  }

  .nav-links a:hover, .nav-links a:active {
    background: rgba(247, 242, 232, 0.12);
    color: #F7F2E8;
  }

  .nav-links li.nav-tool-sep {
    width: 100%;
    padding: 0.2rem 0.875rem;
    justify-content: flex-start;
  }
  .nav-links li.nav-tool-sep::before {
    width: 100%;
    height: 1px;
  }
  .nav-links a.nav-tool {
    font-size: 0.9rem;
    opacity: 0.65;
  }

  .hero {
    padding-top: 2rem;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title,
  .hero-subtitle {
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 1.04rem;
    margin-bottom: 1.1rem;
  }

  .hero-tools {
    gap: .65rem;
  }

  .home-path-grid {
    gap: .85rem;
  }

  .home-priority-grid {
    grid-template-columns: 1fr;
    gap: .85rem;
  }

  .home-how-grid,
  .organic-grid-asymmetric {
    gap: .85rem;
  }

  .card,
  .card-organic {
    border-radius: 20px;
    padding: 1rem;
  }

  .footer-content-mobile {
    gap: 1.25rem;
  }

  .footer-links a {
    display: inline-flex;
    min-height: var(--touch-target);
    align-items: center;
  }
}

@media (max-width: 430px) {
  .section-header {
    margin-bottom: 1.15rem;
  }

  .section-description {
    font-size: 1rem;
  }
}

/* ===== ACTIVE CHIP STATE ===== */
.filter-btn.active,
.strain-active,
[aria-pressed="true"].chip-like {
    background: var(--brand-ink);
    color: var(--brand-blush);
    border-color: var(--brand-ink);
}

/* Lightweight genetics catalog: no trembling/looped motion on /geneticas cards. */
.strain-search-results-header,
.strain-search-card,
.organic-grid .strain-search-card,
.strain-search-media.is-loading::before {
  animation: none !important;
}

.strain-search-card,
.card.strain-search-card,
.card-organic.strain-search-card {
  transition: border-color .18s ease, box-shadow .18s ease !important;
}

.strain-search-card:hover,
.card.strain-search-card:hover,
.card-organic.strain-search-card:hover {
  transform: none !important;
  border-color: rgba(107, 142, 78, 0.32);
  box-shadow: 0 14px 34px rgba(40, 58, 38, 0.12);
}

.strain-search-media::before {
  display: none;
}

.strain-load-more {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  gap: .35rem;
  padding: 1rem 0 0;
}

.strain-load-more p {
  margin: 0;
  color: rgba(44, 51, 38, .72);
  font-size: .9rem;
}

@media (prefers-reduced-motion: reduce) {
  .strain-search-results-header,
  .strain-search-card,
  .organic-grid .strain-search-card,
  .strain-search-card:hover,
  .strain-search-media.is-loading::before {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }
}
