:root {
  --king-blue: #062b57;
  --king-blue-deep: #021b39;
  --king-yellow: #ffc20d;
  --king-yellow-dark: #f0ad00;
  --king-green: #19d45a;
  --king-cyan: #0aa3ff;
  --text-soft: #dbe8f7;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  background: var(--king-blue-deep);
}

a {
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
  background: var(--king-blue-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../img/hero-solar.png");
  background-position: center right;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 49% 8%, rgba(255, 255, 255, .72) 0 2.5%, rgba(255, 255, 255, 0) 8%),
    linear-gradient(90deg, rgba(2, 24, 51, .98) 0%, rgba(3, 38, 76, .94) 25%, rgba(3, 38, 76, .55) 48%, rgba(3, 38, 76, .08) 76%),
    linear-gradient(0deg, rgba(2, 24, 51, .93) 0%, rgba(2, 24, 51, .22) 31%, rgba(2, 24, 51, .02) 64%);
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 5px solid rgba(255, 194, 13, .74);
  border-radius: 50%;
  filter: drop-shadow(0 0 18px rgba(255, 194, 13, .72));
  z-index: -1;
}

.hero-container {
  position: relative;
  min-height: 100vh;
  padding: 138px clamp(24px, 4vw, 76px) 36px;
  display: grid;
  grid-template-rows: minmax(300px, 1fr) auto auto;
  gap: 28px;
}

.hero-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  min-height: 92px;
  padding: 18px clamp(24px, 4vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: linear-gradient(90deg, rgba(2, 27, 57, .84), rgba(3, 43, 86, .55));
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 18px 46px rgba(0, 11, 32, .16);
  backdrop-filter: blur(18px);
  transition: min-height .22s ease, padding .22s ease, background-color .22s ease, box-shadow .22s ease;
}

body.nav-scrolled .hero-header {
  min-height: 74px;
  padding-block: 10px;
  background: linear-gradient(90deg, rgba(2, 27, 57, .96), rgba(3, 43, 86, .9));
  box-shadow: 0 18px 42px rgba(0, 11, 32, .28);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(190px, 17vw, 300px);
  height: auto;
  display: block;
  transition: width .22s ease;
}

body.nav-scrolled .brand img {
  width: clamp(160px, 13vw, 220px);
}

.main-nav {
  flex: 1 1 auto;
  min-height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.nav-scrolled .main-nav {
  min-height: 42px;
  background: transparent;
}

.main-nav a {
  min-height: 34px;
  padding: 9px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  color: #eef6ff;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease;
}

body.nav-scrolled .main-nav a {
  min-height: 30px;
  padding-block: 7px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #071d38;
  background: var(--king-yellow);
  box-shadow: 0 8px 18px rgba(255, 194, 13, .18);
  outline: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(3, 34, 70, .54);
  box-shadow: 0 12px 28px rgba(0, 11, 32, .18);
  backdrop-filter: blur(12px);
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: #071d38;
  border-color: var(--king-yellow);
  background: var(--king-yellow);
  outline: 0;
}

.social-links i {
  font-size: 1.18rem;
}

.btn-whatsapp {
  --bs-btn-color: #071d38;
  --bs-btn-bg: var(--king-yellow);
  --bs-btn-border-color: var(--king-yellow);
  --bs-btn-hover-color: #071d38;
  --bs-btn-hover-bg: #ffd33a;
  --bs-btn-hover-border-color: #ffd33a;
  --bs-btn-active-color: #071d38;
  --bs-btn-active-bg: var(--king-yellow-dark);
  --bs-btn-active-border-color: var(--king-yellow-dark);
  min-height: 54px;
  padding: 12px 24px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 16px 40px rgba(255, 194, 13, .2);
}

.btn-whatsapp i {
  font-size: 1.45rem;
}

.top-cta {
  max-width: 246px;
}

.hero-content {
  align-self: center;
  max-width: 690px;
  padding-top: 8px;
}

.hero-simulator {
  position: absolute;
  z-index: 3;
  top: clamp(130px, 16vh, 178px);
  right: clamp(24px, 4vw, 76px);
  width: min(455px, 34vw);
  color: #fff;
}

.solar-simulator-form {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-top: 4px solid #ffb000;
  background: linear-gradient(145deg, rgba(5, 35, 72, .66), rgba(4, 25, 52, .38));
  box-shadow: 0 24px 60px rgba(0, 10, 30, .34);
  backdrop-filter: blur(18px);
}

.simulator-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}

.simulator-head span {
  display: block;
  margin-bottom: 8px;
  color: var(--king-yellow);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  font-weight: 900;
}

.simulator-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.05;
  font-weight: 900;
}

.simulator-saving {
  min-width: 172px;
  padding: 12px 14px;
  border-radius: 14px;
  color: #003f2f;
  background: linear-gradient(135deg, rgba(211, 255, 235, .94), rgba(224, 255, 246, .75));
  border: 1px solid rgba(81, 228, 161, .55);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .1);
}

.simulator-saving i {
  float: left;
  width: 28px;
  height: 28px;
  margin-right: 9px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: #08a66d;
  color: #fff;
}

.simulator-saving small,
.simulator-saving strong {
  display: block;
}

.simulator-saving small {
  color: #12634c;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .64rem;
  font-weight: 900;
}

.simulator-saving strong {
  margin-top: 2px;
  font-size: 1rem;
  line-height: 1.1;
}

.simulator-success {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #063f2d;
  background: rgba(211, 255, 235, .92);
  font-weight: 800;
}

.bill-box {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .12);
}

.bill-box label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .82);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 900;
}

.bill-box label i,
.bill-value output {
  color: #ffb000;
}

.bill-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, .7);
  font-weight: 900;
}

.bill-value output {
  font-size: clamp(2.4rem, 4.7vw, 4rem);
  line-height: .9;
}

.bill-value small {
  font-size: 1rem;
}

.bill-box input[type="range"] {
  width: 100%;
  height: 8px;
  margin-top: 18px;
  border-radius: 999px;
  accent-color: #ffb000;
}

.bill-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
  font-weight: 800;
}

.simulator-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.simulator-fields .form-control {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.simulator-fields .form-control::placeholder {
  color: rgba(255, 255, 255, .68);
}

.simulator-submit {
  width: 100%;
  min-height: 52px;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  border-radius: 12px;
  font-weight: 900;
}

.simulator-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 13px;
  color: rgba(255, 255, 255, .78);
  font-size: .8rem;
  font-weight: 700;
}

.simulator-trust i {
  color: #41e29a;
  margin-right: 4px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--king-yellow);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.hero-content h1 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(3.1rem, 6.4vw, 5.5rem);
  line-height: .92;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 8px 30px rgba(1, 12, 28, .28);
}

.hero-content h1 span {
  color: var(--king-yellow);
  display: block;
}

.lead-copy {
  max-width: 540px;
  margin: 24px 0 0;
  color: #eef6ff;
  font-size: clamp(1rem, 1.3vw, 1.35rem);
  line-height: 1.45;
}

.lead-copy strong {
  color: var(--king-yellow);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.btn-solutions {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255, 255, 255, .78);
  --bs-btn-hover-color: #071d38;
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
  min-height: 54px;
  padding: 12px 24px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.btn-solutions i {
  color: var(--king-yellow);
  font-size: 1.55rem;
}

.promise-strip,
.metric-bar,
.benefit-card {
  border: 1px solid rgba(100, 176, 245, .24);
  background: linear-gradient(90deg, rgba(4, 44, 87, .78), rgba(7, 34, 67, .72));
  box-shadow: 0 18px 48px rgba(0, 10, 30, .28);
  backdrop-filter: blur(18px);
}

.promise-strip {
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 18px;
  overflow: hidden;
  align-self: end;
}

.promise-strip article {
  min-height: 78px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.promise-strip article + article {
  border-left: 1px solid rgba(255, 255, 255, .13);
}

.promise-strip i {
  color: var(--king-yellow);
  font-size: 2rem;
  flex: 0 0 auto;
}

.promise-strip span {
  color: #f1f7ff;
  font-size: .95rem;
  line-height: 1.28;
}

.benefit-card {
  position: absolute;
  right: clamp(24px, 4.4vw, 78px);
  bottom: clamp(128px, 15vh, 180px);
  width: min(355px, 28vw);
  min-width: 300px;
  padding: 20px 22px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.benefit-card i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #045cdd;
  color: #fff;
  font-size: 1.75rem;
  flex: 0 0 auto;
}

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

.benefit-card strong {
  font-size: 1.16rem;
  line-height: 1.2;
}

.benefit-card strong::first-line {
  color: #fff;
}

.benefit-card span {
  margin-top: 6px;
  color: #eef5ff;
  font-size: .92rem;
  line-height: 1.34;
}

.metric-bar {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 18px;
  overflow: hidden;
}

.metric-item {
  min-height: 116px;
  padding: 20px clamp(16px, 2vw, 36px);
  display: flex;
  align-items: center;
  gap: 20px;
}

.metric-item + .metric-item {
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.metric-item i {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  font-size: 2.3rem;
  flex: 0 0 auto;
}

.metric-yellow i,
.metric-yellow strong span {
  color: var(--king-yellow);
}

.metric-green i {
  color: var(--king-green);
}

.metric-blue i {
  color: var(--king-cyan);
}

.metric-item strong {
  display: block;
  font-size: clamp(1.15rem, 1.7vw, 1.65rem);
  line-height: 1.06;
}

.metric-item strong span {
  font-size: clamp(1.75rem, 2.5vw, 2.6rem);
}

.metric-item p {
  margin: 8px 0 0;
  max-width: 250px;
  color: var(--text-soft);
  font-size: .96rem;
  line-height: 1.28;
}

.about-section {
  position: relative;
  min-height: 780px;
  color: #061f45;
  background: #f8fbff;
  isolation: isolate;
  overflow: hidden;
}

.about-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../img/sobre-king.png");
  background-position: center right;
  background-size: cover;
}

.about-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .96) 31%, rgba(255, 255, 255, .72) 44%, rgba(255, 255, 255, .08) 68%),
    linear-gradient(0deg, rgba(248, 251, 255, .98) 0%, rgba(248, 251, 255, .56) 30%, rgba(248, 251, 255, 0) 60%);
}

