/* ============================================================
   COMPONENT FONTS
   PP Right Grotesk — armazenada localmente em /fonts/
   Source Sans Pro — carregada via Google Fonts (functions.php)
   ============================================================ */

@font-face {
  font-family: 'PP Right Grotesk';
  src: url('../fonts/PPRightGrotesk-WideMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Right Grotesk';
  src: url('../fonts/PPRightGrotesk-WideMediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* ============================================================
   NOTIFICATION CARD — Fake Door Component
   Design: Figma / Girassol DS
   Cores próprias do produto (não seguem o DS do portfólio)
   ============================================================ */

/* Tokens locais do componente */
:root {
  --nc-brand-pure:       #00B569;
  --nc-brand-dark:       #007A3D;
  --nc-brand-light:      #E6FFF4;
  --nc-text-primary:     #1A1A2E;
  --nc-text-muted:       #8A8A8A;
  --nc-bg-default:       #FFFFFF;
  --nc-bg-hover:         #F5F5F5;
  --nc-border:           #E8E8E8;
  --nc-divider:          #EBEBEB;
}

/* Container wrapper — responsivo */
.notification-card-wrapper {
  width: 100%;
}

/* Card */
.notification-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--nc-bg-default);
  border: 1px solid var(--nc-border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.notification-card:hover {
  background: var(--nc-bg-hover);
}

/* Conteúdo interno */
.notification-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 16px;
  width: 100%;
  box-sizing: border-box;
}

/* Ícone circular */
.notification-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F3FFD8;
  padding: 12px;
  box-sizing: border-box;
  transition: background 0.2s ease;
}

.notification-card:hover .notification-icon {
  background: #DEDEDE;
}

.notification-card:hover .notification-icon svg {
  color: #757575;
}

.notification-card:hover .notification-icon svg path {
  fill: currentColor;
}

.notification-card:hover .notification-title {
  color: #757575;
}

.notification-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  color: var(--nc-brand-pure);
  transition: color 0.2s ease;
}

/* Coluna de texto */
.notification-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

/* Título */
.notification-title,
.notification-card-wrapper .notification-title {
  font-family: 'PP Right Grotesk', var(--font-family-base);
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: 115%;
  color: var(--nc-text-primary);
  margin: 0;
}

/* Corpo */
.notification-body,
.notification-card-wrapper .notification-body {
  font-family: var(--font-family-base);
  font-size: 16px !important;
  font-weight: 400;
  line-height: 150% !important;
  color: var(--nc-text-primary);
  margin: 0;
}

.notification-body a,
.notification-card-wrapper .notification-body a {
  color: var(--nc-brand-dark);
  font-weight: 400;
  text-decoration: underline;
  transition: color 0.2s ease;
  pointer-events: none;
  cursor: default;
}

.notification-body a:hover,
.notification-card-wrapper .notification-body a:hover {
  color: var(--nc-brand-dark);
}

/* Data */
.notification-date,
.notification-card-wrapper .notification-date {
  font-family: var(--font-family-base);
  font-size: 14px !important;
  font-weight: 400;
  line-height: 115%;
  color: var(--nc-text-muted);
  margin: 0;
}

/* Divisor */
.notification-divider {
  width: 100%;
  height: 1px;
  background: var(--nc-divider);
  margin: 0;
}

/* Reset — sobrescreve .conteudo-padrao p e estilos globais do tema */
.notification-card-wrapper p,
.notification-card-wrapper .notification-title,
.notification-card-wrapper .notification-body,
.notification-card-wrapper .notification-date {
  margin: 0;
  padding: 0;
  line-height: 115%;
}

.conteudo-padrao .notification-card-wrapper p {
  margin-bottom: 0;
  line-height: 115%;
}

/* Responsivo */
@media (max-width: 480px) {
  .notification-title,
  .notification-card-wrapper .notification-title {
    font-size: 17px;
  }
}

/* ============================================================
   MENU ÂNCORA — navegação entre seções do post
   Spec Figma 135:16665 (GP - Home)
   ============================================================ */

.gp-post-body__content .gp-anchor-nav {
  margin-bottom: var(--spacing-2xs);                         /* 24px */
}
.gp-post-body__content .gp-anchor-nav__label {
  color: var(--neutral-color-low-pure);
  font-size: var(--font-size-xs);                            /* 20px — Body/LG */
  font-weight: var(--font-weight-bold);                      /* Bold */
  line-height: 1.33;
  margin-bottom: var(--spacing-4xs);                         /* 16px */
}
.gp-post-body__content .gp-anchor-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-micro);                                 /* 12px */
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}
.gp-post-body__content .gp-anchor-nav__list .gp-btn {
  text-decoration: none;
  width: auto;
}
/* WordPress wpautop pode envolver os <a> em <p> — neutraliza wrapper */
.gp-post-body__content .gp-anchor-nav__list p {
  display: contents;
}
/* WordPress wpautop insere <br> entre os <a> em quebras de linha — remove */
.gp-post-body__content .gp-anchor-nav__list br {
  display: none;
}

/* Mobile — botões em coluna, largura 100% */
@media (max-width: 440px) {
  .gp-post-body__content .gp-anchor-nav__list {
    flex-direction: column;
    align-items: stretch;
  }
  .gp-post-body__content .gp-anchor-nav__list .gp-btn {
    width: 100%;
  }
}

/* ============================================================
   TITULO PAGINA — quebra de seção dentro de the_content
   Uso: <div class="titulo-pagina"> dentro de .conteudo-padrao
   ============================================================ */

.titulo-pagina {
  clear: both;
  width: 100%;
  text-align: center !important;
  padding: 60px 0;
}

.conteudo-padrao .titulo-pagina {
  padding: 0;
  margin-bottom: 16px;
}

