/*==================================================
  ANTROPHOS — Eduardo | CSS único do site
  Base: home. Header/footer compartilhados + página
  de trajetória reestilizada na mesma linguagem.
==================================================*/

:root {
  --dark: #07111f;
  --dark-2: #0b1628;
  --green: #70d44b;
  --green-2: #9ee86b;
  --white: #ffffff;

  /* Tipografia padronizada */
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: Arial, Helvetica, sans-serif;

  --fs-kicker: 13px;
  --ls-kicker: .2em;

  --fs-section-title: clamp(32px, 3.2vw, 46px);

  --fs-lead: 18px;
  --fs-body: 16px;
  --lh-body: 1.8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dark);
  font-family: var(--font-body);
  color: var(--white);
  overflow-x: hidden;
}

.speaker-hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 75% 55% at 68% -8%, rgba(56,100,240,.10) 0%, transparent 100%),
    radial-gradient(ellipse 45% 65% at 100% 75%, rgba(16,40,100,.18) 0%, transparent 100%),
    radial-gradient(ellipse 55% 40% at 0% 55%, rgba(10,25,70,.14) 0%, transparent 100%),
    linear-gradient(155deg, #07111f 0%, #080d1c 100%);
  overflow: hidden;
  position: relative;
}

.speaker-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  z-index: 1;
  pointer-events: none;
}

.speaker-hero::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40,80,220,.07) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* .navbar, .nav-link, .btn-outline-green e .btn-green foram movidos
   para css/layout.css (casca compartilhada do site). */

.hero-content {
  position: relative;
  z-index: 5;
  padding-top: 110px;
  padding-bottom: 70px;
}

.hero-pill {
  display: inline-flex;
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 12px 26px;
  color: #e8e8e8;
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 46px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: .85;
  color: var(--green);
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 30px);
  letter-spacing: .38em;
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero-tagline {
  font-size: clamp(17px, 1.8vw, 24px);
  color: rgba(255,255,255,.82);
  font-style: italic;
  max-width: 560px;
  line-height: 1.5;
  margin-bottom: 28px;
}

.hero-text {
  border-left: 2px solid var(--green);
  padding-left: 18px;
  max-width: 620px;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.6;
  color: #f3f3f3;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-credentials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.credential-badge {
  border: 1px solid rgba(112,212,75,.45);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 12px;
  color: rgba(255,255,255,.78);
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(112,212,75,.06);
}

.hero-photo {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: min(43vw, 680px);
  z-index: 6;
}

.hero-photo img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
}