.about-container {
  min-height: 780px;
  padding: 62px clamp(24px, 4vw, 76px) 38px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 42px;
}

.about-copy {
  max-width: 630px;
  align-self: start;
}

.about-kicker {
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #061f45;
  font-size: clamp(.98rem, 1.28vw, 1.18rem);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 6px;
}

.about-kicker span,
.about-title-line {
  width: 66px;
  height: 4px;
  border-radius: 999px;
  background: var(--king-yellow);
}

.about-copy h2 {
  margin: 0;
  color: #061f45;
  font-size: clamp(3.2rem, 5.8vw, 6.1rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: 0;
}

.about-copy h2 span {
  display: block;
  color: var(--king-yellow-dark);
}

.about-title-line {
  margin: 22px 0 24px;
}

.about-copy p {
  max-width: 580px;
  margin: 0;
  color: #112f56;
  font-size: clamp(1rem, 1.24vw, 1.16rem);
  line-height: 1.48;
}

.about-copy p + p {
  margin-top: 20px;
}

.about-lead {
  font-size: clamp(1.2rem, 1.72vw, 1.62rem) !important;
  line-height: 1.36 !important;
}

.about-copy strong {
  color: #061f45;
  font-weight: 900;
}

.about-signature {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #061f45;
}

.about-signature i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--king-yellow);
  background: #062d5b;
  font-size: 1.6rem;
}

.about-signature strong {
  font-size: clamp(1.12rem, 1.55vw, 1.45rem);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-radius: 16px;
  overflow: hidden;
  background: #062d5b;
  box-shadow: 0 22px 46px rgba(6, 31, 69, .22);
}

.about-values article {
  min-height: 230px;
  padding: 28px clamp(14px, 1.8vw, 30px) 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}

.about-values article + article {
  border-left: 1px solid rgba(255, 255, 255, .22);
}

.about-values i {
  width: 76px;
  height: 76px;
  border: 2px solid var(--king-yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--king-yellow);
  font-size: 2.25rem;
}

.about-values h3 {
  margin: 22px 0 0;
  color: #fff;
  font-size: clamp(1.08rem, 1.36vw, 1.38rem);
  font-weight: 900;
  line-height: 1.15;
}

.about-values .card-line {
  display: block;
  margin: 12px auto 12px;
}

.about-values p {
  margin: 0;
  color: #eef6ff;
  font-size: clamp(.88rem, 1vw, .98rem);
  line-height: 1.36;
}

.project-section {
  position: relative;
  min-height: 780px;
  color: #071d38;
  background: #f6fbff;
  isolation: isolate;
  overflow: hidden;
}

.project-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../img/consultoria-solar.png");
  background-position: center right;
  background-size: cover;
}

.project-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .95) 29%, rgba(255, 255, 255, .7) 43%, rgba(255, 255, 255, .05) 67%),
    linear-gradient(0deg, rgba(227, 244, 255, .98) 0%, rgba(255, 255, 255, .62) 35%, rgba(255, 255, 255, 0) 60%);
}

.project-container {
  min-height: 780px;
  padding: 76px clamp(24px, 4.4vw, 86px) 44px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 48px;
}

.project-copy {
  max-width: 660px;
  align-self: start;
}

.section-kicker {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--king-yellow-dark);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-kicker i {
  font-size: 1.8rem;
}

.section-kicker span {
  width: 66px;
  height: 4px;
  border-radius: 999px;
  background: var(--king-yellow);
}

.project-copy h2 {
  margin: 0;
  max-width: 620px;
  color: #06254c;
  font-size: clamp(2.5rem, 4.8vw, 5rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
}

.project-copy h2 span {
  color: var(--king-yellow-dark);
}

.project-text {
  position: relative;
  max-width: 610px;
  margin-top: 34px;
  padding-left: 34px;
  color: #152236;
  font-size: clamp(1rem, 1.28vw, 1.22rem);
  line-height: 1.5;
}

.project-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 4px;
  width: 3px;
  border-radius: 999px;
  background: var(--king-yellow);
}

.project-text p {
  margin: 0;
}

.project-text p + p {
  margin-top: 22px;
}

.project-text strong {
  color: #041f43;
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(66, 147, 221, .38);
  border-radius: 18px;
  overflow: hidden;
  background: #062d5b;
  box-shadow: 0 24px 60px rgba(4, 23, 50, .22);
}

.process-card {
  min-height: 312px;
  padding: 30px clamp(18px, 2vw, 36px) 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 21%, rgba(49, 143, 255, .2), rgba(49, 143, 255, 0) 34%),
    linear-gradient(180deg, #063564, #052a52);
}

.process-card + .process-card {
  border-left: 1px solid rgba(255, 255, 255, .28);
}

.process-icon {
  width: 136px;
  height: 136px;
  margin-bottom: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  box-shadow: 0 0 34px currentColor;
}

.process-icon i {
  color: #fff;
  font-size: 4.05rem;
  line-height: 1;
}

.process-blue .process-icon {
  color: #16a5ff;
  background: rgba(22, 165, 255, .18);
}

.process-green .process-icon {
  color: #16d46a;
  background: rgba(22, 212, 106, .18);
}

.process-orange .process-icon {
  color: #ff9c00;
  background: rgba(255, 156, 0, .2);
}

.process-purple .process-icon {
  color: #b442db;
  background: rgba(180, 66, 219, .2);
}

.process-card h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.55vw, 1.48rem);
  font-weight: 900;
  line-height: 1.2;
}

.card-line {
  width: 48px;
  height: 4px;
  margin: 15px 0 14px;
  border-radius: 999px;
  background: var(--king-yellow);
}

.process-card p {
  margin: 0;
  color: #eef6ff;
  font-size: clamp(.94rem, 1.08vw, 1.08rem);
  line-height: 1.45;
}

.solutions-section {
  position: relative;
  color: #061f45;
  background: linear-gradient(135deg, #f8fbff 0%, #eaf5ff 52%, #cde9ff 100%);
  isolation: isolate;
  overflow: hidden;
}

.solutions-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(116deg, rgba(255, 255, 255, .88) 0%, rgba(255, 255, 255, .7) 44%, rgba(16, 118, 214, .18) 100%),
    radial-gradient(circle at 92% 47%, rgba(255, 194, 13, .9) 0 1px, rgba(255, 194, 13, .2) 2px, rgba(255, 194, 13, 0) 18%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .42) 0 2px, transparent 2px 86px);
}

.solutions-section::before {
  content: "";
  position: absolute;
  right: -92px;
  top: 100px;
  width: 360px;
  height: 360px;
  border: 3px solid rgba(255, 255, 255, .52);
  transform: rotate(45deg);
  z-index: -1;
}

.solutions-container {
  min-height: 760px;
  padding: 76px clamp(24px, 4.4vw, 86px) 52px;
}

.solutions-heading {
  max-width: 1040px;
}

.solutions-heading h2 {
  margin: 0;
  max-width: 1110px;
  color: #06254c;
  font-size: clamp(2.8rem, 5.2vw, 5.6rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: 0;
}

.solutions-heading h2 span {
  color: var(--king-yellow-dark);
}

.solutions-heading p:not(.section-kicker) {
  max-width: 900px;
  margin: 18px 0 0;
  color: #08294e;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.42;
}

.solutions-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.solution-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid rgba(8, 57, 104, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 34px rgba(11, 61, 111, .16);
  text-align: center;
}

.solution-image {
  height: 172px;
  background-size: cover;
  background-repeat: no-repeat;
}

.solution-image-solar {
  background-image: url("../img/hero-solar.png");
  background-position: 70% 8%;
}

.solution-image-battery {
  background-image: url("../img/hero-solar.png");
  background-position: 96% 54%;
}

.solution-image-charger {
  background-image: url("../img/hero-solar.png");
  background-position: 84% 76%;
}

.solution-image-support {
  background-image: url("../img/consultoria-solar.png");
  background-position: 60% 74%;
}

.solution-icon {
  width: 86px;
  height: 86px;
  margin: -43px auto 18px;
  position: relative;
  z-index: 1;
  border: 2px solid var(--king-yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--king-yellow);
  background: #062d5b;
  box-shadow: 0 10px 24px rgba(3, 38, 76, .28);
}

.solution-icon i {
  color: var(--king-yellow);
  font-size: 2.45rem;
}

.solution-card h3 {
  min-height: 58px;
  margin: 0;
  padding: 0 24px;
  color: #061f45;
  font-size: clamp(1.18rem, 1.45vw, 1.58rem);
  font-weight: 900;
  line-height: 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-card .card-line {
  display: block;
  margin-inline: auto;
}

.solution-card p {
  margin: 0 auto;
  max-width: 270px;
  padding: 0 22px 28px;
  color: #102b50;
  font-size: clamp(.94rem, 1.06vw, 1.05rem);
  line-height: 1.36;
}

.solutions-footer {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.audience-strip {
  min-height: 76px;
  width: min(850px, 100%);
  padding: 12px 24px;
  border: 1px solid rgba(8, 57, 104, .1);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 30px rgba(11, 61, 111, .1);
}

.audience-strip span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #061f45;
  font-size: clamp(1rem, 1.18vw, 1.17rem);
  font-weight: 900;
  white-space: nowrap;
}

.audience-strip i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--king-yellow);
  background: #062d5b;
  font-size: 1.35rem;
}

.audience-strip b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--king-yellow);
  flex: 0 0 auto;
}

.solutions-cta {
  --bs-btn-color: #fff;
  --bs-btn-border-color: var(--king-yellow);
  --bs-btn-hover-color: #061f45;
  --bs-btn-hover-bg: var(--king-yellow);
  --bs-btn-hover-border-color: var(--king-yellow);
  min-height: 76px;
  min-width: 335px;
  padding: 16px 34px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #fff;
  background: #062d5b;
  box-shadow: 0 16px 34px rgba(4, 38, 78, .22);
  font-size: 1.12rem;
  font-weight: 900;
}

.solutions-cta i {
  color: var(--king-yellow);
  font-size: 2rem;
}

.control-section {
  position: relative;
  min-height: 860px;
  color: #fff;
  background: var(--king-blue-deep);
  isolation: isolate;
  overflow: hidden;
}

