/* =============== */
/* Base premium    */
/* =============== */

:root{
  --vibe-red:#F03417;
  --ink:#0B0F14;
  --text:#131A22;
  --muted:#5B6673;
  --line:rgba(15,23,42,.10);
  --card:#ffffff;
  --bg:#ffffff;
  --soft:#F6F7F9;
}

.section{ padding:72px 0; }
.container{ max-width:1120px; margin:0 auto; padding:0 20px; }

.reveal{ opacity:0; transform:translateY(10px); transition:opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* =============== */
/* Subnav pills    */
/* =============== */

.about-subnav{
  position:sticky; top:0; z-index:50;
   padding:8px 10px;
  background:rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(15,23,42,.06);
}
.about-subnav.is-scrolled{
  box-shadow:0 10px 30px rgba(2,6,23,.06);
}
.about-subnav__row{
  display:flex; gap:10px; align-items:center;
  padding:12px 0;
  overflow:auto;
}

.pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  color:var(--text);
  text-decoration:none;
  font-weight:600;
  white-space:nowrap;
  transition:transform .15s ease, border-color .2s ease, box-shadow .2s ease;
}
.pill:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(2,6,23,.06);
  border-color:rgba(15,23,42,.16);
}
.pill.is-active{
  background:linear-gradient(180deg, rgba(240,52,23,.14), rgba(240,52,23,.06));
  border-color:rgba(240,52,23,.30);
  color:#8F1F0F;
}

/* =============== */
/* Hero            */
/* =============== */

.about-hero{
  position: relative;
  width: 100%;
  height: 72vh;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: #000; /* Fundo preto caso o vídeo demore a carregar */
}

.about-hero__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  
  /* Ajuste de "Nitidez/Visibilidade" */
  opacity: 0.50; /* Deixa o ví­deo com 75% de presença (o fundo preto ou do container aparecerão¡ atrás) */
  filter: contrast(1.1) brightness(0.9); /* Opcional: melhora o contraste para parecer mais nítido */
  
  z-index: 1;

}

.about-hero-overlay{
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(75deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 2;
}

.about-hero__content{ 
position:relative;  
padding: 86px 0 42px;
  z-index:2;
  text-align:left;
  color:#fff;
}

.about-hero__eyebrow{
  opacity: .85;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
  }
.about-hero__title{
font-size: clamp(30px, 4vw, 56px);
  line-height: 1.04;
  margin: 0 0 12px;
  max-width: 18ch;

}
.about-hero__sub{
 font-size: 1.25rem;
  max-width: 550px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.about-hero__actions{ 
  display:flex; 
  gap:15px; 
  flex-wrap:wrap; 
  margin-bottom:18px; 
  }

.about-hero__stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  max-width:520px;
}

.stat{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  padding:14px 14px;
  box-shadow:0 14px 35px rgba(2,6,23,.06);
}
.stat__n{ font-weight:900; font-size:22px; color:var(--ink); }
.stat__l{ font-size:13px; color:rgba(19,26,34,.68); margin-top:2px; }

/* =============== */
/* Cards grid      */
/* =============== */

.about-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:16px;
  margin-top:36px;
}

.about-card{
  display:block;
  text-decoration:none;
  background:var(--card);
  border:1px solid rgba(15,23,42,.10);
  border-radius:22px;
  padding:22px 22px 20px;
  box-shadow:0 18px 45px rgba(2,6,23,.06);
  transition:transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.about-card:hover{
  transform:translateY(-2px);
  border-color:rgba(240,52,23,.22);
  box-shadow:0 22px 60px rgba(2,6,23,.08);
}

.about-card__kicker{
  font-weight:900;
  font-size:12px;
  letter-spacing:.12em;
  color:rgba(19,26,34,.55);
  margin-bottom:8px;
}
.about-card__title{
  margin:0 0 8px;
  font-size:20px;
  letter-spacing:-.01em;
  color:var(--ink);
}
.about-card__text{
  margin:0 0 14px;
  color:rgba(19,26,34,.70);
  line-height:1.55;
}
.about-card__link{
  color:var(--vibe-red);
  font-weight:800;
}

/* =============== */
/* Inner pages     */
/* =============== */

.about-page{
  padding:46px 0 70px;
  background:#fff;
}

.about-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:18px;
  margin-bottom:22px;
}
.about-h1{
  margin:0;
  font-size:40px;
  letter-spacing:-.02em;
  color:var(--ink);
}
.about-lead{
  margin:10px 0 0;
  color:rgba(19,26,34,.70);
  max-width:760px;
  line-height:1.6;
}

