:root{
  --yellow:#f2b500;
  --yellow-2:#d9a600;
  --black:#111111;
  --white:#ffffff;
  --light:#f3f3f3;
  --gray:#e5e5e5;
  --text:#1b1b1b;
  --muted:#555555;
  --max:1180px;
  --shadow:0 12px 28px rgba(0,0,0,.10);
  --shadow-soft:0 10px 24px rgba(0,0,0,.06);
  --line-premium:linear-gradient(180deg, var(--yellow) 0%, var(--yellow-2) 100%);
}

*{
  box-sizing:border-box;
  min-width:0;
}

html,
body{
  margin:0;
  padding:0;
  max-width:100%;
  overflow-x:hidden;
  scroll-behavior:smooth;
}

body{
  font-family:"Montserrat", Arial, sans-serif;
  color:var(--text);
  background:#fff;
}

img{
  display:block;
  max-width:100%;
  height:auto;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:min(var(--max), 92vw);
  margin:0 auto;
}

/* TOPO */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(17,17,17,.12);
  backdrop-filter:blur(8px);
}

.topbar__inner{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
  flex-wrap:wrap;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.brand__mark{
  width:42px;
  height:42px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:var(--yellow);
  color:var(--black);
  font-family:"Bebas Neue", sans-serif;
  font-size:24px;
  letter-spacing:.03em;
  flex:0 0 auto;
  box-shadow:0 6px 18px rgba(242,181,0,.22);
}

.brand__text{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.brand__text strong{
  font-size:15px;
  line-height:1.1;
}

.brand__text span{
  font-size:11px;
  text-transform:uppercase;
  color:var(--muted);
  line-height:1.15;
}

.menu{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.menu a{
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  position:relative;
  padding-bottom:2px;
}

.menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:0;
  height:2px;
  background:var(--yellow);
  transition:.22s ease;
}

.menu a:hover::after{
  width:100%;
}

.topbar .btn{
  min-height:46px;
  padding:0 16px;
  white-space:nowrap;
}

/* HERO */
.hero{
  background:linear-gradient(180deg, #dcdcdc 0%, #f4f4f4 100%);
  padding:18px 0 36px;
  overflow:hidden;
}

.hero__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:end;
}

.hero__content{
  display:flex;
  flex-direction:column;
  gap:14px;
  min-width:0;
}

.hero__photo{
  position:relative;
  background:var(--yellow);
  border-radius:28px;
  overflow:hidden;
  min-height:560px;
  box-shadow:var(--shadow);
}

.hero__photo::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:10px;
  height:100%;
  background:var(--line-premium);
  z-index:2;
}

.hero__photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}

.hero__topline{
  display:block;
  width:100%;
  background:var(--black);
  color:var(--white);
  padding:10px 16px;
  font-weight:800;
  font-size:clamp(13px,1.4vw,22px);
  text-transform:uppercase;
  line-height:1.2;
  position:relative;
  overflow:hidden;
}

.hero__topline::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:10px;
  height:100%;
  background:var(--line-premium);
}

.hero__name{
  display:flex;
  flex-direction:column;
  gap:6px;
  line-height:.9;
  width:100%;
}

.hero__name span{
  display:block;
  width:100%;
  background:var(--black);
  color:var(--white);
  font-family:"Bebas Neue", sans-serif;
  font-size:clamp(60px, 8vw, 120px);
  padding:8px 18px 10px;
  position:relative;
  line-height:1.1;
}

.hero__name span::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:10px;
  height:100%;
  background:var(--line-premium);
}

.hero__role{
  display:block;
  width:100%;
  background:var(--black);
  color:var(--white);
  padding:12px 16px;
  font-weight:800;
  text-transform:uppercase;
  font-size:clamp(15px,1.7vw,24px);
  line-height:1.2;
  position:relative;
  overflow:hidden;
}

.hero__role::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:10px;
  height:100%;
  background:var(--line-premium);
}

.hero__text{
  max-width:700px;
  font-size:16px;
  line-height:1.7;
}

.hero__number{
  display:flex;
  flex-direction:column;
  width:140px;
  max-width:100%;
  background:var(--yellow);
  color:var(--black);
  padding:12px 16px;
  box-shadow:0 10px 20px rgba(242,181,0,.20);
}