.titulo-pagina .txt-descricao-01 {
  color: var(--color-primary);
  font-weight: 900;
  font-size: 18px;
  display: block;
  text-align: center !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.titulo-pagina .ttl-01 {
  color: var(--color-dark);
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center !important;
  line-height: normal;
  display: block;
  margin-bottom: 16px;
}

.titulo-pagina .line {
  width: 65px;
  height: 1px;
  background: var(--color-primary);
  display: block;
  margin: 0 auto;
}

/* ============================================================
   GP-BTN — Design System v2 Button Component
   Fonte: GP - Core Components / GP - Button (Figma)
   Tokens: tokens.css → --btn-*
   Variantes: --primary (Filled) | --secondary (Outline) | --terciary (Outline SM)
   Tamanhos:  --sm | --md (default) | --lg
   Estados:   default | hover | :focus-visible | selected | disabled
   OnColor:   .gp-btn--on-color
   ============================================================ */

/* ── Base ─────────────────────────────────────────────────── */
.gp-btn {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--btn-gap);
  font-family: var(--font-family-base);
  font-weight: var(--btn-font-weight);
  font-size: var(--btn-font-size-md);
  padding: var(--btn-padding-v-md) var(--btn-padding-h-md);
  border-width: var(--btn-border-width);
  border-style: solid;
  border-radius: var(--btn-border-radius);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  box-sizing: border-box;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

/* ── Tamanhos ─────────────────────────────────────────────── */
.gp-btn--sm {
  min-height: 34px;
  font-size: var(--btn-font-size-sm);
  padding: var(--btn-padding-v-sm) var(--btn-padding-h-sm);
}
.gp-btn--md {
  min-height: 48px;
  font-size: var(--btn-font-size-md);
  padding: var(--btn-padding-v-md) var(--btn-padding-h-md);
}
.gp-btn--lg {
  min-height: 56px;
  font-size: var(--btn-font-size-lg);
  padding: var(--btn-padding-v-md) var(--btn-padding-h-md);
}

/* ── Primary — Filled ─────────────────────────────────────── */
.gp-btn--primary {
  background-color: var(--btn-color-bg-filled);    /* #07989c */
  border-color:     var(--btn-color-border);        /* #07989c */
  color:            var(--btn-color-label-onfill);  /* #ffffff */
}
.gp-btn--primary:hover {
  background-color: var(--btn-color-hover-bg);      /* #4dffcd */
  border-color:     var(--btn-color-hover-border);  /* #4dffcd */
  color:            var(--btn-color-hover-label);   /* #2c3e51 */
  text-decoration: none;
}
.gp-btn--primary:focus-visible {
  background-color: var(--btn-color-bg-filled);
  border-color:     var(--btn-color-border);
  color:            var(--btn-color-label-onfill);
  outline: var(--btn-border-width-focus) solid var(--btn-focus-ring-color);
  outline-offset: var(--btn-border-width-focus);
}
.gp-btn--primary:disabled,
.gp-btn--primary.is-disabled {
  background-color: var(--btn-color-disabled-bg);     /* #657281 */
  border-color:     var(--btn-color-disabled-border); /* #657281 */
  color:            var(--btn-color-disabled-label);  /* #9cafc6 */
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Secondary — Outline ──────────────────────────────────── */
.gp-btn--secondary {
  background-color: transparent;
  border-color:     var(--btn-color-border);          /* #07989c */
  color:            var(--btn-color-label-onoutline); /* #07989c */
}
.gp-btn--secondary:hover {
  background-color: var(--btn-color-hover-bg);        /* #4dffcd */
  border-color:     var(--btn-color-hover-border);    /* #4dffcd */
  color:            var(--btn-color-hover-label);     /* #2c3e51 */
  text-decoration: none;
}
.gp-btn--secondary:focus-visible {
  background-color: transparent;
  border-color:     var(--btn-color-border);
  color:            var(--btn-color-label-onoutline);
  outline: var(--btn-border-width-focus) solid var(--btn-focus-ring-color);
  outline-offset: var(--btn-border-width-focus);
}
.gp-btn--secondary.is-selected {
  background-color: var(--btn-color-selected-bg);    /* #07989c */
  border-color:     var(--btn-color-selected-bg);
  color:            var(--btn-color-selected-label); /* #ffffff */
}
.gp-btn--secondary:disabled,
.gp-btn--secondary.is-disabled {
  background-color: var(--btn-color-disabled-bg);     /* #657281 */
  border-color:     var(--btn-color-disabled-border); /* #657281 */
  color:            var(--btn-color-disabled-label);  /* #9cafc6 */
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Terciary — Outline SM (mesmo visual do Secondary) ───── */
.gp-btn--terciary {
  background-color: transparent;
  border-color:     var(--btn-color-border);          /* #07989c */
  color:            var(--btn-color-label-onoutline); /* #07989c */
}
.gp-btn--terciary:hover {
  background-color: var(--btn-color-hover-bg);        /* #4dffcd */
  border-color:     var(--btn-color-hover-border);    /* #4dffcd */
  color:            var(--btn-color-hover-label);     /* #2c3e51 */
  text-decoration: none;
}
.gp-btn--terciary:focus-visible {
  background-color: transparent;
  border-color:     var(--btn-color-border);
  color:            var(--btn-color-label-onoutline);
  outline: var(--btn-border-width-focus) solid var(--btn-focus-ring-color);
  outline-offset: var(--btn-border-width-focus);
}
.gp-btn--terciary.is-selected {
  background-color: var(--btn-color-selected-bg);
  border-color:     var(--btn-color-selected-bg);
  color:            var(--btn-color-selected-label);
}
.gp-btn--terciary:disabled,
.gp-btn--terciary.is-disabled {
  background-color: var(--btn-color-disabled-bg);
  border-color:     var(--btn-color-disabled-border);
  color:            var(--btn-color-disabled-label);
  cursor: not-allowed;
  pointer-events: none;
}

/* ── OnColor — fundo escuro ───────────────────────────────── */

/* Primary/Filled OnColor: mint fill default → hover bg/border secondary-dark + label white */
.gp-btn--on-color.gp-btn--primary {
  background-color: var(--btn-on-filled-bg);         /* #4dffcd */
  border-color:     var(--btn-on-filled-border);     /* #4dffcd */
  color:            var(--btn-on-filled-label);      /* #2c3e51 */
}
.gp-btn--on-color.gp-btn--primary:hover {
  background-color: var(--btn-on-filled-hover-bg);   /* #07989c */
  border-color:     var(--btn-on-filled-hover-border);
  color:            var(--btn-on-filled-hover-label); /* #ffffff */
  text-decoration: none;
}
.gp-btn--on-color.gp-btn--primary:focus-visible {
  background-color: var(--btn-on-filled-bg);
  border-color:     var(--btn-on-filled-border);
  color:            var(--btn-on-filled-label);
  outline: var(--btn-border-width-focus) solid var(--btn-on-filled-border);
  outline-offset: var(--btn-border-width-focus);
}

/* Secondary/Terciary Outline OnColor: mint border/text → mint fill hover */
.gp-btn--on-color.gp-btn--secondary,
.gp-btn--on-color.gp-btn--terciary {
  background-color: transparent;
  border-color:     var(--btn-on-outline-border);    /* #4dffcd */
  color:            var(--btn-on-outline-label);     /* #4dffcd */
}
.gp-btn--on-color.gp-btn--secondary:hover,
.gp-btn--on-color.gp-btn--terciary:hover {
  background-color: var(--btn-on-outline-hover-bg);  /* #4dffcd */
  border-color:     var(--btn-on-outline-hover-border);
  color:            var(--btn-on-outline-hover-label); /* #2c3e51 */
  text-decoration: none;
}
.gp-btn--on-color.gp-btn--secondary:focus-visible,
.gp-btn--on-color.gp-btn--terciary:focus-visible {
  background-color: transparent;
  border-color:     var(--btn-on-outline-border);
  color:            var(--btn-on-outline-label);
  outline: var(--btn-border-width-focus) solid var(--btn-on-outline-border);
  outline-offset: var(--btn-border-width-focus);
}

/* Disabled OnColor — mesmas cores do normal */
.gp-btn--on-color:disabled,
.gp-btn--on-color.is-disabled {
  background-color: var(--btn-color-disabled-bg);    /* #657281 */
  border-color:     var(--btn-color-disabled-border);
  color:            var(--btn-color-disabled-label); /* #9cafc6 */
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Ícone ────────────────────────────────────────────────── */
.gp-btn i,
.gp-btn .icon {
  font-size: 1.1em;
  line-height: 1;
}

/* ── Footer submit — largura por colunas ──────────────────── */
footer .wpcf7-form fieldset.form > div:last-of-type p,
.contato__form-wrapper .wpcf7-form fieldset.form > div:last-of-type p {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

footer .wpcf7-form .gp-btn[type="submit"],
.contato__form-wrapper .wpcf7-form .gp-btn[type="submit"] {
  width: auto;
  min-width: 200px;
  margin: 0;
  display: flex;
  height: auto;
  line-height: 1;
}

footer .wpcf7-form .wpcf7-spinner,
.contato__form-wrapper .wpcf7-form .wpcf7-spinner {
  margin: 8px 0 0;
}

@media (max-width: 440px) {
  footer .wpcf7-form .gp-btn[type="submit"],
  .contato__form-wrapper .wpcf7-form .gp-btn[type="submit"] {
    width: 100%;         /* 12 de 12 colunas — mobile */
    margin: 16px auto;
  }
}

/* ── Responsivo — gp-btn ──────────────────────────────────── */

/* CTAs: lg → md em tablet e mobile (mantém filled) */
@media (max-width: 1199px) {
  #fullpage .gp-btn--lg,
  .section-perfil .gp-btn--lg,
  section.blog .gp-btn--lg,
  footer .wpcf7-form .gp-btn--lg,
  .contato__form-wrapper .wpcf7-form .gp-btn--lg {
    min-height: 48px;
    font-size: var(--btn-font-size-md);
    padding: var(--btn-padding-v-md) var(--btn-padding-h-md);
  }
}

/* Cards: secondary md → terciary sm em mobile */
@media (max-width: 768px) {
  .gp-card .gp-btn--secondary.gp-btn--md {
    min-height: 34px;
    font-size: var(--btn-font-size-sm);
    padding: var(--btn-padding-v-sm) var(--btn-padding-h-sm);
  }
}

/* ============================================================
   BT-SOLID — botão primário no tamanho do bt-outline
   Cores e hover do bt-verde · tamanho e fonte do bt-outline
   ============================================================ */

.bt-solid {
  width: auto;
  display: inline-block;
  padding: 0 30px;
  font-size: 12px;
  font-family: var(--font-family-base);
  background-color: var(--color-primary);
  color: #fff !important;
  border: none;
  border-radius: 15px;
  line-height: 30px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.1s;
  cursor: pointer;
}

.bt-solid:hover {
  background-color: var(--color-primary-light);
  color: #fff !important;
  text-decoration: none;
}

/* ============================================================
   RESUMO CASE — card de metadados do projeto
   Spec Figma 135:16642 (desktop) e 160:4570 (mobile)
   Uso: <div class="resumo-case"> dentro de .side-box
   ============================================================ */

.resumo-case {
  background: #fff;
  border: 1px solid var(--neutral-color-high-dark);          /* #E0E4E6 */
  border-radius: 0;
  padding: var(--spacing-2xs);                               /* 24px */
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}

/* Lista de metadados */
.resumo-case__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-2xs) 0;                         /* 24px bottom */
}

.resumo-case__item {
  display: flex;
  align-items: center;
  gap: var(--spacing-4xs);                                   /* 16px */
  padding: var(--spacing-micro) 0;                           /* 12px top/bottom */
  border-bottom: 1px solid var(--neutral-color-high-dark);   /* #E0E4E6 */
  /* Reset genérico ul li de .gp-post-body__content */
  position: static;
  padding-left: 0;
  margin: 0;
}

/* Neutraliza wpautop e bullets genéricos dentro do resumo-case */
.resumo-case__item::before {
  content: none !important;
  display: none !important;
}
.resumo-case p,
.resumo-case br {
  display: none;
}

/* Label (ícone + texto) — largura fixa 141px no desktop/tablet (Figma 160:4570) */
.resumo-case__label {
  display: flex;
  align-items: center;
  gap: var(--spacing-nano);                                  /* 8px */
  flex: 0 0 141px;
  font-size: var(--font-size-xs);                            /* 20px */
  font-weight: var(--font-weight-regular);
  line-height: 1.5;
  color: var(--brand-color-primary-pure);                    /* #2c3e51 */
}

.resumo-case__label i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: var(--brand-color-secondary-dark);                  /* #07989c */
  line-height: 1;
}

/* Valor */
.resumo-case__value {
  flex: 1;
  font-size: var(--font-size-xs);                            /* 20px */
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  color: var(--brand-color-primary-pure);                    /* #2c3e51 */
}

/* CTA button — largura 100% */
.resumo-case .resumo-cta {
  text-align: center;
}
.resumo-case .resumo-cta .gp-btn {
  width: 100%;
}

/* Mobile — label e valor empilham */
@media (max-width: 440px) {
  .resumo-case__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .resumo-case__label {
    flex: 0 0 auto;
  }
}

/* ============================================================
   TIMELINE — Histórico de Experiência
   Figma: Portfolio → node-id=658-1194
   Uso: <div class="timeline-wrapper"> em qualquer page/post
   ============================================================ */

:root {
  --tl-dot-size:    20px;
  --tl-dot-inner:    8px;
  --tl-line-color:  #c8d2da;
}

.timeline-wrapper {
  width: 100%;
}

/* Cabeçalho de seção */
.timeline-section-title {
  margin-bottom: 32px;
}

.timeline-section-title .txt-descricao-01 {
  display: block;
  color: var(--color-primary);
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.timeline-section-title .line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-primary);
}

/* Lista */
.timeline-list {
  display: flex;
  flex-direction: column;
}

/* Item */
.timeline-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

/* Coluna do conector (dot + linha) */
.timeline-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: var(--tl-dot-size);
}

/* Ponto */
.timeline-dot {
  width: var(--tl-dot-size);
  height: var(--tl-dot-size);
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: 3px;
  box-sizing: border-box;
}

.timeline-dot::after {
  content: '';
  width: var(--tl-dot-inner);
  height: var(--tl-dot-inner);
  border-radius: 50%;
  background: var(--color-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Linha vertical entre pontos */
.timeline-line {
  width: 1px;
  flex: 1;
  min-height: 16px;
  background: var(--tl-line-color);
  margin-top: 4px;
}

/* Conteúdo */
.timeline-content {
  flex: 1;
  padding-bottom: 32px;
  min-width: 0;
}

.timeline-item--last .timeline-content {
  padding-bottom: 0;
}

/* Empresa + datas */
.timeline-company {
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 4px;
  line-height: 1.3;
}

/* Cargo */
.timeline-role {
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 12px;
  line-height: 1.4;
}

/* Descrição */
.timeline-desc {
  font-family: var(--font-family-base);
  font-size: 14px;
  color: var(--color-dark);
  margin: 0 0 12px;
  line-height: 1.6;
}

/* Label de impactos */
.timeline-impact-label {
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 6px;
}

/* Lista de impactos */
.timeline-impact-list {
  font-family: var(--font-family-base);
  font-size: 14px;
  color: var(--color-dark);
  margin: 0 0 12px;
  line-height: 1.7;
}

/* CTA */
.timeline-cta {
  display: inline-block;
  font-family: var(--font-family-base);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.timeline-cta:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

/* Reset estilos globais do tema dentro do wrapper */
.timeline-wrapper p {
  margin: 0;
  padding: 0;
}

/* Responsivo */
@media (max-width: 480px) {
  .timeline-company { font-size: 14px; }
  .timeline-content  { padding-bottom: 24px; }
}

/* ============================================================
   GP-CARD — Design System v2 Card Component
   Variantes: --project | --blog
   Breakpoints: Desktop/Tablet ≥ 769px | Mobile ≤ 768px
   ============================================================ */

/* ── Base ─────────────────────────────────────────────────── */
.gp-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: var(--neutral-color-high-pure);
  box-shadow: var(--shadow-weak);
  border: 1px solid transparent;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Garante altura igual em grids e wrappers */
[class*="gp-col"]:has(.gp-card) {
  display: flex;
}

[class*="gp-col"]:has(.gp-card) > div {
  display: flex;
  width: 100%;
}

.gp-card:hover {
  border-color: var(--brand-color-secondary-dark);
  box-shadow: var(--shadow-moderate);
  text-decoration: none;
}

/* ── Imagem ───────────────────────────────────────────────── */
.gp-card__image {
  width: 100%;
  height: 264px;
  overflow: hidden;
  flex-shrink: 0;
}

.gp-card__image img,
.gp-card__image figure,
.gp-card__image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0;
  padding: 0;
}

/* ── Conteúdo ─────────────────────────────────────────────── */
.gp-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--padding-4xs);          /* 16px */
  padding: var(--padding-xs);       /* 32px — desktop/tablet */
  flex: 1;
}

