*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  background:#0b0f1a;
  color:#fff;
}

/* UTIL */
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.badge{
  display:inline-block;
  background:#F73739;
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:12px;
  margin-bottom:16px;
}

.badge.light{
  background:#e9efff;
  color:#F73739;
  font-size: 15px;
}

span{
  color:#F73739;
}

/* HERO */
.quem-somos-hero{
  padding:100px 0;
  background:radial-gradient(circle at top right, #132b6b, #050816);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
}

.hero-text h1{
  font-size:42px;
  line-height:1.3;
  margin-bottom:20px;
}

.hero-text p{
  color:#cbd5f5;
  max-width:520px;
  margin-bottom:30px;
}

.hero-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.feature i{
  font-size:22px;
  color:#F73739;
  margin-bottom:10px;
}

.feature h4{
  font-size:15px;
  margin-bottom:6px;
}

.feature p{
  font-size:13px;
  color:#b7c2ff;
}

/* IMAGEM */
.hero-image{
  position:relative;
}

.hero-image img{
  width:100%;
  border-radius:18px;
  box-shadow:0 30px 80px rgba(0,0,0,0.6);
}

.info-card{
  position:absolute;
  bottom:-30px;
  right:-20px;
  background:#fff;
  color:#111;
  padding:20px;
  max-width:260px;
  border-radius:14px;
  box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

.info-card i{
  font-size:22px;
  color:#0d2cff;
  margin-bottom:10px;
}

/* HISTÓRIA */
.historia{
  background:#f5f7ff;
  color:#0b0f1a;
  padding:100px 0;
}

.historia-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

.historia-text h2{
  font-size:34px;
  margin-bottom:20px;
}

.historia-text p{
  margin-bottom:16px;
  color:#4a4f6a;
}

.btn-primary{
  display:inline-block;
  background:#0d2cff;
  color:#fff;
  padding:12px 24px;
  border-radius:8px;
  text-decoration:none;
  margin-top:10px;
}

/* TIMELINE */
.timeline{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.timeline-item{
  background:#fff;
  padding:24px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.timeline-item .year{
  color:#0d2cff;
  font-weight:700;
}

.timeline-item h4{
  margin:10px 0;
}

/* RESPONSIVO */
@media(max-width:900px){
  .hero-grid,
  .historia-grid{
    grid-template-columns:1fr;
  }

  .hero-image{
    margin-top:40px;
  }

  .hero-features{
    grid-template-columns:1fr;
  }
}

span{
  color:#F73739;
}

/* TAG */
.section-tag{
  color:#F73739;
  font-size:12px;
  font-weight:600;
  margin-bottom:10px;
  display:inline-block;
}

.section-tag.dark{
  color:#9bb3ff;
}

/* VALUES */
.team-values{
  padding:90px 0;
}

.values-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:10px;
}

.values-text h2{
  font-size:32px;
  margin-bottom:15px;
}

.values-text p{
  color:#4a4f6a;
  margin-bottom:20px;
}

.avatars{
  display:flex;
  align-items:center;
  gap:-10px;
  margin-bottom:10px;
}

.avatars img{
  width:38px;
  height:38px;
  border-radius:50%;
  border:2px solid #fff;
  margin-right:-12px;
}

.avatars span{
  background:#2563ff;
  color:#fff;
  font-size:12px;
  padding:8px 10px;
  border-radius:50%;
  margin-left:10px;
}

.values-text small{
  color:#6b7280;
}

/* CARDS */
.values-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.card{
  background:#fff;
  padding:25px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.card i{
  font-size:22px;
  color:#2563ff;
  margin-bottom:10px;
  align-items: center;
  text-align: center;
}

.card h4{
  margin-bottom:10px;
  color: #2563ff ;
}

.card p{
color:#51545a;
}

.card ul{
  list-style:none;
}

.card ul li{
  margin-bottom:6px;
  color:#4a4f6a;
}

.card-green{
  background:#f0fff4;
}

.card-green i{
  color:#22c55e;
}

/* METRICS */
.metrics{
  background:radial-gradient(circle at top right, #132b6b, #050816);
  padding:90px 0;
  color:#fff;
}

.metrics-grid{
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:50px;
  align-items:center;
}

.metrics-text h2{
  font-size:32px;
}

.metrics-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.metric{
  text-align:center;
}

.metric i{
  font-size:26px;
  color:#F73739;
  margin-bottom:8px;
}

.metric h3{
  font-size:26px;
}

/* CTA */
.cta{
  padding:90px 0;
  background:#fff;
}

.cta-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.cta-text h2{
  font-size:32px;
  margin-bottom:15px;
  color: #050816;
}

.cta-text span{

  color: #F73739;
}

.cta-text p{
  color:#4a4f6a;
  margin-bottom:20px;
}

.btn{
  display:inline-block;
  background:#2563ff;
  color:#fff;
  padding:12px 24px;
  border-radius:8px;
  text-decoration:none;
}

.cta-img img{
  width:100%;
  border-radius:16px;
}

/* RESPONSIVO */
@media(max-width:900px){
  .values-grid,
  .metrics-grid,
  .cta-grid{
    grid-template-columns:1fr;
  }

  .values-cards{
    grid-template-columns:1fr;
  }

  .metrics-cards{
    grid-template-columns:repeat(2,1fr);
  }
}

/* =========================
   RESPONSIVIDADE GERAL
========================= */

/* TABLETS (até 1024px) */
@media (max-width: 1024px){

  .hero-grid{
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-text h1{
    font-size: 26px;
  }

  .hero-text p{
    max-width: 100%;
  }

  .hero-image{
    max-width: 600px;
    margin: auto;
  }

  .info-card{
    right: 0;
    bottom: -25px;
  }
}

/* SMARTPHONES (até 768px) */
@media (max-width: 768px){

  .quem-somos-hero{
    padding: 70px 0;
    text-align: center;
  }

  .badge{
    margin-bottom: 12px;
  }

  .hero-text h1{
    font-size: 26px;
    line-height: 1.25;
  }

  .hero-text p{
    font-size: 15px;
    margin: 0 auto 25px;
  }

  .hero-features{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature{
    background: rgba(255,255,255,0.05);
    padding: 18px;
    border-radius: 14px;
  }

  .hero-image img{
    border-radius: 16px;
  }

  .info-card{
    position: static;
    margin: 20px auto 0;
    max-width: 100%;
  }
}

/* SMARTPHONES PEQUENOS (até 480px) */
@media (max-width: 480px){

  .hero-text h1{
    font-size: 26px;
  }

  .hero-text p{
    font-size: 14px;
  }

  .feature h4{
    font-size: 14px;
  }

  .feature p{
    font-size: 12.5px;
  }

  .info-card{
    padding: 16px;
    font-size: 13px;
  }
}