.control-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../img/problema-solucao.png");
  background-size: cover;
  background-position: center right;
}

.control-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(1, 22, 49, .98) 0%, rgba(1, 22, 49, .9) 26%, rgba(1, 22, 49, .52) 48%, rgba(1, 22, 49, .08) 76%),
    linear-gradient(0deg, rgba(1, 22, 49, .98) 0%, rgba(1, 22, 49, .6) 24%, rgba(1, 22, 49, .08) 58%);
}

.control-container {
  position: relative;
  min-height: 860px;
  padding: 34px clamp(24px, 4.4vw, 86px) 34px;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
  align-content: start;
}

.control-brand {
  margin-bottom: 30px;
}

.control-brand img {
  width: clamp(180px, 16vw, 270px);
  height: auto;
}

.control-copy {
  max-width: 610px;
}

.control-kicker {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--king-yellow);
  font-size: clamp(.96rem, 1.25vw, 1.2rem);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.control-kicker span {
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: var(--king-yellow);
}

.control-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.7rem, 4.9vw, 5.1rem);
  font-weight: 900;
  line-height: .97;
  letter-spacing: 0;
  text-shadow: 0 14px 36px rgba(0, 0, 0, .2);
}

.control-copy h2 span {
  color: var(--king-yellow);
}

.control-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: #edf5ff;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.34;
}

.protection-callout {
  width: min(560px, 100%);
  min-height: 116px;
  margin-top: 18px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 194, 13, .78);
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(90deg, rgba(4, 47, 91, .88), rgba(6, 35, 70, .72));
  box-shadow: 0 18px 40px rgba(0, 9, 30, .24);
  backdrop-filter: blur(12px);
}

.protection-callout i {
  color: var(--king-yellow);
  font-size: 4rem;
  line-height: 1;
  flex: 0 0 auto;
}

.protection-callout strong {
  color: #fff;
  font-size: clamp(1.22rem, 1.72vw, 1.72rem);
  line-height: 1.16;
}

.protection-callout span {
  color: var(--king-yellow);
}

.control-mini-card {
  position: absolute;
  right: clamp(24px, 8vw, 164px);
  top: 52%;
  width: min(320px, 28vw);
  min-width: 270px;
  padding: 20px 22px;
  border: 1px solid rgba(100, 176, 245, .26);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(90deg, rgba(4, 47, 91, .88), rgba(6, 35, 70, .74));
  box-shadow: 0 18px 44px rgba(0, 8, 24, .28);
  backdrop-filter: blur(14px);
}

.control-mini-card i {
  width: 62px;
  height: 62px;
  border: 2px solid var(--king-yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--king-yellow);
  font-size: 1.75rem;
  flex: 0 0 auto;
}

.control-mini-card p {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.28;
}

.control-mini-card strong {
  color: var(--king-yellow);
}

.control-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-specialist {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255, 255, 255, .72);
  --bs-btn-hover-color: #061f45;
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
  min-height: 54px;
  padding: 12px 24px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 800;
  background: rgba(3, 34, 70, .5);
  backdrop-filter: blur(10px);
}

.btn-specialist i {
  color: var(--king-yellow);
  font-size: 1.45rem;
}

.control-benefits {
  align-self: end;
  width: min(1250px, 84%);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.control-benefits article {
  min-height: 136px;
  padding: 20px 26px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #061f45;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 38px rgba(0, 10, 35, .26);
}

.control-benefits i {
  width: 80px;
  height: 80px;
  border: 3px solid var(--king-yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--king-yellow);
  background: #063263;
  box-shadow: 0 6px 16px rgba(0, 20, 54, .28);
  font-size: 2.25rem;
  flex: 0 0 auto;
}

.control-benefits h3 {
  margin: 0;
  color: #061f45;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  font-weight: 900;
  line-height: 1.1;
}

.control-benefits p {
  margin: 6px 0 0;
  color: #173459;
  font-size: clamp(.95rem, 1.1vw, 1.08rem);
  line-height: 1.28;
}

.benefit-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
  background: var(--king-yellow);
  box-shadow: 0 0 18px rgba(255, 194, 13, .72);
}

.workflow-section {
  position: relative;
  color: #061f45;
  background: #fbfdff;
  isolation: isolate;
  overflow: hidden;
}

.workflow-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 90% 80%, rgba(255, 194, 13, .2) 0 2px, rgba(255, 194, 13, 0) 24%),
    repeating-linear-gradient(135deg, rgba(5, 63, 118, .07) 0 2px, transparent 2px 120px),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .96) 44%, rgba(232, 245, 255, .92) 100%);
}

.workflow-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 520px;
  height: 520px;
  border: 3px solid rgba(255, 194, 13, .45);
  border-radius: 50%;
  z-index: -1;
}

.workflow-container {
  position: relative;
  min-height: 760px;
  padding: 42px clamp(24px, 4vw, 76px) 44px;
}

.workflow-brand img {
  width: clamp(190px, 17vw, 300px);
  height: auto;
}

.workflow-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: min(720px, 50vw);
  height: 360px;
  border-bottom-left-radius: 360px;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .1) 28%, rgba(255, 255, 255, 0) 100%),
    url("../img/consultoria-solar.png");
  background-size: cover;
  background-position: center right;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .68);
}

.workflow-photo::after {
  content: "";
  position: absolute;
  inset: 30px 32px 28px -34px;
  border: 2px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
}

.workflow-heading {
  position: relative;
  max-width: 850px;
  margin-top: 26px;
  z-index: 1;
}

.workflow-kicker {
  margin: 0 0 12px;
  color: var(--king-yellow-dark);
  font-size: clamp(1rem, 1.28vw, 1.22rem);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2.8px;
}

.workflow-heading h2 {
  margin: 0;
  color: #061f45;
  font-size: clamp(3rem, 5.1vw, 5.5rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: 0;
}

.workflow-heading h2 span {
  color: var(--king-yellow-dark);
}

.workflow-heading p:not(.workflow-kicker) {
  max-width: 700px;
  margin: 20px 0 0;
  color: #112f56;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.42;
}

.workflow-steps {
  position: relative;
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.workflow-steps::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--king-yellow), transparent);
  transform: translateY(-15px);
}

.workflow-card {
  position: relative;
  min-height: 256px;
  padding: 48px 18px 24px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 34px rgba(8, 57, 104, .14);
}

.workflow-card + .workflow-card::before {
  content: "\F285";
  position: absolute;
  left: -23px;
  top: 83px;
  font-family: "bootstrap-icons";
  color: var(--king-yellow-dark);
  font-size: 1.75rem;
  line-height: 1;
}

.step-number {
  position: absolute;
  top: -38px;
  left: 50%;
  width: 58px;
  height: 58px;
  border: 4px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #062d5b;
  box-shadow: 0 4px 12px rgba(6, 31, 69, .24);
  transform: translateX(-50%);
  font-size: 1.25rem;
  font-weight: 900;
}

.workflow-card > i {
  min-height: 72px;
  color: #062d5b;
  font-size: 4.05rem;
  line-height: 1;
}

.workflow-card h3 {
  min-height: 42px;
  margin: 15px 0 0;
  color: #061f45;
  font-size: clamp(1rem, 1.17vw, 1.18rem);
  font-weight: 900;
  line-height: 1.15;
  display: flex;
  align-items: center;
}

.workflow-card .card-line {
  display: block;
  margin-inline: auto;
}

.workflow-card p {
  margin: 0;
  color: #112f56;
  font-size: .94rem;
  line-height: 1.35;
}

.workflow-footer {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 52px;
  align-items: center;
}

.workflow-assurances {
  min-height: 86px;
  padding: 14px 22px;
  border-radius: 13px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #062d5b;
  box-shadow: 0 16px 34px rgba(6, 31, 69, .16);
}

.workflow-assurances span {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: .94rem;
  line-height: 1.26;
}

.workflow-assurances span + span {
  border-left: 1px solid rgba(255, 255, 255, .22);
  padding-left: 22px;
}

.workflow-assurances i {
  color: var(--king-yellow);
  font-size: 2rem;
  flex: 0 0 auto;
}

.workflow-cta {
  --bs-btn-color: #071d38;
  --bs-btn-bg: var(--king-yellow);
  --bs-btn-border-color: var(--king-yellow);
  --bs-btn-hover-color: #071d38;
  --bs-btn-hover-bg: #ffd33a;
  --bs-btn-hover-border-color: #ffd33a;
  min-height: 76px;
  width: 100%;
  padding: 16px 30px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 1.14rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(255, 194, 13, .28);
}

.workflow-cta i {
  font-size: 2rem;
}

.realities-section {
  position: relative;
  color: #061f45;
  background: #edf8ff;
  isolation: isolate;
  overflow: hidden;
}

.realities-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92) 0%, rgba(232, 246, 255, .9) 68%, rgba(209, 235, 252, .98) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .48) 0 2px, transparent 2px 118px);
}

.realities-container {
  padding: 46px clamp(24px, 4vw, 76px) 46px;
}

.realities-heading {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(24px, 5vw, 90px);
  margin: 0 auto 12px;
}

.section-label span {
  height: 3px;
  border-radius: 999px;
  background: var(--king-yellow);
}

.section-label strong {
  min-width: 96px;
  min-height: 38px;
  padding: 5px 16px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #061f45;
  background: var(--king-yellow);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.realities-heading h2 {
  margin: 0;
  color: #061f45;
  font-size: clamp(3rem, 5.25vw, 5.55rem);
  font-weight: 900;
  line-height: .96;
  letter-spacing: 0;
}

.realities-heading h2 span {
  display: block;
  color: var(--king-yellow-dark);
}

.realities-heading p {
  max-width: 880px;
  margin: 14px auto 0;
  color: #152c50;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.42;
}

.realities-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}

.reality-card {
  min-height: 520px;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  background: #062d5b;
  box-shadow: 0 18px 36px rgba(7, 43, 82, .16);
}

.reality-image {
  min-height: 255px;
  background-size: cover;
  background-repeat: no-repeat;
}

.reality-home {
  background-image: url("../img/hero-solar.png");
  background-position: 74% 42%;
}

