*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Barlow',sans-serif;
  background:#0b0b0b;
  color:#fff;
  line-height:1.6;
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
  background:rgba(0,0,0,.75);
  backdrop-filter:blur(8px);
  padding:16px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.nav-logo{
  font-weight:800;
  letter-spacing:2px;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
  margin-left:24px;
  font-weight:600;
  transition:.3s;
}

.nav-links a:hover{
  color:#E82B33;
}

/* HERO */
.hero{
  min-height:100vh;
  background:
  linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.82)),
  url('../img/hero.png');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  display:flex;
  justify-content:center;
  align-items:center;
  padding:120px 20px 80px;
}

.hero-content{
  max-width:700px;
  width:100%;
  text-align:center;
  margin:auto;
}

.logo{
  width:150px;
  margin-bottom:20px;
}

h1{
  font-size:72px;
  line-height:1;
  font-weight:800;
  letter-spacing:2px;
}

.tagline{
  margin-top:18px;
  font-size:24px;
  color:#E82B33;
  font-weight:700;
}

.sub{
  margin-top:12px;
  color:#ddd;
  font-size:18px;
}

.produto-card{
  text-align:center;
  max-width:700px;
  margin:auto;
}

.produto-img{
  width:100%;
  max-width:420px;
  border-radius:12px;
  margin-bottom:20px;
  border:3px solid #E82B33;
  box-shadow:0 10px 30px rgba(0,0,0,.4);
}

.btn-cta,.btn-red{
  display:inline-block;
  margin-top:28px;
  padding:14px 28px;
  background:#E82B33;
  color:#fff;
  text-decoration:none;
  border-radius:8px;
  font-weight:700;
  transition:.3s;
}

.btn-ml {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 22px;
  background: #0067DA;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #050505;
  box-shadow: 4px 4px 0 #050505;
  transition: 0.2s ease;
}

.btn-ml:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 #050505;
}
.btn-cta:hover,.btn-red:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(232,43,51,.35);
}

/* SECTIONS */
section{
  padding:90px 20px;
}

.container{
  max-width:1100px;
  margin:auto;
}

h2{
  font-size:42px;
  margin-bottom:20px;
}

.produto{
  background:#111;
}

.educacao{
  background:#003B99;
  text-align:center;
}

.educacao p{
  font-size:22px;
  font-style:italic;
}

.educacao small{
  display:block;
  margin-top:12px;
  opacity:.85;
}

.insta-reel {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

/* ATLETAS */
.atletas-section{
  background:#0f0f0f;
}

.grid-atletas{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:28px;
  margin-top:40px;
}

.atleta{
  background:#161616;
  padding:24px;
  border-radius:14px;
  text-align:center;
  transition:.3s;
  border:1px solid rgba(255,255,255,.06);
}

.atleta:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 30px rgba(0,0,0,.4);
}

.atleta img{
  width:130px;
  height:130px;
  border-radius:50%;
  object-fit:cover;
  border:4px solid #E82B33;
}

.atleta a{
  display:block;
  margin-top:14px;
  color:#fff;
  text-decoration:none;
  font-weight:700;
}

/* CTA */
.cta{
  text-align:center;
  background:linear-gradient(135deg,#111,#1a1a1a);
}

/* FOOTER */
footer{
  text-align:center;
  padding:30px;
  color:#888;
  font-size:14px;
}

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

.navbar{
  padding:14px 20px;
  flex-direction:column;
}

.nav-links{
  margin-top:10px;
}

.nav-links a{
  margin:0 8px;
  font-size:14px;
}

h1{
  font-size:48px;
}

.tagline{
  font-size:20px;
}

h2{
  font-size:32px;
}

}

footer{
  background:#050505;
  color:#bbb;
  text-align:center;
  padding:40px 20px;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer-brand{
  color:#fff;
  font-weight:800;
  font-size:18px;
  margin-bottom:10px;
}

.footer-locais{
  font-size:15px;
  margin-bottom:8px;
  opacity:.9;
}

.footer-contato{
  font-size:14px;
  color:#E82B33;
  font-weight:600;
}