.gp-card__content .gp-btn {
  width: auto;
}

/* ── Título — Heading/H4 ─────────────────────────────────── */
.gp-card__title {
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);           /* 24px */
  font-weight: var(--font-weight-bold);     /* 700 */
  line-height: 1.375;
  color: var(--brand-color-primary-pure);   /* #2c3e51 */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0;
}

/* ── Descrição — Body/LG/Regular ──────────────────────────── */
.gp-card__description {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xxs);          /* 16px */
  font-weight: var(--font-weight-regular);  /* 400 */
  line-height: 1.4;
  color: var(--neutral-color-low-pure);     /* #657281 */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0;
}

/* ── Data — Body/MD/SemiBold (blog only) ──────────────────── */
.gp-card__date {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xxs);          /* 16px */
  font-weight: var(--font-weight-semibold); /* 600 */
  color: var(--neutral-color-low-medium);   /* #8798ac */
  line-height: 1.5;
  display: flex;
  align-items: center;
}

/* ── Botão hover no card ──────────────────────────────────── */
.gp-card:hover .gp-btn--secondary {
  background-color: var(--btn-color-hover-bg);
  border-color:     var(--btn-color-hover-border);
  color:            var(--btn-color-hover-label);
  text-decoration: none;
}

/* ── Full Banner — tipografia e layout ────────────────────── */

/* Container — padding = margem total do grid (row padding + col padding)
   para alinhar com o conteúdo das colunas (ex: logo no header) */
#fullpage .intro {
  padding-left: 16px;               /* Mobile: margin 16px */
  padding-right: 16px;
}

#fullpage .padding-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-xs);           /* 32px entre título, descrição e botão */
  max-width: 700px;
  text-align: left;
}

@media only screen and (min-width: 441px) and (max-width: 1199px) {
  #fullpage .intro {
    padding-left: 48px;             /* Tablet: margin 48px */
    padding-right: 48px;
  }
}

@media only screen and (min-width: 1200px) {
  #fullpage .intro {
    padding-left: 96px;             /* Desktop: margin 96px */
    padding-right: 96px;
  }
}

@media only screen and (min-width: 1633px) {
  #fullpage .intro {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 12px;             /* Large: alinhado ao grid 1440px */
    padding-right: 12px;
  }
}

/* Título — Desktop/Tablet: Heading/H1 (40px, 700, 115%) */
.ttl-banner {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xl);     /* 40px */
  font-weight: var(--font-weight-bold);
  line-height: 1.15;                  /* 115% */
  color: var(--brand-color-secondary-pure);
  margin: 0;
  padding: 0;
}

/* Descrição — Desktop/Tablet: Body/LG/Regular */
.txt-banner,
.txt-banner p {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xs);     /* 20px */
  font-weight: var(--font-weight-regular);
  line-height: 1.5;
  color: var(--neutral-color-high-light);
  margin: 0;
  padding: 0;
}

/* Mobile — Título: Heading/H3 (28px, 700, 125%) */
@media (max-width: 768px) {
  .ttl-banner {
    font-size: var(--font-size-md);   /* 28px — Heading/H3 */
    line-height: 1.25;                /* 125% */
  }

  .txt-banner,
  .txt-banner p {
    font-size: var(--font-size-xxs);  /* 16px — Body/MD/Regular */
  }
}

/* ── Banner — Scroll indicator ─────────────────────────────── */
#fullpage {
  position: relative;
}

.banner-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
}

.banner-scroll-indicator i {
  display: inline-block;
  font-size: 72px;
  color: var(--neutral-color-high-pure);
  width: 1em;
  height: 1em;
  line-height: 1;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(12px);
    opacity: 0.6;
  }
}

/* ── Página Blog — descrição 4 linhas + gap vertical ──────── */
.conteudo-blog .gp-card__description {
  -webkit-line-clamp: 4;
}

.conteudo-blog [class*="gp-col"] {
  margin-top: 12px;
  margin-bottom: 12px;
}

@media (max-width: 440px) {
  .conteudo-blog [class*="gp-col"] {
    margin-top: 8px;
    margin-bottom: 8px;
  }
}

/* ── Responsivo — Mobile ──────────────────────────────────── */
@media (max-width: 768px) {
  .gp-card__image {
    height: 200px;
  }

  .gp-card__content {
    padding: var(--padding-xs) var(--padding-3xs);  /* 32px top/bottom, 20px left/right */
    gap: var(--padding-4xs);        /* 16px */
  }

  /* Mobile: título H5 (20px) */
  .gp-card__title {
    font-size: var(--font-size-xs);           /* 20px — Heading/H5 */
  }
}

/* ── Blog Header — Title component ────────────────────────── */

.blog__banner {
  width: 100%;
  background: url('../img/guilherme-pereira-blog-ux-design-banner.jpg') no-repeat center center;
  background-size: cover;
  padding: var(--spacing-2mega) 0;      /* 120px top/bottom */
  margin-bottom: 30px;
}

.blog__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-micro);            /* 12px — label ↔ title-wrapper */
  max-width: 502px;
  margin-left: auto;
  margin-right: auto;
}

.blog__label {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xxs);      /* 16px */
  font-weight: var(--font-weight-bold);
  line-height: 1.33;
  color: var(--neutral-color-high-pure); /* #ffffff */
  text-transform: uppercase;
}

.blog__title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--spacing-2xs);     /* 24px — title-wrapper ↔ description */
}

.blog__title {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xl);       /* 40px — Heading/H1 */
  font-weight: var(--font-weight-bold);
  line-height: 1.15;
  color: var(--brand-color-secondary-pure); /* #4dffcd */
  text-transform: none;
  width: fit-content;
}

/* Quebra de linha — visível apenas no mobile */
.blog__title-br {
  display: none;
}

.blog__line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--neutral-color-high-pure);
  margin-top: var(--spacing-nano);      /* 8px */
}

.blog__description {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xs);       /* 20px — Body/LG/Regular */
  font-weight: var(--font-weight-regular);
  line-height: 1.33;
  color: var(--neutral-color-high-pure); /* #ffffff */
  text-align: center;
}

/* Mobile */
@media only screen and (max-width: 440px) {
  .blog__header {
    gap: var(--spacing-nano);           /* 8px */
    max-width: none;
  }

  .blog__banner {
    padding: var(--spacing-2mega) 16px; /* 120px top/bottom */
    margin-bottom: 20px;
  }


  .blog__label {
    font-size: var(--font-size-xxxs);   /* 14px */
    line-height: 1.25;
  }

  .blog__title {
    font-size: var(--font-size-md);     /* 28px — Heading/H3 */
    line-height: 1.25;
  }

  .blog__title-br {
    display: inline;
  }

  .blog__description {
    font-size: var(--font-size-xxs);    /* 16px — Body/MD/Regular */
  }
}


/* ── Carrossel blog — altura igual + gap ──────────────────── */
.blog-carousel .slick-track {
  display: flex;
}

.blog-carousel .slick-slide {
  height: auto;
  padding: 0 8px;
}

.blog-carousel .slick-slide > div {
  height: 100%;
}

.blog-carousel .slick-slide > div > div {
  height: 100%;
}

.blog-carousel .gp-card {
  height: 100%;
}

.blog-carousel .slick-list {
  margin: 0 -8px;
}

/* Padding lateral do carrossel — alinhado ao gp-row */
.blog-carousel {
  padding-left: 16px;
  padding-right: 16px;
}

@media only screen and (min-width: 441px) and (max-width: 1199px) {
  .blog-carousel {
    padding-left: 36px;
    padding-right: 36px;
  }
}

@media only screen and (min-width: 1200px) {
  .blog-carousel {
    padding-left: 84px;
    padding-right: 84px;
  }
}

/* ── Companies / Experiência ─────────────────────────────── */

.section-companies {
  padding-top: var(--spacing-xl);     /* 64px */
}

/* Esconde section-companies na página 404 */
.error404 .section-companies {
  display: none;
}

.companies__title {
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);       /* 24px — Body/XLG/Bold */
  font-weight: var(--font-weight-semibold);
  line-height: 1.33;
  color: var(--brand-color-primary-pure);
  text-align: center;
  margin: 0 0 var(--spacing-xs) 0;      /* 32px abaixo do título */
}

/* Quebra de linha do título — visível apenas no mobile */
.companies__title-br {
  display: none;
}

/* Desktop (≥600px): flex row, 108×108, gap 2XS */
.companies__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-2xs);              /* 24px */
}

.companies__item {
  width: 108px;
  height: 108px;
  flex-shrink: 0;
}

.companies__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0px 2px 8px 0px rgba(94, 104, 112, 0.05);
}

/* Tablet (600–1199px): redimensiona proporcionalmente para caber em linha */
@media only screen and (min-width: 600px) and (max-width: 1199px) {
  .companies__item {
    width: calc((100% - var(--spacing-2xs) * 5) / 6); /* 6 items */
    height: auto;
    aspect-ratio: 1;
  }
}

/* Mobile (<600px): mosaico 3×2, gap Nano, imagens preenchem */
@media only screen and (max-width: 599px) {
  .section-companies {
    padding-top: var(--spacing-sm);     /* 40px */
  }

  .companies__title {
    font-size: var(--font-size-xs);     /* 20px — Body/LG/Bold */
    text-align: center;
  }

  .companies__title-br {
    display: block;
  }

  .companies__logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-nano);           /* 8px */
  }

  .companies__item {
    width: 100%;
    height: 0;
    padding-bottom: 100%;            /* quadrado perfeito via padding trick */
    position: relative;
    overflow: hidden;
  }

  .companies__item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}


