/* ==========================================================================
   FLORESTA+ AMAZÔNIA - O PROJETO PAGE STYLES (REFACTORED)
   Optimized with CSS variables from variables.css
   ========================================================================== */

.page-template-page-projeto {
  background-color: white !important;
}

/* ==========================================================================
   HERO SECTION - SIMPLIFIED VERSION
   ========================================================================== */

.projeto-hero-simple {
  background-size: cover;
  background-position: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--color-text-white);
  position: relative;
  overflow: hidden;
  padding: calc(var(--navbar-height) + 60px) 0 80px;
  border-radius: 0 0 var(--radius-4xl) var(--radius-4xl);
}

.projeto-hero-simple::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 68, 41, 0.7);
  border-radius: inherit;
  z-index: 1;
}

.projeto-hero-simple .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  text-align: center;
  width: 100%;
}

.projeto-hero-title-center {
  font-size: var(--text-6xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-10);
  color: var(--color-text-white);
  text-align: center;
}

.projeto-hero-video-center {
  max-width: 800px;
  margin: 0 auto var(--space-8);
}

/* Responsive video embed — iframe has hardcoded width/height attrs; CSS overrides */
.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  width: 100%;
}

.video-responsive iframe,
.video-responsive embed,
.video-responsive object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.projeto-hero-description {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-relaxed);
  color: var(--color-text-white);
  text-align: center;
  margin: 0 auto var(--space-8);
  max-width: 900px;
}

.projeto-hero-text-blocks {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 900px;
  margin: 0 auto;
}

.projeto-hero-text-blocks p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-white);
  margin: 0;
  text-align: center;
}

/* ==========================================================================
   ONDE O PROJETO ATUA SECTION
   ========================================================================== */

.section-onde-atua {
  padding: var(--section-padding-y) var(--section-padding-x);
  background-color: var(--color-bg-light);
}

.section-onde-atua .container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.onde-atua-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

.onde-atua-content .section-title {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  color: var(--color-green-600);
  margin-bottom: var(--space-6);
}

.onde-atua-content p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}

.onde-atua-map img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
}

/* ==========================================================================
   O QUE O PROJETO FAZ SECTION
   ========================================================================== */

.section-o-que-faz {
  padding: var(--section-padding-y) var(--section-padding-x);
  background-color: var(--color-bg-white);
}

.section-o-que-faz .container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-o-que-faz .section-title {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  color: var(--color-green-600);
  margin-bottom: var(--space-4);
}

.section-o-que-faz .section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-primary);
  margin-bottom: var(--space-10);
}

.section-sobre-projeto .section-title {
  margin-bottom: var(--space-8);
}

.section-sobre-projeto__content {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.section-sobre-projeto__content p {
  margin: 0;
  font-size: var(--text-2xl);
  line-height: var(--leading-relaxed);
  color: var(--color-text-primary);
  text-align: center;
}

.modalidades-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.modalidade-card {
  background: var(--color-green-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-6) var(--space-4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.modalidade-icon {
  width: 48px;
  height: 48px;
  background: var(--color-green-600);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--color-text-white);
}

.modalidade-card p {
  font-size: var(--text-sm);
  line-height: var(--leading-snug);
  color: var(--color-text-primary);
  margin: 0;
}

.section-footer-text {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  font-style: italic;
  margin-top: var(--space-6);
}

/* ==========================================================================
   FINANCIAMENTO SECTION
   ========================================================================== */

.section-financiamento {
  padding: var(--section-padding-y) var(--section-padding-x);
  background-color: var(--color-bg-light);
}

.section-financiamento .container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-financiamento .section-title {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  color: var(--color-green-600);
  margin-bottom: var(--space-6);
}

.section-financiamento p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}

/* ==========================================================================
   EQUIPE SECTION
   ========================================================================== */

.section-equipe {
  padding: var(--section-padding-y) var(--section-padding-x);
  background-color: var(--color-bg-light);
}

.section-equipe .container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-equipe .section-title {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  color: var(--color-green-600);
  text-align: center;
  margin-bottom: var(--space-10);
}

.equipe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

.equipe-group {
  background: var(--color-bg-white);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.equipe-org-title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-green-600);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--color-green-100);
}

.equipe-roles {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.equipe-member-role {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
}

.role-label {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-green-600);
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.equipe-member-role h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
  margin: 0;
}

.equipe-member-role p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--leading-snug);
}

.equipe-tecnica {
  padding: var(--space-6);
  background: var(--color-green-50);
  border-radius: var(--radius-md);
  text-align: center;
}

