@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy:   #0F2744;
  --navy2:  #1A3A5C;
  --blue:   #2563EB;
  --orange: #F97316;
  --orange2:#EA6C0A;
  --teal:   #0891B2;
  --teal2:  #0E7490;
  --teal-light: #CFFAFE;
  --light:  #F8FAFC;
  --gray:   #64748B;
  --border: #E2E8F0;
  --text:   #1E293B;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family:'Inter',sans-serif; color:var(--text); background:#fff; overflow-x:hidden; }

/* ─── NAV ─── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:999;
  background: rgba(15,39,68,0.97); backdrop-filter: blur(12px);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.3); }
.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.nav-logo-icon {
  width:38px; height:38px; border-radius:10px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display:flex; align-items:center; justify-content:center;
  font-size:18px; font-weight:900; color:#fff; letter-spacing:-1px;
}
.nav-logo-text { color:#fff; font-size:17px; font-weight:800; letter-spacing:.5px; }
.nav-logo-text span { color:var(--orange); }
.nav-links { display:flex; gap:32px; list-style:none; }
.nav-links a { color:rgba(255,255,255,.75); text-decoration:none; font-size:14px; font-weight:500; transition:color .2s; }
.nav-links a:hover { color:#fff; }
.nav-cta {
  background: var(--orange); color:#fff; border:none; padding:10px 22px;
  border-radius:8px; font-size:14px; font-weight:600; cursor:pointer;
  text-decoration:none; transition:background .2s, transform .15s;
  white-space:nowrap;
}
.nav-cta:hover { background:var(--orange2); transform:translateY(-1px); }
.nav-hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.nav-hamburger span { width:24px; height:2px; background:#fff; border-radius:2px; transition:.3s; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0A1F3A 50%, #0D2845 100%);
  display: flex; align-items: center;
  padding: 100px 5% 60px;
  position: relative; overflow:hidden;
}
.hero::before {
  content:'';
  position:absolute; top:-20%; right:-10%; width:700px; height:700px;
  border-radius:50%; opacity:.06;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  pointer-events:none;
}
.hero::after {
  content:'';
  position:absolute; bottom:-15%; left:-5%; width:500px; height:500px;
  border-radius:50%; opacity:.04;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  pointer-events:none;
}
.hero-inner { max-width:1200px; margin:0 auto; width:100%; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; position:relative; z-index:1; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(249,115,22,.12); border:1px solid rgba(249,115,22,.25);
  color:var(--orange); padding:6px 14px; border-radius:20px; font-size:13px; font-weight:600;
  margin-bottom:24px;
}
.hero-badge::before { content:'●'; font-size:8px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 { font-size:clamp(36px,4vw,54px); font-weight:900; line-height:1.1; color:#fff; margin-bottom:20px; }
.hero h1 span { color:var(--orange); }
.hero-sub { font-size:17px; color:rgba(255,255,255,.65); line-height:1.7; margin-bottom:36px; max-width:500px; }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; }
.btn-primary {
  background:var(--orange); color:#fff; padding:14px 28px; border-radius:10px;
  font-size:15px; font-weight:700; text-decoration:none; border:none; cursor:pointer;
  transition:background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 15px rgba(249,115,22,.35);
}
.btn-primary:hover { background:var(--orange2); transform:translateY(-2px); box-shadow:0 6px 20px rgba(249,115,22,.45); }
.btn-outline {
  background:transparent; color:#fff; padding:14px 28px; border-radius:10px;
  font-size:15px; font-weight:600; text-decoration:none;
  border:1px solid rgba(255,255,255,.25); cursor:pointer;
  transition:all .2s;
}
.btn-outline:hover { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.45); }
.hero-stats { display:flex; gap:32px; margin-top:48px; }
.hero-stat { }
.hero-stat .num { font-size:32px; font-weight:900; color:#fff; line-height:1; }
.hero-stat .num span { color:var(--orange); }
.hero-stat .lbl { font-size:13px; color:rgba(255,255,255,.5); margin-top:4px; }
.hero-visual {
  display:flex; justify-content:center; align-items:center;
}
.hero-card-wrap { position:relative; width:100%; max-width:440px; }
.hero-card {
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  border-radius:20px; padding:28px; backdrop-filter:blur(10px);
}
.hero-card-title { color:rgba(255,255,255,.5); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; margin-bottom:16px; }
.hero-metric { display:flex; align-items:center; justify-content:space-between; padding:12px 0; border-bottom:1px solid rgba(255,255,255,.07); }
.hero-metric:last-of-type { border:none; }
.hero-metric .name { color:rgba(255,255,255,.8); font-size:14px; }
.hero-metric .val { font-size:16px; font-weight:700; color:#fff; }
.hero-metric .change { font-size:12px; font-weight:600; color:#4ADE80; background:rgba(74,222,128,.1); padding:3px 8px; border-radius:6px; }
.hero-card-badge {
  display:inline-flex; align-items:center; gap:6px;
  background:var(--orange); color:#fff; padding:6px 14px; border-radius:8px;
  font-size:12px; font-weight:700; box-shadow:0 4px 12px rgba(249,115,22,.4);
  margin-bottom:16px;
}

/* ─── SECTIONS ─── */
section { padding:100px 5%; }
.section-inner { max-width:1200px; margin:0 auto; }
.section-tag { display:inline-block; background:#EFF6FF; color:var(--blue); font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; padding:6px 14px; border-radius:6px; margin-bottom:16px; }
.section-title { font-size:clamp(28px,3vw,40px); font-weight:900; line-height:1.2; color:var(--navy); margin-bottom:14px; }
.section-title span { color:var(--orange); }
.section-sub { font-size:17px; color:var(--gray); line-height:1.7; max-width:580px; }
.section-header { margin-bottom:56px; }
.section-header.center { text-align:center; }
.section-header.center .section-sub { margin:0 auto; }

/* ─── FOUNDERS CARD (HERO) ─── */
.founders-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 420px;
}
.founders-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.5);
  margin-bottom: 24px; text-align: center;
}
.founders-photos {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 24px;
}
.founder-item { display: flex; flex-direction: column; align-items: center; gap: 10px; flex: 1; }
.founder-photo-wrap {
  width: 130px; height: 130px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--orange);
  box-shadow: 0 0 0 4px rgba(249,115,22,.2);
  flex-shrink: 0;
}
.founder-photo {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.founder-name { font-size: 15px; font-weight: 700; color: #fff; text-align: center; }
.founder-role { font-size: 12px; color: var(--orange); font-weight: 600; text-align: center; }
.founders-divider {
  width: 1px; height: 80px; background: rgba(255,255,255,.15); flex-shrink: 0;
}
.founders-tagline {
  text-align: center; font-size: 13px; font-style: italic;
  color: rgba(255,255,255,.55); line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
}

/* ─── DIFERENCIAIS ─── */
.diffs { background:var(--light); }
.diff-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.diff-card {
  background:#fff; border-radius:16px; padding:32px 28px;
  border:1px solid var(--border); transition:transform .2s, box-shadow .2s;
  position:relative; overflow:hidden;
}
.diff-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--blue), var(--orange));
  transform:scaleX(0); transform-origin:left; transition:transform .3s;
}
.diff-card:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,.08); }
.diff-card:hover::after { transform:scaleX(1); }
.diff-icon { width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:24px; margin-bottom:20px; }
.diff-icon.blue   { background:#EFF6FF; }
.diff-icon.orange { background:#FFF7ED; }
.diff-icon.green  { background:#F0FDF4; }
.diff-card h3 { font-size:19px; font-weight:800; color:var(--navy); margin-bottom:10px; }
.diff-card p  { font-size:14px; color:var(--gray); line-height:1.7; }

/* ─── SERVIÇOS ─── */
.services-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(320px,1fr)); gap:20px; }
.service-card {
  background:#fff; border:1px solid var(--border); border-radius:16px;
  padding:28px; display:flex; gap:20px; align-items:flex-start;
  transition:transform .2s, box-shadow .2s, border-color .2s;
}
.service-card:hover { transform:translateY(-3px); box-shadow:0 8px 30px rgba(0,0,0,.08); border-color:#BFDBFE; }
.service-icon { width:48px; height:48px; border-radius:12px; background:var(--light); display:flex; align-items:center; justify-content:center; font-size:22px; flex-shrink:0; }
.service-body h3 { font-size:16px; font-weight:700; color:var(--navy); margin-bottom:6px; }
.service-body p  { font-size:13px; color:var(--gray); line-height:1.6; margin-bottom:10px; }
.service-price { font-size:13px; font-weight:700; color:var(--orange); }
.service-tools { display:flex; flex-wrap:wrap; gap:6px; margin-top:8px; }
.tool-tag { background:var(--light); border:1px solid var(--border); color:var(--gray); font-size:11px; font-weight:600; padding:3px 8px; border-radius:6px; }

/* ─── PACOTES ─── */
.pricing { background:var(--navy); }
.pricing .section-title { color:#fff; }
.pricing .section-sub { color:rgba(255,255,255,.6); }
.pricing .section-tag { background:rgba(249,115,22,.15); color:var(--orange); }
.packages-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.pkg-card {
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1);
  border-radius:20px; padding:36px 32px; position:relative;
  transition:transform .2s, box-shadow .2s;
}
.pkg-card:hover { transform:translateY(-4px); }
.pkg-card.featured {
  background:rgba(249,115,22,.1); border-color:rgba(249,115,22,.4);
  transform:scale(1.03);
}
.pkg-card.featured:hover { transform:scale(1.03) translateY(-4px); }
.pkg-badge {
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--orange); color:#fff; padding:5px 16px; border-radius:20px;
  font-size:12px; font-weight:700; white-space:nowrap;
}
.pkg-name { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:rgba(255,255,255,.5); margin-bottom:8px; }
.pkg-title { font-size:22px; font-weight:800; color:#fff; margin-bottom:6px; }
.pkg-price { font-size:28px; font-weight:900; color:var(--orange); margin:16px 0 4px; line-height:1; }
.pkg-price span { font-size:15px; font-weight:400; color:rgba(255,255,255,.4); }
.pkg-desc { font-size:13px; color:rgba(255,255,255,.5); margin-bottom:24px; line-height:1.5; }
.pkg-items { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:28px; }
.pkg-items li { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:rgba(255,255,255,.8); line-height:1.4; }
.pkg-items li::before { content:'✓'; color:var(--orange); font-weight:900; flex-shrink:0; margin-top:1px; }
.pkg-btn {
  display:block; text-align:center; padding:13px; border-radius:10px;
  font-size:15px; font-weight:700; text-decoration:none; cursor:pointer; border:none;
  transition:all .2s;
}
.pkg-btn.solid { background:var(--orange); color:#fff; box-shadow:0 4px 14px rgba(249,115,22,.35); }
.pkg-btn.solid:hover { background:var(--orange2); }
.pkg-btn.ghost { background:transparent; color:#fff; border:1px solid rgba(255,255,255,.25); }
.pkg-btn.ghost:hover { background:rgba(255,255,255,.08); }

/* ─── EQUIPE ─── */
.team-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:32px; max-width:900px; margin:0 auto; }
.team-card {
  background:#fff; border:1px solid var(--border); border-radius:20px;
  overflow:hidden; transition:transform .2s, box-shadow .2s;
}
.team-card:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(0,0,0,.1); }
.team-photo {
  width:100%; height:280px; object-fit:cover; object-position:center top;
  display:block; background:var(--light);
}
.team-body { padding:28px; }
.team-name { font-size:22px; font-weight:800; color:var(--navy); margin-bottom:4px; }
.team-role { font-size:14px; font-weight:600; color:var(--orange); margin-bottom:14px; }
.team-bio  { font-size:14px; color:var(--gray); line-height:1.7; margin-bottom:18px; }
.team-tags { display:flex; flex-wrap:wrap; gap:8px; }
.team-tag { background:var(--light); border:1px solid var(--border); color:var(--navy2); font-size:12px; font-weight:600; padding:4px 10px; border-radius:6px; }
.team-featured { border-color:rgba(249,115,22,.3); }
.team-featured .team-body { border-top:3px solid var(--orange); }

/* ─── CONTATO ─── */
.contact { background:var(--light); }
.contact-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:60px; align-items:start; }
.contact-info h3 { font-size:24px; font-weight:800; color:var(--navy); margin-bottom:12px; }
.contact-info p  { font-size:15px; color:var(--gray); line-height:1.7; margin-bottom:32px; }
.contact-item { display:flex; align-items:center; gap:14px; margin-bottom:18px; }
.contact-item-icon { width:44px; height:44px; border-radius:12px; background:#fff; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.contact-item-text strong { display:block; font-size:13px; font-weight:700; color:var(--navy); }
.contact-item-text a,
.contact-item-text span { font-size:14px; color:var(--gray); text-decoration:none; }
.contact-item-text a:hover { color:var(--blue); }
.contact-form { background:#fff; border-radius:20px; padding:36px; border:1px solid var(--border); box-shadow:0 4px 24px rgba(0,0,0,.05); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.form-group label { font-size:13px; font-weight:600; color:var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  border:1px solid var(--border); border-radius:10px; padding:12px 14px;
  font-size:14px; color:var(--text); font-family:inherit; outline:none;
  background:#fff; transition:border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color:var(--blue); box-shadow:0 0 0 3px rgba(37,99,235,.1);
}
.form-group textarea { resize:vertical; min-height:120px; }
.form-submit {
  width:100%; padding:14px; background:var(--orange); color:#fff;
  border:none; border-radius:10px; font-size:15px; font-weight:700;
  cursor:pointer; transition:background .2s, transform .15s;
  font-family:inherit;
}
.form-submit:hover { background:var(--orange2); transform:translateY(-1px); }
.form-submit:disabled { background:#CBD5E1; cursor:not-allowed; transform:none; }
.form-success { text-align:center; padding:24px; color:var(--navy); }
.form-success .check { font-size:48px; margin-bottom:12px; }
.form-success h4 { font-size:20px; font-weight:700; margin-bottom:8px; }
.form-success p  { color:var(--gray); font-size:14px; }

/* ─── FOOTER ─── */
footer {
  background:var(--navy); color:rgba(255,255,255,.5);
  padding:40px 5%; text-align:center;
}
footer .footer-logo { color:#fff; font-size:18px; font-weight:800; margin-bottom:8px; }
footer .footer-logo span { color:var(--orange); }
footer p { font-size:13px; }

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position:fixed; bottom:28px; right:28px; z-index:998;
  width:56px; height:56px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.4);
  text-decoration:none; transition:transform .2s, box-shadow .2s;
}
.wa-float:hover { transform:scale(1.1); box-shadow:0 6px 28px rgba(37,211,102,.5); }
.wa-float svg { width:30px; height:30px; fill:#fff; }

/* ─── RESPONSIVE ─── */

/* Tablet landscape */
@media (max-width:1024px) {
  .hero-inner { gap:40px; }
  .diff-grid { grid-template-columns:repeat(2,1fr); }
  .packages-grid { grid-template-columns:1fr; max-width:500px; margin:0 auto; }
  .pkg-card.featured { transform:none; }
  .contact-grid { gap:36px; }
}

/* Tablet portrait / mobile landscape */
@media (max-width:768px) {
  /* Nav */
  .nav-links, .nav-cta { display:none; }
  .nav-hamburger { display:flex; }

  /* Hero */
  .hero { padding:88px 5% 52px; min-height:auto; }
  .hero-inner { grid-template-columns:1fr; gap:32px; }
  .hero h1 { font-size:clamp(28px,8vw,40px); }
  .hero-sub { font-size:15px; margin-bottom:28px; }
  .hero-btns { flex-direction:column; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { text-align:center; width:100%; padding:14px; }
  .hero-stats { gap:20px; margin-top:28px; }
  .hero-stat .num { font-size:26px; }
  .hero-visual { justify-content:flex-start; }

  /* Founders card */
  .founders-card { max-width:100%; padding:24px 20px; }
  .founder-photo-wrap { width:100px; height:100px; }
  .founder-name { font-size:13px; }
  .founder-role { font-size:11px; }
  .founders-tagline { font-size:12px; }

  /* Sections */
  section { padding:60px 5%; }
  .section-header { margin-bottom:36px; }
  .section-sub { font-size:15px; }

  /* Diferenciais */
  .diff-grid { grid-template-columns:1fr; }
  .diff-card { padding:24px 20px; }
  .diff-card h3 { font-size:17px; }

  /* Serviços */
  .services-grid { grid-template-columns:1fr; }
  .service-card { padding:20px; }
  .service-card[style*="grid-column"] { grid-column:auto; max-width:100%; }

  /* Pacotes */
  .packages-grid { grid-template-columns:1fr; max-width:100%; }
  .pkg-card { padding:28px 22px; }
  .pkg-title { font-size:20px; }

  /* Equipe */
  .team-grid { grid-template-columns:1fr; max-width:100%; }
  .team-body { padding:22px 20px; }
  .team-name { font-size:20px; }
  .team-bio { font-size:13px; }

  /* Contato */
  .contact-grid { grid-template-columns:1fr; gap:28px; }
  .contact-form { padding:24px 20px; }
  .form-row { grid-template-columns:1fr; }
  .contact-info p { margin-bottom:20px; }

  /* WhatsApp float */
  .wa-float { bottom:20px; right:16px; width:50px; height:50px; }
  .wa-float svg { width:26px; height:26px; }
}

/* Mobile portrait pequeno */
@media (max-width:480px) {
  nav { padding:0 4%; }
  .nav-logo-text { font-size:14px; }
  .nav-logo-icon { width:32px; height:32px; font-size:15px; }

  .hero { padding:82px 4% 44px; }
  .hero h1 { font-size:clamp(26px,9vw,36px); }
  .hero-stats { flex-wrap:wrap; gap:16px 24px; }
  .hero-stat { min-width:calc(50% - 12px); }
  .hero-stat .num { font-size:24px; }

  .founders-photos { gap:10px; }
  .founder-photo-wrap { width:86px; height:86px; border-width:2px; }
  .founders-divider { height:60px; }

  section { padding:48px 4%; }
  .section-title { font-size:clamp(22px,7vw,30px); }

  .diff-card { padding:20px 16px; }
  .service-card { padding:16px; gap:14px; }
  .service-icon { width:40px; height:40px; font-size:18px; border-radius:10px; }
  .service-body h3 { font-size:15px; }

  .pkg-card { padding:24px 16px; }
  .pkg-name { font-size:11px; }
  .pkg-title { font-size:18px; }
  .pkg-items li { font-size:13px; }
  .pkg-btn { font-size:14px; padding:12px; }

  .team-photo { height:240px; }
  .team-body { padding:18px 16px; }
  .team-name { font-size:18px; }
  .team-tags { gap:6px; }
  .team-tag { font-size:11px; padding:3px 8px; }

  .contact-form { padding:20px 16px; }
  .contact-item-icon { width:38px; height:38px; font-size:17px; }

  footer { padding:32px 4%; }
  footer .footer-logo { font-size:16px; }
}

/* ─── ANIMAÇÕES DE ENTRADA ─── */
.fade-up { opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ─── WAVE SEPARATORS ─── */
.wave-sep { display:block; line-height:0; font-size:0; overflow:hidden; margin:0; padding:0; }
.wave-sep svg { display:block; width:100%; }

/* ─── HERO WAVEFORM ─── */
.hero-waveform {
  position:absolute; bottom:0; left:0; right:0;
  height:80px; display:flex; align-items:flex-end;
  gap:2px; padding:0 5%;
  opacity:.12; pointer-events:none; z-index:0;
}
.wf-bar {
  flex:1; border-radius:2px 2px 0 0; transform-origin:bottom;
  background:linear-gradient(to top, var(--teal), rgba(249,115,22,.4));
  animation:wf-beat var(--d,1s) ease-in-out infinite alternate;
}
@keyframes wf-beat {
  from { transform:scaleY(var(--min,.2)); }
  to   { transform:scaleY(1); }
}
@media (max-width:768px) { .hero-waveform { display:none; } }

/* ─── HERO BADGE TEAL VARIANT ─── */
.hero-badge.teal-badge {
  background:rgba(8,145,178,.12); border-color:rgba(8,145,178,.3); color:var(--teal);
}

/* ─── SECTION TAG TEAL VARIANT ─── */
.tag-teal { background:var(--teal-light) !important; color:var(--teal2) !important; }
