@charset "UTF-8";

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --verde-escuro: #042826;
    --verde-escuro-2: #0b3734;
    --preto-profundo: #0C0C0C;
    --branco: #FFFFFF;
    --verde-menta: #49B696;
    --cinza-claro: #C1C1C1;
    --bege-sofisticado: #AD9C82;
    --bg-suave: #F7F8F7;
    --font-serif: 'Roboto Serif', serif;
    --font-sans: 'Manrope', sans-serif;
    --shadow-soft: 0 12px 30px rgba(4, 40, 38, 0.08);
    --sidebar-w: 220px;
    --header-h: 66px;
}

body {
    font-family: var(--font-sans);
    background: var(--branco);
    color: var(--preto-profundo);
    line-height: 1.7;
}

/* -- HEADER -- */
header {
    background: linear-gradient(135deg, var(--verde-escuro) 0%, var(--verde-escuro-2) 100%);
    color: var(--branco);
    padding: 0 2rem;
    height: var(--header-h);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 200;
}

.header-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-block { min-width: 0; }

.logo-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.72rem;
    opacity: 0.7;
    margin-top: 0.15rem;
    letter-spacing: 0.03em;
}

.header-brand { text-align: right; }

.header-brand-title {
    font-family: var(--font-serif);
    font-size: 1rem;
}

.header-brand-subtitle {
    font-size: 0.74rem;
    opacity: 0.75;
}

/* -- SIDEBAR -- */
.page-layout {
    display: grid;
    grid-template-columns: var(--sidebar-w) 1fr;
    min-height: calc(100vh - var(--header-h));
    transition: grid-template-columns 0.25s ease;
}

.sidebar {
    background: var(--verde-escuro);
    position: sticky;
    top: var(--header-h);
    height: calc(100vh - var(--header-h));
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.12) transparent;
    padding: 1.75rem 0;
    border-right: 1px solid rgba(255,255,255,0.05);
    transition: width 0.25s ease;
    width: var(--sidebar-w);
}

.sidebar::-webkit-scrollbar { width: 3px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 99px; }

.sidebar-section-label {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.32);
    padding: 0 1.25rem;
    margin: 1.5rem 0 0.5rem;
}

.sidebar-section-label:first-child { margin-top: 0; }

.sidebar-tab {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    padding: 0.6rem 1.25rem;
    border: none;
    border-left: 3px solid transparent;
    background: transparent;
    color: rgba(255,255,255,0.55);
    font-family: var(--font-sans);
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s ease;
    text-align: left;
}

.sidebar-tab .tab-pill {
    font-size: 0.65rem;
    font-weight: 800;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 0.1rem 0.4rem;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.sidebar-tab:hover {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.88);
    border-left-color: rgba(73,182,150,0.35);
}

.sidebar-tab.active {
    background: rgba(73,182,150,0.14);
    color: var(--verde-menta);
    border-left-color: var(--verde-menta);
}

.sidebar-tab.active .tab-pill {
    background: rgba(73,182,150,0.25);
    color: var(--verde-menta);
}

/* -- SIDEBAR COLLAPSE -- */
.sidebar-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 1rem 1.25rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sidebar-toggle-btn button {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    padding: 0.3rem 0.55rem;
    cursor: pointer;
    transition: all 0.18s ease;
    line-height: 1;
}

.sidebar-toggle-btn button:hover {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
}

/* Estado colapsado */
.page-layout.collapsed {
    grid-template-columns: 52px 1fr;
}

.sidebar.collapsed {
    width: 52px;
}

.sidebar.collapsed .sidebar-section-label,
.sidebar.collapsed .sidebar-tab-label {
    display: none;
}

.sidebar.collapsed .sidebar-toggle-btn {
    justify-content: center;
    padding: 0 0 1.25rem;
}

.sidebar.collapsed .sidebar-tab {
    justify-content: center;
    padding: 0.65rem 0;
}