.photo-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 70%;
  background: radial-gradient(ellipse at center bottom, rgba(112,212,75,.22) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

.photo-arc {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(112,212,75,.14);
  z-index: 0;
  pointer-events: none;
}

.photo-badge {
  position: absolute;
  background: rgba(7,17,31,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(112,212,75,.22);
  border-radius: 16px;
  padding: 14px 20px;
  z-index: 8;
  min-width: 148px;
}

.photo-badge strong {
  display: block;
  font-size: 26px;
  color: var(--green);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.photo-badge span {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,.55);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.badge-left {
  left: -10px;
  top: 20%;
}

.badge-right {
  right: 0;
  bottom: 24%;
}

@media (max-width: 1199px) {
  .hero-photo {
    opacity: .45;
    width: 52vw;
  }

  .photo-badge {
    display: none;
  }
}

@media (max-width: 991px) {
  /* .navbar-collapse responsivo movido para css/layout.css */

  .hero-content {
    padding-top: 80px;
  }

  .hero-photo {
    position: relative;
    right: auto;
    margin: 40px auto 0;
    opacity: 1;
    width: 78%;
  }

  .photo-badge {
    display: block;
  }

  .badge-left {
    left: 4%;
    top: auto;
    bottom: 34%;
  }

  .badge-right {
    right: 4%;
    bottom: 14%;
  }
}

@media (max-width: 575px) {
  /* .navbar/.navbar-logo responsivos movidos para css/layout.css */

  .hero-pill {
    font-size: 11px;
    padding: 10px 18px;
    letter-spacing: .08em;
    margin-bottom: 32px;
  }

  .hero-title {
    font-size: 54px;
  }

  .hero-subtitle {
    font-size: 26px;
    letter-spacing: .22em;
  }

  .hero-tagline {
    font-size: 16px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions a {
    text-align: center;
  }

  .credential-badge {
    font-size: 11px;
    padding: 7px 14px;
  }

  .photo-badge {
    padding: 10px 14px;
    min-width: 110px;
    border-radius: 12px;
  }

  .photo-badge strong {
    font-size: 20px;
  }

  .photo-badge span {
    font-size: 9px;
  }

  .badge-left {
    left: 2%;
    top: auto;
    bottom: 36%;
  }

  .badge-right {
    right: 2%;
    bottom: 10%;
  }
}

/*==============================
 TRAJETÓRIA
===============================*/

.section-achievements{

    background:#081321;
    position:relative;
    overflow:hidden;
    padding:110px 0;

}

.section-achievements::before{

    content:"";
    position:absolute;

    width:600px;
    height:600px;

    right:-250px;
    top:-150px;

    background:radial-gradient(circle,
    rgba(112,212,75,.08),
    transparent 70%);

}

.section-label{

    display:inline-block;

    color:#70d44b;

    font-weight:700;

    letter-spacing:var(--ls-kicker);

    font-size:var(--fs-kicker);

    text-transform:uppercase;

    margin-bottom:18px;

}

.section-title{

    color:#fff;

    font-family:var(--font-heading);

    font-size:var(--fs-section-title);

    line-height:1.15;

    margin-top:15px;

    font-weight:700;

}

.section-subtitle{

    color:#bfc8d5;

    max-width:700px;

    margin:auto;

    margin-top:20px;

    font-size:var(--fs-lead);

    line-height:var(--lh-body);

}

.achievement-card{

    background:rgba(255,255,255,.03);

    border:1px solid rgba(112,212,75,.18);

    border-radius:24px;

    padding:45px 35px;

    height:100%;

    transition:.35s;

    backdrop-filter:blur(10px);

}

.achievement-card:hover{

    transform:translateY(-12px);

    border-color:#70d44b;

    box-shadow:

    0 20px 45px rgba(0,0,0,.35),

    0 0 35px rgba(112,212,75,.15);

}

.achievement-number{

    color:#70d44b;

    font-size:54px;

    font-weight:700;

    margin-bottom:20px;

    line-height:1;

}

.achievement-card h4{

    color:#fff;

    font-size:24px;

    margin-bottom:15px;

}

.achievement-card p{

    color:#cfd6de;

    font-size:var(--fs-body);

    line-height:var(--lh-body);

    margin:0;

}

@media(max-width:991px){

.achievement-card{

text-align:center;

}

}

/* QUEM É */
.about-speaker-section {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(112,212,75,.16), transparent 28%),
    linear-gradient(135deg, #f7faf5 0%, #ffffff 48%, #edf5ef 100%);
  overflow: hidden;
}

.about-speaker-section::before {
  content: "";
  position: absolute;
  right: -180px;
  top: 80px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(112,212,75,.28);
  border-radius: 50%;
}

.about-photo-wrap {
  position: relative;
  border-radius: 38px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(112,212,75,.26), rgba(7,17,31,.08));
  box-shadow: 0 35px 90px rgba(7,17,31,.16);
}

.about-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 34px -18px -18px 34px;
  border: 2px solid rgba(112,212,75,.45);
  border-radius: 38px;
  z-index: 0;
}

.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  border-radius: 28px;
  background: #07111f;
}

.about-kicker {
  display: inline-block;
  color: #70d44b;
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: var(--ls-kicker);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-title {
  color: #07111f;
  font-family: var(--font-heading);
  font-size: var(--fs-section-title);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 28px;
  max-width: 820px;
}

.about-speaker-section p {
  color: #334155;
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  margin-bottom: 20px;
}

.about-speaker-section p strong {
  color: #07111f;
}

.about-speaker-section blockquote {
  margin: 34px 0;
  padding: 24px 30px;
  border-left: 4px solid #70d44b;
  background: rgba(112,212,75,.09);
  color: #07111f;
  font-size: 22px;
  line-height: 1.45;
  font-family: var(--font-heading);
  border-radius: 0 22px 22px 0;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-tags span {
  padding: 12px 18px;
  border-radius: 999px;
  background: #07111f;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(7,17,31,.12);
}

.about-tags span:nth-child(2) {
  background: #10233a;
}

.about-tags span:nth-child(3) {
  background: #70d44b;
  color: #07111f;
}

@media (max-width: 991px) {
  .about-speaker-section {
    padding: 85px 0;
  }

  .about-photo-wrap {
    max-width: 520px;
    margin: 0 auto;
  }

  .about-title,
  .about-speaker-section p {
    text-align: center;
  }

  .about-kicker {
    display: block;
    text-align: center;
  }

  .about-tags {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .about-speaker-section {
    padding: 70px 0;
  }

  .about-speaker-section p {
    font-size: var(--fs-body);
  }

  .about-speaker-section blockquote {
    font-size: 19px;
    padding: 20px;
  }

  .about-tags span {
    width: 100%;
    text-align: center;
  }
}

/*=================================
TEMAS
==================================*/

.topics-section{

padding:120px 0;

background:

radial-gradient(circle at 10% 20%,
rgba(112,212,75,.08),
transparent 30%),

radial-gradient(circle at 90% 80%,
rgba(112,212,75,.05),
transparent 35%),

linear-gradient(135deg,#06101b,#081321,#050b13);

position:relative;

overflow:hidden;

}

.topics-section::before{

content:"";

position:absolute;

left:-300px;
top:-150px;

width:650px;
height:650px;

border-radius:50%;

background:

radial-gradient(circle,
rgba(112,212,75,.05),
transparent 70%);

}

.section-mini{

display:inline-block;

color:#70d44b;

font-size:var(--fs-kicker);

letter-spacing:var(--ls-kicker);

font-weight:700;

text-transform:uppercase;

margin-bottom:20px;

}

.section-heading{
  font-family: var(--font-heading);
  font-size: var(--fs-section-title);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  max-width: 520px;
  margin-bottom: 18px;

}

.section-description{

color:#b8c2cf;

font-size: var(--fs-body);

line-height:var(--lh-body);

max-width:540px;

margin-left:auto;

}

.topic-card{

position:relative;

padding:45px;

border-radius:28px;

background:

rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(15px);

height:100%;

transition:.35s;

overflow:hidden;

}

.topic-card::before{

content:"";

position:absolute;

left:0;
top:0;

width:5px;

height:100%;

background:#70d44b;

}

.topic-card:hover{

transform:translateY(-12px);

border-color:#70d44b;

box-shadow:

0 25px 60px rgba(0,0,0,.45),

0 0 40px rgba(112,212,75,.15);

}

.topic-number{

font-size:70px;

font-weight:800;

color:rgba(112,212,75,.15);

margin-bottom:15px;

line-height:1;

}

.topic-card h3{

color:#fff;

font-size:24px;

margin-bottom:22px;

font-weight:700;

}

.topic-card p{

color:#cfd6de;

font-size:var(--fs-body);

line-height:var(--lh-body);

margin:0;

}

@media(max-width:991px){

.section-heading{

margin-bottom:30px;

}

.section-description{

margin-left:0;

}

.topic-card{

padding:35px;

}

}

@media(max-width:576px){

.topics-section{

padding:80px 0;

}

.topic-number{

font-size:48px;

}

}

/* PRESENÇA */
.presence-section {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(112,212,75,.18), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f6faf7 48%, #eef6f0 100%);
  overflow: hidden;
}

.presence-section::before {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(112,212,75,.24);
}

.presence-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: var(--ls-kicker);
  color: var(--green);
  text-transform: uppercase;
}
.presence-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(112,212,75,.6);
}

.presence-title {
  color: #07111f;
  font-family: var(--font-heading);
  font-size: var(--fs-section-title);
  font-weight: 700;
  line-height: 1.15;
  max-width: 520px;
  margin-bottom: 18px;
}

.presence-lead {
  color: #475569;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin: 0;
}

.presence-timeline {
  position: relative;
  margin-top: 55px;
  display: grid;
  gap: 14px;
}

.presence-timeline::before {
  content: "";
  position: absolute;
  left: 178px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(112,212,75,.5), transparent);
}

.presence-item {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
}

.presence-date {
  position: relative;
  color: #334155;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: right;
  padding-right: 48px;
}

.presence-date::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #70d44b;
  box-shadow: 0 0 0 4px rgba(112,212,75,.18);
  z-index: 2;
}

.presence-content {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(7,17,31,.07);
  box-shadow: 0 2px 16px rgba(7,17,31,.05);
  transition: .28s ease;
}

.presence-content:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 32px rgba(7,17,31,.1);
  border-color: rgba(112,212,75,.28);
}