.hero__number small{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
}

.hero__number strong{
  font-family:"Bebas Neue", sans-serif;
  font-size:52px;
  line-height:1;
}

.hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

/* BOTÕES */
.btn{
  min-height:52px;
  padding:0 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:.03em;
  transition:.2s ease;
  border:2px solid transparent;
  text-align:center;
  max-width:100%;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn--yellow{
  background:var(--yellow);
  color:var(--black);
  box-shadow:0 8px 18px rgba(242,181,0,.18);
}

.btn--black{
  background:var(--black);
  color:var(--white);
}

.btn--outline{
  background:transparent;
  color:var(--black);
  border-color:var(--black);
}

.btn--outline-light{
  background:transparent;
  color:var(--white);
  border-color:var(--white);
}

/* SEÇÕES */
.section{
  padding:54px 0;
}

.section--light{ background:#fff; }
.section--gray{ background:var(--light); }
.section--yellow{ background:var(--yellow); }
.section--black{ background:var(--black); color:var(--white); }

.section__title{
  margin-bottom:22px;
}

.section__title span{
  display:block;
  width:100%;
  background:var(--black);
  color:var(--white);
  padding:14px 20px;
  font-family:"Bebas Neue", sans-serif;
  font-size:clamp(28px,4vw,58px);
  line-height:.95;
  text-transform:uppercase;
  position:relative;
  overflow:hidden;
}

.section__title span::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:10px;
  height:100%;
  background:var(--line-premium);
}

.section__title--invert span{
  background:var(--white);
  color:var(--black);
}

.panel{
  position:relative;
  background:#fff;
  border:2px solid var(--black);
  padding:24px 24px 24px 30px;
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}

.panel::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:8px;
  height:100%;
  background:var(--line-premium);
}

.panel--large p{
  margin:0;
  font-size:16px;
  line-height:1.8;
}

.panel--quote{
  background:var(--gray);
}

.panel--quote p{
  margin:0;
  font-size:22px;
  line-height:1.6;
  font-weight:700;
}

/* CARDS */
.cards{
  display:grid;
  gap:18px;
}

.cards--2{ grid-template-columns:repeat(2,1fr); }
.cards--3{ grid-template-columns:repeat(3,1fr); }
.cards--4{ grid-template-columns:repeat(4,1fr); }

.card{
  position:relative;
  background:#fff;
  border:2px solid var(--black);
  padding:22px 22px 22px 28px;
  box-shadow:var(--shadow-soft);
  overflow:hidden;
  transition:.22s ease;
}

.card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:7px;
  height:100%;
  background:var(--line-premium);
}

.card::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg, var(--yellow) 0%, rgba(242,181,0,.35) 42%, transparent 100%);
}

.card:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 28px rgba(0,0,0,.08);
}

.card h3{
  margin:0 0 10px;
  font-family:"Bebas Neue", sans-serif;
  font-size:34px;
  line-height:1;
  text-transform:uppercase;
}

.card p{
  margin:0;
  font-size:15px;
  line-height:1.75;
}

/* PILARES - deixa essa área mais premium */
.cards--4 .card{
  padding:26px 24px 24px 30px;
}

/* BANNER */
.banner{
  position:relative;
  background:var(--black);
  color:var(--white);
  padding:26px 26px 26px 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  overflow:hidden;
}

.banner::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:9px;
  height:100%;
  background:var(--line-premium);
}

.banner strong{
  display:block;
  font-family:"Bebas Neue", sans-serif;
  font-size:44px;
  line-height:1;
  text-transform:uppercase;
  margin-bottom:10px;
}

.banner p{
  margin:0;
  font-size:15px;
  line-height:1.7;
  max-width:760px;
}

/* TIMELINE */
.timeline{
  display:grid;
  gap:18px;
}

.timeline__item{
  position:relative;
  background:#fff;
  border:2px solid var(--black);
  padding:22px 22px 22px 30px;
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}

.timeline__item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:9px;
  height:100%;
  background:var(--line-premium);
}

