@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

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

:root{
  --purple-main:#3314D3;
  --bg-dark:#010105;
  --bg-light:#0a062b;
  --white:#ffffff;
  --panel-bg:rgba(20,20,30,.80);
  --panel-border:var(--purple-main);
  --panel-border-alpha:rgba(51,20,211,.85);
  --glow-purple:rgba(77,15,255,.8);
}

html{scroll-behavior:smooth}
body{
  max-width:100%;overflow-x:hidden;overscroll-behavior-y:none;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background:linear-gradient(180deg, #010105 0%, #2919aa 100%);
  color:var(--white);
}

/* =============== Navigation (identical to homepage) =============== */
nav{
  position:fixed;top:0;left:0;right:0;height:80px;
  background:rgba(1,1,5,.96);
  padding:1rem 2rem;z-index:1000;border-bottom:1px solid rgba(255,255,255,.05);
  display:flex;justify-content:center;align-items:center;box-sizing:border-box;
}
nav ul{
  display:flex;justify-content:center;align-items:center;gap:2rem;flex-wrap:wrap;
  list-style:none;margin:0!important;padding:0!important;line-height:1;height:100%;
}
nav ul li{margin:0!important;padding:0!important;line-height:1;list-style:none}
nav a{
  color:#a0a0b8;text-decoration:none;font-weight:500;font-size:.85rem;
  text-transform:uppercase;letter-spacing:1.5px;transition:all .3s ease;position:relative;
  padding:.5rem 1rem;display:inline-block;line-height:1.2;box-sizing:border-box;
}
nav a:hover{color:#7b4dff}
nav a::after{content:'';position:absolute;bottom:0;left:0;width:0;height:1px;background:#7b4dff;transition:width .3s ease}
nav a:hover::after{width:100%}

/* =============== HERO (mesmo layout da homepage) =============== */
#about-hero{
  position:relative;
  min-height:55vh;
  padding-top:80px;
  display:flex;flex-direction:column;justify-content:center;align-items:center;
  overflow:hidden;
}
.hero-content{position:relative;z-index:1;text-align:center;padding:2rem}
.logo-container{margin:2rem 0}
.logo-container img{
  width:150px;height:auto;border-radius:20px;border:2px solid var(--purple-main);
  filter:drop-shadow(0 0 15px var(--glow-purple));
}
.about-title{
  font-size:clamp(40px,6vw,96px);
  font-weight:1000;letter-spacing:5px;margin-bottom:1rem;
  background:linear-gradient(45deg,#2718a1,var(--purple-main),#7b2fff,var(--purple-main),#2718a1);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}
.about-sub{
  font-size:1.3rem;letter-spacing:.5px;color:#e0e0e0;
  max-width:980px;margin:0 auto;
}

/* Espaço após o hero para não grudar no primeiro card */
#about-hero{margin-bottom:24px}

/* =============== Main / Sections =============== */
.about-content{padding:4rem 2rem;line-height:1.8}
.content-container{width:min(92vw,1130px);margin:0 auto}

/* Caixas de conteúdo */
.story-section,
.highlight-section,
.disclaimer-section{
  background:var(--panel-bg);
  padding:3rem;margin-bottom:3rem;border-radius:10px;
  border:3px solid var(--panel-border);
  box-shadow:0 0 20px var(--panel-border-alpha);
  content-visibility:auto;contain-intrinsic-size:auto 500px;
}

/* Títulos */
.story-section h2{
  font-size:2.5rem;margin-bottom:1.5rem;text-transform:uppercase;letter-spacing:3px;
  color:#7b4dff;
}
.story-section p{font-size:1.1rem;line-height:1.9;color:#d0d0d0;margin-bottom:1.5rem}
.story-section strong{color:var(--white)}

/* =============== Emphasis / Pitch =============== */
.emphasis-text{
  color:inherit;text-align:center;font-weight:400;padding:2rem;
  background:rgba(10,10,20,.80);
  border:2px solid var(--purple-main);border-radius:10px;
}
.emphasis-text__title{
  display:inline-block;font-weight:900;line-height:1.35;
  color:#7b4dff;
  font-size:clamp(1.25rem,1.1vw + .3rem,1.45rem);
}

/* =============== Disclaimer inner box =============== */
.disclaimer-box{background:#1d1544;padding:2rem;border-radius:10px;border:2px solid var(--panel-border)}
.disclaimer-box p{margin-bottom:1rem}
.disclaimer-box ul{list-style:none;padding:0;margin:1.5rem 0}
.disclaimer-box ul li{padding:.5rem 0;font-size:1.1rem;color:#F6F5F5}
.disclaimer-bottom{margin-top:1.5rem;padding-top:1.5rem;border-top:2px solid rgba(51,20,211,.35);color:#d0d0d0!important}

/* =============== Footer (identical to homepage) =============== */
footer{
  background:var(--bg-dark);padding:1.5rem 2rem;text-align:center;
  border-top:1px solid rgba(255,255,255,.04);
}
.footer-socials{display:flex;justify-content:center;gap:2rem;margin-bottom:1rem}
.footer-socials a{
  display:inline-flex;align-items:center;justify-content:center;
  width:44px;height:44px;border-radius:12px;
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.06);
  transition:all .3s ease;
}
.footer-socials a img{width:22px;height:22px;object-fit:contain;filter:grayscale(30%) brightness(1);transition:all .3s ease}
.footer-socials a:hover{background:rgba(77,15,255,.15);border-color:rgba(77,15,255,.3);transform:translateY(-2px)}
.footer-socials a:hover img{filter:grayscale(0%) brightness(1.2)}
.footer-links{margin-bottom:.5rem}
.footer-links a{color:#555;text-decoration:none;font-size:.85rem;font-weight:500;letter-spacing:.5px;transition:color .3s ease}
.footer-links a:hover{color:#7b4dff}
.copyright{color:#444;font-size:.8rem}

/* =============== Responsive =============== */
@media (max-width:768px){
  #about-hero{min-height:60vh}
  .hero-content{padding:1.5rem}
  .logo-container img{width:120px}
  .about-title{font-size:2.5rem;letter-spacing:3px}
  .about-sub{font-size:1rem}

  .about-content{padding:3rem 1.5rem}
  .story-section,.highlight-section,.disclaimer-section{padding:2rem 1.5rem}
  .story-section h2{font-size:1.5rem;letter-spacing:2px}
  .story-section p{font-size:1rem}
}

@media (max-width:480px){
  .about-title{font-size:2rem}
  .logo-container img{width:100px}
  .story-section,.highlight-section,.disclaimer-section{padding:1.5rem 1rem}
  .story-section h2{font-size:1.3rem}
}
