:root {
  --navy: #061821;
  --navy-2: #092633;
  --navy-3: #0c3543;
  --green: #9afc46;
  --green-2: #6fe62c;
  --cyan: #38d7d1;
  --blue: #3d83ff;
  --white: #f8fcfb;
  --ink: #10242b;
  --muted: #667980;
  --line: #dce8e8;
  --surface: #f2f8f6;
  --shadow: 0 24px 70px rgba(4, 31, 39, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(5, 23, 32, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #071b20;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 28px rgba(154,252,70,.2);
}

.brand strong,
.brand small {
  display: block;
  color: white;
}

.brand strong {
  font-size: 16px;
  letter-spacing: .01em;
}

.brand small {
  font-size: 12px;
  opacity: .64;
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 600;
}

.nav nav a:hover {
  color: white;
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(154,252,70,.45);
  border-radius: 999px;
  color: var(--green) !important;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 75% 40%, rgba(39,201,181,.13), transparent 28%),
    linear-gradient(135deg, #04141c 0%, #072633 55%, #06323a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 820px;
  padding-top: 135px;
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: 1.05fr .85fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #168f79;
}

.hero h1 {
  max-width: 720px;
  margin: 20px 0 24px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 780;
}

.hero h1 em,
.simulator-copy h2 em {
  display: block;
  color: var(--green);
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  color: rgba(255,255,255,.72);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  border: 0;
  min-height: 54px;
  padding: 0 23px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #071b20;
  background: linear-gradient(135deg, var(--green), #78ef3b);
  box-shadow: 0 15px 36px rgba(118,239,59,.2);
}

.btn-ghost {
  color: white;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
}

.btn-full {
  width: 100%;
}

.hero-trust {
  margin-top: 50px;
  display: flex;
  gap: 42px;
}

.hero-trust div {
  padding-left: 15px;
  border-left: 2px solid rgba(154,252,70,.32);
}

.hero-trust strong,
.hero-trust span {
  display: block;
}

.hero-trust strong {
  font-size: 18px;
}

.hero-trust span {
  margin-top: 4px;
  color: rgba(255,255,255,.5);
  font-size: 12px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.energy-card {
  position: relative;
  width: min(100%, 430px);
  min-height: 510px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
  box-shadow:
    0 40px 100px rgba(0,0,0,.28),
    inset 0 1px rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}

.card-top {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.5);
  font-size: 10px;
  letter-spacing: .12em;
  font-weight: 800;
}

.live-dot {
  color: var(--green);
}

.bill-label {
  margin-top: 55px;
  color: rgba(255,255,255,.52);
  font-size: 13px;
}

.bill-value {
  margin-top: 5px;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.mini-chart {
  height: 120px;
  margin: 35px 0;
  display: flex;
  gap: 8px;
  align-items: end;
}

.mini-chart span {
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(to top, rgba(56,215,209,.2), var(--green));
  box-shadow: 0 0 18px rgba(154,252,70,.1);
}

.energy-highlight {
  padding-top: 23px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.energy-highlight span,
.energy-highlight small {
  display: block;
  color: rgba(255,255,255,.52);
}

.energy-highlight strong {
  display: block;
  margin: 5px 0;
  color: var(--green);
  font-size: 31px;
}

.pulse-ring {
  position: absolute;
  width: 190px;
  height: 190px;
  right: -90px;
  bottom: -80px;
  border: 1px solid rgba(154,252,70,.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 35px rgba(154,252,70,.025),
    0 0 0 70px rgba(154,252,70,.015);
}

.section {
  padding: 110px 0;
}

.intro {
  background:
    radial-gradient(circle at 10% 0, rgba(56,215,209,.08), transparent 25%),
    white;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 55px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.results-head h2,
.simulator-copy h2,
.conversion-copy h2 {
  margin: 14px 0;
  font-size: clamp(34px, 4.5vw, 55px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.section-heading p,
.simulator-copy > p,
.conversion-copy > p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  position: relative;
  min-height: 270px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  transition: .25s;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.step-card.featured {
  color: white;
  border-color: transparent;
  background: linear-gradient(145deg, var(--navy-2), var(--navy-3));
}

.step-number {
  position: absolute;
  top: 24px;
  right: 25px;
  color: #b6c7c8;
  font-size: 12px;
  font-weight: 800;
}

.step-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 35px;
  border-radius: 16px;
  color: #0d413d;
  background: linear-gradient(135deg, #e5ffd0, #d9f8f4);
  font-weight: 900;
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.step-card.featured p {
  color: rgba(255,255,255,.62);
}

.simulator-section {
  padding: 110px 0;
  color: white;
  background:
    radial-gradient(circle at 85% 50%, rgba(154,252,70,.09), transparent 25%),
    linear-gradient(135deg, #061821, #092e38);
}

.simulator-grid {
  display: grid;
  grid-template-columns: .9fr .8fr;
  gap: 100px;
  align-items: center;
}

.simulator-copy h2 {
  margin-top: 18px;
}

.simulator-copy > p {
  color: rgba(255,255,255,.6);
}

.assumptions {
  margin: 35px 0 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.assumptions div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}

.assumptions span,
.assumptions strong {
  display: block;
}

.assumptions span {
  min-height: 34px;
  color: rgba(255,255,255,.45);
  font-size: 11px;
}

.assumptions strong {
  margin-top: 6px;
  color: var(--green);
}

.disclaimer {
  font-size: 12px !important;
}

.calculator-card {
  padding: 35px;
  color: var(--ink);
  border-radius: 28px;
  background: #f9fffc;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.calculator-card > label {
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 800;
}

.money-input {
  height: 82px;
  display: flex;
  align-items: center;
  border: 2px solid #dbe8e5;
  border-radius: 18px;
  background: white;
  overflow: hidden;
}

.money-input span {
  padding-left: 20px;
  color: #73908b;
  font-size: 18px;
  font-weight: 700;
}

.money-input input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0 20px 0 10px;
  color: var(--ink);
  background: transparent;
  font-size: 36px;
  font-weight: 800;
}

.range {
  width: 100%;
  margin: 30px 0 8px;
  accent-color: #59c933;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  color: #8a9b98;
  font-size: 11px;
}

.privacy-note {
  margin-top: 17px;
  color: #71827e;
  font-size: 11px;
  text-align: center;
}

.results-section {
  padding: 110px 0;
  background: var(--surface);
}

.results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}

.results-head h2 {
  max-width: 650px;
  margin-bottom: 0;
}

.result-main {
  min-width: 260px;
  padding: 20px 24px;
  border-left: 3px solid var(--green-2);
}

.result-main span,
.result-main strong {
  display: block;
}

.result-main span {
  color: var(--muted);
  font-size: 12px;
}

.result-main strong {
  margin-top: 5px;
  color: #087a65;
  font-size: 29px;
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.year-card {
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.year-card span,
.year-card strong {
  display: block;
}

.year-card span {
  color: var(--muted);
  font-size: 11px;
}

.year-card strong {
  margin-top: 7px;
  font-size: 16px;
}

.chart-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
}

.chart-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.chart-title strong,
.chart-title span {
  display: block;
}

.chart-title span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.chart-legend {
  color: var(--muted);
  font-size: 11px;
}

.chart-legend i {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--green-2);
}

.chart {
  height: 280px;
  margin-top: 30px;
  display: flex;
  align-items: end;
  gap: 3px;
  border-bottom: 1px solid #dce6e4;
  background:
    linear-gradient(to top, rgba(10,85,77,.04) 1px, transparent 1px);
  background-size: 100% 25%;
}

.chart-bar {
  position: relative;
  flex: 1;
  min-height: 3px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, #20a37d, var(--green));
  opacity: .78;
  transition: height .35s ease;
}

.chart-bar:hover {
  opacity: 1;
}

.chart-bar:hover::after {
  content: attr(data-label);
  position: absolute;
  bottom: calc(100% + 7px);
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 6px 8px;
  color: white;
  border-radius: 6px;
  background: var(--navy);
  font-size: 10px;
}

.possibilities {
  padding: 110px 0;
}

.goods-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.good-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  transition: .25s;
}

.good-card.reached {
  border-color: #a8df9c;
  box-shadow: 0 15px 40px rgba(29,137,104,.09);
}

.good-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.good-visual {
  height: 180px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(154,252,70,.25), transparent 35%),
    linear-gradient(145deg, #08232d, #0b4650);
}

.good-visual::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(154,252,70,.2);
  border-radius: 50%;
}

.phone-shape {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 108px;
  border: 4px solid #dfffd0;
  border-radius: 13px;
  background: linear-gradient(145deg, #1c5e65, #061d25);
  box-shadow: 0 15px 30px rgba(0,0,0,.35);
}

.phone-shape span {
  position: absolute;
  width: 17px;
  height: 3px;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  background: #dfffd0;
}

.laptop-shape {
  position: relative;
  z-index: 2;
  width: 120px;
  height: 75px;
  border: 4px solid #dfffd0;
  border-radius: 7px;
  background: linear-gradient(145deg, #1a646d, #061d25);
}

.laptop-shape::after {
  content: "";
  position: absolute;
  width: 145px;
  height: 7px;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  border-radius: 0 0 12px 12px;
  background: #dfffd0;
}

.tv-shape {
  position: relative;
  z-index: 2;
  width: 130px;
  height: 80px;
  border: 5px solid #dfffd0;
  border-radius: 7px;
  background: linear-gradient(145deg, #126375, #071b24);
}

.tv-shape::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 6px;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  border-radius: 8px;
  background: #dfffd0;
}

.moto-shape {
  position: relative;
  z-index: 2;
  color: #dfffd0;
  font-size: 45px;
  letter-spacing: -9px;
  transform: scaleX(1.4);
}

.car-shape {
  position: relative;
  z-index: 2;
  width: 135px;
  height: 48px;
  margin-top: 22px;
  border-radius: 35px 40px 15px 15px;
  background: #dfffd0;
}

.car-shape::before,
.car-shape::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  bottom: -12px;
  border: 6px solid #dfffd0;
  border-radius: 50%;
  background: #092a34;
}

.car-shape::before {
  left: 18px;
}

.car-shape::after {
  right: 18px;
}

.good-copy {
  padding: 20px;
}

.good-tag {
  color: #168f79;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
}

.good-copy h3 {
  margin: 7px 0 9px;
  font-size: 18px;
}

.good-status {
  min-height: 55px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.reference-note {
  margin-top: 20px;
  color: #8b9996;
  font-size: 11px;
  text-align: center;
}

.conversion-section {
  padding: 100px 0;
  background: #061821;
}

.conversion-card {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 80px;
  align-items: center;
  padding: 65px;
  color: white;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 20%, rgba(56,215,209,.1), transparent 30%),
    linear-gradient(135deg, #092b36, #071b24);
}

.conversion-copy > p {
  color: rgba(255,255,255,.58);
}

.conversion-benefits {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
}

.conversion-benefits span::first-letter {
  color: var(--green);
}

.consultant-link {
  display: inline-block;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.lead-form {
  padding: 30px;
  color: var(--ink);
  border-radius: 24px;
  background: white;
}

.form-title {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-title span,
.form-title strong {
  display: block;
}

.form-title span {
  color: #77908c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.form-title strong {
  margin-top: 5px;
  color: #0a8069;
  font-size: 21px;
}

.lead-form > label:not(.consent) {
  display: block;
  margin-bottom: 13px;
  color: #536662;
  font-size: 11px;
  font-weight: 800;
}

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"] {
  width: 100%;
  height: 47px;
  margin-top: 6px;
  padding: 0 13px;
  outline: 0;
  border: 1px solid #d8e4e1;
  border-radius: 10px;
  color: var(--ink);
  background: #fbfdfc;
}

.lead-form input:focus {
  border-color: #59c933;
  box-shadow: 0 0 0 3px rgba(89,201,51,.1);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.consent {
  margin: 17px 0;
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #71827e;
  font-size: 10px;
  line-height: 1.45;
}

.consent input {
  margin-top: 2px;
  accent-color: #48b92c;
}

.form-message {
  min-height: 18px;
  margin-top: 12px;
  font-size: 11px;
  text-align: center;
}

.form-message.error {
  color: #bd2c2c;
}

.form-message.success {
  color: #168f60;
}

footer {
  padding: 40px 0 100px;
  color: white;
  background: #041219;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-content p {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.42);
  font-size: 10px;
  line-height: 1.6;
  text-align: right;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  min-height: 52px;
  padding: 0 19px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #071b20;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 15px 40px rgba(4,20,25,.25);
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .hero-grid,
  .simulator-grid,
  .conversion-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 35px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .simulator-grid,
  .conversion-card {
    gap: 45px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .milestone-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .goods-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .goods-grid .good-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    min-height: 68px;
  }

  .nav nav > a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 9px 13px;
    font-size: 11px;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 125px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-trust {
    gap: 15px;
    justify-content: space-between;
  }

  .hero-trust div {
    padding-left: 9px;
  }

  .hero-trust strong {
    font-size: 14px;
  }

  .hero-trust span {
    font-size: 9px;
  }

  .energy-card {
    min-height: 450px;
  }

  .section,
  .simulator-section,
  .results-section,
  .possibilities,
  .conversion-section {
    padding: 78px 0;
  }

  .section-heading h2,
  .results-head h2,
  .simulator-copy h2,
  .conversion-copy h2 {
    font-size: 36px;
  }

  .assumptions {
    grid-template-columns: 1fr;
  }

  .assumptions span {
    min-height: auto;
  }

  .results-head {
    align-items: stretch;
    flex-direction: column;
  }

  .result-main {
    border-left: 0;
    border-top: 3px solid var(--green-2);
  }

  .milestone-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .chart {
    height: 220px;
  }

  .goods-grid {
    grid-template-columns: 1fr;
  }

  .goods-grid .good-card:last-child {
    grid-column: auto;
  }

  .conversion-card {
    width: min(100% - 20px, 1160px);
    padding: 34px 20px;
  }

  .lead-form {
    padding: 22px 17px;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-content p {
    text-align: left;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
  }
}

/* =========================================================
   ENERGIA POR ASSINATURA — VISUAL V2
   Premium Energy / Financial Technology
   ========================================================= */

:root {
  --v2-night: #03151d;
  --v2-night-soft: #072630;
  --v2-emerald: #13b887;
  --v2-lime: #a6ff4d;
  --v2-cyan: #48e5d6;
  --v2-paper: #f4faf7;
  --v2-white: #ffffff;
  --v2-ink: #09242b;
  --v2-muted: #647b7d;
  --v2-border: rgba(8, 58, 64, .10);
  --v2-shadow: 0 28px 80px rgba(2, 31, 38, .12);
}

/* ---------- acabamento global ---------- */

html {
  scroll-behavior: smooth;
}

body {
  background: var(--v2-paper);
}

::selection {
  color: #04191e;
  background: var(--v2-lime);
}

.section,
.simulator-section,
.results-section,
.possibilities,
.conversion-section {
  position: relative;
  overflow: hidden;
}

/* ---------- navegação ---------- */

.topbar {
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(3, 21, 29, .78);
  box-shadow: 0 8px 35px rgba(0,0,0,.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand-icon {
  box-shadow: 0 0 28px rgba(166,255,77,.18);
}

.nav-cta {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(154,252,70,.15);
}

.nav-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255,255,255,.30) 45%,
    transparent 65%
  );
  transform: translateX(-130%);
  transition: transform .55s ease;
}

.nav-cta:hover::after {
  transform: translateX(130%);
}

/* ---------- hero ---------- */

.hero {
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 30%, rgba(72,229,214,.15), transparent 22%),
    radial-gradient(circle at 20% 15%, rgba(166,255,77,.10), transparent 25%),
    linear-gradient(135deg, #021219 0%, #052833 55%, #063b3d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  right: -210px;
  top: 10%;
  border: 1px solid rgba(166,255,77,.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(166,255,77,.018),
    0 0 0 160px rgba(72,229,214,.015);
}

.hero h1 {
  max-width: 760px;
  letter-spacing: -.055em;
  line-height: .98;
  text-wrap: balance;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--v2-lime);
  font-style: normal;
  text-shadow: 0 0 36px rgba(166,255,77,.18);
}

.hero-lead {
  max-width: 620px;
  color: rgba(239,255,251,.67);
  line-height: 1.72;
}

.hero-actions {
  gap: 12px;
}

.btn {
  min-height: 54px;
  border-radius: 14px;
  letter-spacing: -.01em;
}

.btn-primary {
  color: #06211f;
  background:
    linear-gradient(135deg, #b5ff5d 0%, #83f340 48%, #53d997 100%);
  box-shadow:
    0 14px 34px rgba(101,231,70,.18),
    inset 0 1px rgba(255,255,255,.42);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 19px 42px rgba(101,231,70,.24),
    inset 0 1px rgba(255,255,255,.42);
}

.hero-trust {
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.hero-trust div {
  border-left-color: rgba(166,255,77,.38);
}

.hero-trust strong {
  color: #f6fffb;
}

/* ---------- cartão hero ---------- */

.energy-card {
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 80% 10%, rgba(166,255,77,.13), transparent 28%),
    linear-gradient(145deg, rgba(11,61,70,.96), rgba(3,24,32,.98));
  box-shadow:
    0 45px 100px rgba(0,0,0,.32),
    inset 0 1px rgba(255,255,255,.08);
  transform: perspective(1100px) rotateY(-3deg) rotateX(1deg);
  transition: transform .4s ease, box-shadow .4s ease;
}

.energy-card:hover {
  transform: perspective(1100px) rotateY(0) rotateX(0) translateY(-5px);
  box-shadow:
    0 55px 120px rgba(0,0,0,.36),
    inset 0 1px rgba(255,255,255,.10);
}

.bill-value {
  letter-spacing: -.06em;
}

.saving-box {
  border: 1px solid rgba(166,255,77,.17);
  background:
    linear-gradient(135deg, rgba(166,255,77,.12), rgba(72,229,214,.07));
}

/* ---------- títulos / seções ---------- */

.eyebrow {
  letter-spacing: .16em;
}

.section-heading h2,
.simulator-copy h2,
.results-head h2,
.conversion-copy h2 {
  letter-spacing: -.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.intro {
  background:
    radial-gradient(circle at 8% 80%, rgba(19,184,135,.07), transparent 22%),
    #fff;
}

.steps {
  gap: 16px;
}

.step {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--v2-border);
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(7,50,54,.045);
  transition: transform .3s ease, box-shadow .3s ease;
}

.step::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -55px;
  bottom: -55px;
  border-radius: 50%;
  background: rgba(166,255,77,.07);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--v2-shadow);
}

/* ---------- simulador ---------- */

.simulator-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(72,229,214,.10), transparent 25%),
    linear-gradient(135deg, #041820, #07303a);
}

.simulator-section::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  left: -260px;
  bottom: -300px;
  border: 1px solid rgba(166,255,77,.10);
  border-radius: 50%;
}

.simulator-copy h2 {
  color: #f7fffc;
}

.simulator-copy h2 em {
  color: var(--v2-lime);
}

.simulator-copy > p {
  color: rgba(237,255,250,.60);
}

.assumptions span {
  border-color: rgba(255,255,255,.09);
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(8px);
}

.calculator-card {
  border: 1px solid rgba(255,255,255,.50);
  border-radius: 28px;
  box-shadow:
    0 38px 90px rgba(0,0,0,.24),
    0 0 0 8px rgba(255,255,255,.025);
}

.money-input {
  border-color: rgba(10,84,80,.13);
  box-shadow: inset 0 2px 8px rgba(4,40,40,.025);
}

.money-input:focus-within {
  border-color: rgba(19,184,135,.52);
  box-shadow: 0 0 0 4px rgba(19,184,135,.09);
}

.range {
  accent-color: var(--v2-emerald);
}

/* ---------- resultados ---------- */

.results-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(166,255,77,.09), transparent 25%),
    linear-gradient(180deg, #f5fbf8 0%, #eef7f4 100%);
}

.result-main {
  border-left-color: var(--v2-emerald);
  border-radius: 0 16px 16px 0;
  background: rgba(255,255,255,.46);
}

.result-main strong {
  color: #087a64;
  letter-spacing: -.04em;
}

.milestone-grid {
  gap: 12px;
}

.year-card {
  position: relative;
  overflow: hidden;
  min-height: 105px;
  border-color: var(--v2-border);
  border-radius: 19px;
  box-shadow: 0 8px 24px rgba(4,48,49,.035);
  transition: .25s ease;
}

.year-card::before {
  content: "";
  position: absolute;
  width: 55px;
  height: 3px;
  left: 16px;
  top: 0;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--v2-emerald), var(--v2-lime));
}

.year-card:hover {
  transform: translateY(-4px);
  border-color: rgba(19,184,135,.23);
  box-shadow: 0 16px 38px rgba(4,48,49,.08);
}

.year-card strong {
  letter-spacing: -.025em;
}

.chart-panel {
  border-color: var(--v2-border);
  border-radius: 28px;
  box-shadow: 0 18px 55px rgba(4,48,49,.055);
}

.chart-bar {
  background:
    linear-gradient(to top, #078b73 0%, #1dcc8f 55%, #a6ff4d 100%);
  box-shadow: 0 -3px 10px rgba(166,255,77,.10);
}

/* ---------- possibilidades ---------- */

.possibilities {
  background:
    linear-gradient(180deg, #fff 0%, #f9fcfa 100%);
}

.good-card {
  border-color: var(--v2-border);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(3,43,47,.04);
}

.good-card.reached {
  border-color: rgba(19,184,135,.34);
  box-shadow:
    0 18px 45px rgba(14,128,96,.09),
    inset 0 3px var(--v2-lime);
}

.good-visual {
  background:
    radial-gradient(circle at 50% 35%, rgba(166,255,77,.22), transparent 30%),
    radial-gradient(circle at 20% 100%, rgba(72,229,214,.13), transparent 35%),
    linear-gradient(145deg, #05232c, #08605f);
}

.good-visual::before {
  border-color: rgba(166,255,77,.16);
  box-shadow:
    0 0 0 25px rgba(166,255,77,.018),
    0 0 0 50px rgba(72,229,214,.012);
}

/* ---------- conversão ---------- */

.conversion-section {
  background:
    radial-gradient(circle at 12% 50%, rgba(19,184,135,.12), transparent 24%),
    #03151d;
}

.conversion-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255,255,255,.10);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 20%, rgba(166,255,77,.08), transparent 26%),
    linear-gradient(135deg, #082b35, #041a22);
  box-shadow: 0 40px 100px rgba(0,0,0,.22);
}

.conversion-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  left: -180px;
  top: -180px;
  border: 1px solid rgba(166,255,77,.12);
  border-radius: 50%;
}

.conversion-copy h2 {
  color: white;
}

.conversion-benefits span {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.055);
}

.consultant-link {
  color: var(--v2-lime);
  text-decoration: none;
}

.consultant-link:hover {
  color: white;
}

/* ---------- formulário ---------- */

.lead-form {
  position: relative;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 27px;
  box-shadow: 0 30px 70px rgba(0,0,0,.24);
}

.form-title strong {
  color: #087c66;
  letter-spacing: -.025em;
}

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"] {
  height: 50px;
  border-color: rgba(8,79,74,.13);
  border-radius: 12px;
  background: #f9fcfb;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.lead-form input[type="text"]:focus,
.lead-form input[type="tel"]:focus,
.lead-form input[type="email"]:focus {
  border-color: var(--v2-emerald);
  background: white;
  box-shadow: 0 0 0 4px rgba(19,184,135,.09);
}

/* ---------- footer / floating CTA ---------- */

footer {
  border-top: 1px solid rgba(255,255,255,.05);
  background: #020f15;
}

.floating-cta {
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.38);
  background:
    linear-gradient(135deg, #b4ff5b, #80ef3d);
  box-shadow:
    0 18px 45px rgba(0,0,0,.28),
    0 0 0 5px rgba(166,255,77,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 52px rgba(0,0,0,.32),
    0 0 0 7px rgba(166,255,77,.08);
}

/* ---------- responsivo V2 ---------- */

@media (max-width: 980px) {
  .energy-card {
    max-width: 650px;
    transform: none;
  }

  .energy-card:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 720px) {
  .hero-grid {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(42px, 12.4vw, 58px);
    line-height: .98;
  }

  .hero-lead {
    line-height: 1.62;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .energy-card {
    min-height: 420px;
    border-radius: 25px;
  }

  .section-heading h2,
  .results-head h2,
  .simulator-copy h2,
  .conversion-copy h2 {
    font-size: clamp(34px, 9vw, 43px);
  }

  .calculator-card,
  .chart-panel {
    border-radius: 22px;
  }

  .money-input input {
    font-size: 31px;
  }

  .result-main {
    border-radius: 15px;
  }

  .year-card {
    min-height: 96px;
  }

  .good-card {
    border-radius: 21px;
  }

  .conversion-card {
    border-radius: 25px;
  }

  .floating-cta {
    min-height: 50px;
    padding: 0 17px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

