@font-face {
  font-family: 'Ibrand';
  src: url('../fonts/Ibrand.ttf') format('truetype'),
       url('../fonts/Ibrand.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --purple:  #5d2262;
  --purple2: #4a1a4f;
  --orange:  #d94626;
  --orange2: #e85535;
  --white:   #ffffff;
  --gray:    #f5f5f7;
  --text:    #333333;
  --light-text: #666666;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); }

h1, h2, h3, h4 { font-family: 'Ibrand', 'Inter', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--purple);
  padding: 14px 0;
  border-bottom: 2px solid var(--orange);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon {
  width: 44px; height: 44px; background: var(--white); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 28px; height: 28px; }
.logo-text { color: var(--white); font-size: 17px; font-weight: 700; line-height: 1.2; }
.logo-text span { display: block; font-weight: 400; font-size: 11px; opacity: .8; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--white); font-size: 16px; font-weight: 500; opacity: .9; transition: opacity .2s; }
.nav-links a:hover { opacity: 1; }

.btn-nav {
  background: var(--orange); color: var(--white);
  padding: 10px 20px; border-radius: 6px;
  font-weight: 700; font-size: 17px;
  display: flex; align-items: center; gap: 8px;
  transition: background .2s;
}
.btn-nav:hover { background: var(--orange2); }

.hamburger { display: none; cursor: pointer; color: var(--white); font-size: 22px; }

/* ── HERO ── */
#inicio {
  background: var(--purple);
  padding: 130px 0 80px;
  min-height: 100vh;
  display: flex; align-items: center;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.hero-text h1 {
  color: var(--white); font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; line-height: 1.15; margin-bottom: 20px;
}
.hero-text h1 .highlight { color: var(--orange); }
.hero-text p {
  color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.7; margin-bottom: 32px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 14px 24px; border-radius: 6px;
  font-weight: 700; font-size: 16px;
  display: flex; align-items: center; gap: 8px;
  transition: background .2s;
}
.btn-primary:hover { background: var(--orange2); }
.btn-outline {
  border: 2px solid var(--white); color: var(--white);
  padding: 12px 22px; border-radius: 6px;
  font-weight: 700; font-size: 16px;
  display: flex; align-items: center; gap: 8px;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--white); color: var(--purple); }