/* ============================================================
   PORTFOLIO HEADER — Title component
   ============================================================ */

.portfolio__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-nano);             /* 8px */
  margin-bottom: var(--spacing-sm);     /* 40px */
}

.portfolio__label {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xxs);      /* 16px */
  font-weight: var(--font-weight-bold);
  line-height: 1.33;
  color: var(--brand-color-secondary-dark);
  text-transform: uppercase;
}

.portfolio__title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio__title {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xl);       /* 40px — Heading/H1 */
  font-weight: var(--font-weight-bold);
  line-height: 1.15;
  color: var(--brand-color-primary-pure);
  text-transform: none;
  width: fit-content;
}

.portfolio__line {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 1px;
  background-color: var(--brand-color-secondary-dark);
  margin-top: var(--spacing-nano);      /* 8px */
}

/* Mobile */
@media only screen and (max-width: 440px) {
  .portfolio__label {
    font-size: var(--font-size-xxxs);   /* 14px */
    line-height: 1.25;
  }

  .portfolio__title {
    font-size: var(--font-size-md);     /* 28px — Heading/H3 */
    line-height: 1.25;
  }
}


/* ============================================================
   PERFIL INTRO — Bloco de introdução
   Figma: Desktop 172:5139 | Mobile 192:1924
   ============================================================ */

/* Container flex — desktop horizontal, mobile vertical */
.perfil-intro {
  display: flex;
  gap: var(--spacing-md);                                    /* 48px */
  align-items: center;
}

/* Coluna de texto — cresce para ocupar espaço disponível */
.perfil-intro__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xs);                                   /* 24px */
}

/* Lead paragraph */
.perfil-intro__lead {
  font-size: var(--font-size-xs);                            /* 20px */
  font-weight: var(--font-weight-regular);
  line-height: 1.5;                                          /* 30px */
  color: var(--neutral-color-low-pure);                      /* #657281 */
  margin: 0;
}

/* Card "Como eu trabalho?" */
.perfil-intro__work {
  background: var(--neutral-color-high-pure);                /* #ffffff */
  border: 1px solid var(--neutral-color-high-dark);          /* #E0E4E6 */
  border-radius: 0;
  padding: var(--spacing-2xs);                               /* 24px */
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4xs);                                   /* 16px */
}

.perfil-intro__work-title {
  font-size: var(--font-size-xs);                            /* 20px */
  font-weight: var(--font-weight-bold);
  line-height: 1.5;                                          /* 30px */
  color: var(--brand-color-primary-pure);                    /* #2c3e51 */
  margin: 0;
}

/* Lista de itens */
.perfil-intro__work-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.perfil-intro__work-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-micro);                                 /* 12px */
  padding: var(--spacing-nano) 0;                            /* 8px top/bottom */
  border-bottom: 1px solid var(--neutral-color-high-dark);   /* #E0E4E6 */
}

.perfil-intro__work-item:last-child {
  border-bottom: none;
}

.perfil-intro__work-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: var(--brand-color-secondary-dark);                  /* #07989c */
  line-height: 1;
}

.perfil-intro__work-item span {
  font-size: var(--font-size-xs);                            /* 20px */
  font-weight: var(--font-weight-regular);
  line-height: 1.5;                                          /* 30px */
  color: var(--neutral-color-low-pure);                      /* #657281 */
}

/* Coluna de imagem — ocupa ~36% do espaço, max 450px (tamanho natural) */
.perfil-intro__image {
  flex: 0 0 36%;
  max-width: 450px;
}

.perfil-intro__image img {
  display: block;
  width: 100%;
  height: auto;
}

/* Tablet/Mobile — empilha verticalmente abaixo de 765px */
@media (max-width: 765px) {
  .perfil-intro {
    flex-direction: column;
    align-items: stretch;
  }
  .perfil-intro__image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
}


/* ============================================================
   PERFIL IMPACTO — Bloco de métricas de impacto
   Figma: Desktop 176:5542 | Mobile 187:1998
   ============================================================ */

.perfil-impacto {
  padding: var(--spacing-2xs) 0;                             /* 24px — espaço entre sections */
}

.perfil-impacto__title {
  font-size: var(--font-size-xl);                            /* 40px */
  font-weight: var(--font-weight-bold);
  line-height: 1.15;
  color: var(--brand-color-primary-pure);                    /* #2c3e51 */
  margin: 0 0 var(--spacing-2xs) 0;                          /* 24px bottom */
  padding-bottom: var(--spacing-4xs);                        /* 16px */
  border-bottom: 1px solid var(--brand-color-secondary-dark); /* linha teal */
}

/* Grid de cards — 4 colunas no desktop */
.perfil-impacto__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-4xs);                                   /* 16px */
}

/* Card individual */
.perfil-impacto__card {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4xs);                                   /* 16px */
  padding: var(--spacing-2xs);                               /* 24px */
  background: var(--neutral-color-high-pure);                /* #ffffff */
  border: 1px solid var(--neutral-color-high-dark);          /* #E0E4E6 */
  border-radius: 0;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  overflow: hidden;
  min-width: 0;
}

/* Hover — igual ao gp-card da home */
.perfil-impacto__card:hover {
  border-color: var(--brand-color-secondary-dark);           /* #07989c */
  box-shadow: var(--shadow-moderate);
  text-decoration: none;
}

.perfil-impacto__card:hover .gp-btn--secondary {
  background-color: var(--btn-color-hover-bg);               /* #4dffcd */
  border-color: var(--btn-color-hover-border);
  color: var(--btn-color-hover-label);                       /* #2c3e51 */
}

/* Header do card — ícone + número + thumb empresa */
.perfil-impacto__card-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-nano);                                  /* 8px */
}

.perfil-impacto__card-header > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  font-size: 32px;
  line-height: 1;
  color: var(--brand-color-secondary-dark);                  /* #07989c */
}

/* Seta — escondida até animação concluir */
.perfil-impacto__arrow {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.perfil-impacto__arrow.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ícone arrow-down em vermelho */
.perfil-impacto__icon--down {
  color: #d0382d !important;
}

.perfil-impacto__card-number {
  flex: 1;
  min-width: 0;
  font-size: clamp(40px, 4vw, 64px);                        /* display-huge — escala com viewport */
  font-weight: var(--font-weight-bold);
  line-height: 1.15;
  color: #344a62;
}

.perfil-impacto__card-number small {
  font-size: var(--font-size-md);                            /* 28px — heading-h3 */
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
}

/* Thumb da empresa */
.perfil-impacto__card-thumb {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  overflow: hidden;
}

.perfil-impacto__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Descrição */
.perfil-impacto__card-desc {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.33;
  color: var(--neutral-color-low-pure);                      /* #657281 */
  margin: 0;
}

/* Botão "Ver case" — sempre alinhado no final do card */
.perfil-impacto__card .gp-btn {
  align-self: flex-start;
  margin-top: auto;
  text-decoration: none;
}

/* Tablet — 2 colunas */
@media (max-width: 1199px) and (min-width: 441px) {
  .perfil-impacto__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile — 1 coluna, título menor */
@media (max-width: 440px) {
  .perfil-impacto__title {
    font-size: var(--font-size-md);                          /* 28px */
  }
  .perfil-impacto__cards {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   PERFIL EXPERIÊNCIA — Bloco de carreira/experiência profissional
   Figma: Desktop 176:5547 | Mobile 187:2060
   ============================================================ */

.perfil-experiencia {
  padding: var(--spacing-2xs) 0;                             /* 24px — espaço entre sections */
}

/* Título — mesmo padrão do bloco impacto */
.perfil-experiencia__title {
  font-size: var(--font-size-xl);                            /* 40px */
  font-weight: var(--font-weight-bold);
  line-height: 1.15;
  color: var(--brand-color-primary-pure);                    /* #2c3e51 */
  margin: 0 0 var(--spacing-2xs) 0;                          /* 24px bottom */
  padding-bottom: var(--spacing-4xs);                        /* 16px */
  border-bottom: 1px solid var(--brand-color-secondary-dark); /* linha teal */
}

/* Container dos cards — empilhados verticalmente, gap 12px */
.perfil-experiencia__cards {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-micro);                                 /* 12px */
}

/* Card individual — horizontal: thumb + body */
.perfil-experiencia__card {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-2xs);                                   /* 24px */
  padding: var(--spacing-2xs);                               /* 24px */
  background: var(--neutral-color-high-pure);                /* #ffffff */
  border: 1px solid var(--neutral-color-high-dark);          /* #E0E4E6 */
}

/* Thumb da empresa — 64×64, borda, centraliza imagem */
.perfil-experiencia__card-thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  background: var(--neutral-color-high-pure);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow:
    0 4px 7px rgba(0, 0, 0, 0.08),
    0 0 4px rgba(0, 0, 0, 0.08);
}

.perfil-experiencia__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Body — conteúdo textual */
.perfil-experiencia__card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4xs);                                   /* 16px */
}

/* Header — cargo + empresa + data */
.perfil-experiencia__card-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--spacing-2xs);                                   /* 24px */
  padding-bottom: var(--spacing-micro);                      /* 12px */
  border-bottom: 1px solid var(--neutral-color-high-dark);   /* #E0E4E6 */
}

.perfil-experiencia__card-job {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.perfil-experiencia__card-role {
  font-size: var(--font-size-xs);                            /* 20px */
  font-weight: var(--font-weight-bold);
  line-height: 1.5;                                          /* 30px */
  color: var(--brand-color-primary-pure);                    /* #2c3e51 */
  margin: 0;
}

.perfil-experiencia__card-company {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.33;
  color: var(--brand-color-primary-pure);                    /* #2c3e51 */
}

.perfil-experiencia__card-date {
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.33;
  color: var(--brand-color-secondary-dark);                  /* #07989c */
  white-space: nowrap;
}

/* Seções internas (Contexto, O que fiz, Impacto) */
.perfil-experiencia__card-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.perfil-experiencia__card-label {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  line-height: 1.33;
  color: var(--neutral-color-low-pure);                      /* #657281 */
}

.perfil-experiencia__card-text {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.33;
  color: var(--neutral-color-low-pure);                      /* #657281 */
  margin: 0;
}

/* Lista "O que fiz" — bullet teal */
.perfil-experiencia__card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.perfil-experiencia__card-list li {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.33;
  color: var(--neutral-color-low-pure);                      /* #657281 */
  padding: var(--spacing-nano) 0;                            /* 8px top/bottom */
}

/* Separador entre li — exceto último */
.perfil-experiencia__card-list li:not(:last-child) {
  border-bottom: 1px solid var(--neutral-color-high-dark);   /* #E0E4E6 */
}

/* Bullet list — bolinha teal antes do texto */
.perfil-experiencia__card-list--bullet li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-micro);                                 /* 12px */
}