.presence-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(112,212,75,.1);
  border: 1px solid rgba(112,212,75,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.presence-text { flex: 1; }

.presence-content h3 {
  color: #07111f;
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 700;
  letter-spacing: -.2px;
  margin-bottom: 3px;
}

.presence-content p {
  color: #64748b;
  font-size: 13px;
  margin: 0;
}

@media (max-width: 768px) {
  .presence-section {
    padding: 80px 0;
  }

  .presence-timeline::before {
    left: 8px;
    top: 0;
    bottom: 0;
  }

  .presence-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 28px;
  }

  .presence-date {
    text-align: left;
    padding-right: 0;
    font-size: 10px;
  }

  .presence-date::after {
    left: -24px;
    right: auto;
  }

  .presence-content {
    padding: 16px 18px;
    gap: 14px;
  }
}

/* CONTATO */
.contact-modern {
  padding: 130px 0;
  background: #07111f;
  position: relative;
  overflow: hidden;
}

.contact-modern::before {
  content: "";
  position: absolute;
  right: -200px;
  bottom: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112,212,75,.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: var(--ls-kicker);
  color: var(--green);
  text-transform: uppercase;
}

.contact-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(112,212,75,.6);
}

.contact-modern h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-section-title);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  max-width: 520px;
  margin-bottom: 18px;
}