.sidebar.collapsed .tab-pill {
    font-size: 0.72rem;
    padding: 0.25rem 0.45rem;
}

.sidebar.collapsed .sidebar-tab.active {
    border-left-color: var(--verde-menta);
}

/* Tooltip ao hover no estado colapsado */
.sidebar.collapsed .sidebar-tab {
    position: relative;
}

.sidebar.collapsed .sidebar-tab::after {
    content: attr(data-label);
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--verde-escuro-2);
    color: var(--branco);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 300;
    border: 1px solid rgba(255,255,255,0.1);
}

.sidebar.collapsed .sidebar-tab:hover::after {
    opacity: 1;
}

/* Mobile nav (hamburger) */
.mobile-nav-toggle {
    display: none;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    color: var(--branco);
    font-size: 1.2rem;
    padding: 0.4rem 0.75rem;
    cursor: pointer;
}

.mobile-nav-overlay {
    display: none;
}

.content-area {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.hero {
    background: linear-gradient(135deg, #052523 0%, #093632 100%);
    color: var(--branco);
    padding: 4rem 1.5rem 3rem;
}

.hero-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    color: var(--verde-menta);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4vw, 4.3rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.04rem;
    color: rgba(255,255,255,0.88);
    max-width: 760px;
}

.hero-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.hero-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.hero-card p {
    font-size: 0.96rem;
    margin-bottom: 1rem;
}

.quote-line {
    border-left: 3px solid var(--verde-menta);
    padding-left: 1rem;
    color: var(--branco);
    font-weight: 600;
}

.container {
    padding: 2rem 2.5rem 4rem;
    min-width: 0;
    max-width: 1200px;
}

.tab-content { display: none; animation: fadeIn 0.35s ease; }
.tab-content.active { display: block; }

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

.section { margin-bottom: 3rem; }

.section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--verde-escuro);
    display: inline-block;
    border-bottom: 3px solid var(--verde-menta);
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
}

.section-intro {
    max-width: 980px;
    font-size: 1.02rem;
    color: #23302f;
    margin-bottom: 1.75rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(73,182,150,0.08) 0%, rgba(173,156,130,0.08) 100%);
    border-left: 4px solid var(--verde-menta);
    border-radius: 8px;
    padding: 1.25rem 1.35rem;
    margin-bottom: 1.5rem;
}