.perfil-experiencia__card-list--bullet li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-color-secondary-dark);             /* #07989c */
  margin-top: 8px;                                           /* alinha com primeira linha do texto */
}

/* Check list — ícone checkmark teal */
.perfil-experiencia__card-list--check li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-nano);                                  /* 8px */
}

.perfil-experiencia__card-list--check li > i {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  font-size: 12px;
  line-height: 1;
  color: var(--brand-color-secondary-dark);                  /* #07989c */
  margin-top: 4px;                                           /* alinha com texto */
}

.perfil-experiencia__card-list--check li > span {
  flex: 1;
  min-width: 0;
}

/* Mobile — empilha card verticalmente, título menor, sem borders nos li */
@media (max-width: 440px) {
  .perfil-experiencia__title {
    font-size: var(--font-size-md);                          /* 28px */
  }

  .perfil-experiencia__card {
    flex-direction: column;
    border: none;
  }

  .perfil-experiencia__card-header {
    flex-direction: column;
    gap: var(--spacing-2xs);                                 /* 24px */
    border-bottom: none;
    padding-bottom: var(--spacing-micro);                    /* 12px */
  }

}


/* ============================================================
   PERFIL RECONHECIMENTOS — Bloco de depoimentos/testimonials
   Figma: Desktop 187:2511 | Mobile 187:2516
   ============================================================ */

.perfil-reconhecimentos {
  padding: var(--spacing-2xs) 0 var(--spacing-md) 0;         /* 24px top, 48px bottom */
}

/* Título — mesmo padrão dos outros blocos */
.perfil-reconhecimentos__title {
  font-size: var(--font-size-xl);                            /* 40px */
  font-weight: var(--font-weight-bold);
  line-height: 1.15;
  color: var(--brand-color-primary-pure);                    /* #2c3e51 */
  margin: 0 0 var(--spacing-2xs) 0;                          /* 24px bottom */
  padding-bottom: var(--spacing-4xs);                        /* 16px */
  border-bottom: 1px solid var(--brand-color-secondary-dark); /* linha teal */
}

/* Cada row = contexto (esquerda) + card depoimento (direita) */
.perfil-reconhecimentos__row {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-md);                                    /* 48px */
  margin-bottom: var(--spacing-2xs);                         /* 24px entre rows */
}

.perfil-reconhecimentos__row:last-child {
  margin-bottom: 0;
}

/* Contexto — lado esquerdo */
.perfil-reconhecimentos__context {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xs);                                   /* 24px */
}

.perfil-reconhecimentos__subtitle {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  line-height: 1.33;
  color: var(--brand-color-primary-pure);                    /* #2c3e51 */
  margin: 0;
}

.perfil-reconhecimentos__desc {
  font-size: var(--font-size-xs);                            /* 20px */
  font-weight: var(--font-weight-regular);
  line-height: 1.5;
  color: var(--neutral-color-low-pure);                      /* #657281 */
  margin: 0;
}

/* Card depoimento — lado direito */
.perfil-reconhecimentos__card {
  flex: 1;
}

.perfil-reconhecimentos__card-inner {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-2xs);                                   /* 24px */
  padding: var(--spacing-2xs);                               /* 24px */
  background: var(--neutral-color-high-pure);                /* #ffffff */
  height: 100%;
  box-sizing: border-box;
}

/* Avatar — circular, 64×64 */
.perfil-reconhecimentos__avatar {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--neutral-color-high-dark);          /* #E0E4E6 */
  overflow: hidden;
  background: var(--neutral-color-high-pure);
  box-shadow:
    0 4px 7px rgba(0, 0, 0, 0.08),
    0 0 4px rgba(0, 0, 0, 0.08);
}

.perfil-reconhecimentos__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Corpo do depoimento */
.perfil-reconhecimentos__quote-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-nano);                                  /* 8px */
  padding-bottom: var(--spacing-nano);                       /* 8px */
}

.perfil-reconhecimentos__quote {
  font-size: var(--font-size-xs);                            /* 20px */
  font-weight: var(--font-weight-regular);
  line-height: 1.5;
  color: var(--brand-color-primary-pure);                    /* #2c3e51 */
  margin: 0;
}

.perfil-reconhecimentos__author {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.33;
  color: var(--brand-color-secondary-dark);                  /* #07989c */
  text-decoration: none;
}

.perfil-reconhecimentos__author:hover {
  text-decoration: underline;
}

.perfil-reconhecimentos__role {
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.5;
  color: var(--neutral-color-low-pure);                      /* #657281 */
}

/* Mobile — empilha tudo verticalmente */
@media (max-width: 440px) {
  .perfil-reconhecimentos__title {
    font-size: var(--font-size-md);                          /* 28px */
  }

  .perfil-reconhecimentos__row {
    flex-direction: column;
    gap: var(--spacing-2xs);                                 /* 24px */
  }

  .perfil-reconhecimentos__subtitle {
    font-size: var(--font-size-xs);                          /* 20px */
  }

  .perfil-reconhecimentos__card-inner {
    flex-direction: column;
  }
}

/* Tablet — empilha row mas mantém card horizontal */
@media (min-width: 441px) and (max-width: 1199px) {
  .perfil-reconhecimentos__row {
    flex-direction: column;
    gap: var(--spacing-2xs);                                 /* 24px */
  }
}


/* ============================================================
   SECTION PERFIL — Refactored layout
   Desktop >= 1200px | Tablet 441-1199px | Mobile <= 440px
   ============================================================ */

/* --- Base / Mobile-first (<=440px) --- */

.section-perfil {
  width: 100%;
  height: auto;
  background: var(--brand-color-secondary-pure);
  padding: 80px var(--padding-4xs) var(--padding-md) var(--padding-4xs);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs); /* 32px */
  box-sizing: border-box;
}

/* --- Content: label + title + separator --- */

.perfil__content {
  width: auto;
  max-width: 234px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-nano); /* 8px */
}

.perfil__label {
  font-size: var(--font-size-xxxs);  /* 14px mobile */
  line-height: 125%;
  font-weight: var(--font-weight-bold);
  color: var(--brand-color-secondary-dark);
  text-transform: uppercase;
  text-align: center;
}

.perfil__title {
  font-size: var(--font-size-md); /* 28px mobile */
  line-height: 35px;
  font-weight: var(--font-weight-bold);
  color: var(--brand-color-primary-pure);
  text-align: center;
  word-spacing: 9999px; /* force each word on new line */
  margin: 0;
}

.perfil__separator {
  width: 100%;
  border: none;
  border-top: 1px solid var(--brand-color-primary-pure);
  margin: var(--spacing-nano) 0 0 0; /* 8px top */
}

/* --- Social links --- */

.perfil__social {
  display: flex;
  justify-content: center;
  padding: var(--spacing-4xs) 0; /* 16px vertical */
}

.section-perfil .lista-redes-sociais {
  display: flex;
  list-style: none;
  gap: var(--spacing-md); /* 48px */
  padding: 0;
  margin: 0;
  float: none;
}

.section-perfil .lista-redes-sociais li {
  float: none;
  list-style: none;
  margin: 0;
}

.section-perfil .lista-redes-sociais li a {
  padding: 0;
  color: var(--brand-color-secondary-dark);
  font-size: 40px;
  text-decoration: none;
}

/* --- Container: experiencia + formacao --- */

.perfil__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs); /* 32px */
}

/* --- Block shared --- */

.perfil__block {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xs); /* 24px */
}

.perfil__block-title {
  font-size: var(--font-size-xs); /* 20px */
  font-weight: var(--font-weight-semibold);
  color: var(--brand-color-primary-pure);
  text-align: left;
  margin: 0;
}

/* --- Experience cards: mobile = horizontal card --- */

.perfil__cards {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xs); /* 24px */
}

.perfil__card {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-nano); /* 8px mobile */
  align-items: flex-start;
}

.perfil__card-img {
  flex-shrink: 0;
  width: 89px;
  height: 89px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.perfil__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.perfil__card-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-quark); /* 4px */
  padding-top: var(--spacing-nano); /* 8px mobile */
}

.perfil__card-company {
  font-size: var(--font-size-xxs); /* 16px */
  line-height: 133%;
  font-weight: var(--font-weight-bold);
  color: var(--brand-color-primary-pure);
}

.perfil__card-desc {
  font-size: var(--font-size-xxs); /* 16px */
  line-height: 133%;
  font-weight: var(--font-weight-regular);
  color: var(--brand-color-primary-pure);
}

.perfil__card-date {
  font-size: var(--font-size-xxxs); /* 14px */
  line-height: 125%;
  font-weight: var(--font-weight-regular);
  color: var(--brand-color-secondary-dark);
}

a.perfil__card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* --- Formation cards: mobile --- */

.perfil__formations {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xs); /* 24px */
}

.perfil__formation {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-nano); /* 8px */
}