.contact-modern > .container p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: rgba(255,255,255,.5);
  max-width: 460px;
  margin-bottom: 38px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}

.contact-button:hover {
  background: var(--green);
  color: #07111f;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
  transition: border-color .25s, background .25s, transform .22s;
  margin-bottom: 12px;
}

.contact-card:hover {
  border-color: rgba(112,212,75,.3);
  background: rgba(112,212,75,.04);
  transform: translateX(5px);
}

.contact-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(112,212,75,.08);
  border: 1px solid rgba(112,212,75,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.contact-card-info {
  flex: 1;
}

.contact-card-info small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 4px;
}

.contact-card-info strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.contact-card-arrow {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,.2);
  flex-shrink: 0;
  transition: color .25s;
}

.contact-card:hover .contact-card-arrow {
  color: var(--green);
}

@media (max-width: 992px) {
  .contact-modern { padding: 80px 0; }
}

@media(max-width:992px){

.contact-card strong{

font-size:22px;

}

}

/* .footer-premium e .back-to-top movidos para css/layout.css (casca compartilhada). */

/*==================================================
  LAYOUT COMPARTILHADO — header e footer do site.
  Carregado por todas as páginas (index e trajetória)
  para que o cabeçalho e o rodapé sejam idênticos.
  Cores fixas de propósito (independentes do :root
  de cada página) para renderizar sempre igual.
==================================================*/

