/* ============================================================
   EA EventAgro — Coluna do Autor (Premium)
   Usa variáveis do brand system definidas em main.css
   ============================================================ */

/* ── Reset da página ─────────────────────────────────────── */
.coluna-page {
    background: var(--cream);
}

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.coluna-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--color-primary-dark);
    padding-bottom: 3.5rem;
    padding-top: 5rem;
}

.coluna-hero-cover {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: .62;
    transition: opacity .4s ease;
}

.coluna-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,  #0F2420 35%, rgba(15,36,32,.7) 65%, transparent 100%),
        linear-gradient(to right, #0F2420 25%, rgba(15,36,32,.55) 55%, transparent 90%);
    pointer-events: none;
}

/* Glow decorativo */
.coluna-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(126,193,60,.07) 0%, transparent 70%);
    pointer-events: none;
}

.coluna-hero-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

@media (min-width: 768px) {
    .coluna-hero-inner {
        flex-direction: row;
        align-items: flex-end;
    }
}

/* Foto */
.coluna-hero-photo-wrap {
    position: relative;
    flex-shrink: 0;
}

.coluna-hero-avatar,
.coluna-hero-photo-wrap img {
    width: 140px;
    height: 140px;
    border-radius: 18px;
    object-fit: cover;
    border: 2px solid rgba(126,193,60,.3);
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    display: block;
}

@media (min-width: 768px) {
    .coluna-hero-avatar,
    .coluna-hero-photo-wrap img {
        width: 200px;
        height: 200px;
    }
}

.coluna-hero-rank {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--lime);
    color: var(--color-primary-dark);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .75rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.4);
}

/* Info */
.coluna-hero-info {
    flex: 1;
    min-width: 0;
}

.coluna-hero-label {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-display);
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: .75rem;
}

.coluna-hero-line {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--lime);
    flex-shrink: 0;
}

/* ── Badge de tipo do colunista (hero da coluna) ─────────────────────── */

.coluna-type-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.9);
    margin-left: 4px;
    vertical-align: middle;
}

.coluna-type-badge--jornalista   { border-color: rgba(147,197,253,.5); background: rgba(59,130,246,.2); }
.coluna-type-badge--especialista { border-color: rgba(110,231,183,.5); background: rgba(16,185,129,.2); }
.coluna-type-badge--consultor    { border-color: rgba(196,181,253,.5); background: rgba(139,92,246,.2); }
.coluna-type-badge--empresa      { border-color: rgba(253,211,77,.5);  background: rgba(245,158,11,.2); }
.coluna-type-badge--cooperativa  { border-color: rgba(110,231,183,.5); background: rgba(5,150,105,.2);  }
.coluna-type-badge--associacao   { border-color: rgba(253,186,116,.5); background: rgba(234,88,12,.2);  }
.coluna-type-badge--instituicao  { border-color: rgba(147,197,253,.5); background: rgba(37,99,235,.2);  }

/* Wrapper do badge verificado acima do nome */
.coluna-verified-badge-wrap {
    margin-bottom: 12px;
}

/* Wrapper do nome */
.coluna-hero-name-wrap {
    margin-bottom: .4rem;
}

.coluna-hero-name {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0;
}

/* Selo Verificado no hero da coluna — dourado tipo carimbo oficial */
.coluna-verified-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 900;
    color: #5C3800;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: center;
    overflow: hidden;
    /* Gradiente dourado */
    background: linear-gradient(145deg, #FFE566 0%, #FFC200 55%, #FFAA00 100%);
    padding: 5px 13px 5px 9px;
    border-radius: 24px;
    /* Borda interna luminosa */
    border: 1.5px solid rgba(255, 220, 50, 0.9);
    /* Anéis concêntricos — efeito de carimbo/selo */
    box-shadow:
        0 0 0 2px rgba(255, 200, 20, 0.55),
        0 0 0 5px rgba(255, 215, 0, 0.14),
        0 4px 14px rgba(160, 100, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 200, 0.55),
        inset 0 -1px 0 rgba(200, 120, 0, 0.25);
}

/* Reflexo interno que dá profundidade ao selo */
.coluna-verified-badge::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 55%;
    background: linear-gradient(180deg, rgba(255,255,220,.42) 0%, transparent 100%);
    border-radius: 22px 22px 0 0;
    pointer-events: none;
}

.coluna-verified-badge svg {
    color: #5C3800;
    flex-shrink: 0;
    position: relative;
}

.coluna-hero-role {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--lime);
    margin: 0 0 .5rem;
}

.coluna-hero-sub {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
    font-family: var(--font-display);
    font-size: .8125rem;
    color: rgba(208,232,230,.55);
    margin-bottom: .875rem;
}

