:root {
  --bg: #ffffff;
  --dark-blue: #0a1e3d;
  --accent-blue: #0077b6;
  --text-main: #334155;
  --text-light: #64748b;
  --white: #ffffff;
  --light-gray: #f8fafc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg);
  line-height: 1.6;
}

.container { width: min(1200px, 92%); margin: 0 auto; }
.section { padding: 80px 0; }
.center { text-align: center; }

/* HEADER - LOGO MAIOR */
.nav { background: var(--white); padding: 10px 0; border-bottom: 1px solid #e2e8f0; position: sticky; top: 0; z-index: 1000; }
.nav__inner { display: flex; justify-content: space-between; align-items: center; }
.brand__logo { 
  height: 80px; /* Aumentei de 45px para 70px */
  width: auto; 
  display: block;
}
.nav__menu a { margin-left: 30px; text-decoration: none; color: var(--dark-blue); font-weight: 700; font-size: 15px; }

/* HERO */
.hero { background: var(--dark-blue); color: var(--white); padding: 100px 0; }
.hero__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.line-detail { width: 50px; height: 5px; background: var(--accent-blue); margin-bottom: 24px; }
h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1.1; margin: 0 0 24px 0; font-weight: 800; letter-spacing: -1px; }
.lead { font-size: 1.25rem; opacity: 0.85; margin-bottom: 40px; }

/* PROFILE IMAGE */
.profile-frame {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 10px solid rgba(255,255,255,0.05);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.profile-img { width: 100%; height: 100%; object-fit: cover; }

/* SEÇÃO DE LOGOS (PARCEIROS) */
.partners-section { padding: 60px 0; background: var(--white); border-bottom: 1px solid #f1f5f9; }
.muted-dark { color: #94a3b8; font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: 2px; margin-bottom: 30px; }
.partners-grid { 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  align-items: center; 
  gap: 50px; 
  opacity: 1;
}
.partner-logo { height: 80px; width: 150px; object-fit: contain; transition: 0.3s; opacity: 1; }
.partners-grid:hover { filter: grayscale(0%); opacity: 1; }

/* CARDS E CONTEÚDO */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 50px; }
.card { background: var(--white); padding: 50px 40px; border-radius: 4px; border: 1px solid #e2e8f0; transition: 0.3s; }
.card:hover { border-color: var(--accent-blue); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.card__icon { color: var(--accent-blue); font-weight: 800; font-size: 1.5rem; margin-bottom: 10px; }

.bg-light { background: #f8fafc; }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.subtitle { color: var(--accent-blue); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; display: block; }

.stats-row { display: flex; gap: 40px; margin-top: 40px; }
.stat strong { display: block; font-size: 1.8rem; color: var(--dark-blue); }

.cta-box { background: var(--dark-blue); color: var(--white); padding: 50px; border-radius: 4px; }

/* BOTÕES */
.btn { background: var(--accent-blue); color: white; padding: 18px 36px; border-radius: 4px; text-decoration: none; font-weight: 700; transition: 0.3s; border: none; cursor: pointer; display: inline-block; }
.btn--small { padding: 12px 24px; font-size: 14px; }
.btn--full { width: 100%; text-align: center; }
.btn:hover { background: #005f91; transform: translateY(-2px); }

.footer { padding: 40px 0; border-top: 1px solid #e2e8f0; font-size: 14px; color: var(--text-light); }
.footer__inner { display: flex; justify-content: space-between; }

@media (max-width: 768px) {
  .hero__grid, .about-grid { grid-template-columns: 1fr; text-align: center; }
  .nav__menu { display: none; }
  .brand__logo { height: 50px; }
  .stats-row { justify-content: center; }
}