/* ---------- NAVBAR ---------- */
.navbar {
  min-height: 92px;
  background: rgba(7,17,31,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  z-index: 20;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
}

.navbar-logo {
  max-height: 54px;
  width: auto;
}

.nav-link {
  color: #fff !important;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 12px;
}

/* ---------- BOTÕES ---------- */
.btn-outline-green {
  border: 1px solid #70d44b;
  background: transparent;
  color: #fff;
  border-radius: 999px;
  padding: 12px 28px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s, color .2s;
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
}

.btn-outline-green:hover {
  background: #70d44b;
  color: #07111f;
}

.btn-green {
  background: #70d44b;
  color: #07111f;
  border: 1px solid #70d44b;
  border-radius: 999px;
  padding: 12px 28px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
}

.btn-green:hover {
  background: #9ee86b;
  border-color: #9ee86b;
  color: #07111f;
}

/* ---------- FOOTER ---------- */
.footer-premium {
  background: #050B13;
  padding: 90px 0 35px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  font-family: Arial, Helvetica, sans-serif;
}

.footer-premium::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112,212,75,.06), transparent 70%);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 250px;
  height: auto;
}

.footer-text {
  max-width: 520px;
  color: #95A3B5;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.footer-title {
  color: #70d44b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.footer-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-list li {
  margin-bottom: 14px;
  color: #fff;
  font-size: 16px;
}

.footer-list a {
  text-decoration: none;
  color: #fff;
  transition: .3s;
}

.footer-list a:hover {
  color: #70d44b;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 60px 0 25px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom span {
  color: #7F8A99;
  font-size: 14px;
}

.footer-bottom strong {
  color: #fff;
  font-weight: 600;
}

.footer-bottom strong a {
  color: #fff;
  text-decoration: none;
  transition: color .25s;
}

.footer-bottom strong a:hover {
  color: #70d44b;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  margin-bottom: 40px;
  border: 1px solid #70d44b;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}

.back-to-top:hover {
  background: #70d44b;
  color: #07111f;
}

.back-to-top svg {
  flex-shrink: 0;
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #07111f;
    padding: 24px;
    margin-top: 18px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.08);
  }

  .footer-premium {
    text-align: center;
  }

  .footer-text {
    margin: auto;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-logo img {
    max-width: 180px;
  }
}

@media (max-width: 575px) {
  .navbar {
    min-height: 78px;
  }

  .navbar-logo {
    max-height: 42px;
  }
}

/*==================================================
  PÁGINA: Trajetória de capacitação
  Reestilizada na linguagem visual da home
  (fundo navy, verde #70d44b, títulos Georgia).
==================================================*/

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* kicker / pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(112,212,75,.45);
  border-radius: 999px;
  padding: 11px 24px;
  font-size: var(--fs-kicker);
  letter-spacing: var(--ls-kicker);
  text-transform: uppercase;
  font-weight: 700;
  color: #e8e8e8;
  background: rgba(112,212,75,.06);
}

.pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  font-style: normal;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(112,212,75,.6);
}

.green {
  color: var(--green);
}

/* hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 130px 0 90px;
  background:
    radial-gradient(circle at 10% 20%, rgba(112,212,75,.08), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(112,212,75,.05), transparent 35%),
    linear-gradient(135deg, #06101b, #081321, #050b13);
}

.hero::before {
  content: "";
  position: absolute;
  right: -160px;
  top: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(112,212,75,.16);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 0;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
  pointer-events: none;
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.7rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin: 30px 0 8px;
  max-width: 860px;
  color: #fff;
}

.hero .sub {
  display: block;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 300;
  color: #fff;
}

.hero .lead {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: rgba(255,255,255,.85);
  margin: 30px 0 22px;
  max-width: 640px;
}

.hero .desc {
  max-width: 620px;
  color: #cfd6de;
  border-left: 2px solid var(--green);
  padding-left: 22px;
  font-size: var(--fs-body);
  line-height: 1.7;
  margin: 0;
}

.hero .hero-actions {
  margin-top: 40px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 46px;
  list-style: none;
  padding-left: 0;
}

.hero-badges li {
  border: 1px solid rgba(112,212,75,.45);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  background: rgba(112,212,75,.06);
}

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-top: 60px;
}

.stat {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(112,212,75,.18);
  border-radius: 16px;
  padding: 24px 26px;
  backdrop-filter: blur(10px);
  transition: .35s;
}

.stat:hover {
  border-color: var(--green);
  transform: translateY(-6px);
}

.stat b {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
}

.stat span {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #cfd6de;
  font-weight: 600;
}

/* cabeçalho de seção */
.sec-head {
  max-width: 760px;
  margin-bottom: 56px;
}

.sec-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-section-title);
  line-height: 1.15;
  margin: 20px 0 16px;
  color: #fff;
}

.sec-lead {
  color: #b8c2cf;
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  margin: 0;
}

/* competências */
.competencias {
  padding: 110px 0;
  background: linear-gradient(135deg, #06101b, #081321, #050b13);
  position: relative;
  overflow: hidden;
}

.comp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.comp-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 34px 32px;
  backdrop-filter: blur(15px);
  transition: .35s;
}

.comp-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--green);
  opacity: 0;
  transition: opacity .3s;
}

.comp-card:hover {
  transform: translateY(-12px);
  border-color: var(--green);
  box-shadow: 0 25px 60px rgba(0,0,0,.45), 0 0 40px rgba(112,212,75,.15);
}

.comp-card:hover::before {
  opacity: 1;
}

.comp-eixo {
  font-size: var(--fs-kicker);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
}

.comp-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.45rem;
  margin: 14px 0 12px;
  line-height: 1.25;
  color: #fff;
}

.comp-card p {
  font-size: var(--fs-body);
  color: #cfd6de;
  line-height: var(--lh-body);
  margin: 0;
}

.comp-skills {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.comp-skills li {
  font-size: 12px;
  letter-spacing: .04em;
  font-weight: 600;
  padding: 7px 14px;
  border: 1px solid rgba(112,212,75,.35);
  border-radius: 999px;
  color: #fff;
  background: rgba(112,212,75,.08);
}

/* timeline */
.timeline-sec {
  padding: 110px 0;
  background: #081321;
  position: relative;
  overflow: hidden;
}

.chapter {
  margin-bottom: 80px;
}

.chapter:last-child {
  margin-bottom: 0;
}

.chapter-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 42px;
}

.chapter-years {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

.chapter-name {
  font-size: var(--fs-kicker);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #9fb0c6;
  font-weight: 600;
}

.chapter-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.08);
  min-width: 60px;
}

.tl {
  position: relative;
  padding-left: 46px;
}

.tl::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--green), rgba(112,212,75,.08));
}

.tl-item {
  position: relative;
  padding-bottom: 22px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: -43px;
  top: 26px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #081321;
  border: 2px solid var(--green);
  box-shadow: 0 0 0 4px rgba(112,212,75,.12);
}

.tl-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(112,212,75,.18);
  border-radius: 20px;
  padding: 28px 30px;
  backdrop-filter: blur(10px);
  transition: .35s;
}

.tl-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0,0,0,.35), 0 0 35px rgba(112,212,75,.12);
}

.tl-year {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green);
  border: 1px solid rgba(112,212,75,.35);
  border-radius: 999px;
  padding: 6px 16px;
  background: rgba(112,212,75,.08);
}

.tl-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.22;
  margin: 14px 0 4px;
  color: #fff;
}