.perfil__formation-img {
  width: 100%;
  aspect-ratio: 2.6 / 1;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

.perfil__formation-line {
  width: 100%;
  border: none;
  border-top: 1px solid var(--brand-color-primary-pure);
  margin: 0;
}

.perfil__formation-text {
  font-size: var(--font-size-xxs); /* 16px */
  line-height: 133%;
  font-weight: var(--font-weight-regular);
  color: var(--brand-color-primary-pure);
  text-align: center;
}

/* --- CTA --- */

.perfil__cta {
  display: flex;
  justify-content: center;
}

/* ============================================================
   SECTION PERFIL — Tablet (441px - 1199px)
   ============================================================ */

@media (min-width: 441px) and (max-width: 1199px) {

  .section-perfil {
    padding: 70px var(--padding-md) var(--padding-md) var(--padding-md);
  }

  .perfil__content {
    max-width: none;
    align-items: center;
  }

  .perfil__label {
    font-size: var(--font-size-xxs); /* 16px */
    line-height: 133%;
    text-align: center;
  }

  .perfil__title {
    font-size: var(--font-size-xl); /* 40px */
    line-height: 46px;
    text-align: center;
    word-spacing: normal;
  }

  .perfil__social {
    justify-content: center;
    padding: 0;
  }

  /* Container stays vertical on tablet */
  .perfil__container {
    gap: var(--spacing-2xs); /* 24px */
  }

  .perfil__block-title {
    text-align: center;
  }

  /* Experience: horizontal row of 4 cards, vertical card layout */
  .perfil__cards {
    flex-direction: row;
    gap: var(--spacing-4xs); /* 16px */
  }

  .perfil__card {
    flex-direction: column;
    flex: 1;
    min-width: 0;
    gap: var(--spacing-micro); /* 12px */
    align-items: center;
  }

  .perfil__card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .perfil__card-info {
    gap: var(--spacing-quark); /* 4px */
    text-align: center;
    padding-top: 0;
  }

  /* Formation: horizontal row of 2 cards */
  .perfil__formations {
    flex-direction: row;
    gap: var(--spacing-2xs); /* 24px */
  }

  .perfil__formation {
    flex: 1;
  }

  .perfil__formation-img {
    width: 100%;
    height: auto;
  }

  /* CTA: md on tablet */
  .perfil__cta .gp-btn--lg {
    min-height: 48px;
    font-size: var(--btn-font-size-md);
    padding: var(--btn-padding-v-md) var(--btn-padding-h-md);
  }
}


/* ============================================================
   SECTION PERFIL — Desktop (>= 1200px)
   ============================================================ */

@media (min-width: 1200px) {

  .section-perfil {
    padding: 50px var(--padding-mega) var(--padding-md) var(--padding-mega);
  }

  .perfil__content {
    max-width: none;
    align-items: center;
  }

  .perfil__label {
    font-size: var(--font-size-xxs); /* 16px */
    line-height: 133%;
    text-align: center;
  }

  .perfil__title {
    font-size: var(--font-size-xl); /* 40px */
    line-height: 46px;
    text-align: center;
    word-spacing: normal;
  }

  .perfil__social {
    justify-content: center;
    padding: 0;
  }

  /* Container: side by side */
  .perfil__container {
    flex-direction: row;
    gap: var(--spacing-md); /* 48px */
  }

  .perfil__block {
    flex: 1;
    min-width: 0;
    gap: var(--spacing-4xs); /* 16px */
  }

  .perfil__block-title {
    text-align: center;
  }

  /* Experience: horizontal row of 4 cards, vertical card layout */
  .perfil__cards {
    flex-direction: row;
    gap: var(--spacing-4xs); /* 16px */
  }

  .perfil__card {
    flex-direction: column;
    flex: 1;
    min-width: 0;
    gap: var(--spacing-micro); /* 12px */
    align-items: center;
  }

  .perfil__card-img {
    width: 106px;
    height: 106px;
  }

  .perfil__card-info {
    gap: var(--spacing-quark); /* 4px */
    text-align: center;
    padding-top: 0;
  }

  /* Formation: horizontal row of 2 cards */
  .perfil__formations {
    flex-direction: row;
    gap: var(--spacing-4xs); /* 16px */
  }

  .perfil__formation {
    flex: 1;
    min-width: 0;
  }

  .perfil__formation-img {
    width: 100%;
    height: auto;
  }
}


/* ============================================================
   CONTATO — Section de contato (footer form)
   BEM: contato__header, contato__label, contato__title, etc.
   Tokens: tokens.css
   ============================================================ */

/* ── Section container ───────────────────────────────────── */
.contato {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-mega) var(--spacing-mega);   /* 96px */
  background-color: var(--brand-color-primary-pure);  /* #2c3e51 */
  gap: var(--spacing-xl);                              /* 64px */
}

/* ── Header (label + title + line + description) ─────────── */
.contato__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-micro);                           /* 12px */
  width: 100%;
  max-width: 1024px;
}

.contato__label {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xxs);                     /* 16px */
  font-weight: var(--font-weight-bold);
  line-height: 1.33;
  color: var(--neutral-color-high-pure);               /* #ffffff */
  text-transform: uppercase;
}

.contato__title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--spacing-4xs);                   /* 16px — gap to description */
}

.contato__title {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xl);                      /* 40px */
  font-weight: var(--font-weight-bold);
  line-height: 1.15;
  color: var(--brand-color-secondary-pure);            /* #4dffcd */
  text-transform: none;
  width: fit-content;
}

/* Quebra de linha — visível apenas no mobile */
.contato__title-br {
  display: none;
}

.contato__line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--brand-color-secondary-pure); /* #4dffcd */
  margin-top: var(--spacing-nano);                      /* 8px */
}

.contato__description {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xs);                      /* 20px */
  font-weight: var(--font-weight-regular);
  line-height: 1.33;
  color: var(--neutral-color-high-pure);               /* #ffffff */
  text-align: center;
}

/* ── Avatar image — metade sobrepõe a seção anterior ─────── */
.contato__avatar {
  width: 123px;
  height: 121px;
  object-fit: contain;
  margin-top: calc(-93px - var(--spacing-xl));           /* desktop/tablet */
}

/* ── Form wrapper ────────────────────────────────────────── */
.contato__form-wrapper {
  width: 100%;
  max-width: 1024px;
}

.contato__form-wrapper .wpcf7 {
  width: 100%;
}

.contato__form-wrapper .wpcf7-form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

/* ── Labels — cor, fonte, gap, sem <br> ──────────────────── */
.contato__form-wrapper label {
  display: flex;
  align-items: center;
  gap: var(--spacing-micro);                             /* 12px — icon ↔ text */
  color: var(--neutral-color-high-pure);                 /* #ffffff */
  font-family: var(--font-family-base);
  font-size: var(--font-size-xs);                        /* 20px — desktop/tablet */
  font-weight: var(--font-weight-semibold);              /* 600 */
  line-height: 1.33;
  width: 100%;
  margin: 0;
  margin-bottom: var(--spacing-nano);                    /* 8px — gap label ↔ campo */
}

.contato__form-wrapper label span {
  color: var(--neutral-color-high-pure);                 /* #ffffff — asterisk */
}

.contato__form-wrapper label i {
  color: var(--brand-color-secondary-pure);              /* #4dffcd */
  font-size: var(--font-size-xs);                        /* 20px */
  margin: 0;
}

/* Remove <br> entre label e campo (o <br> é irmão do label, dentro do <p>) */
.contato__form-wrapper label br,
.contato__form-wrapper fieldset.form p > br {
  display: none;
}

/* ── Inputs/textarea — reset phone.css width:90%/margin:0 5% */
.contato__form-wrapper input[type="text"],
.contato__form-wrapper input[type="email"],
.contato__form-wrapper input[type="tel"],
.contato__form-wrapper textarea,
.contato__form-wrapper select {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  box-sizing: border-box;
}

/* ── Desktop / Tablet — 2 colunas (textarea left, inputs right) */
@media only screen and (min-width: 441px) {
  .contato__form-wrapper .wpcf7-form fieldset.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    column-gap: var(--spacing-xs);                       /* 32px */
    row-gap: var(--spacing-2xs);                         /* 24px — gap entre grupos */
    width: 100%;
    overflow: visible;
    margin: 0;
  }

  /* Reset float/width from Amazium/tablet.css */
  .contato__form-wrapper .wpcf7-form fieldset.form > div {
    float: none;
    width: auto;
    margin: 0;
    box-sizing: border-box;
  }

  /* 1 — Mensagem (textarea): col 1, spans rows 1-3, stretch full height */
  .contato__form-wrapper .wpcf7-form fieldset.form > div:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 4;
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }
  .contato__form-wrapper .wpcf7-form fieldset.form > div:nth-child(1) p {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0;
  }
  .contato__form-wrapper .wpcf7-form fieldset.form > div:nth-child(1) .wpcf7-form-control-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .contato__form-wrapper .wpcf7-form fieldset.form > div:nth-child(1) textarea {
    flex: 1;
    height: auto !important;
    margin-bottom: 0;
    min-height: 200px;
  }

  /* 2 — Nome: col 2, row 1 */
  .contato__form-wrapper .wpcf7-form fieldset.form > div:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  /* 3 — Telefone: col 2, row 2 */
  .contato__form-wrapper .wpcf7-form fieldset.form > div:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  /* 4 — Email: col 2, row 3 */
  .contato__form-wrapper .wpcf7-form fieldset.form > div:nth-child(4) {
    grid-column: 2;
    grid-row: 3;
  }
  /* Remove margin-bottom do último input para alinhar com textarea */
  .contato__form-wrapper .wpcf7-form fieldset.form > div:nth-child(4) input {
    margin-bottom: 0;
  }

  /* 5 — Botão: full width, row 4 */
  .contato__form-wrapper .wpcf7-form fieldset.form > div:nth-child(5) {
    grid-column: 1 / -1;
    grid-row: 4;
    display: flex;
    justify-content: center;
    padding-top: var(--spacing-xs);                    /* 32px */
  }
  .contato__form-wrapper .wpcf7-form fieldset.form > div:nth-child(5) > p {
    display: contents;
  }

  /* Inputs e textarea: 100% do wrapper */
  .contato__form-wrapper .wpcf7-form fieldset.form input[type="text"],
  .contato__form-wrapper .wpcf7-form fieldset.form input[type="email"],
  .contato__form-wrapper .wpcf7-form fieldset.form input[type="tel"],
  .contato__form-wrapper .wpcf7-form fieldset.form textarea {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }
}

/* ── Mobile — campos empilhados ──────────────────────────── */
@media only screen and (max-width: 440px) {
  .contato {
    padding: var(--spacing-3xl) var(--spacing-4xs);    /* 80px 16px */
    gap: var(--spacing-md);                             /* 48px */
  }

  .contato__avatar {
    margin-top: calc(-93px - var(--spacing-md));        /* mobile */
  }

  .contato__header {
    gap: var(--spacing-nano);                           /* 8px */
  }

  .contato__label {
    font-size: var(--font-size-xxxs);                  /* 14px */
    line-height: 1.25;
  }

  .contato__title {
    font-size: var(--font-size-md);                    /* 28px */
    line-height: 1.25;
  }

  .contato__title-br {
    display: inline;
  }

  .contato__description {
    font-size: var(--font-size-xxs);                   /* 16px */
  }

  .contato__form-wrapper .wpcf7-form fieldset.form {
    width: 100%;
    overflow: visible;
    margin: 0;
  }

  .contato__form-wrapper .wpcf7-form fieldset.form > div {
    float: none;
    width: 100% !important;
    margin: 0 0 var(--spacing-xs) 0;                     /* 32px — gap entre campos */
    box-sizing: border-box;
  }
  .contato__form-wrapper .wpcf7-form fieldset.form > div:last-child {
    margin-bottom: 0;
  }

  .contato__form-wrapper label {
    font-size: var(--font-size-xxs);                     /* 16px — mobile */
  }

  .contato__form-wrapper label i {
    font-size: var(--font-size-xxs);                     /* 16px — mobile */
  }

  .contato__form-wrapper .wpcf7-form fieldset.form > div:nth-child(5) > p {
    width: 100%;
  }

  .wpcf7-response-output {
    font-size: var(--font-size-xxs) !important;          /* 16px — Body/MD/Regular */
    font-weight: var(--font-weight-regular);
    line-height: 1.33;
  }
}

/* ── Validação — mensagens próximas ao campo ─────────────── */
.contato__form-wrapper span.wpcf7-not-valid-tip {
  margin-top: 4px;
  margin-bottom: 4px;
  font-size: 14px;
}

/* ================================================================
   READING PROGRESS BAR — single.php & single-projeto.php
   Track: #F1F5F8 · Fill: gradient Brand/Gradient/Pure
   ================================================================ */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #F1F5F8;
  z-index: 1001;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.reading-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #4DFFCD, #45C6CA);
  transition: width 0.1s linear;
}