.about-panel{
  background:var(--card);
  border:1px solid rgba(15,23,42,.10);
  border-radius:22px;
  padding:22px;
  box-shadow:0 18px 45px rgba(2,6,23,.06);
}

.about-split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:16px;
}
.about-aside{
  background:linear-gradient(180deg, rgba(240,52,23,.08), rgba(240,52,23,.02));
  border:1px solid rgba(240,52,23,.18);
  border-radius:22px;
  padding:18px;
}
.kpi{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 0;
  border-bottom:1px solid rgba(15,23,42,.08);
}
.kpi:last-child{ border-bottom:none; }
.kpi b{ color:var(--ink); }
.kpi span{ color:rgba(19,26,34,.68); }

@media (max-width: 920px){
  .about-hero__title{ font-size:40px; }
  .about-hero__stats{ grid-template-columns:1fr; max-width:420px; }
  .about-grid{ grid-template-columns:1fr; }
  .about-split{ grid-template-columns:1fr; }
}

/* =============== */
/* CTA             */
/* =============== */
.about-cta{ margin-top:22px; }
.about-cta__box{
  border-radius:26px;
  border:1px solid rgba(15,23,42,.10);
  background:linear-gradient(180deg, rgba(246,247,249,.95), rgba(255,255,255,.95));
  box-shadow:0 20px 55px rgba(2,6,23,.07);
  padding:22px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
}
.about-cta__title{ margin:0; font-size:22px; color:var(--ink); letter-spacing:-.01em; }
.about-cta__sub{ margin:6px 0 0; color:rgba(19,26,34,.70); }
.about-cta__actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* ===================== */
/* PERSON PROFILE        */
/* ===================== */

.team-person-hero{

padding:120px 0 80px;

background:linear-gradient(
135deg,
#ffffff 0%,
#fff3f0 100%
);

}

.team-person-hero__grid{

display:grid;
grid-template-columns:320px 1fr;
gap:60px;
align-items:center;

}

.team-person-hero__photo img{
width:180px;
height:180px;
border-radius:50%;
object-fit:cover;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.team-person-role{

font-weight:700;
color:#F03417;
text-transform:uppercase;
font-size:13px;
letter-spacing:.1em;

}

.team-person-name{

font-size:48px;
margin:10px 0;

}

.team-person-manifesto{

font-size:20px;
line-height:1.6;
color:#555;
max-width:520px;

}

.team-person-actions{

margin-top:25px;
display:flex;
gap:10px;

}

.team-person-section{

padding:40px 0;

}

.team-person-grid{

display:grid;
grid-template-columns:2fr 1fr;
gap:50px;

}

.team-person-card{

background:#fff;
border-radius:20px;
padding:24px;
border:1px solid rgba(0,0,0,.06);
box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.team-person-gallery{

padding:80px 0;
background:#f7f7f7;

}

.gallery-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;

}

.gallery-grid img{

width:100%;
border-radius:16px;
height:260px;
object-fit:cover;

}

.team-hero{
padding:80px 0;
background:linear-gradient(180deg,#fff,#f6f6f6);
}

.team-hero-grid{
display:grid;
grid-template-columns:220px 1fr;
gap:40px;
align-items:center;
}

.team-hero-photo{
width:220px;
height:220px;
object-fit:cover;
border-radius:20px;
}

.team-role{
color:#F03417;
font-weight:700;
text-transform:uppercase;
font-size:14px;
}

.team-name{
font-size:40px;
margin:10px 0;
}

.team-tagline{
color:#666;
max-width:500px;
}

.team-actions{
margin-top:20px;
display:flex;
gap:10px;
}

.team-info{
padding:60px 0;
}

.team-info-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
}

.info-card{
background:#fff;
border-radius:20px;
padding:25px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:20px;
}

.gallery-grid img{
width:100%;
border-radius:12px;
}
.team-person-name{
font-size:42px;
line-height:1.1;
font-weight:700;
letter-spacing:-0.02em;
}

.team-person-role{
font-size:14px;
text-transform:uppercase;
letter-spacing:.08em;
color:#F03417;
font-weight:600;
}

.team-person-manifesto{
font-size:18px;
line-height:1.6;
color:rgba(0,0,0,.65);
max-width:520px;
margin-top:10px;
}
.team-person-hero{
padding:70px 0 80px;
background:#f6f6f6;
}

.team-person-hero__grid{
display:grid;
grid-template-columns:260px 1fr;
gap:50px;
align-items:center;
}

.team-person-name{
font-size:38px;
font-weight:700;
letter-spacing:-0.02em;
line-height:1.1;
}

.team-person-manifesto{
font-size:18px;
line-height:1.6;
color:rgba(0,0,0,.65);
max-width:540px;
margin-top:8px;
}

.team-person-hero__grid{
display:grid;
grid-template-columns:240px 1fr;
gap:48px;
align-items:center;
}

.team-person-hero__photo img{
width:220px;
height:220px;
object-fit:cover;
border-radius:50%;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
margin-top:20px;
}

.gallery-grid img{
width:100%;
border-radius:14px;
}

.team-person-hero{
padding:70px 0 80px;
background:#f7f7f7;
}

.team-person-name{
font-size:40px;
font-weight:700;
letter-spacing:-0.02em;
margin:10px 0;
}

.team-person-manifesto{
font-size:18px;
line-height:1.6;
color:#666;
max-width:520px;
}

.team-person-actions{
margin-top:20px;
display:flex;
gap:14px;
}

.team-person-grid{
display:grid;
grid-template-columns:1.3fr 1fr;
gap:100px;
margin-top:20px;
}
.team-person-social{
margin-top:10px;
display:flex;
gap:12px;
font-size:14px;
}

.team-person-social a{
color:#F03417;
text-decoration:none;
font-weight:600;
}
.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:30px;
}