.tl-inst {
  font-size: .9rem;
  color: #9fb0c6;
  margin: 0;
}

.tl-desc {
  font-size: var(--fs-body);
  color: #cfd6de;
  max-width: 660px;
  margin: 12px 0 0;
  line-height: 1.7;
}

.tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  list-style: none;
  padding-left: 0;
}

.tl-tags li {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 999px;
  color: var(--green);
  border: 1px solid rgba(112,212,75,.35);
}

/* animação reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.on {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .comp-card:hover,
  .tl-card:hover,
  .stat:hover {
    transform: none;
  }
}

/* cta */
.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 130px 0;
  background: #07111f;
}

.cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 640px;
  border: 1px solid rgba(112,212,75,.12);
  border-radius: 50%;
  pointer-events: none;
}

.cta .pill {
  margin: 0 auto;
}

.cta h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-section-title);
  line-height: 1.15;
  max-width: 760px;
  margin: 28px auto 18px;
  color: #fff;
}

.cta p {
  color: rgba(255,255,255,.6);
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

@media (max-width: 767px) {
  .hero {
    padding: 90px 0 60px;
  }

  .competencias,
  .timeline-sec,
  .cta {
    padding: 80px 0;
  }

  .wrap {
    padding: 0 20px;
  }
}

/*==================================================
  ATUAÇÃO INSTITUCIONAL (colegiados)
==================================================*/
.roles-section {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(112,212,75,.16), transparent 26%),
    linear-gradient(135deg, #f7faf5 0%, #ffffff 50%, #edf5ef 100%);
  overflow: hidden;
}

.roles-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: var(--ls-kicker);
  color: var(--green);
  text-transform: uppercase;
}

.roles-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(112,212,75,.6);
}

.roles-title {
  color: #07111f;
  font-family: var(--font-heading);
  font-size: var(--fs-section-title);
  font-weight: 700;
  line-height: 1.15;
  max-width: 560px;
  margin-bottom: 18px;
}

.roles-lead {
  color: #475569;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin: 0;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 50px;
}

.role-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(7,17,31,.07);
  box-shadow: 0 2px 16px rgba(7,17,31,.05);
  transition: transform .25s ease, border-color .25s, box-shadow .25s;
}

.role-card:hover {
  transform: translateY(-4px);
  border-color: rgba(112,212,75,.35);
  box-shadow: 0 12px 30px rgba(7,17,31,.1);
}

.role-sigla {
  flex-shrink: 0;
  min-width: 104px;
  max-width: 150px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .05em;
  line-height: 1.3;
  color: #07111f;
  background: rgba(112,212,75,.16);
  border: 1px solid rgba(112,212,75,.4);
  border-radius: 16px;
  padding: 9px 14px;
}

.role-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.role-name {
  color: #334155;
  font-size: 15px;
  line-height: 1.5;
}

.role-detail {
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 575px) {
  .roles-section { padding: 70px 0; }
  .role-card { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/*==================================================
  BOTÃO FLUTUANTE DO WHATSAPP
==================================================*/
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  transition: transform .2s, box-shadow .2s, bottom .25s;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  color: #fff;
}

.wa-float svg {
  width: 34px;
  height: 34px;
}

body.cookie-visible .wa-float {
  bottom: 108px;
}

@media (max-width: 575px) {
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .wa-float svg { width: 30px; height: 30px; }
  body.cookie-visible .wa-float { bottom: 140px; }
}

/*==================================================
  BARRA DE COOKIES
==================================================*/
.cookie-bar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 1100;
  width: calc(100% - 40px);
  max-width: 920px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: #0b1628;
  color: #e8edf3;
  border: 1px solid rgba(112,212,75,.25);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  font-family: Arial, Helvetica, sans-serif;
}

.cookie-bar[hidden] {
  display: none;
}

.cookie-bar p {
  margin: 0;
  flex: 1;
  min-width: 240px;
  font-size: 14px;
  line-height: 1.6;
  color: #cfd6de;
}