/* Push header down when progress bar is present */
body.single .gp-header,
body.single-projeto .gp-header {
  top: 5px;
}

/* Adjust body padding-top to account for progress bar */
body.single.has-fixed-header,
body.single-projeto.has-fixed-header {
  padding-top: 107px; /* 102px header + 5px progress bar */
}

@media (max-width: 768px) {
  body.single.has-fixed-header,
  body.single-projeto.has-fixed-header {
    padding-top: 99px; /* 94px header + 5px progress bar */
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  body.single.has-fixed-header,
  body.single-projeto.has-fixed-header {
    padding-top: 99px; /* 94px header + 5px progress bar */
  }
}

/* ==========================================================================
   SECTION REDES SOCIAIS - Refactored with design tokens
   ========================================================================== */
.section-redes-sociais {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-3xl) var(--spacing-4xs) var(--spacing-md);
  gap: var(--spacing-2xs);
  background: var(--brand-color-secondary-dark) url('../img/guilherme-pereira-redes-sociais-contato.jpg') no-repeat center center;
  background-size: cover;
}

.social__title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: 1.33;
  color: var(--brand-color-secondary-pure);
  text-align: center;
  margin: 0;
}

.section-redes-sociais .social__description {
  font-size: var(--font-size-xxs);
  font-weight: var(--font-weight-regular);
  line-height: 1.33;
  color: var(--neutral-color-high-pure);
  text-align: center;
  margin: 0;
}

@media only screen and (min-width: 441px) {
  .section-redes-sociais .social__description {
    font-size: var(--font-size-xs);
  }
}

.social__icons {
  display: flex;
  justify-content: center;
  padding: var(--spacing-4xs) 0;
}

.social__icons .lista-redes-sociais {
  display: flex;
  gap: var(--spacing-md);
  list-style: none;
  padding: 0;
  margin: 0;
}

.social__icons .lista-redes-sociais a {
  color: var(--brand-color-secondary-pure);
  text-decoration: none;
  font-size: 40px;
  transition: opacity 0.2s ease;
}

.social__icons .lista-redes-sociais a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 440px) {
  .social__icons .lista-redes-sociais {
    gap: var(--spacing-2xs);
  }
}

/* ==========================================================================
   GP PAGE TITLE — Modular Component
   Token: .gp-page-title
   Figma: GP - Modular Components / Page Title
   Sub-components: GP Breadcrumb (on-color)
   Variants: Place=Post (single-projeto, page) · Place=Blog (single)
   Desktop/Tablet: content max-width 1200px · Mobile ≤440px: 16px margins
   ========================================================================== */

/* ── Base (full-width section) ───────────────────────────── */
.gp-page-title {
  background-color: var(--brand-color-primary-pure);       /* #2c3e51 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding: var(--spacing-mega) 0;                          /* 96px top/bottom */
  position: relative;
  box-sizing: border-box;
}

/* Overlay for background images (blog posts) */
.gp-page-title--overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 81, 0.7);
  z-index: 0;
}

.gp-page-title--overlay > .gp-row {
  position: relative;
  z-index: 1;
}

/* ── Content container ───────────────────────────────────── */
.gp-page-title__content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);                                  /* 32px */
  max-width: 1200px;
  width: 100%;
}

/* ── Header (breadcrumb + title) ─────────────────────────── */
.gp-page-title__header {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-micro);                               /* 12px */
}

/* ── Title ────────────────────────────────────────────────── */
.gp-page-title__title {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xl);                          /* 40px */
  font-weight: var(--font-weight-bold);
  line-height: 1.15;                                       /* ≈46px */
  color: var(--brand-color-secondary-pure);                /* #4dffcd */
  margin: 0;
  padding: 0;
}

/* ── Description ──────────────────────────────────────────── */
.gp-page-title__description {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xs);                          /* 20px */
  font-weight: var(--font-weight-regular);
  line-height: 1.33;                                       /* ≈26.6px */
  color: var(--neutral-color-high-dark);                   /* #E0E4E6 */
  margin: 0;
  padding: 0;
}

.gp-page-title__description:empty {
  display: none;
}

/* ── Blog meta (date + author) ────────────────────────────── */
.gp-page-title__meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-nano);                                /* 8px */
  font-family: var(--font-family-base);
  font-size: var(--font-size-xxs);                         /* 16px */
  font-weight: var(--font-weight-regular);
  line-height: 1.33;
  color: var(--neutral-color-high-dark);                   /* #E0E4E6 */
}

.gp-page-title__meta-date {
  display: flex;
  align-items: center;
  gap: var(--spacing-nano);                                /* 8px */
}

.gp-page-title__meta-icon {
  font-size: 16px;
  width: 16px;
  height: 16px;
  color: var(--neutral-color-high-pure);                   /* #ffffff */
  font-style: normal;
}

.gp-page-title__meta-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-nano);                                /* 8px */
}

.gp-page-title__avatar {
  width: 28px;
  height: 38px;
  background: url('../img/guilherme-pereira-product-designer-avatar.png') no-repeat center center;
  background-size: cover;
  display: inline-block;
  flex-shrink: 0;
}

.gp-page-title__author {
  font-weight: var(--font-weight-bold);
  color: var(--neutral-color-high-dark);                   /* #E0E4E6 */
}

/* ── Responsive: Mobile ≤440px ────────────────────────────── */
@media (max-width: 440px) {
  .gp-page-title__title {
    font-size: var(--font-size-md);                        /* 28px */
    line-height: 1.25;                                     /* 35px */
  }

  .gp-page-title__description {
    font-size: var(--font-size-xxs);                       /* 16px */
    line-height: 1.33;
  }

  /* Blog meta stacks vertically on mobile */
  .gp-page-title__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-nano);                              /* 8px */
  }
}

/* ==========================================================================
   GP LINK BUTTON — Core Component
   Figma: GP - Core Components / Link Button
   Variants: Size (lg, md, sm) · State (default, hover, selected)
   Modifiers: --on-color (light text on dark bg) · --selected (active state)
   Boolean: icon visible/hidden (omit .gp-link-btn__icon in HTML)
   ========================================================================== */

/* ── Base ─────────────────────────────────────────────────── */
.gp-link-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
}

.gp-link-btn__content {
  display: inline-flex;
  align-items: center;
}

.gp-link-btn__icon {
  flex-shrink: 0;
}

.gp-link-btn__label {
  font-family: var(--font-family-base);
}

/* Underline — hidden by default, appears on hover and selected */
.gp-link-btn__line {
  display: block;
  width: 100%;
  height: 1px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* ── Size: Large ──────────────────────────────────────────── */
.gp-link-btn--lg .gp-link-btn__content {
  gap: var(--spacing-nano);                            /* 8px */
}

.gp-link-btn--lg .gp-link-btn__icon {
  font-size: 24px;
  width: 24px;
  height: 24px;
}

.gp-link-btn--lg .gp-link-btn__label {
  font-size: var(--font-size-xs);                      /* 20px */
  font-weight: var(--font-weight-regular);
  line-height: 1.33;
}

.gp-link-btn--lg .gp-link-btn__line {
  margin-top: var(--spacing-nano);                     /* 8px */
}

/* ── Size: Medium ─────────────────────────────────────────── */
.gp-link-btn--md .gp-link-btn__content {
  gap: var(--spacing-quark);                           /* 4px */
}

.gp-link-btn--md .gp-link-btn__icon {
  font-size: 16px;
  width: 16px;
  height: 16px;
}

.gp-link-btn--md .gp-link-btn__label {
  font-size: var(--font-size-xxs);                     /* 16px */
  font-weight: var(--font-weight-regular);
  line-height: 1.33;
}

/* ── Size: Small ──────────────────────────────────────────── */
.gp-link-btn--sm .gp-link-btn__content {
  gap: var(--spacing-quark);                           /* 4px */
}

.gp-link-btn--sm .gp-link-btn__icon {
  font-size: 12px;
  width: 12px;
  height: 12px;
}

.gp-link-btn--sm .gp-link-btn__label {
  font-size: var(--font-size-xxxs);                    /* 14px */
  font-weight: var(--font-weight-regular);
  line-height: 1.25;
}

/* ── Color: Default (dark text on light bg) ───────────────── */
.gp-link-btn,
.gp-link-btn:visited,
.gp-link-btn:link {
  color: var(--brand-color-primary-pure);              /* #2c3e51 */
}

.gp-link-btn__line {
  background-color: var(--brand-color-secondary-dark); /* #07989c */
}

/* Hover — underline appears, color stays */
.gp-link-btn:hover {
  color: var(--brand-color-primary-pure);
}

.gp-link-btn:hover .gp-link-btn__line {
  opacity: 1;
}

/* Selected — underline visible + accent color + bold */
.gp-link-btn--selected,
.gp-link-btn--selected:visited,
.gp-link-btn--selected:link {
  color: var(--brand-color-secondary-dark);            /* #07989c */
}

.gp-link-btn--selected .gp-link-btn__label {
  font-weight: var(--font-weight-bold);
}

.gp-link-btn--selected .gp-link-btn__line {
  opacity: 1;
}

/* ── Color: On Color (light text on dark bg) ──────────────── */
.gp-link-btn--on-color,
.gp-link-btn--on-color:visited,
.gp-link-btn--on-color:link {
  color: var(--neutral-color-high-pure);               /* #ffffff */
}

.gp-link-btn--on-color:hover {
  color: var(--neutral-color-high-pure);
}

.gp-link-btn--on-color .gp-link-btn__line {
  background-color: var(--brand-color-secondary-pure); /* #4dffcd */
}

.gp-link-btn--on-color.gp-link-btn--selected,
.gp-link-btn--on-color.gp-link-btn--selected:visited,
.gp-link-btn--on-color.gp-link-btn--selected:link {
  color: var(--brand-color-secondary-pure);            /* #4dffcd */
}

.gp-link-btn--on-color.gp-link-btn--selected .gp-link-btn__line {
  background-color: var(--brand-color-secondary-pure);
}

/* ==========================================================================
   GP BREADCRUMB — Core Component
   Token: .gp-breadcrumb
   Figma: GP - Core Components / Breadcrumb
   Sub-component: GP Link Button (no icon, with underline on hover)
   Variants: OnColor (--on-color) · Levels 2-6
   Desktop: Link Button size=md (16px) · Mobile ≤440px: size=sm (14px)
   ========================================================================== */

/* ── Base ─────────────────────────────────────────────────── */
.gp-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--spacing-quark);                               /* 4px */
  overflow: hidden;
  white-space: nowrap;
}

/* Link items inside breadcrumb — hover inherits from Link Button base */
.gp-breadcrumb .gp-link-btn {
  flex-shrink: 0;
}

