﻿@font-face {
  font-family: "HK Grotesk";
  src: url("../fonts/hk-grotesk/HKGrotesk-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HK Grotesk";
  src: url("../fonts/hk-grotesk/HKGrotesk-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HK Grotesk";
  src: url("../fonts/hk-grotesk/HKGrotesk-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HK Grotesk";
  src: url("fonts/hk-grotesk/HKGrotesk-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
    --teal: #5BBAB2;
    --amber: #FEB501;
    --gray: #A9A9A9;
    --ink: #0B0B0B;
    --paper: #FFFFFF;
    /* 16:9 “slide” size (igual ao PDF) */
    --page-w: 13.333in;
    --page-h: 7.5in;
    --sidebar-w: 28%;
    --pad: 0.70in;
    --line: 3px;
    --bar-h: 86px;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: "HK Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--ink);
    background: #111;
}

.deck {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 14px;
    align-items: center;
}

/* PAGE BASE */
.page {
    width: var(--page-w);
    height: var(--page-h);
    background: var(--paper);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,.35);
}

/* TYPO */
.t1 {
    margin: 0;
    font-weight: 800;
    
    font-size: 68px;
    line-height: 1.00;
}

.t2 {
    margin: 0;
    font-weight: 800;
    
    font-size: 68px;
    line-height: 1.00;
    
    text-align: center;
}

.subtitle {
    margin: 10px 0 0;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 500;
}

.lead {
    font-size: 28px;
    line-height: 1.25;
    margin: 0;
}

.lead2 {
    font-size: 24px;
    line-height: 1.25;
    margin: 0;
}

.h2 {
    font-size: 34px;
    font-weight: 500;
    margin: 0 0 6px;
}

.bigBold {
    font-weight: 800;
}

.teal {
    color: var(--teal);
}

.tiny {
    font-size: 14px;
    opacity: .85;
}

.mono {
    font-variant-numeric: tabular-nums;
}

/* LOGO */
.mvo {
    width: 300px;
    height: auto;
}

.sidebar .mvo {
    width: 270px;
    transform: translateY(-20px);
}

.mvo--xl {
    width: 480px;
}

.mvo--white {
    filter: none;
}

/* PAGE 1 */
.page--capa {
  display: grid;
  grid-template-columns: 30% 70%;
  padding: var(--pad);
  align-items: stretch;
}

.capa__content {
  display: flex;
  flex-direction: column;
  justify-content: center;   /* centraliza vertical */
  align-items: center;       /* centraliza horizontal o bloco interno */
  padding-top: 0;            /* remove o "empurrão" para baixo */
}

.capa__center {
  width: 100%;
  max-width: 6.4in;          /* controla a “coluna” central */
  margin: 0 auto;
  text-align: center;        /* centraliza todo o texto */
}

/* opcional: se quiser os textos mais “respirados” na capa */
.capa__mid { margin-top: .65in; }
.capa__meta { margin-top: .45in; }

.capa__logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
}

.capa__mid {
    margin-top: .85in;
}

.capa__meta {
    margin-top: .65in;
}

/* PAGES WITH SIDEBAR */
.page--sidebar {
    display: grid;
    grid-template-columns: var(--sidebar-w) calc(100% - var(--sidebar-w));
}

.sidebar {
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    padding: var(--pad);
}

/* PAGE 2 */
.grid2 {
    margin-top: .25in;
    display: grid;
    grid-template-columns: 62% 38%;
    gap: .35in;
}

.steps {
    padding-right: 0px;
}

.step {
    margin: 10px 10px;
}

.step__title {
    font-size: 24px;
    font-weight: 400;
}

.step__text {
    font-size: 18px;
    line-height: 1.3;
    margin-left: 50px;
}

.sidecards {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: .25in;
}

.pieCard {
    display: grid;
    gap: 10px;
    justify-items: center;
    padding: 14px;
}

.pie {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(36deg);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: conic-gradient( var(--teal) 0 40%, var(--amber) 40% 80%, var(--gray) 80% 100% );
    outline: 12px solid #fff;
}

.pieLegend {
    font-size: 14px;
    display: grid;
    gap: 6px;
    width: 260px;
}

.pieLabel {
  position: absolute;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  transform: translate(-50%, -50%) rotate(-36deg);
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

/* Instalação – topo-direita */
.pieLabel--teal {
  top: 100px;
  left: 190px;
}

/* Inversor – baixo-direita */
.pieLabel--amber {
  top: 180px;
  left: 90px;
}

/* Painéis – esquerda */
.pieLabel--gray {
  top: 60px;
  left: 80px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.dot--teal {
    background: var(--teal);
}

.dot--amber {
    background: var(--amber);
}

.dot--gray {
    background: var(--gray);
}

.illusCard {
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(91,186,178,.25), rgba(254,181,1,.20));
    height: 210px;
}

.illusTitle {
    font-weight: 700;
    margin-bottom: 6px;
}

.illusHint {
    font-size: 14px;
    opacity: .8;
}

/* PAGE 3 */
.page--simple {
    padding: var(--pad);
}

.compare2 {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.col__head {
    background: var(--teal);
    color: #fff;
    padding: 16px 18px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

.bullets {
    margin: 18px 0 0;
    padding-left: 40px;
    padding-right: 20px;
    font-size: 18px;
    line-height: 1.30;
}

.bullets li {
  padding-bottom: 8px;
  line-height: 1.2;
}


.wm {
    position: relative;
}

.watermark__mvo {
  position: absolute;
  inset: 90px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 0;
}

.compare2 > .col {
  position: relative;
  z-index: 1;
}

.wm {
    max-width: 600px;
    opacity: 0.2;          /* CONTROLE AQUI */
    user-select: none;
}

/* PAGE 4 */
.about3 {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 30% 34% 36%;
    gap: 2px;
    align-items: center;
}

.about__left {
    padding-left: 20px;
    padding-top: 50px;
}

.about__mid {
    display: flex;
    justify-content: center;
}

.about__right {
    padding-right: .2in;
}

.kicker {
    font-size: 26px;
    line-height: 1.35;
    font-weight: 300;
    text-align: right;
}

.kicker1 {
    padding-right: 30px;
}

.kicker2 {
    padding-right: 120px;
}

.spacer {
    height: 50px;
}

.arrows {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 22px;
    line-height: 1.5;
}

    .arrows li::before {
        content: "→ ";
        color: var(--teal);
        font-weight: 700;
    }

/* PAGE 5 */
.projects {
    margin-top: 10px;
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 22px;
    
}

.proj {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 40px;
    align-items: center;
}

.proj--b {
    grid-template-columns: 30% 70%;
    text-align: right;
    max-width: 800px;
}

.proj__img {
    width: 80%;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
}

.proj__txt {
    font-size: 22px;
    line-height: 1.35;
}

    .proj__txt.right {
        text-align: right;
    }

.proj__title {
    font-weight: 600;
    margin-bottom: 4px;
}

/* PAGE 6 */
.bigList {
    margin: 26px 0 0;
    padding-left: 28px;
    padding-top: 10px;
}

    .bigList li {
        margin: 20px 0;
    }

.bigList__title {
    font-size: 30px;
    font-weight: 500;
}

.bigList__sub {
    margin-top: 6px;
    font-size: 22px;
    line-height: 1.35;
    opacity: .95;
    margin-left: 8px;
}

    .bigList__sub::before {
        content: "◦ ";
        margin-right: 6px;
    }

.bigList li::marker {
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
}


/* PAGE 7 */
.premissas {
    margin-top: 1.1in;
    width: 88%;
    margin-left: .8in;
    display: grid;
    gap: 22px;
}

.prem {
    display: grid;
    grid-template-columns: 44% 56%;
    align-items: end;
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 3px solid --teal;
}

.prem__label {
    font-size: 22px;
    font-weight: 700;
}

.prem__value {
    font-size: 22px;
    text-align: left;
}

/* PAGE 8 (table-like) */
.tableLike {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 5px;
}

.tealBox {
    background: var(--teal);
    color: #fff;
    text-align: center;
    font-weight: 700;
    padding: 12px 10px;
    font-size: 18px;
}

.tealRow {
    background: var(--teal);
    color: #fff;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.tl__cell {
    border-bottom: 2px solid var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

    .tl__cell.center {
        justify-content: center;
    }

.check {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    background:var(--teal);
    color: #fff;
    border-radius: 4px;
    font-weight: 900;
}

/* PAGE 9 / 11 cards */
.tealBox2 {
    background: var(--teal);
    color: #fff;
    text-align: center;
    font-weight: 800;
    padding: 18px 10px;
    font-size: 20px;
}

.cards3 {
    margin-top: .35in;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.cardTop {
    display: flex;
    align-items: center;
    justify-content: center;

}

.cardBody {
    padding: 16px 12px;
    font-size: 18px;
    line-height: 1.35;
    text-align: left;
}

    .cardBody.center {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

    }

.divider {
    margin: 14px 0 10px;
}

.amberLine {
    height: 0;
    border-top: 4px solid var(--amber);
    opacity: .9;
}

.footnote {
    position: absolute;
    left: calc(var(--sidebar-w) + var(--pad));
    bottom: .35in;
}

/* PAGE 10 financial grid */
.fin {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 29% 23% 23% 23%;
    gap: 5px;
    align-items: stretch;
}

.fin__label {
    padding: 14px 10px;
    font-size: 20px;
    line-height: 1.25;
    display: flex;
    align-items: center;
}

.fin__cell {
    padding: 14px 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fin__head {
}

.fin__line {
    height: 0;
    border-top: 4px solid var(--amber);
    grid-column: 1 / -1;
    opacity: .9;
    margin-top: -6px;
}

/* PAGE 11 */
.inv3 {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.inv {
    padding: 10px 8px;
    font-size: 20px;
    line-height: 1.35;
}

.center {
    text-align: center;
    justify-content: center;
}

/* PAGE 12 */
.page--final {
    display: grid;
    grid-template-columns: 45% 55%;
    padding: var(--pad);
    align-items: center;
}

.final__logo {
    display: flex;
    justify-content: center;
}

.final__text {
    text-align: center;
    padding-left: .15in;
}

.final__text .t1{
    font-size: 100px;
}

.final__name {
    font-size: 40px;
    font-weight: 800;
    margin-top: 8px;
}

.final__role, .final__crea {
    font-size: 28px;
    margin-top: 6px;
}

.final__company {
    font-size: 44px;
    font-weight: 800;
    margin-top: 60px;
}

.final__cnpj, .final__crea2 {
    font-size: 30px;
    margin-top: 6px;
}

/* PRINT (exportar via PDF) */
@media print {
    body {
        background: #fff;
    }

    .deck {
        padding: 0;
        gap: 0;
    }

    .page {
        box-shadow: none;
        margin: 0;
        break-after: page;
        page-break-after: always;
    }

    @page {
        size: var(--page-w) var(--page-h);
        margin: 0;
    }
}

/* ===== Formulário de variáveis (mobile-first) ===== */
/* ===== Formulário de variáveis (mobile-first) — TEMA CLARO ===== */
body.varsForm{
  --bg: #f5f7fb;
  --card: #ffffff;
  --muted: #475569;
  --text: #0b0b0b;
  --line: rgba(11,11,11,.10);
  --accent: var(--teal);
  --danger: #ff4d4f;
  --radius: 14px;

  margin: 0;
  font-family: "HK Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 900px at 20% -10%, rgba(91,186,178,.18), transparent 60%),
              radial-gradient(900px 700px at 110% 10%, rgba(254,181,1,.14), transparent 55%),
              var(--bg);
  color: var(--text);
  padding-bottom: calc(var(--bar-h) + 16px);
}

#varsForm input,
#varsForm select,
#varsForm textarea{
  scroll-margin-bottom: calc(var(--bar-h) + 16px);
}

body.varsForm *{ box-sizing: border-box; }

body.varsForm header{
  padding: 18px 16px 10px;
}

body.varsForm .title{
  font-size: 34px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 6px;
  letter-spacing: -.02em;
}

body.varsForm main{
  padding: 12px 16px 96px;
  max-width: 560px;
  margin: 0 auto;
}

body.varsForm .card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  margin: 12px 0;
  box-shadow: 0 1px 2px rgba(15,23,42,.06);
}

body.varsForm .card h2{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}

body.varsForm .grid{
  display: grid;
  gap: 10px;
}

body.varsForm .field{
  padding: 10px;
  border: 1px solid rgba(11,11,11,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.80);
  position: relative;
}

body.varsForm .field select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 42px;
}

body.varsForm .field .arrow{
  position: absolute;
  right: 22px;
  bottom: 22px;
  pointer-events: none;
  color: rgba(11,11,11,.55);
  font-size: 14px;
}


body.varsForm label{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 650;
  font-size: 15px;
}

body.varsForm .meta{
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}

body.varsForm input,
body.varsForm select{
  width: 100%;
  border: 1px solid rgba(11,11,11,.12);
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 15px;
  outline: none;
}

body.varsForm input::placeholder{
  color: rgba(11,11,11,.35);
}

body.varsForm input:focus,
body.varsForm select:focus{
  border-color: rgba(91,186,178,.75);
  box-shadow: 0 0 0 4px rgba(91,186,178,.18);
}

body.varsForm input[readonly]{
  opacity: .85;
  background: rgba(2,6,23,.04);
}

body.varsForm .help,
body.varsForm .note{
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}

body.varsForm .bar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  background: rgba(245,247,251,.85);
  border-top: 1px solid rgba(11,11,11,.10);
  backdrop-filter: blur(10px);
}

body.varsForm .barInner{
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

body.varsForm button{
  border: 0;
  border-radius: 14px;
  padding: 12px 12px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}

body.varsForm .primary{
  background: var(--teal);
  color: #06211f;
}

body.varsForm .ghost{
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(11,11,11,.12);
}

@media (min-width: 900px){
  body.varsForm main{ max-width: 920px; }
  body.varsForm .barInner{ max-width: 920px; }
  body.varsForm .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.varsForm section[data-section="calc"] .grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}


/* Chrome, Edge, Safari */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* ===== Formulário — Tema claro ===== */
body.varsForm.varsForm--light{
  --bg: #f5f7fb;
  --card: #ffffff;
  --text: #0b0b0b;
  --muted: #475569;
  --line: rgba(11,11,11,.10);

  background:
    radial-gradient(1200px 900px at 20% -10%, rgba(91,186,178,.18), transparent 60%),
    radial-gradient(900px 700px at 110% 10%, rgba(254,181,1,.14), transparent 55%),
    var(--bg);
}
/* =========================================================
   DASHBOARD (propostas/index.php)
   ========================================================= */
body.dashboard{
  background: #f5f7fb;
  color: var(--ink);
}

body.dashboard .wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 14px 60px;
}

body.dashboard .top{
  display: flex;
  gap: 12px;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}

body.dashboard h1{
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}

body.dashboard .sub{
  margin-top: 6px;
  color: #475569;
  font-size: 13px;
  line-height: 1.35;
}

body.dashboard .pill{
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(11,11,11,.10);
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

body.dashboard .grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 14px;
}

body.dashboard .card{
  background: #fff;
  border: 1px solid rgba(11,11,11,.10);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 1px 2px rgba(15,23,42,.06);
}

body.dashboard .card h2{
  margin: 0 0 10px;
  font-size: 13px;
  color: #64748b;
  font-weight: 800;
}

body.dashboard .card a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--teal);
  color: #06211f;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,.06);
  font-weight: 800;
}

body.dashboard .card a:hover{
  filter: brightness(.98);
}

body.dashboard .table{
  margin-top: 14px;
  background: #fff;
  border: 1px solid rgba(11,11,11,.10);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15,23,42,.06);
}

body.dashboard .tableScroll{
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

body.dashboard table{
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

body.dashboard th,
body.dashboard td{
  padding: 12px;
  border-bottom: 1px solid rgba(11,11,11,.08);
  text-align: left;
  font-size: 14px;
  white-space: nowrap;
}

body.dashboard th{
  background: rgba(91,186,178,.12);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .3px;
  text-transform: uppercase;
}

body.dashboard tr:last-child td{ border-bottom: 0; }

body.dashboard .actions a{
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(11,11,11,.12);
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
}

body.dashboard .actions a:hover{
  border-color: rgba(91,186,178,.55);
  box-shadow: 0 0 0 4px rgba(91,186,178,.18);
}

@media (max-width: 900px){
  body.dashboard .grid{ grid-template-columns: 1fr; }
  body.dashboard .wrap{ padding: 18px 12px 50px; }
  body.dashboard table{ min-width: 680px; }
}

.prem {
    display: grid;
    grid-template-columns: 60% 40%;
    padding: 16px 0;
    border-bottom: 2px solid var(--amber);
    align-items: center;
}

.prem__label {
    font-weight: 600;
}

.prem__value {
    text-align: right;
    padding-right: 20px;
}