.reality-business {
  background-image: url("../img/empresas-solar.png");
  background-position: center;
}

.reality-rural {
  background-image: url("../img/rural-solar.png");
  background-position: center;
}

.reality-content {
  position: relative;
  min-height: 270px;
  padding: 0 36px 30px;
  color: #fff;
  background: linear-gradient(180deg, rgba(3, 38, 76, .9), #052a52 38%);
}

.reality-title {
  display: flex;
  align-items: center;
  gap: 20px;
  transform: translateY(-42px);
  margin-bottom: -22px;
}

.reality-title i {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--king-yellow-dark);
  box-shadow: 0 8px 24px rgba(255, 194, 13, .38);
  font-size: 2.6rem;
  flex: 0 0 auto;
}

.reality-title h3 {
  margin: 22px 0 0;
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1.08;
}

.reality-content .card-line {
  display: block;
  margin: 0 0 18px 122px;
}

.reality-content p {
  margin: 0 0 18px;
  color: #f4f8ff;
  font-size: clamp(.98rem, 1.12vw, 1.08rem);
  line-height: 1.36;
}

.reality-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.reality-content li {
  position: relative;
  padding-left: 28px;
  color: #fff;
  font-size: clamp(.96rem, 1.08vw, 1.04rem);
  line-height: 1.55;
}

.reality-content li::before {
  content: "\F26E";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "bootstrap-icons";
  color: var(--king-yellow);
  font-weight: 900;
}

.realities-footer {
  margin-top: 24px;
  min-height: 124px;
  padding: 18px 28px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, .72fr) minmax(220px, 280px);
  align-items: center;
  gap: 26px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 36px rgba(7, 43, 82, .12);
}

.realities-message {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
}

.realities-message::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 999px;
  background: var(--king-yellow);
}

.realities-message i {
  width: 82px;
  height: 82px;
  border: 1px solid rgba(6, 118, 224, .32);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--king-yellow);
  background: #fff;
  font-size: 2.7rem;
  flex: 0 0 auto;
}

.realities-message p {
  margin: 0;
  color: #061f45;
  font-size: clamp(1.05rem, 1.45vw, 1.36rem);
  line-height: 1.35;
}

.realities-message strong,
.realities-message span {
  display: block;
}

.realities-message span {
  color: var(--king-yellow-dark);
  font-weight: 900;
}

.realities-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: center;
}

.realities-points span {
  min-height: 84px;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #061f45;
  font-size: .92rem;
  line-height: 1.12;
}

.realities-points span + span {
  border-left: 1px solid rgba(6, 31, 69, .16);
}

.realities-points i {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(6, 118, 224, .3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0a78ff;
  font-size: 1.5rem;
}

.realities-cta {
  --bs-btn-color: #071d38;
  --bs-btn-bg: var(--king-yellow);
  --bs-btn-border-color: var(--king-yellow);
  --bs-btn-hover-color: #071d38;
  --bs-btn-hover-bg: #ffd33a;
  --bs-btn-hover-border-color: #ffd33a;
  min-height: 68px;
  padding: 12px 20px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 900;
  line-height: 1.12;
  box-shadow: 0 12px 28px rgba(255, 194, 13, .26);
}

.realities-cta i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #062d5b;
  font-size: 1.5rem;
  flex: 0 0 auto;
}

.portfolio-section {
  position: relative;
  color: #061f45;
  background: #eef8ff;
  isolation: isolate;
  overflow: hidden;
}

.portfolio-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 90% 45%, rgba(255, 194, 13, .28) 0 2px, rgba(255, 194, 13, 0) 24%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .55) 0 2px, transparent 2px 112px),
    linear-gradient(110deg, #fff 0%, #f5fbff 52%, #cbe9ff 100%);
}

.portfolio-section::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -220px;
  width: 560px;
  height: 560px;
  border: 4px solid rgba(255, 194, 13, .32);
  border-radius: 50%;
  z-index: -1;
}

.portfolio-container {
  padding: 36px clamp(24px, 4vw, 76px) 46px;
}

.portfolio-brand img {
  width: clamp(180px, 15vw, 260px);
  height: auto;
}

.portfolio-heading {
  max-width: 880px;
  margin-top: 24px;
}

.portfolio-heading h2 {
  margin: 0;
  color: #061f45;
  font-size: clamp(3rem, 5vw, 5.25rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: 0;
}

.portfolio-heading h2 span {
  display: block;
  color: var(--king-yellow-dark);
}

.portfolio-heading > p:not(.section-kicker) {
  max-width: 680px;
  margin: 14px 0 0;
  color: #112f56;
  font-size: clamp(1rem, 1.18vw, 1.15rem);
  line-height: 1.36;
}

.portfolio-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.project-card {
  overflow: hidden;
  border: 1px solid rgba(6, 91, 160, .14);
  border-radius: 10px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 34px rgba(8, 57, 104, .16);
}

.project-card-image {
  height: 172px;
  background-size: cover;
  background-repeat: no-repeat;
}

.project-card-home {
  background-image: url("../img/hero-solar.png");
  background-position: 66% 30%;
}

.project-card-business {
  background-image: url("../img/empresas-solar.png");
  background-position: center;
}

.project-card-rural {
  background-image: url("../img/rural-solar.png");
  background-position: center;
}

.project-card-body {
  padding: 0 22px 20px;
}

.project-card-title {
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateY(-24px);
  margin-bottom: -6px;
}

.project-card-title > i {
  width: 64px;
  height: 64px;
  border: 2px solid var(--king-yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--king-yellow);
  background: #062d5b;
  font-size: 1.9rem;
  box-shadow: 0 10px 22px rgba(6, 31, 69, .22);
  flex: 0 0 auto;
}

.project-card-title h3 {
  margin: 20px 0 4px;
  color: #061f45;
  font-size: 1.22rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card-title p {
  margin: 0;
  color: #102b50;
  font-size: .86rem;
  line-height: 1.2;
}

.project-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(6, 31, 69, .1);
}

.project-specs span {
  min-height: 66px;
  padding: 12px 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #16375e;
  font-size: .68rem;
  line-height: 1.15;
  text-align: center;
  flex-wrap: wrap;
}

.project-specs span + span {
  border-left: 1px solid rgba(6, 31, 69, .1);
}

.project-specs small {
  width: 100%;
  color: #061f45;
  font-size: .58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-specs i {
  color: #315d94;
  font-size: 1rem;
}

.project-specs strong,
.project-specs span:last-child i {
  color: var(--king-yellow-dark);
  font-size: .96rem;
}

.portfolio-footer {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: 54px;
  align-items: center;
}

.portfolio-stats {
  min-height: 96px;
  padding: 16px 28px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 32px rgba(7, 43, 82, .12);
}

.portfolio-stats span {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #061f45;
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  line-height: 1.2;
}

.portfolio-stats span + span {
  border-left: 1px solid rgba(255, 194, 13, .7);
  padding-left: 28px;
}

.portfolio-stats i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--king-yellow);
  background: #062d5b;
  font-size: 1.75rem;
  flex: 0 0 auto;
}

.portfolio-stats strong {
  color: var(--king-yellow-dark);
  font-size: 1.45rem;
  font-weight: 900;
}

.portfolio-cta {
  --bs-btn-color: #fff;
  --bs-btn-border-color: var(--king-yellow);
  --bs-btn-hover-color: #061f45;
  --bs-btn-hover-bg: var(--king-yellow);
  --bs-btn-hover-border-color: var(--king-yellow);
  min-height: 96px;
  padding: 18px 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #fff;
  background: #062d5b;
  box-shadow: 0 18px 36px rgba(7, 43, 82, .2);
  font-size: 1.35rem;
  font-weight: 900;
}

.portfolio-cta i {
  color: var(--king-yellow);
  font-size: 2.25rem;
}

.stories-section {
  position: relative;
  color: #061f45;
  background: #fff;
  isolation: isolate;
  overflow: hidden;
}

.stories-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: min(760px, 52vw);
  height: 430px;
  z-index: -2;
  background-image: url("../img/hero-solar.png");
  background-size: cover;
  background-position: center right;
}

.stories-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .96) 43%, rgba(255, 255, 255, .28) 63%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, .78) 34%, rgba(255, 255, 255, 0) 60%);
}

.stories-container {
  padding: 58px clamp(24px, 4vw, 76px) 48px;
}

.stories-heading {
  max-width: 780px;
}