.gallery-item{
position:relative;
overflow:hidden;
border-radius:14px;
}

.gallery-item img{
width:100%;
height:220px;
object-fit:cover;
}

.gallery-city{
position:absolute;
bottom:10px;
left:10px;
background:rgba(0,0,0,.7);
color:#fff;
padding:6px 10px;
font-size:12px;
border-radius:999px;
}
.team-person-social{
margin-top:14px;
display:flex;
gap:12px;
}

.social-btn{
display:inline-flex;
align-items:center;
gap:8px;
padding:8px 14px;
border-radius:999px;
font-size:14px;
font-weight:600;
text-decoration:none;
background:#fff;
border:1px solid #e4e4e4;
color:#111;
transition:.2s;
}

.social-btn:hover{
transform:translateY(-2px);
box-shadow:0 6px 16px rgba(0,0,0,.08);
}

.social-btn.instagram{
color:#E1306C;
}

.social-btn.linkedin{
color:#0A66C2;
}
.team-person-meta{
margin-top:50px;
display:grid;
gap:16px;
}

.team-person-meta li{
list-style:none;
}

.team-person-meta span{
display:block;
font-size:13px;
letter-spacing:.05em;
text-transform:uppercase;
color:#888;
margin-bottom:4px;
}

.team-person-meta p{
margin:0;
font-size:16px;
color:#111;
line-height:1.5;
}
.team-person-main p{
font-size:17px;
line-height:1.75;
color:#444;
max-width:620px;
margin-bottom:16px;
}
.social-btn svg{
width:16px;
height:16px;
flex-shrink:0;
display:block;
}

.social-btn{
display:inline-flex;
align-items:center;
gap:8px;
}

.team-person-card{
background:#fff;
border-radius:16px;
padding:18px 22px;
border:1px solid rgba(0,0,0,.06);
box-shadow:0 8px 24px rgba(0,0,0,.04);
margin-bottom:16px;
}

.team-person-card h3{
font-size:14px;
letter-spacing:.05em;
text-transform:uppercase;
color:#999;
margin-bottom:6px;
font-weight:600;
}

.team-person-card p{
font-size:16px;
color:#111;
margin:0;
}
.team-person-side{
display:flex;
flex-direction:column;
gap:14px;
}

.team-person-main h2{
font-size:30px;
margin-bottom:14px;
letter-spacing:-0.01em;
}

.team-person-section{
padding:60px 0;
}
.team-person-card{
transition:.2s ease;
}

.team-person-card:hover{
transform:translateY(-2px);
box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.lightbox{
position:fixed;
inset:0;
background:rgba(0,0,0,.85);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.lightbox img{
max-width:90%;
max-height:85%;
border-radius:10px;
}

.lightbox.active{
display:flex;
}

.gallery-item{
cursor:pointer;
}
.gallery{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(180px, 200px));
gap:25px;
margin-top:30px;
justify-content:flex-start;
}
.gallery-item{
position:relative;
overflow:hidden;
border-radius:6px;
cursor:pointer;
}

.gallery-item img{
width:100%;
height:150px;
object-fit:cover;
border-radius:1px;
display:block;
}
.lightbox{
position:fixed;
top:0;
left:0;
width:100vw;
height:100vh;
background:rgba(0,0,0,.92);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
padding:40px;
}

.lightbox.active{
display:flex;
}

.lightbox img{
max-width:90%;
max-height:90%;
border-radius:14px;
box-shadow:0 30px 80px rgba(0,0,0,.7);
}
.gallery-item{
cursor:pointer;
transition:transform .35s ease;
}

.gallery-item:hover{
transform:scale(1.05);
}

.gallery{
display:flex;
flex-wrap:wrap;
gap:18px;
margin-top:30px;
max-width:700px;
}
.gallery-item img{
cursor:pointer;
transition:transform .2s ease;
}

.gallery-item img:hover{
transform:scale(1.04);
}
.lightbox-content{
position:relative;
}

#lightbox-city{
position:absolute;
bottom:14px;
left:14px;
background:rgba(0,0,0,.65);
color:white;
font-size:14px;
padding:6px 12px;
border-radius:20px;
backdrop-filter:blur(6px);
}