.coluna-hero-sub span {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.coluna-hero-bio {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(208,232,230,.8);
    max-width: 580px;
    margin: 0 0 1.5rem;
}

/* Ações */
.coluna-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .625rem;
}

.coluna-btn-follow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--lime);
    color: var(--color-primary-dark);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .875rem;
    padding: .55rem 1.25rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}

.coluna-btn-follow:hover { background: var(--lime-dark); transform: translateY(-1px); }
.coluna-btn-follow.following {
    background: rgba(27,62,60,.8);
    border: 1.5px solid rgba(126,193,60,.35);
    color: rgba(208,232,230,.8);
}
.coluna-btn-follow.following:hover {
    background: rgba(80,20,20,.6);
    border-color: rgba(220,80,80,.4);
    color: #f8a0a0;
}

.coluna-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: transparent;
    color: rgba(208,232,230,.7);
    font-family: var(--font-display);
    font-size: .875rem;
    font-weight: 500;
    padding: .5rem 1.1rem;
    border-radius: 8px;
    border: 1.5px solid rgba(44,95,90,.7);
    cursor: pointer;
    text-decoration: none;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}

.coluna-btn-outline:hover {
    color: #fff;
    border-color: rgba(208,232,230,.5);
}

.coluna-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(37,211,102,.12);
    border: 1.5px solid rgba(37,211,102,.3);
    color: #25D366;
    font-family: var(--font-display);
    font-size: .875rem;
    font-weight: 600;
    padding: .5rem 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}

.coluna-btn-whatsapp:hover { background: rgba(37,211,102,.22); color: #25D366; }

/* Redes sociais */
.coluna-hero-socials {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-left: .25rem;
}

.coluna-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(44,95,90,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(208,232,230,.5);
    text-decoration: none;
    transition: color .2s, border-color .2s;
}

.coluna-social-icon:hover {
    color: var(--lime);
    border-color: rgba(126,193,60,.5);
}

/* ════════════════════════════════════════════════════════════
   MÉTRICAS
════════════════════════════════════════════════════════════ */
.coluna-metrics-bar {
    background: var(--color-primary-dark);
    border-bottom: 1px solid rgba(44,95,90,.4);
    position: relative;
    z-index: 2;
}

.coluna-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(44,95,90,.35);
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    background: rgba(27,62,60,.25);
}

@media (min-width: 640px) {
    .coluna-metrics-grid { grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); }
}

.coluna-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    padding: 1.1rem .75rem;
    border-right: 1px solid rgba(44,95,90,.3);
    transition: background .2s;
}

.coluna-metric:last-child { border-right: none; }
.coluna-metric:hover { background: rgba(44,95,90,.2); }

.coluna-metric-icon { color: var(--lime); opacity: .85; }

.coluna-metric-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.coluna-metric-label {
    font-family: var(--font-display);
    font-size: .625rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(208,232,230,.4);
}

/* ════════════════════════════════════════════════════════════
   CORPO
════════════════════════════════════════════════════════════ */
.coluna-body {
    padding: 2.5rem 0 4rem;
}

.coluna-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .coluna-layout {
        grid-template-columns: 1fr 320px;
        align-items: start;
    }
}

/* ── Especialidades ──────────────────────────────────────── */
.coluna-specialties { margin-bottom: 1.75rem; }

.coluna-section-label {
    display: block;
    font-family: var(--font-display);
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: .6rem;
}

.coluna-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.coluna-tag {
    display: inline-flex;
    align-items: center;
    padding: .3rem .85rem;
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: .75rem;
    font-weight: 600;
    border: 1.5px solid transparent;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
}

