  :root {
    --bg: #faf6ec;
    --fg: #141414;
    --accent: #6b7a3f;
    --accent-light: #9cb46a;
    --muted: #5c5346;
    --brown: #7a4a2f;
    --grena: #7c1f2e;
  }

  * { box-sizing: border-box; }

  ::selection {
    background-color: var(--accent);
    color: #fff;
  }
  ::-moz-selection {
    background-color: var(--accent);
    color: #fff;
  }

  body {
    margin: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: "Space Mono", monospace;
  }

  .page {
    width: 100%;
  }

  .page-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 2.5rem;
  }

  /* Navegação */
  .site-nav {
    position: sticky;
    top: 0;
    background: var(--bg);
    padding: 1.5rem 0;
    z-index: 10;
  }

  .nav-list-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
  }

  .nav-list {
    display: flex;
    justify-content: flex-end;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-item {
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Space Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 15px;
    color: var(--grena);
    padding: 0 0 0.7rem 0;
    opacity: 0.75;
    transition: opacity 0.25s ease;
  }

  .nav-item:hover {
    opacity: 1;
  }

  .nav-item.active {
    opacity: 1;
    font-weight: 700;
  }

  .nav-indicator {
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color: var(--accent);
    transition: left 0.35s ease, width 0.35s ease;
  }

  section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
  }

  #home {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }

  .placeholder-section {
    justify-content: flex-start;
  }

  .section-eyebrow {
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1rem 0;
  }

  .section-title-bar {
    width: 60px;
    height: 3px;
    background-color: var(--accent-light);
    margin: 0 0 2rem 0;
  }

  /* Seção Contatos */
  #contatos {
    background: #0d0d0d;
    color: #f5f5f5;
  }

  #contatos .section-eyebrow {
    color: var(--accent-light);
  }

  #contatos .section-title {
    color: #f5f5f5;
  }

  .contact-text {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 540px;
    color: #f5f5f5;
    margin: 0 0 1.75rem 0;
  }

  .contact-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .contact-link-label {
    font-family: "Space Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    color: var(--accent-light);
  }

  .contact-link-url {
    font-family: "Space Mono", monospace;
    font-size: 15px;
    color: #f5f5f5;
    text-decoration: underline;
    text-decoration-color: var(--accent-light);
    text-underline-offset: 3px;
    transition: color 0.25s ease;
  }

  .contact-link-url:hover {
    color: var(--accent-light);
  }

  .hero-content {
    width: 100%;
    max-width: 900px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: nowrap;
  }

  .hero-name-block {
    text-align: left;
    flex: 1 1 auto;
    min-width: 0;
  }

  .name-large {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: 700;
    line-height: 0.9;
    margin: 0;
    display: flex;
  }

  .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: charIn 0.5s ease forwards;
    margin-right: -0.05em;
  }

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

  .hero-role {
    margin-top: 0.9rem;
  }

  .role-text {
    position: relative;
    display: inline-block;
    font-family: "Space Mono", monospace;
    text-transform: uppercase;
    font-size: clamp(1.1rem, 2.4vw, 1.75rem);
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.8s;
  }

  .role-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background-color: var(--accent-light);
    transform: scaleX(0);
    transform-origin: left;
    animation: growLine 1s ease-out forwards;
    animation-delay: 2.8s;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  @keyframes growLine {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }

  .hero-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.1rem;
    flex-shrink: 0;
    white-space: nowrap;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 2s;
  }

  .meta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
  }

  .meta-label {
    font-size: 13px;
    font-weight: 400;
    color: var(--fg);
    text-transform: none;
    letter-spacing: 0.5px;
  }

  .meta-value {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
  }

  /* Bloco "Atualmente" */
  .current-block {
    margin-top: 3rem;
    text-align: left;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 2.3s;
  }

  .current-label {
    display: block;
    font-family: "Space Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
  }

  .current-text {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--fg);
    max-width: 480px;
  }

  .fiemg {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--accent-light);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
  }

  /* Experiência — acordeão */
  .experience-timeline {
    max-width: 760px;
    margin-top: 1rem;
  }

  .experience-item {
    border-bottom: none;
    box-shadow: 0 1px 0 0 rgba(20, 20, 20, 0.15);
    transition: box-shadow 0.25s ease;
  }

  .experience-item:hover {
    box-shadow: 0 2px 0 0 var(--accent-light);
  }

  .experience-header {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 0;
    text-align: left;
    font-family: "Space Mono", monospace;
    color: var(--fg);
  }

  .experience-years {
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--grena);
    flex-shrink: 0;
    width: 110px;
  }

  .experience-role {
    flex: 1 1 auto;
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 700;
  }

  .experience-toggle {
    flex-shrink: 0;
    font-size: 14px;
    color: var(--accent);
    transition: transform 0.25s ease;
  }

  .experience-item.open .experience-toggle {
    transform: rotate(45deg);
  }

  .experience-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .experience-list {
    list-style: none;
    margin: 0;
    padding: 0 0 1.4rem 0;
  }

  .experience-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: var(--muted);
  }

  .experience-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
  }

  .company {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--accent-light);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
  }

  .about-text {
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    line-height: 1.75;
    color: var(--fg);
    max-width: 680px;
    text-align: justify;
    margin: 0 0 0.75rem 0;
  }

  .about-text:last-child {
    margin-bottom: 0;
  }

  .replay-btn {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: 1px solid var(--muted);
    color: var(--fg);
    font-family: "Space Mono", monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
  }

  .replay-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
  }
