:root {
  --teal: #0d5b6b;
  --green: #28a745;
  --cyan: #13b5c6;
  --yellow: #f2c14e;
  --ink: #14313a;
  --muted: #5f7076;
  --soft: #f7f6f2;
  --white: #ffffff;
  --line: rgba(13, 91, 107, 0.12);
  --shadow: 0 20px 60px rgba(8, 64, 75, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.section-pad { padding: 104px 0; }
.section-soft { background: var(--soft); }
.section-dark {
  background:
    radial-gradient(circle at 80% 20%, rgba(19,181,198,.18), transparent 34%),
    linear-gradient(145deg, #0a3d49, #0d5b6b 58%, #0c6b61);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(13,91,107,.08);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 240px; height: 72px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--green); }
.nav-cta { padding: 12px 18px; border-radius: 999px; background: var(--teal); color: #fff !important; }
.menu-toggle { display: none; border: 1px solid var(--line); background: #fff; color: var(--ink); border-radius: 12px; padding: 10px 14px; font-weight: 600; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 12%, rgba(242,193,78,.18), transparent 23%),
    radial-gradient(circle at 85% 30%, rgba(19,181,198,.14), transparent 28%),
    linear-gradient(180deg, #fff, #fbfdfa);
}
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 64px; align-items: center; }
.eyebrow { display: inline-block; color: var(--green); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.eyebrow-light { color: #8ce5bf; }
h1,h2,h3 { font-family: "Poppins", Arial, sans-serif; margin: 0; line-height: 1.13; }
h1 { font-size: clamp(42px, 5vw, 68px); letter-spacing: -.035em; max-width: 760px; }
h2 { font-size: clamp(32px, 4vw, 50px); letter-spacing: -.025em; }
h3 { font-size: 21px; }
.hero-lead { font-size: 20px; color: var(--muted); max-width: 650px; margin: 26px 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 14px; border: 1px solid transparent; font-weight: 700; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--teal), var(--cyan)); color: #fff; box-shadow: 0 14px 30px rgba(13,91,107,.22); }
.btn-secondary { border-color: var(--line); background: #fff; }
.hero-quote { margin-top: 28px; padding-left: 18px; border-left: 3px solid var(--yellow); color: var(--teal); font-weight: 600; }
.hero-visual { position: relative; }
.hero-visual .glow { position: absolute; inset: 12% 8%; background: linear-gradient(135deg, rgba(19,181,198,.18), rgba(40,167,69,.14), rgba(242,193,78,.18)); filter: blur(45px); border-radius: 50%; }
.hero-visual img { position: relative; border-radius: 28px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.6); }

.manifesto h2 { margin-bottom: 24px; }
.manifesto p { font-size: 19px; color: var(--muted); }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading p { color: var(--muted); font-size: 18px; }

.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.principle-card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 40px rgba(13,91,107,.06); }
.principle-card.featured { background: linear-gradient(160deg, #0d5b6b, #148c78); color: #fff; }
.card-number { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 12px; background: rgba(19,181,198,.11); color: var(--teal); font-weight: 800; margin-bottom: 20px; }
.featured .card-number { background: rgba(255,255,255,.14); color: #fff; }
.principle-card h3 { margin-bottom: 18px; }
.verse { font-weight: 600; margin: 0 0 4px; }
.reference { display: block; font-size: 13px; color: var(--green); font-weight: 700; margin-bottom: 18px; }
.featured .reference { color: #bff3d2; }
.principle-card p:last-child { color: var(--muted); margin-bottom: 0; }
.featured p:last-child { color: rgba(255,255,255,.84); }

.platform-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.platform-copy p { color: rgba(255,255,255,.78); font-size: 18px; }
.check-list { padding: 0; margin: 30px 0 0; list-style: none; display: grid; gap: 16px; }
.check-list li { padding-left: 28px; position: relative; color: rgba(255,255,255,.88); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #8ce5bf; font-weight: 800; }
.platform-image img { border-radius: 26px; box-shadow: 0 26px 70px rgba(0,0,0,.28); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { padding: 30px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; margin-bottom: 20px; background: linear-gradient(135deg, rgba(13,91,107,.12), rgba(40,167,69,.14)); color: var(--teal); font-size: 24px; font-weight: 800; }
.feature-card p { color: var(--muted); margin-bottom: 0; }

.purpose-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.purpose-card { padding: 36px; border-radius: 28px; color: #fff; background: linear-gradient(135deg, #0d5b6b, #13b5c6 55%, #a5d94f); box-shadow: var(--shadow); }
.purpose-card span, .purpose-card small { display: block; }
.purpose-card strong { display: block; font-family: "Poppins"; font-size: 44px; margin: 14px 0 20px; }
.progress-track { height: 10px; background: rgba(255,255,255,.28); border-radius: 999px; overflow: hidden; margin-bottom: 12px; }
.progress-fill { width: 43%; height: 100%; background: #fff; border-radius: inherit; }
.purpose-copy h2 { margin-bottom: 22px; }
.purpose-copy p { color: var(--muted); font-size: 18px; }

.mission-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; padding: 56px; border-radius: 30px; background: linear-gradient(145deg, #0b4856, #0d5b6b 55%, #168776); color: #fff; box-shadow: var(--shadow); }
.mission-card p { color: rgba(255,255,255,.82); font-size: 18px; margin: 10px 0 0; }

.waitlist-card { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 56px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(180deg, #fff, #fbfdfb); box-shadow: var(--shadow); }
.waitlist-copy p { color: var(--muted); font-size: 18px; }
.waitlist-form { display: grid; gap: 12px; }
.waitlist-form input { width: 100%; min-height: 52px; border: 1px solid var(--line); border-radius: 14px; padding: 0 16px; outline: none; background: #fff; }
.waitlist-form input:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(19,181,198,.1); }
.form-message { min-height: 24px; margin: 0; color: var(--green); font-weight: 600; }

.site-footer { padding: 52px 0; background: #092f38; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .7fr 1fr; gap: 40px; align-items: start; }
.footer-brand img { width: 240px; height: 85px; object-fit: contain; object-position: left center; filter: brightness(1.08); }
.footer-brand p, .footer-note p { color: rgba(255,255,255,.68); }
.footer-links { display: grid; gap: 12px; }
.footer-links a:hover { color: #8ce5bf; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 980px) {
  .main-nav { position: absolute; top: 84px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 10px; background: #fff; border: 1px solid var(--line); padding: 20px; border-radius: 18px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .hero-grid, .platform-grid, .purpose-layout, .mission-card, .waitlist-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .platform-grid { gap: 44px; }
  .principles-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-note { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .section-pad { padding: 76px 0; }
  .brand img { width: 195px; height: 64px; }
  .nav-wrap { min-height: 74px; }
  .main-nav { top: 74px; }
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  .hero-lead { font-size: 18px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .principles-grid, .feature-grid, .footer-grid { grid-template-columns: 1fr; }
  .principle-card, .feature-card { padding: 24px; }
  .mission-card, .waitlist-card { padding: 30px 24px; }
  .purpose-card { padding: 28px; }
  .purpose-card strong { font-size: 36px; }
}


/* Portal Institucional v2 */
.instagram-link { color: var(--green); }
.social-pill { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: #fff; font-size: 13px; font-weight: 700; }
.footer-grid-v2 { grid-template-columns: 1.15fr .7fr .8fr 1fr; }
.footer-links strong { font-family: "Poppins"; font-size: 14px; color: #8ce5bf; margin-bottom: 4px; }
.legal-links { display: flex; gap: 18px; margin-top: 14px; font-size: 13px; }
.page-hero { background: radial-gradient(circle at 15% 12%, rgba(242,193,78,.18), transparent 23%), radial-gradient(circle at 85% 30%, rgba(19,181,198,.14), transparent 28%), linear-gradient(180deg, #fff, #fbfdfa); }
.page-hero h1 { max-width: 920px; }
.center-copy { margin-left: auto; margin-right: auto; }
.page-hero-grid, .app-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.statement-card { padding: 38px; border-radius: 28px; background: linear-gradient(145deg, #0b4856, #0d5b6b 55%, #168776); color: #fff; box-shadow: var(--shadow); }
.statement-card span { display: block; color: #bff3d2; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; margin-bottom: 18px; }
.statement-card strong { display: block; font-family: "Poppins"; font-size: clamp(28px, 4vw, 44px); line-height: 1.2; }
.principle-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.detail-card { padding: 36px; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: 0 12px 40px rgba(13,91,107,.06); }
.detail-card h2 { font-size: 29px; margin-bottom: 8px; }
.detail-card.featured { background: linear-gradient(160deg, #0d5b6b, #148c78); color: #fff; }
.detail-card.featured .reference, .detail-card.featured p { color: rgba(255,255,255,.82); }
.application { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); display: grid; gap: 4px; }
.featured .application { border-color: rgba(255,255,255,.16); }
.application strong { color: var(--green); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.featured .application strong { color: #bff3d2; }
.light-copy { color: rgba(255,255,255,.78); font-size: 18px; }
.btn-light { background: #fff; color: var(--teal); margin-top: 18px; }
.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.story-copy { font-size: 19px; color: var(--muted); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: 24px; }
.value-card > span { color: var(--green); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.value-card h3 { margin: 14px 0; }
.value-card p { color: var(--muted); }
.belief-list { display: grid; gap: 14px; }
.belief-list div { padding: 20px; border: 1px solid var(--line); border-radius: 18px; display: grid; gap: 3px; }
.belief-list strong { color: var(--teal); }
.belief-list span { color: var(--muted); }
.status-badge { display: inline-flex; margin-top: 20px; padding: 9px 14px; border-radius: 999px; background: rgba(40,167,69,.1); color: var(--green); font-weight: 800; font-size: 13px; }
.pricing-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: start; }
.pricing-card { padding: 42px; border-radius: 30px; background: linear-gradient(145deg, #0b4856, #0d5b6b 55%, #168776); color: #fff; box-shadow: var(--shadow); }
.pricing-header > span { color: var(--yellow); font-weight: 800; letter-spacing: .12em; }
.pricing-header p { color: rgba(255,255,255,.78); }
.pricing-list { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 14px; }
.pricing-list li { padding-left: 26px; position: relative; }
.pricing-list li::before { content: "✓"; position: absolute; left: 0; color: #8ce5bf; }
.pricing-side p { color: var(--muted); font-size: 18px; }
.mini-principles { display: grid; gap: 14px; margin-top: 26px; }
.mini-principles div { padding: 18px; border-left: 3px solid var(--yellow); background: var(--soft); display: grid; }
.roadmap-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.roadmap-card { padding: 30px; border-radius: 24px; background: #fff; border: 1px solid var(--line); }
.roadmap-card > span { color: var(--cyan); font-weight: 800; }
.family-visual { position: relative; min-height: 350px; border-radius: 30px; background: linear-gradient(145deg, #f7fbf8, #edf8f5); border: 1px solid var(--line); }
.family-node { position: absolute; padding: 13px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(13,91,107,.1); font-weight: 700; }
.family-node.main { left: 50%; top: 50%; transform: translate(-50%,-50%); background: linear-gradient(135deg,var(--teal),var(--cyan)); color:#fff; font-size:22px; }
.family-node:nth-child(2){left:8%;top:18%}.family-node:nth-child(3){right:8%;top:18%}.family-node:nth-child(4){left:10%;bottom:18%}.family-node:nth-child(5){right:8%;bottom:18%}
.business-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.business-panel div { padding: 26px; border-radius: 22px; border: 1px solid var(--line); background: #fff; box-shadow: 0 12px 30px rgba(13,91,107,.07); }
.business-panel span, .business-panel strong { display:block; }
.business-panel span { color:var(--muted); font-size:13px; }
.business-panel strong { color:var(--teal); font-size:22px; margin-top:6px; }
.learning-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.learning-card { padding: 32px; border-radius: 24px; border: 1px solid var(--line); background:#fff; }
.learning-card > span { color:var(--cyan); font-weight:800; }
.learning-card h2 { font-size:26px; margin:12px 0; }
.learning-card p { color:var(--muted); }
.learning-card small { color:var(--green); font-weight:700; }
.dark-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); box-shadow:none; color:#fff; }
.dark-card p { color:rgba(255,255,255,.72); }
.center-action { display:flex; align-items:center; justify-content:center; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.contact-card { padding:38px; border-radius:26px; border:1px solid var(--line); background:#fff; transition:.25s ease; }
.contact-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.contact-card > span { color:var(--green); font-weight:800; text-transform:uppercase; letter-spacing:.08em; font-size:12px; }
.contact-card h2 { font-size:26px; margin:14px 0; overflow-wrap:anywhere; }
.contact-card p { color:var(--muted); }
.prose { max-width:860px; }
.prose h2 { font-size:28px; margin:36px 0 12px; }
.prose p { color:var(--muted); font-size:18px; }
.prose a { color:var(--teal); font-weight:700; }
.portal-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.portal-card { padding:30px; background:#fff; border:1px solid var(--line); border-radius:24px; transition:.25s ease; }
.portal-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); }
.portal-card > span { color:var(--green); font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.portal-card h3 { margin:12px 0; }
.portal-card p { color:var(--muted); margin:0; }

@media (max-width: 980px) {
  .footer-grid-v2 { grid-template-columns:1fr 1fr; }
  .page-hero-grid,.app-hero-grid,.story-grid,.pricing-layout { grid-template-columns:1fr; }
  .values-grid,.roadmap-grid,.learning-grid,.portal-grid { grid-template-columns:repeat(2,1fr); }
  .principle-detail-grid { grid-template-columns:1fr; }
}
@media (max-width: 680px) {
  .footer-grid-v2,.values-grid,.roadmap-grid,.learning-grid,.portal-grid,.contact-grid { grid-template-columns:1fr; }
  .statement-card,.pricing-card { padding:28px 24px; }
  .detail-card { padding:26px 22px; }
  .business-panel { grid-template-columns:1fr; }
  .family-visual { min-height:430px; }
  .family-node:nth-child(2){left:6%;top:10%}.family-node:nth-child(3){right:6%;top:25%}.family-node:nth-child(4){left:6%;bottom:25%}.family-node:nth-child(5){right:6%;bottom:10%}
}

/* Sprint 11.1.1 — refinamento exclusivo do Hero */
.hero-grid-refined {
  grid-template-columns: 1.02fr .98fr;
  gap: 72px;
  min-height: 680px;
}
.hero-copy { position: relative; z-index: 2; }
.hero-eyebrow {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: .095em;
  margin-bottom: 22px;
}
.hero-title {
  max-width: 690px;
  font-size: clamp(46px, 4.7vw, 70px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.hero-promise {
  max-width: 650px;
  margin: 22px 0 0;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(23px, 2.25vw, 34px);
  line-height: 1.25;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -.025em;
}
.hero-grid-refined .hero-lead {
  max-width: 660px;
  margin: 24px 0 30px;
  font-size: 19px;
  line-height: 1.7;
}
.hero-signature {
  display: grid;
  gap: 2px;
  width: fit-content;
  margin-top: 30px;
  padding: 3px 0 3px 18px;
}
.hero-signature small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-product {
  position: relative;
  min-height: 570px;
  isolation: isolate;
}
.product-glow {
  position: absolute;
  inset: 12% 0 8% 4%;
  z-index: -2;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(19,181,198,.26), rgba(40,167,69,.17), rgba(242,193,78,.24));
  filter: blur(58px);
}
.screen-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 28px;
  background-image: url('/assets/interface-oficial.jpeg');
  background-repeat: no-repeat;
  background-color: #fff;
  box-shadow: 0 28px 70px rgba(8,64,75,.18), 0 8px 24px rgba(8,64,75,.10);
  transform-origin: center;
}
.screen-dashboard {
  width: 48%;
  height: 76%;
  left: 1%;
  top: 12%;
  z-index: 2;
  background-size: 325% auto;
  background-position: 43% 7%;
  transform: rotate(-4deg);
}
.screen-launches {
  width: 43%;
  height: 68%;
  left: 32%;
  top: 3%;
  z-index: 3;
  background-size: 355% auto;
  background-position: 69% 6%;
  transform: rotate(2.5deg);
}
.screen-purpose {
  width: 42%;
  height: 72%;
  right: 0;
  bottom: 6%;
  z-index: 4;
  background-size: 360% auto;
  background-position: 98% 5%;
  transform: rotate(5deg);
}
.product-badge {
  position: absolute;
  left: 7%;
  bottom: 0;
  z-index: 6;
  width: min(360px, 70%);
  padding: 18px 20px;
  border: 1px solid rgba(13,91,107,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 45px rgba(8,64,75,.12);
  backdrop-filter: blur(16px);
}
.product-badge span,
.product-badge strong { display: block; }
.product-badge span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.product-badge strong {
  margin-top: 4px;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.35;
}
.hero-product.visible .screen-dashboard { animation: heroFloatLeft 7s ease-in-out infinite; }
.hero-product.visible .screen-launches { animation: heroFloatCenter 6.5s ease-in-out .5s infinite; }
.hero-product.visible .screen-purpose { animation: heroFloatRight 7.5s ease-in-out 1s infinite; }
@keyframes heroFloatLeft { 0%,100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-8px); } }
@keyframes heroFloatCenter { 0%,100% { transform: rotate(2.5deg) translateY(0); } 50% { transform: rotate(1.5deg) translateY(-10px); } }
@keyframes heroFloatRight { 0%,100% { transform: rotate(5deg) translateY(0); } 50% { transform: rotate(4deg) translateY(-7px); } }

@media (max-width: 980px) {
  .hero-grid-refined { grid-template-columns: 1fr; min-height: 0; gap: 54px; }
  .hero-title { max-width: 800px; }
  .hero-product { min-height: 570px; width: min(720px, 100%); margin: 0 auto; }
}
@media (max-width: 680px) {
  .hero-eyebrow { font-size: 13px; letter-spacing: .075em; }
  .hero-title { font-size: clamp(38px, 11vw, 50px); }
  .hero-promise { font-size: 22px; }
  .hero-grid-refined .hero-lead { font-size: 17px; }
  .hero-product { min-height: 430px; }
  .screen-card { border-radius: 20px; }
  .screen-dashboard { width: 53%; height: 68%; left: 0; top: 15%; }
  .screen-launches { width: 49%; height: 62%; left: 28%; top: 4%; }
  .screen-purpose { width: 48%; height: 66%; right: 0; bottom: 10%; }
  .product-badge { left: 4%; width: 82%; padding: 14px 16px; }
  .product-badge strong { font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-product.visible .screen-card { animation: none; }
}

/* Refinamento exclusivo — seção da plataforma */
.platform-premium {
  position: relative;
  overflow: hidden;
}
.platform-premium::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -220px;
  border-radius: 50%;
  background: rgba(19,181,198,.12);
  filter: blur(30px);
  pointer-events: none;
}
.platform-premium-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 74px;
  align-items: center;
}
.platform-premium-copy h2 {
  max-width: 620px;
  margin-bottom: 24px;
}
.platform-intro {
  max-width: 610px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 18px;
}
.platform-capabilities {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}
.capability-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(12px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.capability-card:hover,
.capability-card-active {
  transform: translateX(6px);
  background: rgba(255,255,255,.1);
  border-color: rgba(140,229,191,.34);
}
.capability-index {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(140,229,191,.14);
  color: #9cf0cb;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}
.capability-card h3 {
  margin: 1px 0 5px;
  color: #fff;
  font-size: 17px;
}
.capability-card p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.55;
}
.product-stage {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.product-glow {
  position: absolute;
  inset: 18% 4% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87,224,190,.28), rgba(19,181,198,.08) 48%, transparent 72%);
  filter: blur(28px);
  z-index: -2;
}
.product-screen {
  position: absolute;
  margin: 0;
  width: 265px;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 34px 78px rgba(0,0,0,.28), 0 6px 18px rgba(0,0,0,.18);
  transform-origin: center bottom;
}
.product-screen img {
  width: 100%;
  height: auto;
  display: block;
}
.product-screen-main {
  z-index: 3;
  width: 285px;
  transform: translateY(-4px);
}
.product-screen-back {
  z-index: 1;
  left: 2%;
  top: 13%;
  transform: rotate(-7deg) scale(.91);
  opacity: .94;
}
.product-screen-front {
  z-index: 4;
  right: 0;
  top: 18%;
  transform: rotate(7deg) scale(.93);
}
.product-proof {
  position: absolute;
  z-index: 6;
  display: grid;
  gap: 2px;
  min-width: 210px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
}
.product-proof span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-proof strong {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.35;
}
.product-proof-top {
  top: 8%;
  right: 7%;
}
.product-proof-bottom {
  left: 0;
  bottom: 8%;
}
.product-stage.visible .product-screen-main {
  animation: platform-float 5.5s ease-in-out infinite;
}
.product-stage.visible .product-screen-back {
  animation: platform-float-left 6.4s ease-in-out infinite;
}
.product-stage.visible .product-screen-front {
  animation: platform-float-right 6s ease-in-out infinite;
}
@keyframes platform-float {
  0%,100% { transform: translateY(-4px); }
  50% { transform: translateY(-16px); }
}
@keyframes platform-float-left {
  0%,100% { transform: rotate(-7deg) scale(.91) translateY(0); }
  50% { transform: rotate(-6deg) scale(.91) translateY(-10px); }
}
@keyframes platform-float-right {
  0%,100% { transform: rotate(7deg) scale(.93) translateY(0); }
  50% { transform: rotate(6deg) scale(.93) translateY(-12px); }
}

@media (max-width: 1080px) {
  .platform-premium-grid { grid-template-columns: 1fr; gap: 48px; }
  .product-stage { min-height: 570px; max-width: 760px; width: 100%; margin: 0 auto; }
  .product-screen-back { left: 10%; }
  .product-screen-front { right: 10%; }
  .product-proof-top { right: 13%; }
  .product-proof-bottom { left: 10%; }
}

@media (max-width: 680px) {
  .platform-premium-copy h2 { font-size: 34px; }
  .platform-intro { font-size: 17px; }
  .capability-card { grid-template-columns: 36px 1fr; padding: 16px; }
  .capability-index { width: 34px; height: 34px; }
  .product-stage { min-height: 470px; margin-top: 8px; }
  .product-screen { width: 190px; border-radius: 22px; }
  .product-screen-main { width: 210px; }
  .product-screen-back { left: -4%; top: 16%; }
  .product-screen-front { right: -5%; top: 20%; }
  .product-proof { min-width: 0; width: 175px; padding: 11px 12px; }
  .product-proof strong { font-size: 11px; }
  .product-proof-top { top: 4%; right: 0; }
  .product-proof-bottom { left: 0; bottom: 2%; }
}

@media (prefers-reduced-motion: reduce) {
  .product-stage.visible .product-screen-main,
  .product-stage.visible .product-screen-back,
  .product-stage.visible .product-screen-front { animation: none; }
}

/* Sprint 11.1.3 — refinamento exclusivo da página Aplicativo */
.app-page .brand img { width: 272px; height: 78px; }
.app-premium-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(242,193,78,.16), transparent 28%),
    radial-gradient(circle at 87% 24%, rgba(19,181,198,.16), transparent 31%),
    linear-gradient(180deg,#fff 0%,#fbfdfc 100%);
}
.app-premium-grid { display:grid; grid-template-columns:.92fr 1.08fr; gap:76px; align-items:center; min-height:690px; }
.app-premium-copy h1 { margin:18px 0 24px; max-width:720px; font-size:clamp(52px,5.4vw,82px); line-height:1.02; letter-spacing:-.05em; }
.app-premium-copy h1 span { color:#0d7b68; }
.app-premium-lead { max-width:660px; font-size:20px; line-height:1.75; color:#596a70; }
.app-premium-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:32px; }
.app-trust-line { margin-top:26px; display:flex; gap:10px; align-items:center; color:#486169; font-size:14px; font-weight:600; }
.app-trust-line span { display:grid; place-items:center; width:24px; height:24px; border-radius:50%; color:#0a8f67; background:#e9f8f1; }
.app-device-stage { min-height:610px; position:relative; display:flex; align-items:center; justify-content:center; perspective:1400px; }
.app-stage-glow { position:absolute; inset:15% 4% 9%; background:radial-gradient(circle,rgba(19,181,198,.23),rgba(19,181,198,0) 68%); filter:blur(22px); }
.app-screen { position:absolute; padding:10px; border:1px solid rgba(13,91,107,.10); border-radius:29px; background:rgba(255,255,255,.90); box-shadow:0 30px 80px rgba(10,54,64,.20); backdrop-filter:blur(14px); transition:transform .35s ease, box-shadow .35s ease; }
.app-screen img { display:block; width:100%; border-radius:21px; }
.app-screen-label { position:absolute; top:-38px; left:50%; transform:translateX(-50%); white-space:nowrap; padding:7px 12px; border:1px solid #dce8e7; border-radius:999px; background:#fff; color:#164653; font-size:12px; font-weight:700; box-shadow:0 10px 30px rgba(13,91,107,.10); }
.app-screen-center { z-index:3; width:282px; transform:translateY(-3px); }
.app-screen-left { z-index:1; width:232px; transform:translate(-215px,45px) rotateY(12deg) rotateZ(-3deg); opacity:.93; }
.app-screen-right { z-index:2; width:246px; transform:translate(213px,42px) rotateY(-12deg) rotateZ(3deg); opacity:.96; }
.app-device-stage:hover .app-screen-center { transform:translateY(-12px) scale(1.015); box-shadow:0 40px 95px rgba(10,54,64,.25); }
.app-device-stage:hover .app-screen-left { transform:translate(-225px,40px) rotateY(9deg) rotateZ(-2deg); }
.app-device-stage:hover .app-screen-right { transform:translate(223px,38px) rotateY(-9deg) rotateZ(2deg); }
.app-section-heading { max-width:850px; margin-bottom:42px; }
.app-section-heading p { max-width:760px; margin-top:16px; font-size:18px; color:#63757a; }
.app-module-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.app-module-card { position:relative; min-height:292px; padding:30px; overflow:hidden; border:1px solid #e3ecea; border-radius:24px; background:#fff; box-shadow:0 14px 40px rgba(13,91,107,.07); transition:transform .25s ease, box-shadow .25s ease; }
.app-module-card::after { content:""; position:absolute; width:120px; height:120px; right:-40px; bottom:-50px; border-radius:50%; background:radial-gradient(circle,rgba(19,181,198,.14),transparent 68%); }
.app-module-card:hover { transform:translateY(-7px); box-shadow:0 24px 55px rgba(13,91,107,.13); }
.app-module-icon { display:grid; place-items:center; width:48px; height:48px; margin-bottom:24px; border-radius:15px; background:linear-gradient(135deg,#e9faf4,#e9f8fc); color:#087c72; font-size:22px; font-weight:700; }
.app-module-card h3 { margin-bottom:12px; }
.app-module-card p { color:#63757a; line-height:1.7; }
.app-module-card > span { position:absolute; left:30px; bottom:28px; color:#0a8369; font-size:13px; font-weight:700; }
.app-how-section { background:#fff; }
.app-journey { display:grid; grid-template-columns:1fr auto 1fr auto 1fr auto 1fr; gap:20px; align-items:stretch; margin-top:46px; }
.app-journey article { padding:30px 25px; border:1px solid #e0ebe9; border-radius:22px; background:linear-gradient(180deg,#fff,#f8fbfa); }
.app-journey article > span { display:inline-flex; margin-bottom:28px; color:#0b8870; font-family:Poppins,sans-serif; font-size:14px; font-weight:700; letter-spacing:.1em; }
.app-journey article h3 { margin-bottom:10px; }
.app-journey article p { color:#63757a; line-height:1.65; }
.app-journey-arrow { align-self:center; color:#15a99f; font-size:27px; }
.app-purpose-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:center; }
.app-purpose-showcase { min-height:550px; position:relative; display:flex; align-items:center; justify-content:center; }
.app-purpose-phone { width:270px; padding:10px; border-radius:32px; background:#fff; box-shadow:0 34px 86px rgba(0,0,0,.30); transform:rotate(-3deg); }
.app-purpose-phone img { display:block; width:100%; border-radius:23px; }
.app-purpose-stat { position:absolute; right:2%; bottom:16%; width:270px; padding:24px; border:1px solid rgba(255,255,255,.25); border-radius:22px; color:#fff; background:rgba(255,255,255,.12); backdrop-filter:blur(16px); box-shadow:0 20px 55px rgba(0,0,0,.18); }
.app-purpose-stat span,.app-purpose-stat small { display:block; color:rgba(255,255,255,.75); }
.app-purpose-stat strong { display:block; margin:9px 0 4px; font:700 44px/1 Poppins,sans-serif; }
.app-purpose-stat .progress-track { margin-top:18px; background:rgba(255,255,255,.20); }
@media (max-width:1100px){
  .app-premium-grid,.app-purpose-grid{grid-template-columns:1fr;}
  .app-premium-grid{gap:30px;}
  .app-device-stage{min-height:580px;}
  .app-module-grid{grid-template-columns:repeat(2,1fr);}
  .app-purpose-showcase{min-height:520px;}
}
@media (max-width:760px){
  .app-page .brand img{width:214px;height:66px;}
  .app-premium-grid{min-height:auto;}
  .app-premium-copy h1{font-size:clamp(42px,13vw,60px);}
  .app-premium-lead{font-size:17px;}
  .app-device-stage{min-height:500px; transform:scale(.88); margin:-25px -25px;}
  .app-screen-center{width:238px;}
  .app-screen-left{width:190px;transform:translate(-150px,48px) rotateY(10deg) rotateZ(-3deg);}
  .app-screen-right{width:200px;transform:translate(150px,46px) rotateY(-10deg) rotateZ(3deg);}
  .app-module-grid{grid-template-columns:1fr;}
  .app-module-card{min-height:250px;}
  .app-journey{grid-template-columns:1fr;}
  .app-journey-arrow{transform:rotate(90deg); justify-self:center;}
  .app-purpose-showcase{min-height:520px; justify-content:flex-start; padding-left:4%;}
  .app-purpose-phone{width:230px;}
  .app-purpose-stat{right:0; bottom:10%; width:230px;}
}
@media (max-width:480px){
  .app-device-stage{min-height:430px; transform:scale(.72); margin:-55px -95px;}
  .app-purpose-showcase{min-height:470px;}
  .app-purpose-stat{bottom:5%;}
}