/* MOBILE */
@media (max-width:768px){

.team-person-hero__grid{
grid-template-columns:1fr;
gap:32px;
text-align:center;
}

.team-person-hero__photo{
display:flex;
justify-content:center;
}
}
@media (max-width:768px){

.team-person-grid{
grid-template-columns:1fr;
gap:32px;
}

.team-person-side{
order:2;
}

.team-person-main{
order:1;
}

}
.team-person-hero img{
max-width:100%;
height:auto;
}
.container{
max-width:1200px;
width:1200px;
}
.container{
max-width:1200px;
width:100%;
margin:0 auto;
padding:0 20px;
}


/* DESKTOP */
.team-person-hero__photo{
width:240px;
height:240px;
flex-shrink:0;
}

.team-person-hero__photo img{
width:100%;
height:100%;
object-fit:cover;
border-radius:50%;
display:block;
}

/* MOBILE */

@media (max-width:768px){

.team-person-hero__photo img{
margin:0 auto;
display:flex;
justify-content:center;
}
}
.team-person-hero__photo img{
box-shadow:0 25px 60px rgba(0,0,0,.18);
border:6px solid white;
}

.team-person-hero__photo{
margin-bottom:24px;
}

@media (max-width:768px){

.team-person-hero__grid{
grid-template-columns:1fr;
text-align:center;
}

}

@media (max-width:768px){

.team-person-hero__photo{
margin:0 auto;
display:flex;
justify-content:center;
}

}
.section-title{
display:flex;
align-items:center;
gap:14px;
font-size:28px;
font-weight:700;
margin-bottom:18px;
}

.section-title::before{
content:"";
width:4px;
height:26px;
background:var(--vibe-primary);
border-radius:2px;
}
@media (max-width: 768px){
  .about-hero__stats {
    grid-template-columns: 1fr;
  }
}

.team-section {
  padding: 40px 0 100px;
  background:
    radial-gradient(circle at top left, rgba(240, 52, 23, 0.06), transparent 24%),
    linear-gradient(180deg, #f8f8fa 0%, #f3f3f5 100%);
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.white-card {
  background: rgba(255, 255, 255, 0.72);
  padding: 32px;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.team-item {
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.82));
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 28px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 12px 35px rgba(0,0,0,0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.team-item:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 52, 23, 0.18);
  box-shadow: 0 22px 50px rgba(0,0,0,0.09);
}

.team-item__media {
  margin-bottom: 20px;
}

.team-item__avatar {
  width: 124px;
  height: 124px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff4f2, #fff);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

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

.team-item__body {
  flex: 1;
}

.team-item__name {
  color: #111;
  font-weight: 700;
  font-size: 1.28rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.team-item__role {
  color: #5f6368;
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.team-item__meta {
  color: #8a8f98;
  font-size: 0.92rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.team-item__footer {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-item__cta {
  font-weight: 700;
  color: #111;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.team-item__arrow {
  color: var(--primary-color);
  font-size: 1.05rem;
  transition: transform 0.25s ease;
}

.team-item:hover .team-item__arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .white-card {
    padding: 20px;
    border-radius: 24px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .team-item {
    padding: 20px;
    border-radius: 24px;
  }

  .team-item__avatar {
    width: 104px;
    height: 104px;
    border-radius: 24px;
  }
}

/* Responsividade SOBRE */
@media (max-width: 768px) {

  .about-hero {
    height: auto;
    min-height: unset;
    padding: 120px 0 80px;
  }

  .about-hero__title {
    font-size: 2.5rem;
  }

.about-hero__sub {
    font-size: 1rem;
  }  
 
 .about-cta,
  .about-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .about-hero__actions .btn-primary,
  .about-hero__actions .btn-secondary {
    width: 100%;
    text-align: column;
  }

  .about-hero__stats {
    grid-template-columns: 1fr;
  }

  .about-split {
    grid-template-columns: 1fr;
  }
 .about-card img {
    height: 160px;
  }

  .about-filters {
    flex-direction: column;


}