.stories-heading h2 {
  margin: 0;
  color: #061f45;
  font-size: clamp(3rem, 5vw, 5.25rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.stories-heading h2 span {
  color: var(--king-yellow-dark);
}

.stories-heading > p:not(.control-kicker) {
  max-width: 720px;
  margin: 22px 0 0;
  color: #112f56;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.42;
}

.impact-row {
  width: min(760px, 100%);
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.impact-row article {
  min-height: 116px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.impact-row article + article {
  border-left: 1px solid rgba(6, 31, 69, .12);
}

.impact-row i {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #062d5b;
  background: rgba(255, 194, 13, .2);
  font-size: 1.85rem;
}

.impact-row strong {
  margin-top: 10px;
  color: #061f45;
  font-size: clamp(1.35rem, 1.9vw, 1.85rem);
  font-weight: 900;
  line-height: 1;
}

.impact-row span {
  margin-top: 4px;
  color: #112f56;
  font-size: .9rem;
  line-height: 1.15;
}

.testimonials-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.testimonial-card {
  position: relative;
  min-height: 238px;
  padding: 34px 30px 30px 148px;
  border-radius: 11px;
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 34px rgba(8, 57, 104, .12);
}

.testimonial-avatar {
  position: absolute;
  left: 32px;
  top: 36px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background-size: 240px auto;
  background-repeat: no-repeat;
  box-shadow: 0 10px 22px rgba(6, 31, 69, .18);
}

.avatar-carlos {
  background-image: url("../img/problema-solucao.png");
  background-position: 42% 42%;
}

.avatar-juliana {
  background-image: url("../img/consultoria-solar.png");
  background-position: 88% 42%;
}

.avatar-roberto {
  background-image: url("../img/consultoria-solar.png");
  background-position: 55% 42%;
}

.stars {
  color: var(--king-yellow-dark);
  font-size: 1.05rem;
  letter-spacing: 2px;
  line-height: 1;
}

.testimonial-card p {
  margin: 16px 0 26px;
  color: #102b50;
  font-size: .98rem;
  line-height: 1.45;
}

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

.testimonial-card strong {
  color: #061f45;
  font-weight: 900;
}

.testimonial-card span {
  margin-top: 3px;
  color: #567092;
  font-size: .9rem;
}

.testimonial-card b {
  position: absolute;
  right: 26px;
  bottom: 12px;
  color: var(--king-yellow-dark);
  font-size: 4.8rem;
  line-height: 1;
}

.stories-cta-band {
  margin-top: 28px;
  min-height: 160px;
  padding: 24px 30px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: auto minmax(260px, .8fr) minmax(360px, 1fr) minmax(220px, 320px);
  align-items: center;
  gap: 34px;
  color: #fff;
  background: #062d5b;
  box-shadow: 0 18px 38px rgba(6, 31, 69, .2);
}

.stories-cta-band > i {
  width: 116px;
  height: 116px;
  border: 1px solid rgba(0, 166, 255, .46);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--king-yellow);
  background: rgba(0, 166, 255, .14);
  font-size: 4rem;
}

.stories-cta-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 900;
  line-height: 1.18;
}

.stories-cta-copy h3 span {
  color: var(--king-yellow);
}

.stories-cta-copy p {
  margin: 14px 0 0;
  color: #eef6ff;
  font-size: 1rem;
  line-height: 1.36;
}

.stories-benefits {
  min-height: 110px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, .26);
}

.stories-benefits span {
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: #fff;
  font-weight: 800;
  line-height: 1.15;
}

.stories-benefits span + span {
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.stories-benefits i {
  color: var(--king-yellow);
  font-size: 2rem;
}

.stories-cta {
  --bs-btn-color: #071d38;
  --bs-btn-bg: var(--king-yellow);
  --bs-btn-border-color: var(--king-yellow);
  --bs-btn-hover-color: #071d38;
  --bs-btn-hover-bg: #ffd33a;
  --bs-btn-hover-border-color: #ffd33a;
  min-height: 62px;
  padding: 13px 24px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.08rem;
  font-weight: 900;
}

.stories-cta i {
  font-size: 1.55rem;
}

@media (max-width: 1199.98px) {
  .hero-container {
    padding: 126px 28px 36px;
  }

  .hero-header {
    gap: 14px;
    padding-inline: 28px;
    min-height: 84px;
  }

  .brand img {
    width: clamp(168px, 15vw, 220px);
  }

  body.nav-scrolled .brand img {
    width: clamp(150px, 12vw, 190px);
  }

  .main-nav a {
    padding-inline: 10px;
    font-size: .82rem;
  }

  .social-links a {
    width: 42px;
    height: 42px;
  }

  .top-cta {
    max-width: 220px;
  }

  .benefit-card {
    position: static;
    width: min(520px, 100%);
    min-width: 0;
    margin-left: auto;
  }

  .metric-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-item:nth-child(3) {
    border-left: 0;
  }

  .metric-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, .18);
  }

  .about-section,
  .about-container {
    min-height: 700px;
  }

  .about-container {
    padding-inline: 28px;
  }

  .about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-values article:nth-child(3),
  .about-values article:nth-child(5) {
    border-left: 0;
  }

  .about-values article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, .22);
  }

  .project-section,
  .project-container {
    min-height: 700px;
  }

  .project-container {
    padding-inline: 28px;
  }

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

  .process-card:nth-child(3) {
    border-left: 0;
  }

  .process-card:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, .28);
  }

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

  .solutions-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .solutions-cta {
    width: min(420px, 100%);
    min-width: 0;
    margin-left: auto;
  }

  .control-section,
  .control-container {
    min-height: 820px;
  }

  .control-mini-card {
    position: static;
    width: min(420px, 100%);
    min-width: 0;
    margin-top: 18px;
    margin-left: auto;
  }

  .control-benefits {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-dot {
    display: none;
  }

  .workflow-photo {
    width: min(600px, 52vw);
    height: 310px;
  }

  .workflow-heading {
    max-width: 700px;
  }

  .workflow-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 54px;
  }

  .workflow-card:nth-child(4)::before {
    content: none;
  }

  .workflow-footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .workflow-cta {
    width: min(440px, 100%);
    justify-self: end;
  }

  .realities-footer {
    grid-template-columns: 1fr;
  }

  .realities-cta {
    width: min(360px, 100%);
    justify-self: end;
  }
}

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 132px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-header {
    align-items: center;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  body.nav-scrolled .hero-header {
    min-height: 112px;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(2, 24, 51, .98) 0%, rgba(3, 38, 76, .88) 55%, rgba(3, 38, 76, .24) 100%),
      linear-gradient(0deg, rgba(2, 24, 51, .94) 0%, rgba(2, 24, 51, .36) 52%, rgba(2, 24, 51, .18) 100%);
  }

  .hero-container {
    min-height: auto;
    padding-top: 152px;
  }

  .hero-content {
    max-width: 640px;
    padding-block: 58px 24px;
  }

  .promise-strip {
    grid-template-columns: 1fr;
  }

  .promise-strip article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
  }

  .project-photo {
    background-position: 62% center;
  }

  .project-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .92) 60%, rgba(255, 255, 255, .5) 100%),
      linear-gradient(0deg, rgba(227, 244, 255, .98) 0%, rgba(255, 255, 255, .72) 48%, rgba(255, 255, 255, .24) 100%);
  }

  .project-container {
    padding-top: 56px;
  }

  .project-copy {
    max-width: 620px;
  }

  .about-photo {
    background-position: 60% center;
  }

  .about-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .92) 58%, rgba(255, 255, 255, .48) 100%),
      linear-gradient(0deg, rgba(248, 251, 255, .98) 0%, rgba(248, 251, 255, .74) 45%, rgba(248, 251, 255, .22) 100%);
  }

  .about-container {
    padding-top: 52px;
  }

  .solutions-container {
    min-height: auto;
    padding-top: 58px;
  }

  .audience-strip {
    flex-wrap: wrap;
    justify-content: center;
  }

  .control-bg {
    background-position: 59% center;
  }

  .control-shade {
    background:
      linear-gradient(90deg, rgba(1, 22, 49, .98) 0%, rgba(1, 22, 49, .86) 55%, rgba(1, 22, 49, .28) 100%),
      linear-gradient(0deg, rgba(1, 22, 49, .98) 0%, rgba(1, 22, 49, .7) 38%, rgba(1, 22, 49, .16) 78%);
  }

  .control-container {
    padding-top: 28px;
  }

  .workflow-photo {
    opacity: .42;
  }

  .workflow-heading {
    max-width: 760px;
  }

  .workflow-assurances {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .workflow-assurances span {
    padding: 14px 16px;
  }

  .workflow-assurances span + span {
    border-left: 0;
  }

  .workflow-assurances span:nth-child(2n) {
    border-left: 1px solid rgba(255, 255, 255, .22);
  }

  .workflow-assurances span:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, .22);
  }

  .realities-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .reality-card {
    min-height: auto;
  }

  .reality-image {
    min-height: 300px;
  }
}