.equipe-tecnica h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-green-600);
  margin: 0 0 var(--space-4) 0;
}

.equipe-tecnica p {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-text-primary);
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE DESIGN - TABLET
   ========================================================================== */

@media (max-width: 1024px) {
  .projeto-hero-title-center {
    font-size: var(--text-5xl);
  }

  .projeto-hero-simple .projeto-hero-title-center {
    margin-top: 0;
    margin-bottom: var(--space-5);
  }

  .modalidades-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .onde-atua-grid {
    gap: var(--space-6);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE
   ========================================================================== */

@media (max-width: 768px) {
  .section-onde-atua,
  .section-financiamento,
  .section-o-que-faz {
    padding: var(--section-padding-y-mobile) var(--section-padding-x-mobile);
  }

  .projeto-hero-simple {
    min-height: 80svh;
    padding: 0 0 40px 0;
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  }

  .projeto-hero-title-center {
    font-size: var(--text-3xl);
    margin: 0;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .projeto-hero-simple .container {
    padding: 0 var(--section-padding-x-mobile);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .wp-block-floresta-projeto-hero .container > * {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
  }

  .wp-block-floresta-projeto-hero .container > * + * {
    margin-top: 6px !important;
  }

  .projeto-hero-video-center {
    width: 100%;
    max-width: 100%;
    margin: 0;
    margin-top: 0 !important;
  }

  .section-sobre-projeto__content {
    max-width: 100%;
  }

  .section-sobre-projeto__content p {
    font-size: var(--text-md);
  }

  .projeto-hero-description {
    font-size: var(--text-lg);
  }

  .projeto-hero-text-blocks p {
    font-size: var(--text-sm);
  }

  .onde-atua-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .onde-atua-content .section-title,
  .section-o-que-faz .section-title,
  .section-equipe .section-title,
  .section-financiamento .section-title {
    font-size: var(--text-4xl);
  }

  .section-financiamento .section-title {
    line-height: var(--leading-tight);
  }

  .modalidades-cards {
    grid-template-columns: 1fr;
  }

  .modalidade-card {
    flex-direction: row;
    text-align: left;
    padding: var(--space-3);
    gap: var(--space-2);
  }

  .modalidade-icon {
    flex-shrink: 0;
  }

  .equipe-grid {
    grid-template-columns: 1fr;
  }

  .section-equipe .section-title {
    font-size: var(--text-4xl);
  }

  .equipe-org-title {
    font-size: var(--text-lg);
  }

  .equipe-tecnica p {
    font-size: var(--text-xs);
  }
}

@media (max-width: 430px) {
  .projeto-hero-simple {
    padding-bottom: 30px;
  }

  .projeto-hero-title-center {
    margin: 0;
  }

  .projeto-hero-video-center {
    margin: 0;
    margin-top: 0 !important;
  }

  .section-onde-atua,
  .section-financiamento,
  .section-o-que-faz {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }

  .section-financiamento .section-title {
    font-size: var(--text-3xl);
  }

  .section-sobre-projeto__content p {
    font-size: var(--text-base);
    line-height: var(--leading-normal);
  }

  .modalidade-card {
    padding: 10px;
  }
}

@media (max-width: 430px) {
  .projeto-hero-simple {
    padding-bottom: 28px;
  }
}

.carousel-dot {
  height: 12px;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background var(--transition-slow);
}

.carousel-dot.active {
  background: var(--color-green-200);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Divider between two-column and full-width text */
.genero-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: var(--space-10) 0;
}

/* Full-width text below carousel */
.genero-fulltext,
.genero-content-fullwidth {
  width: 100%;
}

.genero-fulltext p,
.genero-content-fullwidth p {
  color: var(--color-text-primary);
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-4);
  text-align: left;
}

/* Legacy grid support */
.genero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.genero-content p {
  color: var(--color-text-primary);
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-4);
}

/* ==========================================================================
   METAS SECTION
   ========================================================================== */

.section-metas-simple {
  padding: 60px var(--section-padding-x);
  background-color: var(--color-bg-white);
}

.section-metas-simple .container {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}

.section-metas-simple .metas-image,
.metas-image {
  display: block;
  width: 100%;
}

.section-metas-simple .metas-image img,
.metas-image img {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}

/* Legacy green capsule version */
.section-metas {
  padding: var(--section-padding-y) var(--section-padding-x);
  background-color: var(--color-green-900);
  border-radius: var(--radius-4xl);
  margin: 0 var(--space-10);
}

.section-metas .container {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}

.metas-title-box {
  margin-bottom: var(--space-10);
}

.metas-pill {
  display: inline-block;
  padding: var(--space-2) var(--space-6);
  background-color: var(--color-green-200);
  color: var(--color-green-900);
  border-radius: var(--radius-2xl);
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   GOVERNANÇA SECTION
   ========================================================================== */

.section-governanca {
  padding: var(--section-padding-y) var(--section-padding-x);
  background-color: var(--color-bg-light);
}

.section-governanca .container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-governanca .section-title {
  font-size: var(--text-6xl);
  font-weight: var(--font-bold);
  color: var(--color-text-primary) !important;
  text-align: center;
  margin-bottom: var(--space-10);
}

.governanca-content {
  max-width: 100%;
  margin-bottom: var(--space-10);
}

.governanca-content p {
  color: var(--color-text-primary);
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-4);
  text-align: center;
}

.governanca-content-team {
  margin-top: var(--space-6);
  margin-bottom: var(--space-10);
}

.governanca-content-team .equipe-compact-card {
  max-width: 100%;
  border-radius: var(--radius-4xl);
  background: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
  padding: var(--space-10);
}

.governanca-content-team .equipe-compact-title {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  color: var(--color-green-900);
  margin-bottom: var(--space-4);
}

.governanca-content-team .equipe-compact-intro {
  margin-bottom: var(--space-4);
  color: var(--color-text-primary);
}

.governanca-content-team .equipe-compact-list {
  margin: 0;
  padding-left: var(--space-6);
  list-style: disc;
}

.governanca-content-team .equipe-compact-list li {
  color: var(--color-text-primary);
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
}

.section-governanca .governanca-image {
  display: block;
  width: 100%;
  text-align: center !important;
}

.section-governanca .governanca-image img {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}

/* ==========================================================================
   TIMELINE SECTION
   ========================================================================== */

.section-timeline {
  padding: var(--section-padding-y) var(--section-padding-x);
  background-color: var(--color-bg-white);
}

.section-timeline .container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-timeline .section-title {
  font-size: var(--text-6xl);
  font-weight: var(--font-bold);
  color: var(--color-text-primary) !important;
  text-align: center;
  margin-bottom: var(--space-10);
}

.timeline-container {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: var(--space-10) 0 var(--space-10) 60px;
}

/* Vertical line - ends at last item */
.timeline-container::before {
  content: '';
  position: absolute;
  top: 48px;
  bottom: 320px;
  left: 10px;
  width: 4px;
  background: #d5ed7c;
  border-radius: 2px;
  z-index: 1;
}

.timeline-item {
  position: relative;
  width: 100%;
  padding: 0 0 0 var(--space-10);
  margin-bottom: var(--space-8);
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 4px;
  left: -58px;
  width: 20px;
  height: 20px;
  background: #d5ed7c;
  border-radius: var(--radius-circle);
  z-index: 3;
  box-shadow: 0 0 0 3px #ffffff;
}

.timeline-content {
  background: var(--color-bg-light);
  padding: var(--space-6) var(--space-8);
  border-radius: var(--radius-xl);
}

.timeline-year {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
  display: block;
}

/* Timeline bullets - inherits from typography.css */
.timeline-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-bullets li {
  position: relative;
  padding-left: var(--space-5);
  margin-bottom: var(--space-2);
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.timeline-bullets li::before {
  content: '*';
  position: absolute;
  left: 0;
  color: var(--color-green-600);
  font-weight: var(--font-bold);
}

.timeline-bullets li:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   EQUIPE SECTION
   ========================================================================== */

.section-equipe {
  padding: var(--section-padding-y) var(--section-padding-x);
  background-color: var(--color-bg-light);
  border-radius: var(--radius-4xl);
  margin: 0 var(--space-10);
  overflow-x: clip;
}

.section-equipe .container {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.section-equipe .section-title {
  font-size: var(--text-6xl);
  font-weight: var(--font-bold);
  color: var(--color-text-primary) !important;
  text-align: center;
  margin-bottom: var(--space-10);
}

.equipe-single-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  max-width: 800px;
  margin: 0 auto;
}

.equipe-group {
  background: var(--color-bg-white);
  border-radius: var(--radius-4xl);
  padding: clamp(20px, 3.5vw, var(--space-10));
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.equipe-group h3 {
  color: var(--color-green-600);
  font-size: var(--text-3xl);
  font-weight: var(--font-extrabold);
  text-align: center;
  margin-bottom: var(--space-4);
  overflow-wrap: anywhere;
}

.equipe-card {
  border: 1px solid var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: center;
  transition: box-shadow var(--transition-base);
}

.equipe-card:hover {
  box-shadow: var(--shadow-md);
}

.equipe-card h4 {
  color: var(--color-text-secondary);
  font-size: var(--text-xl);
  font-weight: var(--font-normal);
}

.equipe-card p {
  color: var(--color-text-secondary);
  font-size: var(--text-md);
  font-weight: var(--font-light);
}

.equipe-role {
  color: var(--color-green-600);
  font-weight: var(--font-extrabold);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
  display: block;
}

.equipe-list {
  border: 1px solid var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-10);
  text-align: center;
}

.equipe-list h4 {
  color: var(--color-green-600);
  font-size: var(--text-2xl);
  font-weight: var(--font-extrabold);
  margin-bottom: var(--space-2);
}

.equipe-list p {
  color: var(--color-text-secondary);
  font-size: var(--text-md);
  font-weight: var(--font-light);
  line-height: var(--leading-normal);
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 1024px) {
  .projeto-hero .container {
    padding: 0 var(--space-5);
  }
  
  .projeto-hero-main {
    flex-direction: column;
    text-align: center;
  }
  
  .projeto-hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .section-governanca,
  .section-timeline,
  .section-equipe,
  .section-genero,
  .section-metas,
  .section-metas-simple {
    padding: 60px var(--space-10);
  }
  
  .section-equipe,
  .section-metas {
    margin: 0 var(--space-5);
  }

  .section-equipe .container {
    padding-left: clamp(8px, 2vw, var(--space-5));
    padding-right: clamp(8px, 2vw, var(--space-5));
  }
}

@media (max-width: 768px) {
  .projeto-hero-title {
    font-size: var(--text-5xl);
  }
  
  .projeto-hero-subtitle {
    font-size: var(--text-xl);
  }
  
  .projeto-hero .container,
  .visao-grid,
  .genero-grid,
  .genero-two-column {
    grid-template-columns: 1fr;
  }
  
  .section-genero,
  .section-metas-simple {
    padding: 60px var(--section-padding-x-mobile);
  }
  
  .section-genero .section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-6);
  }
  
  .genero-grid {
    gap: var(--space-8);
  }
  
  .carousel-slide img {
    height: 280px;
  }
  
  .section-governanca,
  .section-timeline {
    padding: var(--section-padding-y-mobile) var(--section-padding-x-mobile);
  }
  
  .section-governanca .section-title,
  .section-timeline .section-title,
  .section-equipe .section-title {
    font-size: var(--text-4xl);
  }

  .governanca-content-team .equipe-compact-card {
    padding: var(--space-6);
    border-radius: var(--radius-3xl);
  }

  .governanca-content-team .equipe-compact-title {
    font-size: var(--text-4xl);
  }
  
  .governanca-content p {
    text-align: left;
  }
  
  .timeline-container {
    padding: var(--space-6) 0 var(--space-6) var(--space-10);
  }
  
  .timeline-container::before {
    left: 10px;
    width: 3px;
    top: var(--space-6);
    bottom: 40px;
  }
  
  .timeline-item {
    padding-left: var(--space-6);
    margin-bottom: var(--space-6);
  }
  
  .timeline-dot {
    left: -36px;
    width: 16px;
    height: 16px;
    top: 6px;
    background: #d5ed7c;
  }
  
  .timeline-content {
    padding: var(--space-4) var(--space-5);
  }
  
  .timeline-year {
    font-size: var(--text-xl);
  }
  
  .timeline-bullets li {
    font-size: var(--text-sm);
  }
  
  .section-equipe {
    padding: var(--section-padding-y-mobile) var(--section-padding-x-mobile);
    margin: 0;
    border-radius: 0;
  }
  
  .equipe-single-column {
    gap: var(--space-6);
  }
  
  .equipe-group {
    padding: var(--space-6);
    border-radius: var(--radius-3xl);
  }
  
  .equipe-group h3 {
    font-size: var(--text-xl);
  }
  
  .equipe-card,
  .equipe-list {
    padding: var(--space-4);
  }
  
  .equipe-role {
    font-size: var(--text-md);
  }
  
  .equipe-card h4 {
    font-size: var(--text-md);
  }
  
  .equipe-card p,
  .equipe-list p {
    font-size: var(--text-sm);
  }
  
  .section-metas,
  .section-metas-simple {
    padding: var(--section-padding-y-mobile) var(--section-padding-x-mobile);
  }
  
  .section-metas {
    margin: 0;
    border-radius: 0;
  }
  
  .metas-title-box {
    margin-bottom: var(--space-6);
  }
  
  .metas-pill {
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-4);
  }
}
