:root{
  --navy:#0b1f3a;
  --navy-dark:#071527;
  --white:#ffffff;
  --offwhite:#f3f5f8;
  --black:#141414;
  --muted:#5a6472;
  --line:#dde2e8;
}
*{box-sizing:border-box;margin:0;padding:0;}
body{
  font-family:'Georgia','Times New Roman',serif;
  color:var(--black);
  background:var(--white);
  line-height:1.7;
}
a{color:inherit;}
.lang-bar{
  background:var(--navy-dark);
  display:flex;
  justify-content:flex-end;
  padding:9px 48px;
}
.lang-bar a{
  font-family:Arial,Helvetica,sans-serif;
  font-size:11px;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.5);
  text-decoration:none;
  margin-left:18px;
}
.lang-bar a.active, .lang-bar a:hover{color:var(--white);}
@media (max-width:640px){.lang-bar{padding:9px 24px;}}

header{
  background:var(--navy);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:26px 48px;
  flex-wrap:wrap;
  gap:16px;
}
.brand{display:flex;align-items:center;gap:20px;}
.brand svg{width:210px;height:auto;display:block;}
.brand-name{font-size:15px;letter-spacing:0.03em;color:var(--white);}
nav a{
  font-family:Arial,Helvetica,sans-serif;
  font-size:12px;
  letter-spacing:0.09em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.72);
  text-decoration:none;
  margin-left:28px;
  padding-bottom:4px;
  border-bottom:2px solid transparent;
}
nav a:hover, nav a.active{
  color:var(--white);
  border-bottom:2px solid var(--white);
}
.hero{
  background:var(--offwhite);
  padding:88px 48px 72px;
  border-bottom:1px solid var(--line);
}
.hero-inner{max-width:760px;}
.hero h1{
  font-size:30px;
  font-weight:400;
  line-height:1.35;
  color:var(--navy);
  margin-bottom:18px;
}
.hero p{
  font-family:Arial,Helvetica,sans-serif;
  font-size:16px;
  color:var(--muted);
  max-width:560px;
}
.page-header{
  background:var(--navy);
  color:var(--white);
  padding:56px 48px;
}
.page-header h1{font-size:28px;font-weight:400;}
.page-header p{
  font-family:Arial,Helvetica,sans-serif;
  font-size:14px;
  color:rgba(255,255,255,0.7);
  margin-top:10px;
  max-width:520px;
}
section{
  padding:64px 48px;
  border-bottom:1px solid var(--line);
  max-width:960px;
}
section.alt{background:var(--offwhite);max-width:none;}
section.alt > *{max-width:960px;}
section.wide{max-width:none;}
section h2{
  font-family:Arial,Helvetica,sans-serif;
  font-size:12px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--navy);
  margin-bottom:26px;
  font-weight:700;
}
section p{
  font-size:17px;
  max-width:680px;
  margin-bottom:16px;
}
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:32px;
  max-width:820px;
}
.card{
  border-left:3px solid var(--navy);
  padding-left:20px;
}
.card h3{
  font-size:18px;
  font-weight:400;
  color:var(--navy);
  margin-bottom:8px;
}
.card p{
  font-family:Arial,Helvetica,sans-serif;
  font-size:14px;
  color:var(--muted);
  margin-bottom:0;
}
.card-head{display:flex;align-items:center;gap:12px;margin-bottom:8px;text-decoration:none;color:inherit;}
.card-head h3{margin-bottom:0;}
.card-logo{height:34px;width:auto;max-width:140px;object-fit:contain;flex-shrink:0;}

.comissoes-list{display:flex;flex-direction:column;gap:22px;max-width:820px;}
.comissao-item{display:flex;align-items:center;gap:18px;}
.comissao-logo{height:42px;width:auto;max-width:130px;object-fit:contain;flex-shrink:0;}
.comissao-item p{margin:0;}
.timeline-item{margin-bottom:36px;max-width:720px;}
.timeline-item .meta{
  font-family:Arial,Helvetica,sans-serif;
  font-size:12px;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:var(--navy);
  margin-bottom:6px;
}
.timeline-item h3{font-size:19px;font-weight:400;margin-bottom:10px;}
.timeline-item ul{
  font-family:Arial,Helvetica,sans-serif;
  font-size:14px;
  color:var(--muted);
  padding-left:18px;
}
.timeline-item li{margin-bottom:6px;}
.pub-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:4px;
  padding:24px;
}
.pub-card h3{font-size:17px;font-weight:400;color:var(--navy);margin-bottom:8px;}
.pub-card p{font-family:Arial,Helvetica,sans-serif;font-size:14px;color:var(--muted);margin:0;}
.pub-card .tag{
  display:inline-block;
  font-family:Arial,Helvetica,sans-serif;
  font-size:10px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--navy);
  background:var(--offwhite);
  padding:4px 10px;
  border-radius:3px;
  margin-bottom:12px;
}
.hero-full{
  position:relative;
  min-height:540px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:flex-end;
}
.hero-full::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(7,21,39,0.25) 0%, rgba(7,21,39,0.92) 100%);
}
.hero-full-inner{position:relative;z-index:1;max-width:700px;padding:64px 48px;}
.hero-full-inner h1{color:var(--white);font-size:36px;font-weight:400;line-height:1.32;margin-bottom:20px;}
.hero-full-inner p{color:rgba(255,255,255,0.82);font-family:Arial,Helvetica,sans-serif;font-size:16px;max-width:520px;margin-bottom:28px;}
.btn{
  display:inline-block;
  font-family:Arial,Helvetica,sans-serif;
  font-size:13px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--navy);
  background:var(--white);
  padding:14px 30px;
  text-decoration:none;
  border-radius:2px;
}
.btn:hover{background:var(--offwhite);}

