  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    /* Paleta oficial do manual da marca */
    --color-blue-dark: #314759;
    --color-blue-muted: #56738C;
    --color-blue-medium: #7EA1BF;
    --color-blue-light: #C4DDF2;
    --color-brown-dark: #260C06;
    --color-turquoise: #33A9AC;
    --color-orange: #FFA646;
    --color-coral: #F86041;
    --color-magenta: #982062;
    --color-indigo: #343779;

    /* Tokens semânticos do hotsite */
    --gold: var(--color-orange);
    --orange: var(--color-coral);
    --dark: var(--color-blue-dark);
    --cream: #f4f1eb;
    --cream-mid: #e8e2d6;
    --border: #e0d9cc;
    --text: #2a2a2a;
    --muted: #666;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: Georgia, 'Times New Roman', serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
  }

  /* ─── UTIL ─── */
  .sans { font-family: Arial, Helvetica, sans-serif; }
  .label {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .section-rule {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
  }
  .section-rule span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
  }
  .section-rule::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }

  /* ─── TOPBAR ─── */
  .topbar {
    background: var(--dark);
    text-align: center;
    padding: 10px 24px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #999;
    letter-spacing: 0.03em;
  }
  .topbar a { color: #ccc; }

  /* ─── NAV ─── */
  .nav-hamburger { display: none; }
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #1e1e1e;
    border-bottom: 2px solid var(--gold);
  }
  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo img { height: 54px; display: block; padding: 12px 0; }
  .nav-links { display: flex; gap: 0; }
  .nav-links a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #aaa;
    padding: 18px 18px;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }

  /* ─── HERO ─── */
  .hero {
    background: var(--dark);
    height: calc(100vh - var(--header-h, 95px));
    display: flex;
    align-items: stretch;
  }
  .hero-inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
  .hero-photo {
    width: 44%;
    flex-shrink: 0;
    overflow: hidden;
  }
  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
  .hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 8vw 80px 64px;
  }
  .hero-badge {
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
    border: 1px solid var(--orange);
    padding: 5px 14px;
    margin-bottom: 28px;
    width: fit-content;
  }
  .hero h1 {
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 400;
    color: #f5f0e8;
    line-height: 1.05;
    margin-bottom: 16px;
    max-width: 800px;
  }
  .hero h1 em { color: var(--orange); font-style: italic; }
  .hero-dates {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 28px;
  }
  .hero-rule {
    width: 56px; height: 2px;
    background: var(--orange);
    margin-bottom: 28px;
  }
  .hero-lead {
    font-size: 18px;
    color: #ccc;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 40px;
  }
  .hero-cta {
    display: inline-block;
    width: 260px;
    background: var(--gold);
    color: var(--dark);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 28px;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
  }
  .hero-cta:hover { background: var(--color-turquoise); color: #fff; }

  /* ─── CONTAINER ─── */
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* ─── SECTIONS ─── */
  section { padding: 80px 0; }
  section:nth-child(even) { background: #fff; }

  /* ─── REPORTAGENS ─── */
  #reportagens { background: var(--cream); }

  .destaques-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }
  .destaques-grid.full { grid-template-columns: 1fr; }

  .card {
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s;
  }
  .card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); }

  .card-img {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
    display: block;
    background: var(--cream-mid);
  }
  .card-img-placeholder {
    width: 100%;
    aspect-ratio: 16/7;
    background: var(--cream-mid);
  }

  .card-body {
    padding: 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-left: 4px solid var(--gold);
  }
  .card-body .label { margin-bottom: 12px; }
  .card-body h2 {
    font-size: 22px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 12px;
  }
  .card-body h3 {
    font-size: 19px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 10px;
  }
  .card-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 20px;
    flex: 1;
  }
  .card-link {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1.5px solid var(--gold);
    padding-bottom: 2px;
    display: inline-block;
    transition: color 0.2s;
    width: fit-content;
  }
  .card-link:hover { color: var(--gold); }

  /* Card horizontal (large) */
  .card-hero {
    flex-direction: row;
    align-items: stretch;
  }
  .card-hero .card-img-wrap {
    width: 42%;
    flex-shrink: 0;
    overflow: hidden;
  }
  .card-hero .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .card-hero .card-body { border-left: 4px solid var(--gold); }
  .card-hero .card-body h2 { font-size: 26px; }

  /* ─── BOXES GRID ─── */
  .boxes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .box-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s;
  }
  .box-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
  .box-card .label { margin-bottom: 10px; font-size: 10px; }
  .box-card h4 {
    font-size: 17px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .box-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
  }

  /* ─── CITAÇÃO ─── */
  .quote-section {
    background: var(--color-brown-dark);
    padding: 80px 0;
  }
  .quote-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
  }
  .quote-mark {
    font-size: 80px;
    color: var(--gold);
    font-family: Georgia, serif;
    line-height: 0.5;
    display: block;
    margin-bottom: 24px;
    opacity: 0.6;
  }
  .quote-text {
    font-size: clamp(19px, 2.5vw, 26px);
    font-style: italic;
    color: #f0ebe2;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .quote-author {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
  }

  /* ─── VÍDEOS ─── */
  #videos { background: #1a2530; }
  #videos .section-rule span { color: var(--gold); }
  #videos .section-rule::after { background: #333; }

  .videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .video-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
  }
  .video-card:hover { border-color: var(--gold); }
  .video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #0d0d0d;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
  }
  .video-thumb a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
  }
  .play-btn {
    width: 56px; height: 56px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .video-card:hover .play-btn { background: var(--gold); }
  .play-btn::after {
    content: '';
    display: block;
    width: 0; height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 17px solid var(--gold);
    margin-left: 4px;
    transition: border-left-color 0.2s;
  }
  .video-card:hover .play-btn::after { border-left-color: var(--dark); }
  .video-info {
    padding: 20px 22px;
    border-left: 3px solid var(--gold);
  }
  .video-info p {
    font-family: Georgia, serif;
    font-size: 15px;
    color: #e8e2d6;
    line-height: 1.45;
    margin-bottom: 8px;
  }
  .video-info span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #999;
    letter-spacing: 0.03em;
  }

  /* ─── GALERIA ─── */
  #galeria { background: var(--cream); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .gallery-item {
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
  }
  .gallery-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
  }
  .gallery-item:hover img { transform: scale(1.03); }
  .gallery-caption {
    padding: 16px 20px 20px;
    border-top: 1px solid var(--border);
  }
  .gallery-caption strong {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
  }
  .gallery-caption span {
    font-family: Georgia, serif;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
  }

  /* ─── CRONOLOGIA ─── */
  #biografia { background: #fff; }
  .timeline {
    position: relative;
    max-width: 100%;
  }
  .timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    padding-bottom: 40px;
  }
  .timeline-item:last-child { padding-bottom: 0; }

  /* linha vertical contínua passa pelo centro do dot */
  .timeline-item::before {
    content: '';
    position: absolute;
    left: 85px;
    top: 22px;
    bottom: -2px;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
  }
  .timeline-item:last-child::before { display: none; }

  .timeline-year {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    width: 80px;
    padding-top: 4px;
    flex-shrink: 0;
  }
  .timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 7px;
    position: relative;
    z-index: 1;
  }
  .timeline-text {
    padding-left: 32px;
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    padding-top: 0;
  }

  /* ─── REFERÊNCIAS ─── */
  .references {
    max-width: 100%;
    font-size: 13px;
    color: #444;
    line-height: 1.7;
  }
  .references p { margin-bottom: 14px; }
  .references a {
    color: var(--gold);
    text-decoration: underline;
    word-break: break-all;
  }
  .references a:hover { color: var(--color-turquoise); }

  /* ─── RODAPÉ ─── */
  footer { font-family: Arial, Helvetica, sans-serif; }
  .footer-social {
    background: #e87722;
    padding: 20px 40px;
  }
  .footer-social-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-social-text p { margin: 0; color: #fff; font-size: 14px; }
  .footer-social-text p strong { font-weight: 700; }
  .footer-social-icons { display: flex; gap: 12px; align-items: center; }
  .footer-social-icons a img { display: block; width: 40px; height: 40px; }
  .footer-address {
    background: #E65C0C;
    padding: 16px 40px;
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
  }
  .footer-address a { color: #fff; font-weight: 700; text-decoration: none; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .destaques-grid { grid-template-columns: 1fr; }
    .card-hero { flex-direction: column; }
    .card-hero .card-img-wrap { width: 100%; aspect-ratio: 16/7; }
    .card-hero .card-img-wrap img { height: 100%; }
    .videos-grid { grid-template-columns: 1fr 1fr; }
    .boxes-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    /* nav hamburger */
    .nav-inner { padding: 0 16px; position: relative; }
    .nav-hamburger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .nav-hamburger span {
      display: block;
      height: 2px;
      background: #aaa;
      border-radius: 2px;
      transition: background 0.2s;
    }
    .nav-hamburger:hover span { background: var(--gold); }
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #1e1e1e;
      border-top: 1px solid #333;
      z-index: 200;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 16px 20px; font-size: 11px; border-bottom: 1px solid #333; border-bottom-color: #333 !important; }

    .container { padding: 0 20px; }
    section { padding: 48px 0; }
    .section-rule { margin-bottom: 28px; }

    /* hero: auto height on mobile */
    .hero { height: auto; }
    .hero-inner { flex-direction: column; }
    .hero-photo { width: 100%; height: 280px; }
    .hero-text { padding: 40px 20px 40px; }
    .hero h1 { font-size: 38px; }
    .hero-lead { font-size: 16px; }

    .card-body { padding: 20px 20px; }
    .card-body h2 { font-size: 19px; }
    .card-body h3 { font-size: 17px; }
    .card-body p { font-size: 14px; }

    .box-card { padding: 20px; }
    .box-card h4 { font-size: 16px; }

    .quote-inner { padding: 0 20px; }
    .quote-text { font-size: 18px; }

    .videos-grid { grid-template-columns: 1fr; }

    .timeline-item::before { left: 60px; }
    .timeline-year { width: 52px; font-size: 12px; }
    .timeline-text { font-size: 13px; padding-left: 20px; }

    .footer-social { padding: 20px; }
    .footer-social-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-address { padding: 16px 20px; }
  }