@media (max-width: 767.98px) {
  html {
    scroll-padding-top: 126px;
  }

  .hero-container {
    padding: 148px 16px 24px;
    gap: 18px;
  }

  .hero-header {
    align-items: center;
    gap: 12px;
    min-height: 126px;
    padding: 14px 16px 12px;
  }

  body.nav-scrolled .hero-header {
    min-height: 116px;
    padding-block: 10px;
  }

  .brand img {
    width: 168px;
  }

  body.nav-scrolled .brand img {
    width: 142px;
  }

  .main-nav {
    min-height: 44px;
    padding: 5px;
  }

  .main-nav a {
    min-height: 32px;
    padding: 8px 12px;
    font-size: .82rem;
  }

  .header-actions {
    gap: 8px;
  }

  .social-links {
    gap: 6px;
  }

  .social-links a {
    width: 42px;
    height: 42px;
  }

  .top-cta {
    width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    border-radius: 50%;
  }

  .top-cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .hero-content {
    padding-block: 54px 22px;
  }

  .hero-content h1 {
    font-size: clamp(2.75rem, 14vw, 4.55rem);
  }

  .lead-copy {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
  }

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

  .benefit-card {
    padding: 16px;
    border-radius: 16px;
  }

  .metric-bar {
    grid-template-columns: 1fr;
  }

  .metric-item,
  .metric-item:nth-child(3) {
    border-left: 0;
  }

  .metric-item + .metric-item {
    border-top: 1px solid rgba(255, 255, 255, .18);
  }

  .metric-item {
    min-height: 104px;
  }

  .about-section,
  .about-container {
    min-height: auto;
  }

  .about-photo {
    inset: 0 0 auto;
    height: 360px;
    background-position: 66% top;
  }

  .about-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .24) 0%, rgba(255, 255, 255, .96) 300px, rgba(248, 251, 255, 1) 420px),
      linear-gradient(0deg, rgba(248, 251, 255, 1), rgba(248, 251, 255, .2));
  }

  .about-container {
    padding: 44px 16px 28px;
    gap: 34px;
  }

  .about-copy {
    padding-top: 245px;
  }

  .about-kicker {
    gap: 12px;
    letter-spacing: 3px;
    font-size: .9rem;
  }

  .about-copy h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .about-lead {
    font-size: 1.15rem !important;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-values article,
  .about-values article:nth-child(3),
  .about-values article:nth-child(5) {
    border-left: 0;
  }

  .about-values article + article {
    border-top: 1px solid rgba(255, 255, 255, .22);
  }

  .about-values article {
    min-height: auto;
    padding-block: 26px;
  }

  .project-section,
  .project-container {
    min-height: auto;
  }

  .project-photo {
    inset: 0 0 auto;
    height: 360px;
    background-position: 68% top;
  }

  .project-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .42) 0%, rgba(255, 255, 255, .96) 310px, rgba(246, 251, 255, 1) 420px),
      linear-gradient(0deg, rgba(246, 251, 255, 1), rgba(246, 251, 255, .2));
  }

  .project-container {
    padding: 46px 16px 28px;
    gap: 34px;
  }

  .section-kicker {
    flex-wrap: wrap;
    gap: 10px;
    font-size: .92rem;
  }

  .section-kicker span {
    width: 44px;
  }

  .project-copy {
    padding-top: 205px;
  }

  .project-copy h2 {
    font-size: clamp(2.3rem, 11vw, 3.7rem);
  }

  .project-text {
    padding-left: 22px;
    font-size: 1rem;
  }

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

  .process-card,
  .process-card:nth-child(3) {
    border-left: 0;
  }

  .process-card + .process-card {
    border-top: 1px solid rgba(255, 255, 255, .28);
  }

  .process-card {
    min-height: auto;
    padding-block: 28px;
  }

  .process-icon {
    width: 112px;
    height: 112px;
  }

  .process-icon i {
    font-size: 3.25rem;
  }

  .solutions-container {
    padding: 46px 16px 32px;
  }

  .solutions-heading h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .solution-card {
    min-height: auto;
  }

  .solution-image {
    height: 190px;
  }

  .solutions-footer {
    gap: 18px;
  }

  .audience-strip {
    padding: 18px;
    align-items: stretch;
    flex-direction: column;
  }

  .audience-strip b {
    display: none;
  }

  .audience-strip span {
    white-space: normal;
  }

  .solutions-cta {
    min-height: 62px;
    width: 100%;
  }

  .control-section,
  .control-container {
    min-height: auto;
  }

  .control-bg {
    background-position: 62% top;
  }

  .control-shade {
    background:
      linear-gradient(180deg, rgba(1, 22, 49, .55) 0%, rgba(1, 22, 49, .94) 300px, rgba(1, 22, 49, .99) 100%),
      linear-gradient(90deg, rgba(1, 22, 49, .98), rgba(1, 22, 49, .55));
  }

  .control-container {
    padding: 22px 16px 28px;
  }

  .control-brand {
    margin-bottom: 260px;
  }

  .control-brand img {
    width: 150px;
  }

  .control-copy h2 {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .control-kicker {
    flex-wrap: wrap;
    letter-spacing: 2px;
  }

  .protection-callout {
    min-height: auto;
    padding: 16px;
    align-items: flex-start;
  }

  .protection-callout i {
    font-size: 3rem;
  }

  .control-actions .btn,
  .btn-specialist {
    width: 100%;
  }

  .control-mini-card {
    width: 100%;
    margin-left: 0;
  }

  .control-benefits article {
    min-height: auto;
    padding: 18px;
    gap: 18px;
  }

  .control-benefits i {
    width: 66px;
    height: 66px;
    font-size: 1.9rem;
  }

  .workflow-container {
    min-height: auto;
    padding: 28px 16px 32px;
  }

  .workflow-brand img {
    width: 168px;
  }

  .workflow-photo {
    position: relative;
    width: calc(100% + 32px);
    height: 250px;
    margin: 18px -16px 24px;
    border-radius: 0 0 0 120px;
    opacity: 1;
  }

  .workflow-photo::after {
    display: none;
  }

  .workflow-heading {
    margin-top: 0;
  }

  .workflow-heading h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .workflow-steps {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 54px;
  }

  .workflow-steps::before,
  .workflow-card + .workflow-card::before {
    display: none;
  }

  .workflow-card {
    min-height: auto;
  }

  .workflow-footer {
    margin-top: 24px;
  }

  .workflow-assurances {
    grid-template-columns: 1fr;
    padding: 8px 16px;
  }

  .workflow-assurances span,
  .workflow-assurances span:nth-child(2n),
  .workflow-assurances span:nth-child(n + 3) {
    border-left: 0;
    border-top: 0;
    padding: 14px 0;
  }

  .workflow-assurances span + span {
    border-top: 1px solid rgba(255, 255, 255, .22);
  }

  .workflow-cta {
    width: 100%;
    min-height: 64px;
  }

  .realities-container {
    padding: 40px 16px 32px;
  }

  .section-label {
    gap: 16px;
  }

  .section-label strong {
    min-width: 76px;
    min-height: 34px;
    font-size: 1.08rem;
  }

  .realities-heading h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .reality-image {
    min-height: 230px;
  }

  .reality-content {
    padding: 0 22px 26px;
  }

  .reality-title {
    gap: 14px;
  }

  .reality-title i {
    width: 72px;
    height: 72px;
    font-size: 2.1rem;
  }

  .reality-content .card-line {
    margin-left: 96px;
  }

  .realities-footer {
    padding: 18px;
    gap: 20px;
  }

  .realities-message {
    align-items: flex-start;
  }

  .realities-message i {
    width: 66px;
    height: 66px;
    font-size: 2.2rem;
  }

  .realities-points {
    grid-template-columns: 1fr;
  }

  .realities-points span + span {
    border-left: 0;
    border-top: 1px solid rgba(6, 31, 69, .16);
  }

  .realities-cta {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 134px;
  }

  body.nav-scrolled .brand img {
    width: 122px;
  }

  .social-links a {
    width: 38px;
    height: 38px;
  }

  .top-cta {
    width: 46px;
    height: 46px;
    min-height: 46px;
  }

  .eyebrow {
    font-size: .9rem;
  }

  .metric-item {
    gap: 14px;
    padding-inline: 16px;
  }

  .metric-item i {
    width: 58px;
    height: 58px;
    font-size: 1.85rem;
  }

  .project-copy {
    padding-top: 185px;
  }

  .project-photo {
    height: 330px;
  }

  .about-copy {
    padding-top: 215px;
  }

  .about-photo {
    height: 330px;
  }

  .control-brand {
    margin-bottom: 220px;
  }

  .control-copy p {
    font-size: .98rem;
  }

  .control-benefits article {
    align-items: flex-start;
    flex-direction: column;
  }

  .workflow-photo {
    height: 220px;
  }

  .workflow-card > i {
    font-size: 3.45rem;
  }

  .realities-message {
    flex-direction: column;
  }
}

.page-hero {
  min-height: auto;
  padding: 150px 0 64px;
}

.page-hero-container {
  min-height: auto;
}

.listing-section,
.detail-section,
.gallery-section,
.related-section {
  position: relative;
  background: linear-gradient(135deg, #f8fbff 0%, #eef8ff 58%, #d7efff 100%);
  padding: 56px 0;
}

.listing-container,
.detail-container {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  padding-inline: clamp(24px, 4vw, 64px);
  margin-inline: auto;
}

.listing-grid {
  align-items: stretch;
}

.detail-container {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.detail-hero-image {
  min-height: 460px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 60px rgba(6, 31, 69, .16);
}

.detail-copy {
  color: #061f45;
}

.detail-copy h2,
.section-small-heading h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: .98;
  font-weight: 900;
  margin: 16px 0 22px;
}

.detail-text {
  color: rgba(6, 31, 69, .82);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  margin-bottom: 26px;
}

.detail-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffb000;
  background: #062d5b;
  box-shadow: 0 14px 28px rgba(6, 31, 69, .18);
  font-size: 2.5rem;
}

.project-detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.project-detail-specs span {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(6, 31, 69, .08);
  font-weight: 800;
}

.project-detail-specs small {
  text-transform: uppercase;
  color: #ffb000;
  font-size: .72rem;
  letter-spacing: .08em;
}

.section-small-heading {
  margin-bottom: 28px;
  color: #061f45;
}

.section-small-heading h2 {
  margin-bottom: 0;
}

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

.gallery-grid a {
  display: block;
  min-height: 260px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 36px rgba(6, 31, 69, .12);
  cursor: zoom-in;
}

.site-lightbox .modal-content {
  position: relative;
  border: 0;
  border-radius: 12px;
  background: rgba(2, 20, 42, .96);
  padding: 14px;
}

.site-lightbox img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
}

.site-lightbox .btn-close {
  position: absolute;
  top: -42px;
  right: 0;
  opacity: 1;
}

@media (max-width: 992px) {
  .detail-container {
    grid-template-columns: 1fr;
  }

  .detail-hero-image {
    min-height: 360px;
  }

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

@media (max-width: 640px) {
  .page-hero {
    padding-top: 180px;
  }

  .detail-hero-image {
    min-height: 280px;
    border-radius: 12px;
  }

  .project-detail-specs,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1280px) {
  .hero-simulator {
    position: static;
    width: min(620px, 100%);
    margin-left: auto;
    align-self: center;
  }
}

@media (max-width: 768px) {
  .hero-simulator {
    width: 100%;
  }

  .simulator-head {
    grid-template-columns: 1fr;
  }

  .simulator-saving {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .solar-simulator-form {
    padding: 16px;
    border-radius: 16px;
  }

  .simulator-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1199.98px) {
  .portfolio-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-footer,
  .stories-cta-band {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .portfolio-cta,
  .stories-cta {
    width: min(420px, 100%);
    justify-self: end;
  }

  .portfolio-stats {
    grid-template-columns: 1fr;
  }

  .portfolio-stats span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 194, 13, .7);
    padding-left: 0;
    padding-top: 16px;
    margin-top: 16px;
  }

  .stories-benefits {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .26);
    padding-top: 18px;
  }
}

@media (max-width: 991.98px) {
  .stories-photo {
    width: 100%;
    opacity: .35;
  }

  .stories-shade {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .9) 64%, rgba(255, 255, 255, .42) 100%),
      linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, .82) 45%, rgba(255, 255, 255, .28) 100%);
  }

  .impact-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-row article:nth-child(3) {
    border-left: 0;
  }

  .impact-row article:nth-child(n + 3) {
    border-top: 1px solid rgba(6, 31, 69, .12);
  }
}