.intro-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:1px;
  background:var(--line);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.intro-cards a{
  background:var(--white);
  padding:44px 40px;
  text-decoration:none;
  color:inherit;
  display:block;
}
.intro-cards a:hover{background:var(--offwhite);}
.intro-cards h3{color:var(--navy);font-size:19px;font-weight:400;margin-bottom:10px;}
.intro-cards p{font-family:Arial,Helvetica,sans-serif;font-size:14px;color:var(--muted);margin:0;}

.tagcloud{display:flex;flex-wrap:wrap;gap:14px;max-width:820px;}
.tagcloud a{
  font-family:Arial,Helvetica,sans-serif;
  font-size:14px;
  color:var(--navy);
  border:1px solid var(--line);
  padding:11px 20px;
  border-radius:22px;
  text-decoration:none;
}
.tagcloud a:hover{background:var(--navy);color:var(--white);border-color:var(--navy);}

.stats-strip{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:32px;
  max-width:900px;
}
.stats-strip .stat-num{font-size:32px;color:var(--navy);font-weight:400;margin-bottom:6px;}
.stats-strip .stat-label{font-family:Arial,Helvetica,sans-serif;font-size:13px;color:var(--muted);}

.section-cta{
  font-family:Arial,Helvetica,sans-serif;
  font-size:13px;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:var(--navy);
  text-decoration:none;
  border-bottom:1px solid var(--navy);
  padding-bottom:2px;
}

.feature-row{
  display:flex;
  align-items:center;
  gap:48px;
  max-width:960px;
  margin-bottom:56px;
}
.feature-row:last-child{margin-bottom:0;}
.feature-row.reverse{flex-direction:row-reverse;}
.feature-row .media{flex:1 1 320px;}
.feature-row .media img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  border-radius:4px;
}
.feature-row .text{flex:1 1 340px;}
.feature-row .text h3{font-size:19px;font-weight:400;color:var(--navy);margin-bottom:10px;}
.feature-row .text p{font-size:16px;margin-bottom:0;}
.feature-row .text p + p{margin-top:14px;}
.feature-row .text p + h3{margin-top:28px;}
.feature-row .text ul{font-family:Arial,Helvetica,sans-serif;font-size:14px;color:var(--muted);padding-left:18px;margin-top:10px;}
.feature-row .text li{margin-bottom:6px;}
@media (max-width:760px){
  .feature-row, .feature-row.reverse{flex-direction:column;align-items:stretch;}
}
.feature-row.stretch{align-items:stretch;max-width:1240px;gap:72px;}
.feature-row.stretch .media img{height:100%;}
.feature-row.stretch .media{flex:0 1 300px;}
.feature-row.stretch .text{flex:1 1 560px;}
.feature-row.stretch .text p{text-align:justify;}
.contato-grid{
  font-family:Arial,Helvetica,sans-serif;
  font-size:15px;
}
.contato-grid div{margin-bottom:12px;}
.contato-grid span{color:var(--muted);display:inline-block;width:110px;}

.profile-hero{
  background:var(--navy);
  color:var(--white);
  padding:72px 48px 56px;
}
.profile-badge{
  display:inline-block;
  font-family:Arial,Helvetica,sans-serif;
  font-size:11px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.35);
  color:var(--white);
  padding:6px 16px;
  border-radius:16px;
  margin-bottom:26px;
}
.profile-name{
  font-size:44px;
  font-weight:400;
  line-height:1.18;
  color:var(--white);
  max-width:640px;
}
.profile-info{
  background:var(--offwhite);
  padding:40px 48px;
  border-bottom:1px solid var(--line);
}
.profile-info-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:30px;
  font-family:Arial,Helvetica,sans-serif;
  font-size:15px;
  max-width:900px;
}
.profile-info-grid > div span{
  display:block;
  color:var(--muted);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.07em;
  margin-bottom:7px;
}
.profile-info-grid .linkedin-row{
  display:flex;
  align-items:center;
  gap:16px;
}
.profile-info-grid .linkedin-row a{word-break:break-word;}
.qr-code{
  width:78px;
  height:78px;
  border:1px solid var(--line);
  border-radius:4px;
  background:var(--white);
  padding:5px;
  flex-shrink:0;
  display:block;
}
@media (max-width:640px){
  .profile-hero,.profile-info{padding-left:24px;padding-right:24px;}
  .profile-name{font-size:32px;}
}
footer{
  padding:32px 48px;
  background:var(--navy-dark);
  color:rgba(255,255,255,0.6);
  font-family:Arial,Helvetica,sans-serif;
  font-size:12px;
}
footer p{margin-bottom:6px;}
footer a{color:rgba(255,255,255,0.8);}
@media (max-width:640px){
  header,.hero,.page-header,section,footer{padding-left:24px;padding-right:24px;}
  nav a{margin-left:14px;}
}
