/* Sobre — tema escuro */

.section-inner {
    max-width: 620px;
    margin: 0 auto;
    padding: clamp(44px, 7vw, 64px) 24px;
}

.content-inner {
    text-align: left;
}

.hero {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.content {
    background: var(--bg-dark);
}

.content-block {
    margin-bottom: 36px;
}

.content-block h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
}

.content-block p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.65;
}

.highlight {
    color: var(--highlight);
    font-weight: 600;
}

ul {
    list-style: none;
    margin-top: 10px;
}

ul li {
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.cycle-block {
    padding: 22px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.cycle-text {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
}

.final {
    font-size: 1.05rem;
    color: var(--highlight);
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 28px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s;
}

.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}