.highlight-box strong {
    color: var(--verde-escuro);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-box {
    background: linear-gradient(135deg, var(--verde-escuro) 0%, var(--verde-escuro-2) 100%);
    color: var(--branco);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.metric-number {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.metric-label {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.86);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.card {
    background: var(--branco);
    border: 1px solid rgba(4,40,38,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(73,182,150,0.45);
}

.card-kicker {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--verde-menta);
    margin-bottom: 0.6rem;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.22rem;
    color: var(--verde-escuro);
    margin-bottom: 0.75rem;
}

.card p { font-size: 0.96rem; color: #303837; }

.table-container {
    overflow-x: auto;
    margin-bottom: 2rem;
    background: var(--branco);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

thead { background: var(--verde-escuro); color: var(--branco); }

th, td {
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid rgba(12,12,12,0.08);
    vertical-align: top;
}

th {
    font-family: var(--font-serif);
    font-weight: 700;
}

tbody tr:hover { background: rgba(73,182,150,0.04); }

.accordion { margin-bottom: 0.65rem; }

.accordion-header {
    width: 100%;
    border: none;
    background: linear-gradient(135deg, var(--verde-escuro) 0%, var(--verde-escuro-2) 100%);
    color: var(--branco);
    padding: 1.2rem 1.3rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-weight: 700;
    font-size: 0.98rem;
}

.accordion-header span:last-child { color: var(--verde-menta); font-size: 1.15rem; }

.accordion-content {
    display: none;
    background: var(--bg-suave);
    border-left: 3px solid var(--verde-menta);
    border-radius: 0 0 10px 10px;
    padding: 1.15rem 1.25rem;
}

.accordion-content.active { display: block; }

/* O que a marca nao e - grid de cards visiveis */
.naoe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.9rem;
    margin-bottom: 1.75rem;
}

.naoe-card {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    background: #fdf6f6;
    border: 1px solid rgba(160,60,60,0.18);
    border-left: 4px solid #b84040;
    border-radius: 8px;
    padding: 1.1rem 1.2rem;
    transition: box-shadow 0.18s ease;
}

.naoe-card:hover {
    box-shadow: 0 4px 16px rgba(160,60,60,0.1);
}

.naoe-x {
    color: #b84040;
    font-weight: 800;
    font-size: 0.82rem;
    flex-shrink: 0;
    margin-top: 0.18rem;
    line-height: 1;
}

.naoe-card strong {
    display: block;
    color: var(--preto-profundo);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.naoe-card p {
    font-size: 0.88rem;
    color: #3a2a2a;
    line-height: 1.65;
    margin: 0;
}

.two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.chart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.chart-card {
    background: var(--branco);
    border-radius: 12px;
    padding: 1.35rem;
    box-shadow: var(--shadow-soft);
}

.chart-card h3 {
    font-family: var(--font-serif);
    color: var(--verde-escuro);
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.chart-note {
    font-size: 0.84rem;
    color: #556160;
    margin-bottom: 0.85rem;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.8rem;
    background: rgba(73,182,150,0.08);
    border: 1px solid rgba(73,182,150,0.2);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--branco);
}

.cta-box {
    background: linear-gradient(135deg, var(--verde-escuro) 0%, #0c413d 100%);
    color: var(--branco);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.cta-box h3 {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    margin-bottom: 0.75rem;
}

.footer {
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(12,12,12,0.08);
    color: #657170;
    font-size: 0.9rem;
}

.subsection-title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    color: var(--verde-escuro);
    margin: 1.25rem 0 0.85rem;
}

.quote-bank {
    background: linear-gradient(135deg, rgba(4,40,38,0.04) 0%, rgba(73,182,150,0.06) 100%);
    border: 1px solid rgba(73,182,150,0.22);
    border-left: 4px solid var(--verde-menta);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.35rem;
    margin-bottom: 0.85rem;
}
.quote-bank p {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--verde-escuro);
    font-style: italic;
    margin-bottom: 0.3rem;
}
.quote-bank small {
    font-size: 0.78rem;
    color: #7a9190;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.voice-scale { margin-bottom: 1.1rem; }
.voice-scale-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #555;
    margin-bottom: 0.3rem;
}
.voice-scale-labels strong { color: var(--verde-escuro); font-weight: 700; }
.voice-scale-bar {
    background: rgba(4,40,38,0.08);
    border-radius: 99px;
    height: 8px;
    overflow: hidden;
}
.voice-scale-fill {
    background: linear-gradient(90deg, var(--verde-escuro) 0%, var(--verde-menta) 100%);
    height: 100%;
    border-radius: 99px;
}

.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.75rem 0 1.5rem; }
.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--verde-escuro);
    border: 1px solid rgba(73,182,150,0.25);
    border-radius: 6px;
    color: rgba(255,255,255,0.9);
    font-size: 0.81rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    letter-spacing: 0.02em;
}
.tag::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--verde-menta);
    border-radius: 50%;
    flex-shrink: 0;
}
.tag.red {
    background: rgba(100,20,20,0.08);
    border-color: rgba(160,60,60,0.25);
    color: #7a2020;
}
.tag.red::before { background: rgba(160,60,60,0.5); }

