:root {
  color-scheme: dark;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  --bg: #070b12;
  --surface: #0e1623;
  --surface-strong: #121d2c;
  --line: #253249;
  --text: #f6f8fc;
  --muted: #93a2b7;
  --coral: #ff4168;
  --cyan: #43c7d3;
  --green: #56d99f;
  --yellow: #f4c867;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { min-width: 320px; scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--text); background: var(--bg); }
button, input, select { font: inherit; }
a { color: inherit; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  height: 78px;
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 0 max(28px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  background: rgba(5, 9, 15, .72);
  backdrop-filter: blur(14px);
}

.brand { display: inline-flex; align-items: baseline; flex: 0 0 auto; color: #fff; font-size: 29px; font-style: italic; font-weight: 950; letter-spacing: 0; text-decoration: none; }
.brand b { color: var(--coral); }
.brand small { margin-left: 7px; font-size: 9px; font-style: normal; letter-spacing: 2px; }
.site-header nav { display: flex; gap: 30px; margin-left: auto; }
.site-header nav a, .header-login { color: #dce4ef; font-size: 12px; font-weight: 750; text-decoration: none; }
.site-header nav a:hover { color: #fff; }
.language-switcher { display: inline-flex; flex: 0 0 auto; padding: 3px; border: 1px solid rgba(255, 255, 255, .22); border-radius: 6px; background: rgba(8, 14, 23, .72); }
.language-switcher button { width: 31px; height: 30px; padding: 0; border: 0; border-radius: 4px; color: #8f9db1; background: transparent; font-size: 9px; font-weight: 900; cursor: pointer; }
.language-switcher button:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.language-switcher button[aria-pressed="true"] { color: #fff; background: var(--coral); }
.language-switcher button:focus-visible { outline: 2px solid var(--cyan); outline-offset: 1px; }
.header-login { min-height: 39px; display: inline-flex; align-items: center; padding: 0 17px; border: 1px solid rgba(255, 255, 255, .28); border-radius: 6px; }
.header-login:hover { border-color: var(--coral); background: rgba(255, 65, 104, .14); }

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #080d15;
  background-image: url('/parceiros/assets/panel-devices.png');
  background-position: center;
  background-size: cover;
}
.hero-shade { position: absolute; inset: 0; background: rgba(4, 8, 14, .76); }
.hero-content { position: relative; width: min(1280px, calc(100% - 56px)); margin: 70px auto 0; padding: 78px 0 50px; }
.eyebrow { margin: 0 0 14px; color: #ff6e89; font-size: 10px; font-weight: 900; letter-spacing: 2.4px; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(64px, 9vw, 126px); line-height: .88; letter-spacing: 0; }
.hero-lead { max-width: 690px; margin: 30px 0 0; color: #d4dce8; font-size: clamp(20px, 2.2vw, 30px); line-height: 1.35; }
.hero-actions { display: flex; gap: 11px; margin-top: 34px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid transparent; border-radius: 6px; color: #fff; font-weight: 850; text-decoration: none; cursor: pointer; transition: transform .16s ease, filter .16s ease, border-color .16s ease; }
.button:hover { transform: translateY(-1px); filter: brightness(1.08); }
.button.primary { background: var(--coral); }
.button.secondary { border-color: rgba(255, 255, 255, .34); background: rgba(9, 15, 24, .68); }
.hero-signals { max-width: 830px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 55px 0 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, .22); list-style: none; }
.hero-signals li { min-height: 72px; display: flex; flex-direction: column; justify-content: center; padding-right: 30px; }
.hero-signals li + li { padding-left: 30px; border-left: 1px solid rgba(255, 255, 255, .22); }
.hero-signals strong { font-size: 13px; }
.hero-signals span { margin-top: 5px; color: #9fadc0; font-size: 11px; }

.platform-band, .apps-band, .plans-band { padding: 90px max(28px, calc((100vw - 1280px) / 2)); }
.section-heading { display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 80px; }
.section-heading h2, .product-copy h2, .partner-copy h2, .success-panel h2 { max-width: 760px; margin: 0; font-size: clamp(32px, 4vw, 54px); line-height: 1.08; letter-spacing: 0; }
.section-heading > p, .product-copy > p, .partner-copy > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 55px; background: var(--line); }
.capability-grid article { min-height: 245px; padding: 34px; background: var(--surface); }
.capability-grid article:nth-child(2) { background: #111b29; }
.capability-grid article:nth-child(3) { background: #111a23; }
.capability-number { color: var(--cyan); font-size: 11px; font-weight: 900; }
.capability-grid article:nth-child(2) .capability-number { color: var(--yellow); }
.capability-grid article:nth-child(3) .capability-number { color: var(--green); }
.capability-grid h3 { margin: 62px 0 12px; font-size: 20px; }
.capability-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.product-stage { min-height: 650px; display: grid; grid-template-columns: minmax(340px, .72fr) minmax(560px, 1.28fr); align-items: center; gap: 6vw; padding: 80px max(28px, calc((100vw - 1280px) / 2)); border-block: 1px solid var(--line); background: #0b111b; }
.product-copy > p { margin-top: 23px; }
.platform-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.platform-list span { padding: 8px 11px; border-left: 3px solid var(--cyan); color: #c8d5e4; background: #111c29; font-size: 10px; font-weight: 850; }
.platform-list span:nth-child(2) { border-color: var(--coral); }
.platform-list span:nth-child(3) { border-color: var(--yellow); }
.platform-list span:nth-child(4) { border-color: var(--green); }
.product-visual { min-width: 0; margin: 0; }
.product-visual img { width: 100%; display: block; border: 1px solid #344159; border-radius: 6px; box-shadow: 0 30px 70px rgba(0, 0, 0, .4); }
.product-visual figcaption { margin-top: 10px; color: #708097; font-size: 9px; text-align: right; }

.apps-band { border-bottom: 1px solid var(--line); background: #07101a; }
.apps-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; margin-top: 45px; }
.app-card { min-width: 0; padding: 27px; border: 1px solid var(--line); border-radius: 6px; background: var(--surface); }
.app-card > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.app-platform { display: flex; min-width: 0; align-items: center; gap: 12px; }
.app-platform > span { width: 43px; height: 43px; display: grid; flex: 0 0 auto; place-items: center; border: 1px solid #384960; border-radius: 6px; color: #fff; background: #172639; font-size: 17px; font-weight: 950; }
.app-platform > div { min-width: 0; }
.app-platform small { display: block; color: #71839a; font-size: 8px; font-weight: 900; text-transform: uppercase; }
.app-platform h3 { margin: 5px 0 0; overflow: hidden; font-size: 18px; text-overflow: ellipsis; white-space: nowrap; }
.app-status { flex: 0 0 auto; padding: 6px 8px; border-radius: 5px; color: #8fa0b4; background: #202b3d; font-size: 8px; text-transform: uppercase; }
.app-status.available { color: var(--green); background: rgba(37, 153, 100, .14); }
.app-status.validation { color: var(--yellow); background: rgba(190, 132, 38, .14); }
.app-status.planned { color: #86baf1; background: rgba(52, 108, 172, .15); }
.app-status.paused { color: #ff7e97; background: rgba(206, 49, 84, .15); }
.app-version { display: flex; flex-direction: column; margin-top: 27px; }
.app-version strong { font-size: 21px; }
.app-version span { margin-top: 7px; color: #8496ad; font-size: 10px; }
.app-card ul { min-height: 66px; margin: 22px 0; padding: 17px 0 17px 18px; border-block: 1px solid var(--line); color: #a8b6c7; font-size: 10px; line-height: 1.7; }
.app-card > footer { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0; border: 0; background: transparent; }
.app-card > footer > span:first-child { color: #73859b; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.app-download { min-height: 40px; padding-inline: 15px; font-size: 10px; }
.app-unavailable { color: #7f91a7; font-size: 10px; font-weight: 850; }
.apps-loading { grid-column: 1 / -1; min-height: 160px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--muted); background: var(--surface); font-size: 11px; }

.plans-band { background: #090f18; }
.section-heading.compact { align-items: center; }
.plans-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 45px; }
.plan-card { min-height: 310px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 6px; background: var(--surface); }
.plan-card.featured { border-color: rgba(255, 65, 104, .65); background: #151822; }
.plan-card .plan-label { color: var(--cyan); font-size: 9px; font-weight: 900; letter-spacing: 1.6px; }
.plan-card.featured .plan-label { color: #ff7891; }
.plan-card h3 { margin: 13px 0 0; font-size: 23px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin: 28px 0 0; }
.plan-price strong { font-size: 34px; }
.plan-price span { color: var(--muted); font-size: 10px; }
.plan-details { display: grid; gap: 10px; margin: 25px 0; padding: 19px 0; border-block: 1px solid var(--line); }
.plan-details span { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 11px; }
.plan-details strong { color: #edf3fa; font-size: 11px; }
.plan-card .button { width: 100%; margin-top: auto; }
.plan-loading, .plan-empty { grid-column: 1 / -1; min-height: 180px; display: grid; place-items: center; padding: 30px; border: 1px solid var(--line); color: var(--muted); background: var(--surface); text-align: center; }

.partner-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: 7vw; padding: 100px max(28px, calc((100vw - 1280px) / 2)); background: #0c131e; }
.partner-copy > p { margin-top: 24px; }
.steps { display: grid; gap: 19px; margin: 38px 0 0; padding: 0; list-style: none; }
.steps li { display: flex; align-items: center; gap: 14px; }
.steps li > span { width: 38px; height: 38px; display: grid; flex: 0 0 auto; place-items: center; border: 1px solid #37455c; border-radius: 50%; color: var(--cyan); font-size: 11px; font-weight: 900; }
.steps li div { display: flex; flex-direction: column; }
.steps strong { font-size: 12px; }
.steps small { margin-top: 4px; color: #7f8fa5; font-size: 10px; }
.partner-form, .success-panel { padding: 34px; border: 1px solid var(--line); border-radius: 6px; background: #101a29; }
.form-heading { display: flex; flex-direction: column; margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.form-heading span { color: #ff7790; font-size: 9px; font-weight: 900; letter-spacing: 1.5px; }
.form-heading strong { margin-top: 7px; font-size: 21px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
.form-grid label { display: block; color: #b7c4d5; font-size: 10px; font-weight: 800; }
.form-grid label.wide { grid-column: 1 / -1; }
input, select { width: 100%; height: 48px; margin: 8px 0 17px; padding: 0 13px; border: 1px solid #36455c; border-radius: 5px; outline: none; color: #f4f7fb; background: #080f19; }
input:focus, select:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255, 65, 104, .13); }
.password-field { position: relative; }
.password-field input { padding-right: 82px; }
.password-field button { position: absolute; right: 6px; top: 14px; height: 36px; padding: 0 10px; border: 0; color: #9daec1; background: transparent; font-size: 9px; font-weight: 850; cursor: pointer; }
.submit-button { width: 100%; }
.submit-button:disabled { opacity: .58; cursor: wait; transform: none; }
.form-status { min-height: 17px; margin: 14px 0 0; color: #77889f; font-size: 9px; text-align: center; }
.form-status.error { color: #ff8299; }
.form-status.ok { color: var(--green); }
.success-panel { align-self: center; text-align: center; }
.success-mark { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 24px; border-radius: 50%; color: #071a12; background: var(--green); font-size: 28px; font-weight: 950; }
.success-panel .eyebrow { margin-bottom: 9px; }
.success-panel h2 { font-size: 35px; }
.success-panel > p:not(.eyebrow) { max-width: 510px; margin: 18px auto 27px; color: var(--muted); line-height: 1.65; }

footer { min-height: 140px; display: flex; align-items: center; gap: 34px; padding: 0 max(28px, calc((100vw - 1280px) / 2)); border-top: 1px solid var(--line); color: #7e8ea3; background: #070b12; }
footer p { margin-right: auto; font-size: 10px; }
footer > a:last-child { font-size: 10px; font-weight: 800; text-decoration: none; }
.contact-band{min-height:250px;display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:70px;padding:55px max(28px,calc((100vw - 1280px)/2));border-top:1px solid var(--line);background:#101923}.contact-band h2{margin:0;font-size:clamp(30px,3.7vw,50px);letter-spacing:0}.contact-links{display:grid;grid-template-columns:1fr 1fr;gap:9px}.contact-link{min-height:54px;display:flex;align-items:center;justify-content:space-between;padding:0 15px;border:1px solid #34435a;border-radius:6px;color:#e6edf6;background:#0a111b;font-size:11px;font-weight:850;text-decoration:none}.contact-link::after{content:'↗';color:var(--cyan);font-size:15px}.contact-link:hover{border-color:var(--cyan)}

@media (max-width: 920px) {
  .site-header { gap: 20px; padding-inline: 24px; }
  .site-header nav { display: none; }
  .hero-content { width: calc(100% - 48px); }
  .section-heading, .partner-section { grid-template-columns: 1fr; gap: 30px; }
  .capability-grid, .apps-grid, .plans-grid { grid-template-columns: 1fr 1fr; }
  .capability-grid article:last-child, .plan-empty { grid-column: 1 / -1; }
  .product-stage { grid-template-columns: 1fr; }
  .product-copy { max-width: 720px; }
  .partner-copy { max-width: 700px; }
  .contact-band { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 600px) {
  .site-header { height: 68px; gap: 9px; padding-inline: 14px; }
  .brand { font-size: 25px; }
  .brand small { font-size: 8px; }
  .language-switcher { margin-left: auto; }
  .language-switcher button { width: 28px; }
  .header-login { min-height: 36px; padding-inline: 9px; font-size: 9px; text-align: center; }
  .hero { min-height: 760px; background-image: url('/parceiros/assets/player-home.png'); background-position: 32% center; }
  .hero-shade { background: rgba(4, 8, 14, .82); }
  .hero-content { width: calc(100% - 36px); margin-top: 55px; padding-top: 80px; }
  .hero h1 { font-size: 66px; }
  .hero-lead { font-size: 20px; }
  .hero-actions { display: grid; }
  .hero-signals { grid-template-columns: 1fr; margin-top: 38px; }
  .hero-signals li { min-height: 59px; padding: 0; }
  .hero-signals li + li { padding-left: 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
  .platform-band, .apps-band, .plans-band, .partner-section, .product-stage { padding: 68px 18px; }
  .section-heading { gap: 20px; }
  .section-heading h2, .product-copy h2, .partner-copy h2 { font-size: 34px; }
  .capability-grid, .apps-grid, .plans-grid { grid-template-columns: 1fr; }
  .capability-grid article:last-child { grid-column: auto; }
  .capability-grid article { min-height: 210px; padding: 26px; }
  .capability-grid h3 { margin-top: 45px; }
  .product-stage { min-height: 0; gap: 42px; }
  .product-visual { width: calc(100% + 18px); }
  .product-visual img { border-radius: 4px 0 0 4px; }
  .partner-section { gap: 46px; }
  .partner-form, .success-panel { padding: 25px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.wide { grid-column: auto; }
  footer { align-items: flex-start; flex-direction: column; gap: 13px; padding-block: 34px; }
  footer p { margin: 0; }
  .contact-band { padding: 52px 18px; }
  .contact-links { grid-template-columns: 1fr; }
  .app-card { padding: 22px 18px; }
  .app-card > header, .app-card > footer { align-items: stretch; flex-direction: column; }
  .app-status { width: max-content; }
  .app-download { width: 100%; }
}