/* Tag colors */
.coluna-tag.tag-yellow  { background: rgba(234,179,8,.08);  color: #ca8a04;  border-color: rgba(234,179,8,.2);  }
.coluna-tag.tag-amber   { background: rgba(245,158,11,.08); color: #d97706;  border-color: rgba(245,158,11,.2); }
.coluna-tag.tag-red     { background: rgba(239,68,68,.08);  color: #dc2626;  border-color: rgba(239,68,68,.2);  }
.coluna-tag.tag-orange  { background: rgba(249,115,22,.08); color: #ea580c;  border-color: rgba(249,115,22,.2); }
.coluna-tag.tag-blue    { background: rgba(59,130,246,.08); color: #2563eb;  border-color: rgba(59,130,246,.2); }
.coluna-tag.tag-purple  { background: rgba(168,85,247,.08); color: #9333ea;  border-color: rgba(168,85,247,.2); }
.coluna-tag.tag-cyan    { background: rgba(6,182,212,.08);  color: #0891b2;  border-color: rgba(6,182,212,.2);  }
.coluna-tag.tag-green   { background: rgba(126,193,60,.1);  color: var(--lime-dark); border-color: rgba(126,193,60,.25); }
.coluna-tag.tag-indigo  { background: rgba(99,102,241,.08); color: #4f46e5;  border-color: rgba(99,102,241,.2); }
.coluna-tag.tag-sky     { background: rgba(14,165,233,.08); color: #0284c7;  border-color: rgba(14,165,233,.2); }
.coluna-tag.tag-default { background: var(--color-bg-alt);  color: var(--color-text-secondary); border-color: rgba(0,0,0,.08); }

.coluna-tag:hover { filter: brightness(1.15); transform: translateY(-1px); }

/* ── Tabs ────────────────────────────────────────────────── */
.coluna-tabs-wrap {}

.coluna-tabs-nav {
    display: flex;
    gap: .25rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: .25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1.5px solid rgba(0,0,0,.07);
}

.coluna-tabs-nav::-webkit-scrollbar { display: none; }

.coluna-tab-btn {
    flex-shrink: 0;
    padding: .55rem 1.1rem;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: .875rem;
    font-weight: 500;
    color: var(--color-text-light);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color .2s, background .2s;
    position: relative;
}

.coluna-tab-btn:hover { color: var(--color-text); background: rgba(0,0,0,.04); }

.coluna-tab-btn.active {
    color: var(--color-primary-dark);
    background: var(--lime);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(126,193,60,.25);
}

.coluna-tab-panel { display: none; }
.coluna-tab-panel.active { display: block; }

/* ── Grid de artigos ─────────────────────────────────────── */
.coluna-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .coluna-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .coluna-grid { grid-template-columns: repeat(3, 1fr); }
}

.coluna-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 3rem 0;
    color: var(--color-text-light);
    font-family: var(--font-display);
    font-size: .9375rem;
}

/* ── Card de artigo ──────────────────────────────────────── */
.coluna-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.07);
    background: #fff;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.coluna-card:hover {
    border-color: rgba(126,193,60,.35);
    box-shadow: 0 6px 24px rgba(0,0,0,.08);
    transform: translateY(-2px);
}

.coluna-card-inner {
    display: block;
    text-decoration: none;
    color: inherit;
}

.coluna-card-thumb {
    overflow: hidden;
    aspect-ratio: 16/9;
}

.coluna-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.coluna-card:hover .coluna-card-thumb img { transform: scale(1.04); }

.coluna-card-thumb-fallback {
    width: 100%;
    height: 100%;
}

.coluna-card-gradient--article   { background: linear-gradient(135deg, #1B3E3C 0%, #0a1f1e 100%); }
.coluna-card-gradient--interview { background: linear-gradient(135deg, #3b1f5e 0%, #0a1f1e 100%); }
.coluna-card-gradient--video     { background: linear-gradient(135deg, #1e3a5f 0%, #0a1f1e 100%); }
.coluna-card-gradient--podcast   { background: linear-gradient(135deg, #5f2e00 0%, #0a1f1e 100%); }
.coluna-card-gradient--special   { background: linear-gradient(135deg, #4a3500 0%, #0a1f1e 100%); }
.coluna-card-gradient--reel      { background: linear-gradient(135deg, #5f1b2e 0%, #0a1f1e 100%); }

.coluna-card-body {
    padding: 1rem 1.125rem;
}

.coluna-card-meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .5rem;
}

.coluna-card-type {
    font-family: var(--font-display);
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--lime-dark);
}

.coluna-card-featured {
    font-family: var(--font-display);
    font-size: .625rem;
    font-weight: 600;
    background: rgba(139,105,20,.1);
    color: var(--earth);
    border: 1px solid rgba(139,105,20,.2);
    padding: .15rem .5rem;
    border-radius: 20px;
}

.coluna-card-title {
    font-family: var(--font-headline);
    font-size: .9375rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
    margin: 0 0 .75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
}

.coluna-card:hover .coluna-card-title { color: var(--lime-dark); }

.coluna-card-footer {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-family: var(--font-display);
    font-size: .75rem;
    color: var(--color-text-light);
}

.coluna-card-views {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.coluna-card-arrow {
    margin-left: auto;
    color: var(--lime-dark);
    opacity: 0;
    transition: opacity .2s, transform .2s;
    font-size: .875rem;
}

.coluna-card:hover .coluna-card-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* ════════════════════════════════════════════════════════════
   SIDEBAR
════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
    .coluna-sidebar { position: sticky; top: 88px; }
}

.coluna-widget {
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 16px;
    padding: 1.25rem 1.375rem;
    margin-bottom: 1.25rem;
}

.coluna-widget-title {
    font-family: var(--font-display);
    font-size: .8125rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.coluna-widget-title svg { color: var(--lime-dark); }

/* ── Engajamento ─────────────────────────────────────────── */
.coluna-btn-follow--full {
    width: 100%;
    justify-content: center;
    margin-bottom: .625rem;
    border-radius: 10px;
    padding: .65rem;
}

.coluna-widget-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    width: 100%;
    padding: .55rem .875rem;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: .8125rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    background: transparent;
    border: 1.5px solid rgba(0,0,0,.08);
    cursor: pointer;
    text-decoration: none;
    margin-bottom: .5rem;
    transition: background .2s, border-color .2s, color .2s;
}

.coluna-widget-btn:last-child { margin-bottom: 0; }
.coluna-widget-btn:hover { background: var(--color-bg-alt); border-color: rgba(0,0,0,.14); color: var(--color-text); }

.coluna-widget-btn--whatsapp {
    color: #128C7E;
    border-color: rgba(37,211,102,.25);
    background: rgba(37,211,102,.05);
}

.coluna-widget-btn--whatsapp:hover { background: rgba(37,211,102,.12); border-color: rgba(37,211,102,.4); }

/* ── Newsletter ──────────────────────────────────────────── */
.coluna-newsletter-widget {
    background: linear-gradient(145deg, #0f2420 0%, #162e28 60%, #0d1f1b 100%);
    border-color: rgba(126,193,60,.15);
    border-width: 1px;
    position: relative;
    overflow: hidden;
    padding: 1.375rem;
}

.coluna-newsletter-widget::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(126,193,60,.12) 0%, transparent 65%);
    pointer-events: none;
}

.coluna-newsletter-widget::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(27,62,60,.5) 0%, transparent 70%);
    pointer-events: none;
}

.coluna-newsletter-header {
    display: flex;
    align-items: center;
    gap: .625rem;
    margin-bottom: .75rem;
    position: relative;
}

.coluna-newsletter-header .coluna-widget-title {
    margin: 0;
    font-size: .8125rem;
    letter-spacing: .08em;
    color: #fff;
}

.coluna-newsletter-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(126,193,60,.15);
    border: 1px solid rgba(126,193,60,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
    position: relative;
}

.coluna-newsletter-name-row {
    display: flex;
    gap: .4rem;
}

.coluna-newsletter-name-row .coluna-newsletter-input {
    flex: 1;
    min-width: 0;
}

.coluna-newsletter-desc {
    font-family: var(--font-display);
    font-size: .775rem;
    color: rgba(208,232,230,.55);
    margin: 0 0 .875rem;
    line-height: 1.55;
    position: relative;
    border-bottom: 1px solid rgba(44,95,90,.35);
    padding-bottom: .75rem;
}

.coluna-newsletter-desc strong { color: rgba(208,232,230,.9); }

.coluna-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    position: relative;
}

.coluna-newsletter-input {
    width: 100%;
    background: rgba(10,28,24,.7);
    border: 1.5px solid rgba(44,95,90,.5);
    border-radius: 7px;
    padding: .5rem .8rem;
    font-family: var(--font-display);
    font-size: .8125rem;
    color: #fff;
    outline: none;
    transition: border-color .2s, background .2s;
    box-sizing: border-box;
}

.coluna-newsletter-input::placeholder { color: rgba(208,232,230,.28); }
.coluna-newsletter-input:focus {
    border-color: rgba(126,193,60,.55);
    background: rgba(10,28,24,.9);
}

.coluna-newsletter-btn {
    background: var(--lime);
    color: #0f2420;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .8125rem;
    letter-spacing: .03em;
    border: none;
    border-radius: 7px;
    padding: .625rem;
    cursor: pointer;
    transition: background .2s, transform .1s;
    margin-top: .15rem;
}

.coluna-newsletter-btn:hover { background: var(--lime-dark); }
.coluna-newsletter-btn:active { transform: scale(.98); }
.coluna-newsletter-btn:disabled { opacity: .6; cursor: not-allowed; }

.coluna-newsletter-note {
    font-family: var(--font-display);
    font-size: .625rem;
    color: rgba(208,232,230,.25);
    text-align: center;
    margin: .35rem 0 0;
    position: relative;
    letter-spacing: .02em;
}

.coluna-newsletter-success {
    font-family: var(--font-display);
    font-size: .9375rem;
    font-weight: 600;
    color: var(--lime);
    text-align: center;
    padding: .5rem 0;
}

/* ── Timeline ────────────────────────────────────────────── */
.coluna-timeline {
    position: relative;
    padding-left: 1.5rem;
}

.coluna-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: rgba(0,0,0,.08);
}

.coluna-timeline-item {
    display: flex;
    gap: .75rem;
    margin-bottom: 1.1rem;
    position: relative;
}

.coluna-timeline-item:last-child { margin-bottom: 0; }

.coluna-tl-dot {
    position: absolute;
    left: -1.5rem;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    border: 1.5px solid rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}

.coluna-tl-award .coluna-tl-dot    { background: rgba(234,179,8,.1);  border-color: rgba(234,179,8,.3);  color: #ca8a04; }
.coluna-tl-interview .coluna-tl-dot{ background: rgba(168,85,247,.1); border-color: rgba(168,85,247,.3); color: #9333ea; }
.coluna-tl-experience .coluna-tl-dot{ background: rgba(126,193,60,.1); border-color: rgba(126,193,60,.3); color: var(--lime-dark); }
.coluna-tl-publication .coluna-tl-dot{ background: rgba(6,182,212,.1); border-color: rgba(6,182,212,.3); color: #0891b2; }
.coluna-tl-event .coluna-tl-dot    { background: rgba(59,130,246,.1); border-color: rgba(59,130,246,.3); color: #2563eb; }

.coluna-tl-dot svg { color: inherit; }

.coluna-tl-content { flex: 1; min-width: 0; }

.coluna-tl-year {
    font-family: var(--font-display);
    font-size: .6875rem;
    font-weight: 700;
    color: var(--color-text-light);
    display: block;
    margin-bottom: .15rem;
}

.coluna-tl-title {
    font-family: var(--font-display);
    font-size: .8125rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 .2rem;
    line-height: 1.35;
}

.coluna-tl-desc {
    font-family: var(--font-body);
    font-size: .75rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.45;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVIDADE
════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
    .coluna-hero {
        padding-top: 4rem;
        padding-bottom: 2.5rem;
        min-height: auto;
        align-items: flex-end;
    }

    .coluna-hero-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.25rem;
    }

    /* Foto centralizada no mobile */
    .coluna-hero-photo-wrap {
        align-self: center;
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }

    .coluna-hero-avatar,
    .coluna-hero-photo-wrap img {
        width: 120px;
        height: 120px;
    }

    /* Info centralizada */
    .coluna-hero-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .coluna-hero-label {
        justify-content: center;
    }

    /* Badge verificado centralizado no mobile */
    .coluna-verified-badge-wrap {
        display: flex;
        justify-content: center;
    }

    .coluna-hero-name-wrap {
        text-align: center;
    }

    .coluna-hero-name {
        font-size: 1.875rem;
        line-height: 1.15;
    }

    .coluna-hero-sub {
        justify-content: center;
    }

    .coluna-hero-bio {
        max-width: 100%;
        font-size: .9375rem;
        text-align: center;
    }

    /* Ações: grid 2 colunas para os botões, sociais em linha separada */
    .coluna-hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .5rem;
        width: 100%;
    }

    .coluna-btn-follow,
    .coluna-btn-outline,
    .coluna-btn-whatsapp {
        justify-content: center;
        font-size: .8125rem;
        padding: .55rem .75rem;
    }

    /* Ícones sociais ocupam linha inteira abaixo dos botões */
    .coluna-hero-socials {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        gap: .5rem;
        padding-top: .5rem;
        border-top: 1px solid rgba(44,95,90,.25);
        margin-top: .125rem;
    }

    .coluna-social-icon {
        width: 30px;
        height: 30px;
    }

    .coluna-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 0;
    }
}

@media (max-width: 479px) {
    .coluna-metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .coluna-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   ÁREAS DE WIDGET
════════════════════════════════════════════════════════════ */
.coluna-widget-area {
    width: 100%;
}

/* Full-width: após hero e antes do rodapé */
.coluna-widget-area--full {
    padding: 1rem 0;
}

.coluna-widget-area--full .container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Sidebar: antes do Acompanhe e após newsletter */
.coluna-widget-area--sidebar {
    margin-bottom: 1.25rem;
}

/* Widget genérico dentro das áreas */
.coluna-widget-area .widget {
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 16px;
    padding: 1.25rem 1.375rem;
    font-family: var(--font-display);
    font-size: .875rem;
    color: var(--color-text);
}

.coluna-widget-area .widget-title,
.coluna-widget-area .widgettitle {
    font-size: .8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--color-text);
    margin: 0 0 1rem;
}