.hero-image img {
  border-radius: 16px; width: 100%; height: 480px;
  object-fit: cover;
}
.hero-image-placeholder {
  border-radius: 16px; width: 100%; height: 480px;
  background: linear-gradient(135deg, #3a1a7a 0%, #5c2ea0 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: 16px; text-align: center;
}

/* ── QUEM SOMOS ── */
#quem-somos {
  background: var(--purple2);
  padding: 80px 0;
}
.qs-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.qs-text h2 { color: var(--white); font-size: 36px; font-weight: 800; margin-bottom: 24px; }
.qs-text p {
  color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.75; margin-bottom: 16px;
}
.qs-image img { border-radius: 16px; width: 100%; height: 420px; object-fit: cover; }
.qs-image-placeholder {
  border-radius: 16px; width: 100%; height: 420px;
  background: linear-gradient(135deg, #4a2090 0%, #7a40c0 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: 16px; text-align: center;
}

/* ── DIFERENCIAIS ── */
#diferenciais { background: var(--white); padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: 32px; font-weight: 800; color: var(--purple); margin-bottom: 12px; }
.section-title h2 .underline {
  border-bottom: 3px solid var(--orange); padding-bottom: 4px;
}
.section-title p { color: var(--light-text); font-size: 17px; max-width: 640px; margin: 0 auto; line-height: 1.7; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.diff-card {
  border-radius: 12px; padding: 36px 28px; text-align: center;
}
.diff-card.orange { background: var(--orange); color: var(--white); }
.diff-card.purple { background: var(--purple); color: var(--white); }
.diff-card .icon-hex {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: rgba(255,255,255,.2); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.diff-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; letter-spacing: 1px; }
.diff-card p { font-size: 17px; line-height: 1.7; opacity: .9; }

/* ── SOLUÇÕES ── */
#solucoes { background: var(--gray); padding: 80px 0; }
.cards-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sol-card {
  background: var(--white); border-radius: 12px; padding: 28px 22px;
  border: 1px solid #e8e8e8; text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.sol-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-4px); }
.sol-card .sol-icon {
  width: 52px; height: 52px; margin: 0 auto 16px;
  background: #f0eaf8; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--purple);
}
.sol-card h3 { font-size: 16px; font-weight: 700; color: var(--purple); margin-bottom: 10px; }
.sol-card p { font-size: 17px; color: var(--light-text); line-height: 1.6; }

/* ── PROCESSO ── */
#processo { background: var(--purple); padding: 80px 0; }
#processo .section-title h2 { color: var(--white); }
#processo .section-title .underline { border-bottom-color: var(--orange); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px; }
.step { text-align: center; color: var(--white); }
.step-num {
  width: 48px; height: 48px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: var(--white);
  margin: 0 auto 16px;
}
.step-icon { font-size: 40px; margin-bottom: 16px; opacity: .9; }
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 17px; opacity: .8; line-height: 1.65; }

/* ── PÚBLICO ── */
#publico { background: var(--white); padding: 80px 0; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pub-card { text-align: center; padding: 32px 20px; }
.pub-card .pub-icon {
  font-size: 40px; color: var(--purple); margin-bottom: 16px;
}
.pub-card h3 { font-size: 16px; font-weight: 800; color: var(--purple); margin-bottom: 10px; letter-spacing: 1px; }
.pub-card p { font-size: 17px; color: var(--light-text); line-height: 1.6; }

/* ── PARCEIRO ── */
#parceiro { background: var(--gray); padding: 60px 0; }
.parceiro-inner {
  display: flex; align-items: center; gap: 48px;
  background: var(--white); border-radius: 16px; padding: 40px 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.parceiro-logo {
  flex-shrink: 0; width: 180px; text-align: center;
}
.parceiro-logo .logo-placeholder {
  background: var(--gray); border-radius: 12px; padding: 24px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.parceiro-logo .logo-placeholder i { font-size: 32px; color: var(--purple); }
.parceiro-logo .logo-placeholder span { font-weight: 800; font-size: 18px; color: var(--purple); }
.parceiro-text h2 { font-size: 26px; font-weight: 800; color: var(--purple); margin-bottom: 12px; }
.parceiro-text p { font-size: 17px; color: var(--light-text); line-height: 1.7; }

/* ── CTA BANNER ── */
#cta-banner { background: var(--purple2); padding: 60px 0; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); font-size: 32px; font-weight: 900; }
.cta-text h2 .highlight { color: var(--orange); }
.cta-text p { color: rgba(255,255,255,.75); font-size: 17px; margin-top: 10px; max-width: 480px; line-height: 1.6; }

/* ── CONTATO ── */
#contato { background: var(--white); padding: 80px 0; }
#contato .section-title h2 { color: var(--purple); }
.contato-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contato-info h3 { font-size: 22px; font-weight: 800; color: var(--purple); margin-bottom: 24px; }
.contato-item {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.contato-item i { font-size: 20px; color: var(--orange); width: 24px; text-align: center; }
.contato-item a, .contato-item span { font-size: 17px; color: var(--text); font-weight: 500; }
.contato-item a:hover { color: var(--orange); }

.contato-mapa { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.08); }

/* ── FOOTER ── */
footer { background: var(--purple); padding: 48px 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-logo .logo-text { color: var(--white); margin-top: 12px; }
.footer-col h4 { color: var(--white); font-size: 17px; font-weight: 700; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.7); font-size: 17px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col p { color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.8; }
.footer-parceiro { display: flex; align-items: center; gap: 10px; }
.footer-parceiro i { font-size: 22px; color: var(--orange); }
.footer-parceiro span { color: rgba(255,255,255,.8); font-size: 17px; font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px;
  text-align: center; color: rgba(255,255,255,.4); font-size: 12px;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float i { font-size: 28px; color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner, .qs-inner, .contato-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .hero-image img, .hero-image-placeholder,
  .qs-image img, .qs-image-placeholder { height: 280px; }
  .cards-3, .cards-6 { grid-template-columns: 1fr 1fr; }
  .cards-4 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .parceiro-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: block; }
  .cards-3, .cards-6, .cards-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; }
}

/* Menu mobile aberto */
nav.open .nav-links {
  display: flex; flex-direction: column; position: absolute;
  top: 70px; left: 0; right: 0;
  background: var(--purple); padding: 20px 24px; gap: 16px;
}
nav.open .btn-nav { display: flex; }