@media (max-width: 767.98px) {
  .portfolio-container,
  .stories-container {
    padding: 34px 16px 32px;
  }

  .portfolio-brand img {
    width: 160px;
  }

  .portfolio-heading h2,
  .stories-heading h2 {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .project-card-image {
    height: 210px;
  }

  .project-card-title {
    align-items: flex-start;
  }

  .project-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-specs span:nth-child(3) {
    border-left: 0;
  }

  .project-specs span:nth-child(n + 3) {
    border-top: 1px solid rgba(6, 31, 69, .1);
  }

  .portfolio-cta {
    min-height: 68px;
    width: 100%;
    font-size: 1.05rem;
  }

  .impact-row {
    width: 100%;
  }

  .impact-row article {
    padding: 12px;
  }

  .testimonial-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .testimonial-avatar {
    position: static;
    margin-bottom: 18px;
  }

  .stories-cta-band {
    padding: 22px;
  }

  .stories-cta-band > i {
    width: 82px;
    height: 82px;
    font-size: 3rem;
  }

  .stories-benefits {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .stories-benefits span {
    padding: 16px 0;
  }

  .stories-benefits span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
  }

  .stories-cta {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .project-card-image {
    height: 180px;
  }

  .project-specs {
    grid-template-columns: 1fr;
  }

  .project-specs span,
  .project-specs span:nth-child(3) {
    border-left: 0;
  }

  .project-specs span + span,
  .project-specs span:nth-child(n + 3) {
    border-top: 1px solid rgba(6, 31, 69, .1);
  }

  .impact-row {
    grid-template-columns: 1fr;
  }

  .impact-row article,
  .impact-row article:nth-child(3) {
    border-left: 0;
  }

  .impact-row article + article,
  .impact-row article:nth-child(n + 3) {
    border-top: 1px solid rgba(6, 31, 69, .12);
  }
}

.whatsapp-direct-section,
.location-section,
.final-cta-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #021b39;
}

.whatsapp-direct-section::before,
.whatsapp-direct-section::after,
.location-section::before,
.location-section::after,
.final-cta-section::before,
.final-cta-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.whatsapp-direct-section::before {
  inset: 0;
  background:
    radial-gradient(circle at 74% 30%, rgba(24, 220, 89, .14), transparent 24%),
    radial-gradient(circle at 12% 82%, rgba(0, 128, 255, .09), transparent 28%),
    linear-gradient(135deg, rgba(255, 194, 13, .05) 0 1px, transparent 1px 100%);
}

.whatsapp-direct-section::after {
  right: -8vw;
  top: -20%;
  width: 48vw;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .05);
  box-shadow:
    inset 0 0 0 60px rgba(255, 255, 255, .025),
    0 0 0 90px rgba(255, 255, 255, .018);
}

.final-section-container {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-inline: auto;
  padding: clamp(42px, 6vw, 76px) clamp(22px, 5vw, 78px);
}

.final-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 26px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(.95rem, 1.2vw, 1.15rem);
  font-weight: 900;
}

.final-kicker strong,
.final-kicker + h2 span,
.location-copy h2 span,
.final-cta-copy h2 span,
.final-service-card span,
.final-footer-strip span {
  color: var(--king-yellow);
}

.final-kicker span {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, .55);
}

.final-line {
  width: 88px;
  height: 4px;
  margin: 22px 0 26px;
  border-radius: 99px;
  background: var(--king-yellow);
}

.whatsapp-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .9fr);
  gap: clamp(34px, 6vw, 78px);
  padding: clamp(34px, 5vw, 66px);
  border: 1px solid rgba(77, 149, 221, .28);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 18%, rgba(22, 212, 90, .11), transparent 34%),
    linear-gradient(135deg, rgba(3, 34, 70, .92), rgba(2, 24, 51, .98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .02), 0 30px 80px rgba(0, 10, 30, .28);
}

.whatsapp-panel::before {
  content: "";
  position: absolute;
  right: 3%;
  top: 7%;
  width: min(360px, 28vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 46%, rgba(255, 255, 255, .05) 47% 62%, transparent 63%),
    conic-gradient(from 80deg, rgba(255, 255, 255, .08), transparent 24%, rgba(24, 220, 89, .16), transparent 64%, rgba(255, 255, 255, .08));
  opacity: .9;
  z-index: 0;
}

.whatsapp-copy,
.whatsapp-action {
  position: relative;
  z-index: 1;
}

.whatsapp-copy h2,
.location-copy h2,
.final-cta-copy h2 {
  margin: 0;
  max-width: 650px;
  color: #fff;
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  line-height: .96;
  font-weight: 900;
}

.whatsapp-copy > p:not(.final-kicker),
.location-copy > p,
.final-cta-copy > p {
  max-width: 600px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.08rem, 1.6vw, 1.45rem);
  line-height: 1.55;
}

.whatsapp-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

.whatsapp-features article {
  min-height: 120px;
  padding: 0 18px;
  display: grid;
  align-content: start;
  gap: 16px;
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.whatsapp-features article:first-child {
  border-left: 0;
}

.whatsapp-features i,
.location-benefits i,
.final-benefits i {
  color: var(--king-yellow);
  font-size: 3rem;
  line-height: 1;
}

.whatsapp-features span {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.35;
}

.online-card {
  width: min(560px, 100%);
  margin-top: 34px;
  padding: 28px 34px;
  display: flex;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  background: rgba(7, 39, 80, .42);
}

.online-card > i {
  color: var(--king-yellow);
  font-size: 4.6rem;
}

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

.online-card strong {
  color: var(--king-yellow);
  font-size: 1.45rem;
  font-weight: 900;
}

.online-card span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .9);
  font-size: 1.08rem;
  line-height: 1.4;
}

.whatsapp-action {
  position: relative;
  padding-left: clamp(26px, 4vw, 70px);
  border-left: 1px solid rgba(255, 255, 255, .22);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.whatsapp-watermark {
  position: absolute;
  right: 3%;
  top: -2%;
  color: rgba(255, 255, 255, .045);
  font-size: clamp(12rem, 20vw, 21rem);
  line-height: 1;
  transform: rotate(-10deg);
}

.whatsapp-orbit {
  position: relative;
  width: clamp(170px, 18vw, 245px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, #21c653 0 48%, rgba(33, 198, 83, .24) 49% 68%, rgba(255, 255, 255, .06) 69% 100%);
  box-shadow: 0 0 44px rgba(33, 198, 83, .46);
}

.whatsapp-orbit::before {
  content: "";
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  border: 1px solid rgba(33, 198, 83, .38);
  box-shadow:
    0 0 0 16px rgba(33, 198, 83, .06),
    0 0 0 38px rgba(33, 198, 83, .035);
}

.whatsapp-orbit::after {
  content: "";
  position: absolute;
  inset: -66px;
  border-radius: 50%;
  border: 22px solid rgba(255, 255, 255, .04);
}

.whatsapp-orbit i {
  color: #fff;
  font-size: clamp(5.8rem, 9vw, 8.6rem);
  z-index: 1;
}

.whatsapp-action h3 {
  margin: 0 0 28px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.18;
  font-weight: 600;
}

.whatsapp-action h3 span {
  display: block;
  color: var(--king-yellow);
  font-weight: 900;
}

.whatsapp-main-btn,
.final-whatsapp-btn {
  min-height: 72px;
  padding-inline: 36px;
  border: 0;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
  background: #22b34f;
  box-shadow: 0 20px 42px rgba(0, 0, 0, .24);
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 900;
}

.whatsapp-main-btn:hover,
.final-whatsapp-btn:hover {
  color: #fff;
  background: #19a744;
}

.whatsapp-main-btn {
  width: min(520px, 100%);
}

.whatsapp-note {
  margin: 24px 0 26px;
  color: #fff;
  font-size: 1.1rem;
}

.whatsapp-note i {
  color: #20d65a;
  margin-right: 10px;
}

.phone-card {
  width: min(390px, 100%);
  padding: 20px 26px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 18px;
  text-align: left;
  background: rgba(7, 39, 80, .42);
}

.phone-card i {
  grid-row: span 2;
  color: #23c657;
  font-size: 2.2rem;
}

.phone-card span {
  font-weight: 800;
}

.phone-card strong {
  color: var(--king-yellow);
  font-size: 1.28rem;
}

.location-section,
.final-cta-section {
  background:
    linear-gradient(132deg, transparent 0 74%, rgba(255, 194, 13, .36) 74.15%, transparent 74.35%),
    linear-gradient(132deg, transparent 0 83%, rgba(255, 194, 13, .22) 83.15%, transparent 83.35%),
    radial-gradient(circle at 88% 45%, rgba(255, 194, 13, .08), transparent 30%),
    #021b39;
}

.location-section::before {
  inset: 0;
  background:
    linear-gradient(125deg, transparent 0 81%, rgba(255, 194, 13, .75) 81.08%, transparent 81.22%),
    linear-gradient(125deg, transparent 0 85%, rgba(255, 194, 13, .2) 85.08%, transparent 85.22%);
  opacity: .7;
}

.location-section::after {
  right: -180px;
  bottom: -190px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 194, 13, .22);
  transform: rotate(45deg);
}

.location-container {
  display: grid;
  grid-template-columns: minmax(340px, .64fr) minmax(480px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.location-copy img,
.final-cta-copy img {
  width: min(300px, 58vw);
  margin-bottom: 46px;
}

.location-copy h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.location-info {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.location-info i {
  width: 62px;
  height: 62px;
  border: 1px solid var(--king-yellow);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--king-yellow);
  font-size: 2rem;
}

.location-info strong,
.location-info span {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.4;
}

.location-btn,
.final-outline-btn {
  min-height: 50px;
  margin-top: 22px;
  padding-inline: 22px;
  border: 1px solid var(--king-yellow);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--king-yellow);
  text-transform: uppercase;
  font-weight: 900;
}

.location-btn:hover,
.final-outline-btn:hover {
  color: #061f45;
  background: var(--king-yellow);
}

.map-card {
  position: relative;
  min-height: 565px;
  overflow: hidden;
  border: 2px solid rgba(255, 194, 13, .86);
  border-radius: 18px;
  background: #06264d;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, .35), 0 26px 70px rgba(0, 0, 0, .25);
}

.map-card img {
  display: block;
  width: 100%;
  height: 565px;
  object-fit: cover;
  object-position: center;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: rotate(-10deg) scale(1.25);
  z-index: 1;
}

.map-road {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 194, 13, .45), rgba(255, 194, 13, .95), rgba(255, 194, 13, .42));
  z-index: 2;
}

.map-road-main {
  left: 47%;
  top: -12%;
  width: 14px;
  height: 124%;
  transform: rotate(-4deg);
  box-shadow: 0 0 16px rgba(255, 194, 13, .35);
}