.three-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.story-card {
    background: var(--branco);
    border: 1px solid rgba(4,40,38,0.1);
    border-top: 4px solid var(--bege-sofisticado);
    border-radius: 10px;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 4px 16px rgba(4,40,38,0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(4,40,38,0.11);
}

.story-card[data-type="Origem"]       { border-top-color: var(--bege-sofisticado); }
.story-card[data-type="Credibilidade"]{ border-top-color: var(--verde-menta); }
.story-card[data-type="Virada"]       { border-top-color: #d4855a; }
.story-card[data-type="Transformacao"]{ border-top-color: #3a9e7a; }
.story-card[data-type="Resiliencia"]  { border-top-color: #9b6fa8; }
.story-card[data-type="Cliente"]      { border-top-color: #4a90d9; }

.story-card .story-type {
    display: inline-block;
    font-size: 0.67rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--branco);
    background: var(--bege-sofisticado);
    border-radius: 4px;
    padding: 0.18rem 0.6rem;
    margin-bottom: 0.7rem;
}

.story-card[data-type="Origem"]        .story-type { background: var(--bege-sofisticado); }
.story-card[data-type="Credibilidade"] .story-type { background: var(--verde-menta); }
.story-card[data-type="Virada"]        .story-type { background: #d4855a; }
.story-card[data-type="Transformacao"] .story-type { background: #3a9e7a; }
.story-card[data-type="Resiliencia"]   .story-type { background: #9b6fa8; }
.story-card[data-type="Cliente"]       .story-type { background: #4a90d9; }

.story-card h4 {
    font-family: var(--font-serif);
    font-size: 1.01rem;
    color: var(--verde-escuro);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.story-card p { font-size: 0.9rem; color: #404a49; line-height: 1.65; }

/* Crencas de poder - pull quote style */
.belief-card {
    background: linear-gradient(160deg, #f7faf9 0%, var(--branco) 100%);
    border: 1px solid rgba(73,182,150,0.2);
    border-top: 3px solid var(--verde-menta);
    border-radius: 10px;
    padding: 1.35rem 1.4rem 1.25rem;
    box-shadow: 0 4px 18px rgba(4,40,38,0.07);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.belief-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(4,40,38,0.11);
}

.belief-card .card-kicker {
    font-size: 0.69rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--verde-menta);
    margin-bottom: 0.7rem;
}

.belief-card blockquote {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--verde-escuro);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    padding-left: 1rem;
    border-left: 3px solid rgba(73,182,150,0.5);
}

.channel-badge {
    display: inline-block;
    background: var(--verde-escuro);
    color: var(--branco);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    padding: 0.2rem 0.6rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 980px) {
    .hero-inner, .two-col { grid-template-columns: 1fr; display: grid; }

    /* Sidebar vira drawer em mobile */
    .page-layout { grid-template-columns: 1fr; }

    .sidebar {
        position: fixed;
        top: var(--header-h);
        left: 0;
        height: calc(100vh - var(--header-h));
        width: var(--sidebar-w);
        transform: translateX(-100%);
        transition: transform 0.28s ease;
        z-index: 150;
        box-shadow: 4px 0 24px rgba(0,0,0,0.25);
    }

    .sidebar.open { transform: translateX(0); }

    .mobile-nav-toggle { display: block; }

    .mobile-nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.45);
        z-index: 140;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }

    .mobile-nav-overlay.open {
        opacity: 1;
        pointer-events: all;
    }
}

@media (max-width: 640px) {
    .hero { padding-top: 3rem; }
    .container { padding: 1.5rem 1rem 3rem; }
    .section-title { font-size: 1.6rem; }
    .hero h1 { font-size: 2.15rem; }
}

/* -- FOOTER -- */
.site-footer {
    background: var(--verde-escuro);
    color: rgba(255,255,255,0.7);
    padding: 1.5rem 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
}

.footer-logo {
    height: 22px;
    filter: brightness(0) invert(1);
    opacity: 0.75;
    flex-shrink: 0;
}

.footer-text p {
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0;
}

.footer-copy {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 0.2rem;
}

@media (max-width: 640px) {
    .site-footer-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .site-footer { padding: 1.25rem 1rem; }
}
    