/* ── Separator arrow ─────────────────────────────────────── */
.gp-breadcrumb__separator {
  font-size: 12px;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  line-height: 1;
  opacity: 0.6;
  color: var(--brand-color-primary-pure);                  /* #2c3e51 */
  pointer-events: none;
  text-decoration: none;
  font-style: normal;
}

/* ── Current item (last level — not clickable, truncates with ellipsis) ── */
.gp-breadcrumb__item--current {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xxs);                         /* 16px — matches md Link Button */
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-md);
  color: var(--brand-color-primary-pure);                  /* #2c3e51 */
  cursor: default;
  pointer-events: none;
  min-width: 0;
  flex-shrink: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── OnColor variant (light text on dark bg) ─────────────── */
.gp-breadcrumb--on-color .gp-link-btn,
.gp-breadcrumb--on-color .gp-link-btn:visited,
.gp-breadcrumb--on-color .gp-link-btn:link {
  color: var(--neutral-color-high-pure);                   /* #ffffff */
}

.gp-breadcrumb--on-color .gp-link-btn:hover {
  color: var(--neutral-color-high-pure);                   /* stays white */
}

.gp-breadcrumb--on-color .gp-link-btn__line {
  background-color: var(--brand-color-secondary-pure);     /* #4dffcd */
}

.gp-breadcrumb--on-color .gp-breadcrumb__separator {
  color: var(--neutral-color-high-pure);                   /* #ffffff */
}

.gp-breadcrumb--on-color .gp-breadcrumb__item--current {
  color: var(--neutral-color-high-pure);                   /* #ffffff */
}

/* ── Responsive: Mobile ≤440px → sm size (14px) ──────────── */
@media (max-width: 440px) {
  .gp-breadcrumb .gp-link-btn__label,
  .gp-breadcrumb__item--current {
    font-size: var(--font-size-xxxs);                      /* 14px */
  }

  .gp-breadcrumb__separator {
    font-size: 10px;
    width: 10px;
    height: 10px;
  }
}

/* ================================================================
   POST BODY — conteúdo de posts (single / single-projeto)
   Espaçamento entre elementos controlado pelas quebras de linha
   do editor WordPress. Cada <p>/elemento = 2XS (24px) de gap.
   ================================================================ */
.gp-post-body {
  margin-top: var(--spacing-xl);                             /* respiro vertical do bloco */
  margin-bottom: var(--spacing-xl);
  /* margin-left/right vêm do .gp-row (auto) para centralizar */
}

.gp-post-body__content,
.gp-post-body__content p,
.gp-post-body__content .flex-box,
.gp-post-body__content .side-box {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xs);                            /* 20px — Body/LG */
  line-height: 1.5;                                           /* 150% */
  font-weight: var(--font-weight-regular);
  color: var(--neutral-color-low-pure);                      /* #657281 */
}

/* Safety — evita que conteúdo largo (imagens, tabelas, code) quebre o layout */
.gp-post-body__content {
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.gp-post-body__content .flex-box,
.gp-post-body__content .side-box {
  min-width: 0;
}

.gp-post-body__content .side-box img,
.gp-post-body__content .side-box .wp-caption,
.gp-post-body__content .side-box .wp-caption img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Zera margens/paddings de todos elementos de conteúdo */
.gp-post-body__content > *,
.gp-post-body__content h1,
.gp-post-body__content h2,
.gp-post-body__content h3,
.gp-post-body__content h4,
.gp-post-body__content h5,
.gp-post-body__content h6,
.gp-post-body__content p,
.gp-post-body__content ul,
.gp-post-body__content ol,
.gp-post-body__content li:not(.resumo-case__item),
.gp-post-body__content blockquote,
.gp-post-body__content figure,
.gp-post-body__content pre {
  margin: 0;
  padding: 0;
}

/* .flex-box dentro do post body — mantém o padding-bottom definido em style.css */
.gp-post-body__content .flex-box {
  padding-bottom: var(--spacing-2xs);
}

/* Margin-bottom 2XS (24px) para elementos de bloco de conteúdo */
.gp-post-body__content h1,
.gp-post-body__content h2,
.gp-post-body__content p,
.gp-post-body__content ul,
.gp-post-body__content blockquote {
  margin-bottom: var(--spacing-2xs);                         /* 24px */
}

.gp-post-body__content p.title {
  margin-bottom: 0;
}

/* Bold dentro de parágrafos = Body/LG/Bold */
.gp-post-body__content strong,
.gp-post-body__content b {
  font-weight: var(--font-weight-bold);
}

/* ── Headings — H1 com linha teal abaixo (spec Figma 135:17621) ── */
.gp-post-body__content h1 {
  font-size: var(--font-size-xl);                            /* 40px */
  line-height: 1.15;                                         /* 46/40 */
  font-weight: var(--font-weight-bold);
  color: var(--brand-color-primary-pure);                    /* #2c3e51 */
  padding-bottom: var(--spacing-nano);                       /* 8px */
  border-bottom: 1px solid var(--brand-color-secondary-dark);/* #07989c */
}

/* H1 com botão ao lado — spec Figma 29:519 (desktop/tablet) e 35:666 (mobile) */
.gp-post-body__content .gp-post-body__h1-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--spacing-2xs);                                   /* 24px */
  margin-bottom: var(--spacing-2xs);                         /* 24px */
}
.gp-post-body__content .gp-post-body__h1-cta h1 {
  flex: 1 1 auto;
  min-width: 0;
  margin-bottom: 0;
}
.gp-post-body__content .gp-post-body__h1-cta .gp-btn {
  flex: 0 0 auto;
  text-decoration: none;                                     /* sobrescreve underline do link genérico */
}
/* WordPress wpautop envolve o <a> em <p> — neutraliza o wrapper para o <a> virar item flex */
.gp-post-body__content .gp-post-body__h1-cta p {
  display: contents;
}

/* Mobile — empilha vertical com botão centralizado */
@media (max-width: 440px) {
  .gp-post-body__content .gp-post-body__h1-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .gp-post-body__content .gp-post-body__h1-cta .gp-btn {
    align-self: flex-start;
  }
}

/* H2–H6 escala e cor — sem linha */
.gp-post-body__content h2,
.gp-post-body__content h3,
.gp-post-body__content h4,
.gp-post-body__content h5,
.gp-post-body__content h6 {
  color: var(--brand-color-primary-pure);
  font-weight: var(--font-weight-bold);
  line-height: 1.33;                                         /* 133% */
}
.gp-post-body__content h2 { font-size: var(--font-size-sm);  }  /* 24px — Heading/H4 */
.gp-post-body__content h3 { font-size: var(--font-size-sm);  }  /* 24px */
.gp-post-body__content h4 { font-size: var(--font-size-sm);  }  /* 24px */
.gp-post-body__content h5 { font-size: var(--font-size-xs);  }  /* 20px */
.gp-post-body__content h6 { font-size: var(--font-size-xxs); }  /* 16px */

/* Mobile — H1 reduzido */
@media (max-width: 440px) {
  .gp-post-body__content h1 {
    font-size: var(--font-size-md);                          /* 28px */
  }
}

/* ── Lista UL — bullet quadrado teal + separador (spec 141:2084) ── */
/* Exclui .resumo-case__list que tem estilização própria */
.gp-post-body__content ul:not(.resumo-case__list) {
  list-style: none;
  padding-left: 0;
}

.gp-post-body__content ul:not(.resumo-case__list) li {
  position: relative;
  padding: var(--spacing-4xs) 0 var(--spacing-4xs) calc(10px + var(--spacing-micro)); /* 16px | bullet(10) + 12px */
  border-bottom: 1px solid var(--neutral-color-low-light);   /* #9cafc6 */
  margin: 0;
  color: var(--neutral-color-low-pure);                      /* #657281 */
}

.gp-post-body__content ul:not(.resumo-case__list) li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--spacing-4xs) + ((1em * 1.33) - 10px) / 2); /* centraliza na 1ª linha */
  width: 10px;
  height: 10px;
  border-radius: 50%;                                        /* bullet circular */
  background: var(--brand-color-secondary-dark);             /* #07989c */
}

/* OL mantém padrão, só ajusta indentação e spacing */
.gp-post-body__content ol {
  padding-left: var(--spacing-3xs);                          /* 20px */
}
.gp-post-body__content ol li + li {
  margin-top: var(--spacing-nano);                           /* 8px */
}

/* ── Blockquote — borda teal + Heading/SM Semibold (spec 139:2072) ── */
.gp-post-body__content blockquote {
  border-left: 4px solid var(--brand-color-secondary-dark);  /* #07989c */
  padding-left: var(--spacing-4xs);                          /* 16px */
  font-size: var(--font-size-sm);                            /* 24px */
  line-height: 1.33;
  font-weight: var(--font-weight-semibold);                  /* 600 */
  color: var(--brand-color-primary-pure);                    /* #2c3e51 */
}

.gp-post-body__content blockquote p {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

/* Blockquote que envolve imagem (wp-caption) — desativa estilo de citação.
   A linha teal fica apenas no figcaption/wp-caption-text. */
.gp-post-body__content blockquote:has(img),
.gp-post-body__content blockquote:has(.wp-caption),
.gp-post-body__content blockquote:has(figure) {
  border-left: 0;
  padding-left: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

/* ── Figure + figcaption — legenda com borda teal (spec 135:17125) ── */
.gp-post-body__content figure {
  margin: 0;
}

.gp-post-body__content figure > img,
.gp-post-body__content figure > a > img {
  display: block;
  width: 100%;
  height: auto;
}

.gp-post-body__content figcaption,
.gp-post-body__content .wp-caption-text {
  border-left: 4px solid var(--brand-color-secondary-dark);  /* #07989c */
  padding-left: var(--spacing-4xs);                          /* 16px */
  font-size: var(--font-size-xxs);                           /* 16px */
  line-height: 1.33;
  font-weight: var(--font-weight-regular);
  color: var(--brand-color-primary-pure);                    /* #2c3e51 */
  margin-top: var(--spacing-4xs);                            /* 16px gap img→caption */
}

/* Legacy WP .wp-caption wrapper (Gutenberg/Classic) —
   sobrescreve width inline do WordPress para não vazar do grid */
.gp-post-body__content .wp-caption {
  width: auto !important;
  max-width: 100%;
}

.gp-post-body__content .wp-caption img {
  max-width: 100%;
  height: auto;
}

/* ── Links (exclui .gp-btn que usa estilos próprios do DS) ── */
.gp-post-body__content a:not(.gp-btn) {
  color: var(--brand-color-secondary-dark);                  /* #07989c */
  text-decoration: underline;
}

.gp-post-body__content a:not(.gp-btn):hover {
  color: var(--brand-color-primary-pure);
}

/* ── Imagens soltas (fora de figure) ────────────────────── */
.gp-post-body__content img {
  max-width: 100%;
  height: auto;
  display: block;
}