.map-road-side {
  left: 0;
  top: 40%;
  width: 74%;
  height: 8px;
  transform: rotate(-18deg);
  opacity: .72;
}

.map-road-diagonal-one {
  left: 8%;
  top: -7%;
  width: 8px;
  height: 92%;
  transform: rotate(24deg);
  opacity: .42;
}

.map-road-diagonal-two {
  right: 12%;
  top: 2%;
  width: 7px;
  height: 72%;
  transform: rotate(-38deg);
  opacity: .38;
}

.map-road-thin {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
  z-index: 2;
}

.map-road-thin-one {
  left: 11%;
  top: 22%;
  width: 58%;
  transform: rotate(-9deg);
}

.map-road-thin-two {
  left: 18%;
  top: 72%;
  width: 70%;
  transform: rotate(13deg);
}

.map-road-thin-three {
  left: 4%;
  top: 52%;
  width: 44%;
  transform: rotate(34deg);
}

.map-label {
  position: absolute;
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 1.45rem);
  font-weight: 900;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .42);
  z-index: 3;
}

.map-label-avenue {
  left: 24%;
  top: 25%;
  transform: rotate(-17deg);
}

.map-label-center {
  left: 33%;
  top: 59%;
}

.map-label-city {
  right: 10%;
  top: 66%;
}

.map-pin {
  position: absolute;
  left: 53%;
  top: 38%;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  z-index: 4;
}

.map-pin i {
  color: var(--king-yellow);
  font-size: 7rem;
  line-height: .8;
}

.map-pin strong {
  font-size: 2.2rem;
  line-height: .86;
}

.map-pin span {
  color: var(--king-yellow);
  font-size: .72rem;
  letter-spacing: .12em;
}

.location-benefits {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 194, 13, .7);
}

.location-benefits article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  padding: 0 30px;
  border-left: 1px solid rgba(255, 194, 13, .32);
}

.location-benefits article:first-child {
  border-left: 0;
}

.location-benefits i {
  width: 62px;
  height: 62px;
  border: 1px solid var(--king-yellow);
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 2rem;
}

.location-benefits strong,
.location-benefits span {
  display: block;
}

.location-benefits span {
  color: rgba(255, 255, 255, .84);
  line-height: 1.35;
}

.final-cta-section {
  padding-bottom: 0;
  background:
    radial-gradient(circle at 80% 42%, rgba(255, 194, 13, .16), transparent 22%),
    radial-gradient(circle at 68% 54%, rgba(255, 194, 13, .12), transparent 28%),
    linear-gradient(127deg, transparent 0 65%, rgba(255, 194, 13, .28) 65.08%, transparent 65.26%),
    linear-gradient(127deg, transparent 0 75%, rgba(255, 194, 13, .82) 75.08%, transparent 75.24%),
    linear-gradient(127deg, transparent 0 85%, rgba(255, 194, 13, .34) 85.08%, transparent 85.28%),
    #021b39;
}

.final-cta-section::before {
  right: -18%;
  top: -20%;
  width: 72%;
  height: 130%;
  background:
    linear-gradient(127deg, transparent 0 35%, rgba(255, 255, 255, .04) 35.1%, transparent 35.45%),
    linear-gradient(127deg, transparent 0 49%, rgba(255, 194, 13, .18) 49.1%, transparent 49.4%),
    linear-gradient(127deg, transparent 0 69%, rgba(255, 255, 255, .06) 69.1%, transparent 69.35%);
}

.final-cta-section::after {
  right: 7%;
  top: 21%;
  width: 520px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(255, 194, 13, .44), transparent 62%);
  filter: blur(22px);
}

.final-light-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(127deg, transparent 0 58%, rgba(255, 194, 13, .75) 58.06%, transparent 58.18%),
    linear-gradient(127deg, transparent 0 72%, rgba(255, 255, 255, .11) 72.06%, transparent 72.18%),
    linear-gradient(127deg, transparent 0 91%, rgba(255, 194, 13, .55) 91.06%, transparent 91.2%);
  opacity: .9;
}

.final-cta-container {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .72fr);
  gap: 36px;
  align-items: center;
}

.final-cta-copy {
  position: relative;
  z-index: 2;
}

.final-cta-copy h2 {
  max-width: 680px;
  font-size: clamp(4rem, 7vw, 5rem);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 26px;
}

.final-whatsapp-btn {
  color: #061f45;
  background: var(--king-yellow);
  text-transform: none;
  min-width: 350px;
}

.final-whatsapp-btn:hover {
  color: #061f45;
  background: #ffd04a;
}

.final-outline-btn {
  margin-top: 0;
  min-height: 72px;
  min-width: 430px;
  justify-content: center;
  color: #fff;
  text-transform: none;
  font-size: 1.25rem;
}

.final-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
}

.final-benefits article {
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, .13);
  display: grid;
  gap: 8px;
}

.final-benefits article:first-child {
  border-left: 0;
  padding-left: 0;
}

.final-benefits i {
  font-size: 3.4rem;
}

.final-benefits strong {
  color: #fff;
  line-height: 1.2;
}

.final-benefits span {
  color: rgba(255, 255, 255, .78);
  font-size: .92rem;
  line-height: 1.35;
}

.final-brand-visual {
  position: relative;
  min-height: 410px;
  display: grid;
  place-items: center;
}

.final-brand-visual::before {
  content: "";
  position: absolute;
  inset: 15% 0;
  background: radial-gradient(circle, rgba(255, 194, 13, .34), transparent 58%);
  filter: blur(18px);
}

.final-brand-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18%;
  width: min(520px, 44vw);
  height: 34px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 194, 13, .95), rgba(255, 194, 13, .18) 42%, transparent 72%);
  filter: blur(5px);
}

.final-brand-visual img {
  position: relative;
  width: min(660px, 48vw);
  max-width: 100%;
  filter: drop-shadow(0 0 26px rgba(255, 194, 13, .6));
  z-index: 1;
}

.final-service-card {
  grid-column: 2;
  justify-self: end;
  width: min(520px, 100%);
  padding: 28px 34px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: rgba(7, 39, 80, .56);
  display: grid;
  gap: 22px;
}

.final-service-card article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: start;
}

.final-service-card i {
  color: var(--king-yellow);
  font-size: 3rem;
}

.final-service-card strong,
.final-service-card p {
  color: #fff;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.35;
}

.final-service-card strong span {
  display: block;
}

.final-footer-strip {
  min-height: 86px;
  padding: 18px clamp(22px, 5vw, 78px);
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
  font-weight: 900;
}

.final-footer-strip > i {
  color: var(--king-yellow);
  font-size: 2.8rem;
}

.final-footer-strip div {
  display: flex;
  gap: 40px;
  color: var(--king-yellow);
  font-size: 1.8rem;
}

@media (max-width: 1180px) {
  .whatsapp-panel,
  .location-container,
  .final-cta-container {
    grid-template-columns: 1fr;
  }

  .whatsapp-action {
    padding-left: 0;
    padding-top: 34px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
  }

  .map-card {
    min-height: 440px;
  }

  .map-card img {
    height: 440px;
  }

  .location-benefits,
  .final-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 0;
  }

  .location-benefits article:nth-child(3),
  .final-benefits article:nth-child(3) {
    border-left: 0;
  }

  .final-service-card {
    grid-column: auto;
    justify-self: stretch;
  }
}

@media (max-width: 760px) {
  .whatsapp-panel {
    padding: 26px 18px;
  }

  .whatsapp-features,
  .location-benefits,
  .final-benefits {
    grid-template-columns: 1fr;
  }

  .whatsapp-features article,
  .location-benefits article,
  .final-benefits article,
  .location-benefits article:nth-child(3),
  .final-benefits article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 18px 0 0;
  }

  .whatsapp-features article:first-child,
  .location-benefits article:first-child,
  .final-benefits article:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .online-card,
  .final-actions,
  .final-footer-strip {
    grid-template-columns: 1fr;
  }

  .online-card {
    align-items: flex-start;
    padding: 22px;
  }

  .whatsapp-main-btn,
  .final-whatsapp-btn,
  .final-outline-btn {
    width: 100%;
    min-width: 0;
    font-size: 1.05rem;
  }

  .map-card {
    min-height: 360px;
  }

  .map-card img {
    height: 360px;
  }

  .map-pin i {
    font-size: 5.4rem;
  }

  .map-pin strong {
    font-size: 1.6rem;
  }

  .final-service-card article {
    grid-template-columns: 1fr;
  }

  .final-footer-strip {
    text-align: center;
    justify-items: center;
    letter-spacing: .06em;
  }
}

/* Final sections hardening: keep these three image-based blocks formatted. */
#whatsapp-direto,
#localizacao,
#analise-agora {
  display: block;
  width: 100%;
  background-color: #021b39;
}

#whatsapp-direto .final-section-container,
#localizacao .final-section-container,
#analise-agora .final-section-container {
  width: 100%;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

#whatsapp-direto .whatsapp-panel {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .9fr);
}

#localizacao .location-container {
  display: grid;
  grid-template-columns: minmax(340px, .64fr) minmax(480px, 1fr);
}

#localizacao .map-card img {
  display: block;
  width: 100%;
  height: 565px;
  object-fit: cover;
}

#analise-agora .final-cta-container {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .72fr);
}

#analise-agora .final-brand-visual img {
  display: block;
  width: min(660px, 48vw);
  max-width: 100%;
  height: auto;
}

#whatsapp-direto .whatsapp-main-btn,
#analise-agora .final-whatsapp-btn,
#analise-agora .final-outline-btn,
#localizacao .location-btn {
  text-decoration: none;
}

@media (max-width: 1180px) {
  #whatsapp-direto .whatsapp-panel,
  #localizacao .location-container,
  #analise-agora .final-cta-container {
    grid-template-columns: 1fr;
  }

  #localizacao .map-card img {
    height: 440px;
  }
}

@media (max-width: 760px) {
  #whatsapp-direto .whatsapp-features,
  #localizacao .location-benefits,
  #analise-agora .final-benefits {
    grid-template-columns: 1fr;
  }

  #localizacao .map-card img {
    height: 360px;
  }

  #analise-agora .final-brand-visual img {
    width: 100%;
  }
}
