    :root {
      --bg: #f5f7fb;
      --bg-soft: #ffffff;
      --bg-soft-alt: #f9fafb;
      --border: #dde1ee;
      --border-soft: #e5e7eb;
      --text: #111827;
      --muted: #6b7280;
      --accent: #2563eb;
      --accent-soft: #e0edff;
      --accent-soft-alt: #eef2ff;
      --radius: 10px;
    }

    * { box-sizing: border-box; }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    html,
    body {
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
    }

    body {
      margin: 0;
      padding: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    .ep-page-shell {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* HEADER */
    .ep-site-header {
      background: #ffffff;
      color: #111827;
      padding: 12px 18px;
      box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
      border-bottom: 1px solid #e5e7eb;
    }

    .ep-site-header-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .ep-site-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: inherit;
    }

    .ep-site-logo img {
      width: 32px;
      height: 32px;
      border-radius: 8px;
    }

    .ep-site-title {
      font-size: 1.1rem;
      font-weight: 600;
    }

    .ep-site-tagline {
      font-size: 0.8rem;
      color: #6b7280;
    }

    .ep-site-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.9rem;
    }

    .ep-site-nav a {
      color: #111827;
      text-decoration: none;
      padding: 4px 10px;
      border-radius: 999px;
      transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease;
    }

    .ep-site-nav a:hover {
      background: #e5edff;
      color: #1d4ed8;
      transform: translateY(-1px);
    }

    @media (max-width: 720px) {
      .ep-site-header-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    /* MAIN */
    .ep-main {
      padding: 24px 16px 32px;
      flex: 1;
    }

    .ep-main-inner {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      gap: 24px;
      grid-template-columns: minmax(0, 1fr);
      align-items: flex-start;
      min-width: 0;
    }

    @media (max-width: 640px) {
      .ep-main {
        padding: 20px 12px 28px;
      }
    }

    /* CONTAINER PRINCIPAL */
    .ep-container {
      width: 100%;
      max-width: 100%;
      padding: 24px 20px 24px;
      background: var(--bg-soft);
      border-radius: 14px;
      border: 1px solid var(--border);
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    }

    @media (min-width: 900px) {
      .ep-container {
        padding: 32px 32px 30px;
      }
    }

    @media (max-width: 640px) {
      .ep-container {
        padding: 20px 16px 20px;
      }
    }

    /* FOOTER */
    .ep-site-footer {
      margin-top: auto;
      background: #f3f4f6;
      color: #4b5563;
      padding: 16px 16px 20px;
      font-size: 0.85rem;
      border-top: 1px solid #e5e7eb;
    }

    .ep-site-footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .ep-site-footer-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      justify-content: space-between;
    }

    .ep-site-footer a {
      color: #111827;
      text-decoration: none;
    }

    .ep-site-footer a:hover {
      text-decoration: underline;
    }

    .ep-footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      align-items: center;
    }

    /* BREADCRUMB */
    .ep-breadcrumb {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 10px;
    }

    .ep-breadcrumb span + span::before {
      content: "›";
      margin: 0 4px;
      color: #9ca3af;
    }

    .ep-breadcrumb a {
      text-decoration: none;
      color: inherit;
    }

    .ep-breadcrumb a:hover {
      text-decoration: underline;
    }

    /* HERO SOBRE NÓS – CLARO E COMPACTO */
    .ep-about-hero {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
      gap: 20px;
      padding: 20px 20px 18px;
      border-radius: 16px;
      background: radial-gradient(circle at top left, #eef2ff, #ffffff 55%);
      border: 1px solid var(--border-soft);
      align-items: center;
      margin-bottom: 22px;
    }

    @media (max-width: 880px) {
      .ep-about-hero {
        grid-template-columns: minmax(0, 1fr);
        padding: 18px 16px 18px;
      }
    }

    .ep-about-hero-left {
      min-width: 0;
    }

    .ep-about-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 3px 9px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: #1d4ed8;
      margin-bottom: 8px;
    }

    .ep-about-title {
      margin: 0 0 6px;
      font-size: 1.9rem;
      color: var(--text);
    }

    .ep-about-subtitle {
      margin: 0 0 10px;
      font-size: 0.98rem;
      color: #4b5563;
      max-width: 640px;
    }

    .ep-about-hero-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .ep-about-hero-links a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.88rem;
      text-decoration: none;
      border-radius: 999px;
      padding: 7px 14px;
      border: 1px solid #d1d5db;
      color: #ffffff;
      background: #2563eb;
      transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease, box-shadow 0.12s ease;
    }

    .ep-about-hero-links a span {
      font-size: 1rem;
    }

    .ep-about-hero-links a.ep-hero-primary {
      background: #2563eb;
      color: #f9fafb;
      border-color: #2563eb;
      box-shadow: 0 10px 25px rgba(37, 99, 235, 0.18);
    }

    .ep-about-hero-links a.ep-hero-primary:hover {
      background: #1d4ed8;
      border-color: #1d4ed8;
      transform: translateY(-1px);
      box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
    }

    .ep-about-hero-links a:not(.ep-hero-primary):hover {
      background: #f3f4ff;
      border-color: #cbd5f5;
      transform: translateY(-1px);
    }

    .ep-about-hero-right {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      background: #111827;
      min-height: 160px;
      box-shadow: 0 14px 32px rgba(15, 23, 42, 0.3);
    }

    .ep-about-hero-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.02);
      transition: transform 0.4s ease;
    }

    .ep-about-hero-right::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.82),
        rgba(15, 23, 42, 0.28)
      );
      z-index: 1;
    }

    .ep-about-hero-right-inner {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 14px 14px 16px;
      color: #e5e7eb;
    }

    .ep-about-hero-right-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      opacity: 0.9;
      margin-bottom: 4px;
    }

    .ep-about-hero-right-text {
      font-size: 0.86rem;
      max-width: 260px;
    }

    .ep-about-hero-right:hover img {
      transform: scale(1.06);
    }

    @media (max-width: 640px) {
      .ep-about-title {
        font-size: 1.6rem;
      }
    }

    /* SEÇÕES SOBRE */
    .ep-about-section {
      margin-top: 26px;
    }

    .ep-about-section-header {
      margin-bottom: 14px;
    }

    .ep-about-section-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #6b7280;
      margin-bottom: 4px;
    }

    .ep-about-section-title {
      font-size: 1.4rem;
      margin: 0;
    }

    .ep-about-section p {
      font-size: 0.96rem;
      color: #374151;
      margin: 0 0 10px;
    }

    .ep-about-section p:last-child {
      margin-bottom: 0;
    }

    /* IMAGEM MEIO DA PÁGINA – ALTURA REDUZIDA */
    .ep-about-image-hero {
      margin: 22px 0 0;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid #e5e7eb;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
      max-height: 230px;
    }

    .ep-about-image-hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* GRID DE TEXTO (DUAS COLUNAS) */
    .ep-about-grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
      margin-top: 26px;
    }

    .ep-about-grid-2 p {
      font-size: 0.96rem;
      color: #374151;
      margin: 0 0 10px;
    }

    .ep-about-grid-2 p:last-child {
      margin-bottom: 0;
    }

    @media (max-width: 768px) {
      .ep-about-grid-2 {
        grid-template-columns: 1fr;
      }
    }

    /* BLOCO METODOLOGIA / LINKAGEM INTERNA */
    .ep-about-method {
      margin-top: 32px;
      padding: 18px 16px 16px;
      border-radius: 12px;
      background: var(--bg-soft-alt);
      border: 1px dashed var(--border);
    }

    .ep-about-method-title {
      margin: 0 0 6px;
      font-size: 1.1rem;
    }

    .ep-about-method p {
      margin: 0 0 6px;
      font-size: 0.94rem;
      color: #4b5563;
    }

    .ep-about-method a {
      color: var(--accent);
      text-decoration: none;
    }

    .ep-about-method a:hover {
      text-decoration: underline;
    }

    /* CTA FINAL CENTRALIZADA */
    .ep-about-links-bottom {
      margin-top: 24px;
      text-align: center;
    }

    .ep-about-links-bottom .ep-about-hero-links {
      justify-content: center;
    }

    /* EQUIPE */
    .ep-about-team {
      margin-top: 40px;
    }

    .ep-about-team-header {
      margin-bottom: 18px;
    }

    .ep-about-team-label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #769772;
      margin-bottom: 2px;
    }

    .ep-about-team-title {
      margin: 0;
      font-size: 1.7rem;
    }

    .ep-about-team-text {
      margin: 8px 0 0;
      font-size: 0.95rem;
      color: #4b5563;
      /* removido max-width para ocupar a largura do conteúdo, como em "O começo da nossa jornada" */
    }

    .ep-team-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      margin-top: 24px;
    }

    @media (max-width: 900px) {
      .ep-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .ep-team-grid {
        grid-template-columns: 1fr;
      }
    }

    .ep-team-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      min-height: 260px;
      background-color: #111827;
      box-shadow: 0 14px 35px rgba(15, 23, 42, 0.32);
    }

    .ep-team-photo {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.02);
      transition: transform 0.4s ease;
    }

    .ep-team-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0.18)
      );
      z-index: 1;
    }

    .ep-team-meta {
      position: relative;
      z-index: 2;
      padding: 16px 16px 18px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      height: 100%;
    }

    .ep-team-name {
      font-size: 1.02rem;
      font-weight: 600;
      color: #f9fafb;
      text-transform: none;
      margin: 0 0 2px;
    }

    .ep-team-role {
      font-size: 0.86rem;
      color: #e5e7eb;
    }

    .ep-team-tag {
      display: inline-flex;
      align-items: center;
      padding: 2px 8px;
      border-radius: 999px;
      background: rgba(248, 250, 252, 0.08);
      color: #e5e7eb;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 6px;
    }

    .ep-team-card:hover .ep-team-photo {
      transform: scale(1.06);
    }