.cookie-bar a {
  color: #9ee86b;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-bar .btn-green,
.cookie-bar .btn-outline-green {
  padding: 10px 24px;
  font-size: 13px;
  cursor: pointer;
}

/*==================================================
  PÁGINAS LEGAIS (política de privacidade)
==================================================*/
.legal-hero {
  background:
    radial-gradient(ellipse 60% 60% at 80% -10%, rgba(56,100,240,.12), transparent 100%),
    linear-gradient(155deg, #07111f 0%, #081321 100%);
  padding: 130px 0 60px;
  color: #fff;
}

.legal-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--fs-section-title);
  color: #fff;
  margin: 0;
}

.legal-hero p {
  color: rgba(255,255,255,.55);
  margin: 12px 0 0;
  font-size: var(--fs-body);
}

.legal-content {
  background: #fff;
  padding: 70px 0 100px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  color: #07111f;
  font-size: 24px;
  margin: 44px 0 14px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: var(--fs-body);
  line-height: 1.8;
  color: #475569;
}

.legal-content ul {
  margin: 12px 0 12px 22px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: #5aa832;
}

.legal-content strong {
  color: #07111f;
}

/*==================================================
  SEÇÃO INSTAGRAM
==================================================*/
.ig-section {
  padding: 120px 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(112,212,75,.08), transparent 30%),
    linear-gradient(135deg, #06101b, #081321, #050b13);
  position: relative;
  overflow: hidden;
}

.ig-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.ig-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: var(--ls-kicker);
  color: var(--green);
  text-transform: uppercase;
}

.ig-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(112,212,75,.6);
}

.ig-title {
  font-family: var(--font-heading);
  color: #fff;
  font-size: var(--fs-section-title);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 8px;
}

.ig-handle {
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .02em;
}

.ig-handle:hover {
  text-decoration: underline;
}

.ig-follow {
  flex-shrink: 0;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.ig-item {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.ig-item:hover img {
  transform: scale(1.08);
}

.ig-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7,17,31,.55);
  color: #fff;
  opacity: 0;
  transition: opacity .3s;
}

.ig-item:hover .ig-overlay {
  opacity: 1;
}

.ig-overlay svg {
  width: 34px;
  height: 34px;
}

@media (max-width: 991px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 575px) {
  .ig-section { padding: 80px 0; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ig-follow { width: 100%; text-align: center; }
}

/* Instagram — feed ao vivo (Behold) x fallback */
.ig-embed[hidden] { display: none; }
.ig-embed behold-widget { display: block; }

/* ==========================================================
   INICIATIVAS — cards das ferramentas públicas (autoteste, respiração)
   ========================================================== */
.initiatives-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(112,212,75,.10), transparent 32%),
    linear-gradient(135deg, #081321, #0a1725, #06101b);
}

.initiative-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 45px;
  border-radius: 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(15px);
  text-decoration: none;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.initiative-card:hover,
.initiative-card:focus-visible {
  transform: translateY(-12px);
  border-color: #70d44b;
  box-shadow:
    0 25px 60px rgba(0,0,0,.45),
    0 0 40px rgba(112,212,75,.15);
}

.initiative-tag {
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(112,212,75,.12);
  border: 1px solid rgba(112,212,75,.35);
  color: #70d44b;
  font-size: var(--fs-kicker);
  letter-spacing: var(--ls-kicker);
  font-weight: 700;
  text-transform: uppercase;
}

.initiative-card h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.initiative-card p {
  color: #cfd6de;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin: 0 0 28px;
}

.initiative-link {
  margin-top: auto;
  color: #70d44b;
  font-weight: 700;
  transition: gap .25s ease;
}

@media (max-width: 991px) {
  .initiative-card { padding: 35px; }
}

@media (max-width: 576px) {
  .initiatives-section { padding: 80px 0; }
}