.timeline__item::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg, var(--yellow) 0%, rgba(242,181,0,.35) 40%, transparent 100%);
}

.timeline__item h3{
  margin:0 0 10px;
  font-family:"Bebas Neue", sans-serif;
  font-size:34px;
  text-transform:uppercase;
  line-height:1;
}

.timeline__item p{
  margin:0;
  line-height:1.75;
  font-size:15px;
}

/* CONTATO */
.contact{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  align-items:start;
}

.contact__content p{
  font-size:16px;
  line-height:1.7;
}

.contact__list{
  list-style:none;
  padding:0;
  margin:20px 0 0;
}

.contact__list li{
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.18);
}

.contact__actions{
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* FOOTER */
.footer{
  background:#0b0b0b;
  color:#d8d8d8;
  padding:24px 0;
}

.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.footer__links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.footer__links a{
  text-transform:uppercase;
  font-size:13px;
  font-weight:700;
}

/* REVEAL */
.reveal{
  opacity:0;
  transform:translateY(16px);
  transition:opacity .6s ease, transform .6s ease;
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* TABLET */
@media (max-width:980px){
  .menu{
    display:none;
  }

  .hero__grid,
  .contact{
    grid-template-columns:1fr;
  }

  .hero__content{
    order:1;
  }

  .hero__photo{
    min-height:420px;
    order:2;
  }

  .cards--2,
  .cards--3,
  .cards--4{
    grid-template-columns:1fr;
  }

  .banner{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* MOBILE */
@media (max-width:640px){
  .container{
    width:94vw;
  }

  .topbar__inner{
    align-items:flex-start;
    padding:12px 0;
  }

  .brand{
    width:100%;
  }

  .brand__mark{
    width:38px;
    height:38px;
    font-size:22px;
  }

  .brand__text strong{
    font-size:14px;
  }

  .brand__text span{
    font-size:10px;
  }

  .topbar .btn{
    width:100%;
    min-height:44px;
    padding:0 14px;
    font-size:12px;
  }

  .hero{
    padding:14px 0 26px;
  }

  .hero__grid{
    gap:16px;
  }

  .hero__photo{
    min-height:280px;
    border-radius:20px;
  }

  .hero__photo::before{
    width:6px;
  }

  .hero__topline{
    padding:10px 12px;
    font-size:11px;
  }

  .hero__topline::after{
    width:6px;
  }

  .hero__name span{
    font-size:56px;
    padding:4px 12px 6px;
    line-height:.9;
  }

  .hero__name span::after{
    width:6px;
  }

  .hero__role{
    padding:10px 12px;
    font-size:13px;
  }

  .hero__role::after{
    width:6px;
  }

  .hero__text{
    font-size:15px;
    line-height:1.65;
  }

  .hero__number{
    width:110px;
    padding:10px 12px;
  }

  .hero__number strong{
    font-size:38px;
  }

  .hero__actions{
    flex-direction:column;
    gap:10px;
  }

  .hero__actions .btn{
    width:100%;
    min-height:48px;
    font-size:12px;
  }

  .section{
    padding:40px 0;
  }

  .section__title span{
    font-size:30px;
    padding:12px 14px;
  }

  .section__title span::after{
    width:6px;
  }

  .panel{
    padding:18px 18px 18px 22px;
  }

  .panel::before{
    width:6px;
  }

  .panel--large p,
  .card p,
  .timeline__item p,
  .banner p,
  .contact__content p{
    font-size:14px;
    line-height:1.65;
  }

  .panel--quote p{
    font-size:18px;
  }

  .card{
    padding:18px 18px 18px 22px;
  }

  .card::before{
    width:6px;
  }

  .card h3,
  .timeline__item h3{
    font-size:28px;
  }

  .timeline__item{
    padding:18px 18px 18px 22px;
  }

  .timeline__item::before{
    width:6px;
  }

  .banner{
    padding:18px 18px 18px 22px;
  }

  .banner::before{
    width:6px;
  }

  .banner strong{
    font-size:32px;
  }

  .contact__actions .btn{
    width:100%;
  }

  .footer{
    padding:18px 0;
  }

  .footer__inner{
    flex-direction:column;
    align-items:flex-start;
  }
}