/* ===== A2S Solar - Estilos principais ===== */
@import url('fonts.css');

:root {
  --background: hsl(210 20% 98%);
  --foreground: hsl(215 35% 15%);
  --card: hsl(0 0% 100%);
  --card-foreground: hsl(215 35% 15%);
  --primary: hsl(215 80% 28%);
  --primary-foreground: hsl(0 0% 100%);
  --secondary: hsl(28 95% 52%);
  --secondary-foreground: hsl(0 0% 100%);
  --muted: hsl(210 20% 94%);
  --muted-foreground: hsl(215 15% 46%);
  --border: hsl(214 25% 88%);
  --radius: 0.75rem;
  --solar-orange: hsl(28 95% 52%);
  --solar-yellow: hsl(45 95% 55%);
  --solar-blue: hsl(215 80% 28%);
  --solar-blue-light: hsl(205 75% 55%);
  --solar-dark: hsl(215 40% 10%);
  --solar-green: hsl(150 60% 40%);
  --font-heading: 'Nexa', system-ui, sans-serif;
  --font-body: 'Nexa', system-ui, sans-serif;
  /* Paleta ilustrada (artes Adobe) */
  --brand-navy: #00204d;
  --brand-blue: #004380;
  --brand-blue-mid: #4d81c2;
  --brand-blue-card: #2e69aa;
  --brand-blue-deep: #003f76;
  --brand-orange: #d84e22;
  --brand-orange-bright: #e84e0f;
  --brand-menu-gold: #f9a12a;
  --brand-lime: #c8d400;
  --brand-menu-lime: #c8d400;
  --brand-menu-orange: #d84e22;
  --brand-menu-blue: #4d81c2;
  --brand-sky: #4d81c2;
  --brand-section-bg: #ededed;
  --brand-pill-radius: 1.75rem;
  --layout-max: 80rem; /* 1280px — largura das seções e do header */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-y: visible;
  min-height: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0 0 0.5em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Skip link (acessibilidade) */
.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
  z-index: 100;
  border-radius: var(--radius);
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

/* Layout */
.section-container {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .section-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .section-container { padding-left: 2rem; padding-right: 2rem; }
}

.section-container-narrow {
  max-width: 48rem;
}

.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .section-padding { padding-top: 6rem; padding-bottom: 6rem; }
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head-light .section-title,
.section-head-light .section-desc,
.section-head-light .label { color: var(--primary-foreground); }
.section-head-light .label { opacity: 0.9; }
.section-desc { color: var(--muted-foreground); margin-top: 0.75rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.section-title { font-size: 1.875rem; margin-top: 0.5rem; }
@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}
.label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
}
.label-light { color: var(--solar-yellow); }

.text-gradient-solar {
  background: linear-gradient(135deg, var(--solar-orange), var(--solar-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-solar {
  background: linear-gradient(135deg, var(--solar-orange), var(--solar-yellow));
}
.gradient-blue {
  background: linear-gradient(135deg, var(--solar-blue), var(--solar-blue-light));
}
.gradient-dark {
  background: linear-gradient(135deg, var(--solar-dark), var(--primary));
}

.bg-background { background: var(--background); }
.bg-muted { background: var(--muted); }

/* Rede de partículas (plexus) — home, seção Serviços */
.section-plexus {
  position: relative;
  overflow: hidden;
}
.section-plexus-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
}
.section-plexus-content {
  position: relative;
  z-index: 1;
}
.bg-card { background: var(--card); }

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
}
.btn:hover { opacity: 0.9; }
.btn-primary {
  background: linear-gradient(135deg, var(--solar-orange), var(--solar-yellow));
  color: var(--primary-foreground);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-lg { padding: 0.75rem 1.5rem; font-size: 1.125rem; }
.btn-full { width: 100%; }
.btn-outline-light {
  background: rgba(255,255,255,0.1);
  color: var(--primary-foreground);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.2); }
.btn-blue {
  background: linear-gradient(135deg, var(--solar-blue), var(--solar-blue-light));
  color: var(--primary-foreground);
}

.section-cta { text-align: center; margin-top: 2.5rem; }

/* ===== Navbar (marca / layout Adobe) ===== */
header {
  max-width: 100%;
  overflow: visible;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  font-family: var(--font-heading);
}

/* Home sobre o hero: transparente */
.page-home .navbar:not(.scrolled) {
  background: transparent;
  box-shadow: none;
}

/* Páginas internas: barra clara */
body:not(.page-home) .navbar {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 16px rgba(0, 32, 77, 0.08);
}

/* Após rolagem (home e demais) */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 32, 77, 0.1);
}

.navbar .section-container.nav-inner {
  max-width: var(--layout-max);
  margin-left: auto;
  margin-right: auto;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.75rem;
  width: 100%;
  min-width: 0;
  gap: 0.75rem;
  box-sizing: border-box;
  overflow: visible;
}

@media (min-width: 1100px) {
  .nav-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem 2rem;
    min-height: 5.5rem;
  }
  .logo-link {
    justify-self: start;
  }
  .nav-desktop {
    justify-self: center;
    justify-content: center;
    align-self: center;
  }
  .nav-cta {
    justify-self: end;
    align-self: start;
  }
  .nav-toggle {
    justify-self: end;
  }
}

/* Slot fixo do logo — troca verde/webp sem mudar posição */
.logo-link {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 12.5rem;
  height: 4.35rem;
  z-index: 2;
}
.logo-img {
  object-fit: contain;
  filter: none;
}
.logo-img--top,
.logo-img--sticky {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: left center;
}
/* Home no hero: logo verde */
.page-home .navbar:not(.scrolled) .logo-img--sticky {
  display: none;
}
/* Sticky / páginas internas: logo colorido (webp) */
.logo-img--sticky {
  display: none;
}
.navbar.scrolled .logo-img--top,
body:not(.page-home) .logo-img--top {
  display: none;
}
.navbar.scrolled .logo-img--sticky,
body:not(.page-home) .logo-img--sticky {
  display: block;
}

.nav-desktop {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: clamp(0.65rem, 1.15vw, 1.35rem);
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    flex-wrap: nowrap;
  }
}
.nav-desktop a,
.nav-desktop button {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 0.95vw, 0.875rem);
  font-weight: 800;
  color: var(--brand-menu-orange);
  transition: color 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.nav-desktop button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-desktop a:hover,
.nav-desktop button:hover {
  opacity: 0.88;
}

/* Home no hero: Início verde limão; demais itens brancos; orçamento = SVG */
.page-home .navbar:not(.scrolled) .nav-desktop > li:nth-child(1) > a {
  color: var(--brand-menu-lime);
}
.page-home .navbar:not(.scrolled) .nav-desktop > li:nth-child(n + 2) > a,
.page-home .navbar:not(.scrolled) .nav-desktop > li:nth-child(n + 2) > button {
  color: #fff;
}

body:not(.page-home) .nav-desktop > li:nth-child(1) > a {
  color: var(--brand-menu-lime);
}
body:not(.page-home) .nav-desktop > li:nth-child(n + 2):nth-child(odd) > a,
body:not(.page-home) .nav-desktop > li:nth-child(n + 2):nth-child(odd) > button {
  color: var(--brand-menu-orange);
}
body:not(.page-home) .nav-desktop > li:nth-child(n + 2):nth-child(even) > a,
body:not(.page-home) .nav-desktop > li:nth-child(n + 2):nth-child(even) > button {
  color: var(--brand-menu-blue);
}

.navbar.scrolled .nav-desktop > li:nth-child(1) > a {
  color: var(--brand-menu-lime);
}
.navbar.scrolled .nav-desktop > li:nth-child(n + 2):nth-child(odd) > a,
.navbar.scrolled .nav-desktop > li:nth-child(n + 2):nth-child(odd) > button {
  color: var(--brand-menu-orange);
}
.navbar.scrolled .nav-desktop > li:nth-child(n + 2):nth-child(even) > a,
.navbar.scrolled .nav-desktop > li:nth-child(n + 2):nth-child(even) > button {
  color: var(--brand-menu-blue);
}
.nav-has-submenu {
  position: relative;
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 12.5rem;
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  display: none;
  z-index: 120;
}
.nav-has-submenu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.45rem;
}
.navbar.scrolled .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--border);
}
.nav-submenu li {
  margin: 0;
}
.nav-submenu a {
  display: block;
  padding: 0.45rem 0.6rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  color: var(--foreground);
  font-weight: 600;
}
.nav-submenu a:hover {
  background: rgba(255, 255, 255, 0.08);
}
.navbar.scrolled .nav-submenu a:hover {
  background: #f1f5f9;
}
.nav-has-submenu:hover .nav-submenu,
.nav-has-submenu:focus-within .nav-submenu {
  display: block;
}
.page-home .navbar:not(.scrolled) .nav-submenu {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--border);
}
.page-home .navbar:not(.scrolled) .nav-submenu a:hover {
  background: #f1f5f9;
}

/* Slot fixo do botão Orçamento — mesma posição no hero e no sticky */
.nav-cta {
  display: none;
  flex-shrink: 0;
  width: 11.5625rem;
  height: 4.65rem;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
  line-height: 0;
  align-self: flex-start;
  margin-top: 0;
  transition: filter 0.2s ease;
}
.nav-cta:hover {
  filter: brightness(1.06);
}
.nav-cta__img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: top right;
}
@media (min-width: 1024px) {
  .nav-cta {
    display: block;
  }
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.5rem;
  margin-right: -0.25rem;
  margin-top: 0;
  align-self: center;
  background: none;
  border: none;
  color: var(--brand-menu-orange);
  cursor: pointer;
  transition: color 0.2s;
}
.page-home .navbar:not(.scrolled) .nav-toggle {
  color: var(--brand-menu-lime);
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.nav-mobile {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  max-width: 100%;
  overflow-x: clip;
}
@media (max-width: 1023px) {
  .nav-desktop {
    display: none !important;
  }
  .nav-inner {
    min-height: 4.75rem;
    align-items: center;
  }
  .logo-link {
    width: 9.5rem;
    height: 2.85rem;
  }
  .nav-cta {
    width: 9.75rem;
    height: 3.35rem;
  }
}
.nav-mobile[hidden] { display: none; }
.nav-mobile .section-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  max-width: var(--layout-max);
  margin-left: auto;
  margin-right: auto;
}
.nav-mobile-link {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--brand-menu-orange);
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.nav-mobile-link:nth-of-type(1) { color: var(--brand-menu-lime); }
.nav-mobile-link:nth-of-type(even) { color: var(--brand-menu-blue); }
.nav-mobile-link:nth-of-type(odd):not(:first-of-type) { color: var(--brand-menu-orange); }
.nav-mobile-link:hover { opacity: 0.85; }
.nav-mobile-group {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--brand-menu-orange);
  margin-top: 0.4rem;
  margin-bottom: -0.2rem;
}
.nav-mobile-sublink {
  font-weight: 700;
  color: var(--brand-menu-blue);
  padding: 0.2rem 0 0.2rem 1rem;
}
.nav-mobile-sublink:hover {
  color: var(--brand-menu-orange);
}
.nav-cta--mobile {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin-top: 0.75rem;
}
.nav-cta--mobile .nav-cta__img {
  height: auto;
  width: min(100%, 12.5rem);
  max-width: 12.5rem;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../../images/hero-solar.jpg') center/cover no-repeat;
  background-color: var(--solar-dark);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-overlay-sunrise {
  background: var(--solar-dark);
  opacity: 1;
  -webkit-animation: sunrise-overlay 2.5s ease-out both;
  animation: sunrise-overlay 2.5s ease-out both;
}
.hero-overlay-gradient {
  background: linear-gradient(to top, rgba(15, 25, 40, 0.9) 0%, rgba(15, 25, 40, 0.3) 50%, transparent 100%);
}
@-webkit-keyframes sunrise-overlay {
  0% { opacity: 1; }
  60% { opacity: 0.3; }
  100% { opacity: 0; }
}
@keyframes sunrise-overlay {
  0% { opacity: 1; }
  60% { opacity: 0.3; }
  100% { opacity: 0; }
}

.hero-sun {
  position: absolute;
  top: 15%;
  left: 50%;
  z-index: 2;
  width: 4rem;
  height: 4rem;
  margin-left: -2rem;
  opacity: 0;
  -webkit-transform: translate3d(0, 80px, 0) scale(0.8);
  transform: translate3d(0, 80px, 0) scale(0.8);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform, opacity;
  -webkit-animation: sun-rise 2s ease-out 0.5s both;
  animation: sun-rise 2s ease-out 0.5s both;
}
@media (min-width: 768px) {
  .hero-sun {
    width: 6rem;
    height: 6rem;
    margin-left: -3rem;
  }
}
.hero-sun-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8rem;
  height: 8rem;
  margin: -4rem 0 0 -4rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.85) 0%, rgba(251, 146, 60, 0.35) 45%, transparent 70%);
  opacity: 0.85;
  -webkit-filter: none;
  filter: none;
  box-shadow: 0 0 48px 16px rgba(251, 146, 60, 0.35);
  -webkit-animation: pulse-glow 2s ease-in-out infinite;
  animation: pulse-glow 2s ease-in-out infinite;
}
@media (min-width: 768px) {
  .hero-sun-glow { width: 12rem; height: 12rem; margin: -6rem 0 0 -6rem; }
}
.hero-sun-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  color: var(--solar-yellow);
  -webkit-filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}
@-webkit-keyframes sun-rise {
  0% {
    -webkit-transform: translate3d(0, 80px, 0) scale(0.8);
    transform: translate3d(0, 80px, 0) scale(0.8);
    opacity: 0;
  }
  40% { opacity: 1; }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
}
@keyframes sun-rise {
  0% {
    -webkit-transform: translate3d(0, 80px, 0) scale(0.8);
    transform: translate3d(0, 80px, 0) scale(0.8);
    opacity: 0;
  }
  40% { opacity: 1; }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes pulse-glow {
  0%, 100% {
    opacity: 0.75;
    box-shadow: 0 0 32px 12px rgba(251, 146, 60, 0.28);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 56px 20px rgba(251, 146, 60, 0.5);
  }
}
@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.75;
    box-shadow: 0 0 32px 12px rgba(251, 146, 60, 0.28);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 56px 20px rgba(251, 146, 60, 0.5);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 5rem;
  opacity: 0;
  -webkit-transform: translate3d(0, 40px, 0);
  transform: translate3d(0, 40px, 0);
  will-change: transform, opacity;
  -webkit-animation: content-reveal 1s ease-out 1.8s both;
  animation: content-reveal 1s ease-out 1.8s both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 9999px;
  background: rgba(251, 146, 60, 0.2);
  border: 1px solid rgba(251, 146, 60, 0.3);
  backdrop-filter: blur(8px);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-foreground);
}
.hero-badge svg { color: var(--solar-yellow); flex-shrink: 0; }
.hero-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .hero-title { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 4.5rem; }
}
.hero-lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  max-width: 42rem;
  margin: 0 auto 2rem;
}
@media (min-width: 768px) {
  .hero-lead { font-size: 1.25rem; }
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  margin-left: -12px;
  color: rgba(255,255,255,0.6);
  -webkit-animation: float 3s ease-in-out infinite;
  animation: float 3s ease-in-out infinite;
}
.hero-scroll:hover { color: var(--primary-foreground); }
@-webkit-keyframes content-reveal {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes content-reveal {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
}
@keyframes float {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
}

/* Estado final do hero (Safari / reduced-motion / fallback JS) */
.hero.hero-animate-done .hero-overlay-sunrise {
  opacity: 0;
  -webkit-animation: none;
  animation: none;
}
.hero.hero-animate-done .hero-sun {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
  -webkit-animation: none;
  animation: none;
}
.hero.hero-animate-done .hero-content {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-animation: none;
  animation: none;
}

/* ===== Sobre ===== */
.grid-2 {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.about-text p { color: var(--muted-foreground); margin-bottom: 1rem; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.stat-card {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.stat-card svg { color: var(--secondary); margin: 0 auto 0.5rem; display: block; }
.stat-value { display: block; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--foreground); }
.stat-label { font-size: 0.875rem; color: var(--muted-foreground); }
.about-image-wrap { position: relative; }
.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.about-badge-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  color: var(--primary-foreground);
}
.about-badge-value { display: block; font-family: var(--font-heading); font-size: 1.875rem; font-weight: 700; }
.about-badge-text { font-size: 0.875rem; opacity: 0.9; }

/* ===== Video institucional ===== */
.video-institucional-wrap {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}
.video-institucional {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-institucional--youtube {
  border: 0;
}
.video-institucional-wrap--youtube-short {
  width: fit-content;
  max-width: calc(450px * 9 / 16);
  max-height: 450px;
  margin-left: auto;
  margin-right: auto;
}
.video-institucional-wrap--brand.video-institucional-wrap--youtube-short {
  width: fit-content;
}
.video-institucional-wrap--youtube-short .video-institucional--youtube {
  aspect-ratio: 9 / 16;
  display: block;
  width: auto;
  height: auto;
  max-height: 450px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .video-institucional-wrap--youtube-short {
    max-width: none;
    max-height: 450px;
  }
  .video-institucional-wrap--youtube-short .video-institucional--youtube {
    height: 450px;
    max-height: 450px;
    width: auto;
    aspect-ratio: 9 / 16;
  }
}

/* ===== Serviços ===== */
.services-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary-foreground);
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--muted-foreground); margin: 0; }

/* ===== Produtos ===== */
.products-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.product-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-weight: 500;
  border: none;
  background: var(--muted);
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all 0.3s;
}
.product-tab:hover { background: var(--border); }
.product-tab.active {
  background: linear-gradient(135deg, var(--solar-orange), var(--solar-yellow));
  color: var(--primary-foreground);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.product-tab svg { flex-shrink: 0; }

.products-panel { display: none; }
.products-panel.active { display: block; }
.product-cards {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .product-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .product-cards { grid-template-columns: repeat(3, 1fr); }
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.product-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  border-color: rgba(251, 146, 60, 0.3);
}
.product-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.product-card p { color: var(--muted-foreground); font-size: 0.875rem; margin: 0 0 0.75rem; }
.product-power {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  background: rgba(30, 58, 138, 0.1);
  color: var(--primary);
}

/* ===== Comparativo ===== */
.compare-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  display: grid;
}
@media (min-width: 900px) {
  .compare-card {
    grid-template-columns: 1fr 1fr;
  }
}
.compare-column {
  padding: 1.5rem 1.25rem;
}
@media (min-width: 768px) {
  .compare-column {
    padding: 2rem;
  }
}
.compare-column + .compare-column {
  border-top: 1px solid var(--border);
}
@media (min-width: 900px) {
  .compare-column + .compare-column {
    border-top: 0;
    border-left: 2px solid rgba(37, 99, 235, 0.45);
  }
}
.compare-column h3 {
  margin: 0 0 1rem;
  font-size: 1.65rem;
  line-height: 1.2;
}
.compare-column-negative h3 {
  color: #334155;
}
.compare-column-positive h3 {
  color: #0f3d7a;
}
.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.compare-list li {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  align-items: start;
  gap: 0.7rem;
  color: #334155;
  line-height: 1.45;
}
.compare-icon {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
}
.compare-icon-negative {
  color: #dc2626;
}
.compare-icon-positive {
  color: #16a34a;
}

/* Comparativo ilustrado */
.comparativo-brand.section-padding {
  padding-bottom: 0;
}
.comparativo-brand .section-head {
  margin-bottom: 2rem;
}
.comparativo-brand .section-title-brand {
  color: #c74a20;
  font-weight: 800;
}
.comparativo-brand__lead {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  color: #5a6d82;
  font-size: 1rem;
  line-height: 1.5;
}
.compare-cards-brand {
  display: grid;
  gap: 1.1rem;
  align-items: stretch;
  margin-bottom: 0.35rem;
}
@media (min-width: 900px) {
  .compare-cards-brand {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
  }
}
.compare-card-brand {
  --compare-header-h: 38.3%;
  --compare-body-top: 46%;
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 752.5 / 299.66;
  filter: drop-shadow(0 12px 28px rgba(0, 32, 77, 0.14));
}
.compare-card-brand--positive {
  aspect-ratio: 794.5 / 299.66;
}
.compare-card-brand__shape {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
}
.compare-card-brand__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  pointer-events: none;
}
.compare-card-brand__title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--compare-header-h);
  margin: 1rem 0 0 0;
  display: flex;
  align-items: center;
  padding: 0 1.1rem 0.1rem;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.15;
  box-sizing: border-box;
}
.compare-card-brand--negative .compare-card-brand__title {
  justify-content: flex-start;
  padding-left: 15%;
  padding-right: 1rem;
  color: #fff;
}
.compare-card-brand--positive .compare-card-brand__title {
  justify-content: flex-start;
  padding-right: 10.5%;
  padding-left: 2rem;
  text-align: right;
  color: #4d81c2;
}
.compare-card-brand__list {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--compare-body-top);
  bottom: 6%;
  margin: 0;
  padding: 0.55rem 1.1rem 0.75rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(0.34rem, 0.9vw, 0.55rem);
  box-sizing: border-box;
}
.compare-card-brand__list_1{margin-left:3rem!important;}
.compare-card-brand__list li {
  display: grid;
  grid-template-columns: 0.95rem 1fr;
  align-items: start;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: clamp(0.76rem, 0.95vw, 0.86rem);
  font-weight: 400;
  line-height: 1.34;
  color: #f4f8ff;
}
.compare-card-brand__mark {
  font-family: var(--font-heading);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1;
}
.compare-card-brand__mark--no {
  color: #e84e0f;
}
.compare-card-brand__mark--yes {
  color: var(--brand-lime);
}
.compare-card-brand__shape-layer--split {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  flex-direction: column;
  pointer-events: none;
}
.compare-card-brand__shape-header {
  flex: 0 0 auto;
  display: block;
  width: 100%;
  max-width: none;
  object-fit: fill;
}
.compare-card-brand__shape-body {
  flex: 1 1 auto;
  display: block;
  width: 100%;
  min-height: 0;
  max-width: none;
  object-fit: fill;
}
@media (max-width: 899px) {
  .compare-card-brand,
  .compare-card-brand--positive {
    --compare-mobile-header-h: clamp(3rem, 11.2vw, 3.45rem);
    --compare-body-pad-y: 0.72rem;
    aspect-ratio: auto;
    height: auto;
    min-height: 0;
    overflow: hidden;
    isolation: isolate;
  }
  .compare-card-brand__shape--full {
    display: none;
  }
  .compare-card-brand__shape-layer--split {
    display: flex;
  }
  .compare-card-brand__shape-header {
    height: var(--compare-mobile-header-h);
    flex: 0 0 var(--compare-mobile-header-h);
  }
  .compare-card-brand__shape-body {
    margin-top: -1px;
    flex: 1 1 auto;
    height: auto;
  }
  .compare-card-brand__inner {
    height: auto;
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }
  .compare-card-brand__title {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    height: auto;
    min-height: var(--compare-mobile-header-h);
    margin: 0;
    padding: 0.55rem 1rem 0.45rem;
    flex-shrink: 0;
    font-size: clamp(0.9rem, 3.6vw, 1.05rem);
  }
  .compare-card-brand--negative .compare-card-brand__title {
    padding-left: 14%;
    padding-right: 1rem;
  }
  .compare-card-brand--positive .compare-card-brand__title {
    padding-left: 1rem;
    padding-right: 14%;
    text-align: right;
  }
  .compare-card-brand__list {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    flex: 1 1 auto;
    padding: var(--compare-body-pad-y) 0.95rem var(--compare-body-pad-y);
    gap: 0.28rem;
  }
  .compare-card-brand__list_1 {
    margin-left: 2.35rem !important;
  }
}
@media (max-width: 639px) {
  .comparativo-brand.section-padding {
    padding-bottom: 0;
  }
  .compare-card-brand,
  .compare-card-brand--positive {
    --compare-mobile-header-h: 2.85rem;
    --compare-body-pad-y: 0.62rem;
  }
  .compare-card-brand--negative .compare-card-brand__title {
    padding-left: 12%;
    font-size: 0.95rem;
    margin-top: .8rem;
  }
  .compare-card-brand--positive .compare-card-brand__title {
    padding-right: 12%;
    font-size: 0.95rem;
    margin-top: .8rem;
  }
  .compare-card-brand__list {
    padding-top: var(--compare-body-pad-y);
    padding-bottom: calc(var(--compare-body-pad-y) + 0.08rem);
    gap: 0.26rem;
  }
  .compare-card-brand__list li {
    font-size: 0.7rem;
    line-height: 1.28;
  }
}
.comparativo-brand .section-footer--servicos {
  margin-top: clamp(1.5rem, 2.8vw, 2.4rem);
}
@media (min-width: 1024px) {
  .comparativo-brand .section-footer--servicos {
    margin-top: clamp(1.75rem, 3.2vw, 2.75rem);
  }
}

/* ===== Simulador (legado — páginas antigas) ===== */
.simulator-two-step:not(.page-tool-brand) {
  background: #f4f6f8;
}
.simulator-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 992px) {
  .simulator-grid {
    grid-template-columns: 1fr 420px;
    gap: 3rem;
  }
}
.simulator-brand .section-title {
  margin-top: 0.9rem;
  margin-bottom: 0.7rem;
  color: #fff;
}
.simulator-brand .section-desc {
  color: rgba(255, 255, 255, 0.92);
}
.simulator-brand-media {
  position: relative;
  border-radius: 0.95rem;
  overflow: hidden;
  min-height: 420px;
  background: url('../../images/hero-solar.jpg') center/cover no-repeat;
}
.simulator-brand-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 25, 43, 0.88), rgba(11, 25, 43, 0.28));
}
.simulator-brand-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 2.25rem 1.8rem;
}
.simulator-brand-title {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.simulator-logo {
  width: 86px;
  height: auto;
}
.simulator-card {
  background: #fff;
  border: 1px solid #dbe3ea;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.simulator-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.step-indicator {
  border-top: 3px solid #d2d9e0;
  padding-top: 0.5rem;
}
.step-indicator span {
  display: block;
  font-size: 0.72rem;
  color: #64748b;
}
.step-indicator strong {
  display: block;
  font-size: 0.84rem;
  color: #334155;
}
.step-indicator.is-active {
  border-top-color: var(--secondary);
}
.step-indicator.is-active strong {
  color: #0f172a;
}
.simulator-step label {
  display: block;
  font-size: 0.82rem;
  color: #334155;
  margin-bottom: 0.35rem;
  margin-top: 0.2rem;
}
.simulator-step input[type="text"],
.simulator-step input[type="email"],
.simulator-step input[type="tel"],
.simulator-step input[type="number"] {
  width: 100%;
  height: 40px;
  border: 1px solid #d7dee6;
  border-radius: 0.35rem;
  padding: 0 0.75rem;
  margin-bottom: 0.82rem;
  font-size: 0.9rem;
}
.simulator-step input[type="range"] {
  width: 100%;
  accent-color: var(--secondary);
  margin-top: 0.25rem;
}
.simulator-range-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #64748b;
  margin-bottom: 1.15rem;
}
.simulator-result-highlight {
  text-align: center;
  margin: 1.15rem 0 1.3rem;
}
.simulator-result-highlight p {
  margin: 0 0 0.3rem;
  color: #0f172a;
  font-weight: 600;
}
.simulator-result-highlight strong {
  font-size: 2rem;
  line-height: 1;
  color: #0f766e;
}
.simulator-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.95rem 0 1.05rem;
}
.simulator-check input {
  margin-top: 0.15rem;
}
.simulator-check span {
  font-size: 0.74rem;
  color: #64748b;
}
.simulator-step .btn {
  margin-top: 0.35rem;
}
.simulator-brand .alert {
  margin-top: 0.9rem;
}

/* Ferramentas ilustrado */
.tools-brand {
  position: relative;
  overflow: hidden;
  background: #004380;
}
.tools-brand__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.tools-brand__bg-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center top;
}
.tools-brand .section-container {
  position: relative;
  z-index: 1;
  padding-top: clamp(2.4rem, 6vw, 4.6rem);
  padding-bottom: clamp(2rem, 5vw, 3.6rem);
}
.tools-brand .section-head {
  margin-bottom: 2rem;
}
.tools-brand .label-brand {
  color: #ffd8c8;
}
.tools-brand__title {
  color: #ffd8c8;
  font-weight: 800;
}
.tools-brand .text-brand-orange {
  color: #ffcf4a;
}
.tools-brand__lead {
  color: #d7e4f7;
}
.tools-cards-brand {
  display: grid;
  gap: 0.7rem;
}
@media (min-width: 900px) {
  .tools-cards-brand {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    align-items: start;
  }
}
.tool-card-brand {
  position: relative;
  width: 80%;
  filter: drop-shadow(0 10px 24px rgba(0, 16, 48, 0.2));
}
.tool-card-brand--simulador {
  aspect-ratio: 661.61 / 223.7;
}
.tool-card-brand--calculadora {
  aspect-ratio: 661.61 / 223.7;
}
.tool-card-brand__shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  max-width: none;
}
.tool-card-brand__shape--flip {
  transform: scaleX(-1);
}
.tool-card-brand__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0.72rem 1.4rem 0.95rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.tool-card-brand h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}
.tool-card-brand p {
  margin: 0.62rem 0 0.75rem;
  max-width: 70%;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.35;
  color: #fff;
}
.tool-card-brand--calculadora p {
  max-width: 72%;
}
.tool-card-brand__btn {
  position: absolute;
  left: -115px;
  bottom: 6px;
  z-index: 3;
  display: inline-block;
  text-decoration: none;
  line-height: 0;
}
.tool-card-brand__btn--calculadora {
  left: auto;
  right: -145px;
}
.tool-card-brand--simulador {
  justify-self: end;
}
.tool-card-brand--calculadora {
  justify-self: start;
}
.tool-card-brand__btn img {
  display: block;
  height: 160px;
  width: auto;
  max-width: none;
}
.tool-card-brand__btn--simulador img {
  height: 120px;
}
@media (max-width: 899px) {
  .tool-card-brand {
    width: 100%;
  }
  .tool-card-brand--simulador,
  .tool-card-brand--calculadora {
    justify-self: stretch;
  }
  .tools-brand .section-container {
    padding-top: 2.1rem;
    padding-bottom: 2rem;
  }
  .tool-card-brand__inner {
    padding: 0.7rem 1.05rem 0.85rem;
  }
  .tool-card-brand h3 {
    font-size: 1.45rem;
  }
  .tool-card-brand p {
    max-width: 74%;
    font-size: 0.78rem;
    margin: 0.5rem 0 0.62rem;
  }
  .tool-card-brand__btn {
    left: 1.05rem;
    bottom: 12px;
    right: auto;
  }
  .tool-card-brand__btn img {
    height: 130px;
  }
}

.section-footer-standalone {
  padding: 0;
  margin: 0;
  line-height: 0;
}
.section-footer-standalone--white {
  background: #fff;
  padding-top: 2rem;
}
.section-footer-standalone .section-footer {
  margin: 0;
}
@media (max-width: 639px) {
  .tools-brand .section-head {
    margin-bottom: 1.2rem;
  }
  .tools-brand__title {
    font-size: 1.8rem;
  }
  .tools-brand .section-container {
    padding-top: 1.7rem;
    padding-bottom: 1.4rem;
  }
  .tool-card-brand p {
    max-width: 80%;
  }
  .tool-card-brand__btn {
    bottom: 16px;
  }
  .tool-card-brand__btn img {
    height: 108px;
  }
}

/* Resultados (Antes x Depois) ilustrado */
.resultados-brand {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding-bottom: 0;
}
.resultados-brand .section-head {
  margin-bottom: 2rem;
}
.resultados-brand .section-title-brand {
  color: #c74a20;
  font-weight: 800;
}
.resultados-brand__lead {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  color: #5a6d82;
  font-size: 1rem;
  line-height: 1.5;
}
.resultados-compare {
  position: relative;
  padding-bottom: 0.5rem;
}
.resultados-cards {
  display: grid;
  gap: 1rem;
  align-items: start;
}
@media (min-width: 900px) {
  .resultados-cards {
    grid-template-columns: 1fr 1fr;
    gap: clamp(0.75rem, 2vw, 1.25rem);
  }
}
.resultado-card-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.resultado-card-wrap--antes {
  justify-content: flex-end;
}
.resultado-card-wrap--depois {
  justify-content: flex-start;
}
.resultado-card-wrap__icon {
  position: absolute;
  z-index: 2;
  height: clamp(110px, 14vw, 166px);
  width: auto;
  max-width: none;
  pointer-events: none;
  filter: drop-shadow(0 8px 16px rgba(0, 32, 77, 0.12));
}
.resultado-card-wrap--antes .resultado-card-wrap__icon {
  left: -120px;
}
.resultado-card-wrap--depois .resultado-card-wrap__icon {
  right: -120px;
}
.resultado-card {
  --resultado-header-h: 21%;
  --resultado-value-top: 24%;
  position: relative;
  width: 90%;
  max-width: 90%;
  aspect-ratio: 661.61 / 294.97;
  filter: drop-shadow(0 12px 28px rgba(0, 32, 77, 0.14));
}
.resultado-card__shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  max-width: none;
}
.resultado-card__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  pointer-events: none;
}
.resultado-card__title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--resultado-header-h);
  margin: 0;
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  box-sizing: border-box;
}
.resultado-card--depois .resultado-card__title {
  justify-content: flex-end;
  text-align: right;
}
.resultado-card__value {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--resultado-value-top);
  padding: 0 1.35rem;
  box-sizing: border-box;
}
.resultado-card--depois .resultado-card__value {
  text-align: right;
}
.resultado-card__label {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  font-weight: 600;
  color: #e8f2ff;
  margin-bottom: 0.2rem;
}
.resultado-card__value strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.resultado-card--depois .resultado-card__value strong {
  color: #c8d400;
}
.resultado-card__list {
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  bottom: 8%;
  margin: 0;
  padding: 0 1.35rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(0.3rem, 0.8vw, 0.5rem);
  box-sizing: border-box;
}
.resultado-card--depois .resultado-card__list {
  text-align: right;
  align-items: flex-end;
}
.resultado-card__list li {
  position: relative;
  padding-left: 0.85rem;
  font-family: var(--font-body);
  font-size: clamp(0.76rem, 0.95vw, 0.88rem);
  line-height: 1.35;
  color: #f4f8ff;
  max-width: 92%;
}
.resultado-card--depois .resultado-card__list li {
  padding-left: 0;
  padding-right: 0.85rem;
}
.resultado-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #d84e22;
}
.resultado-card--depois .resultado-card__list li::before {
  left: auto;
  right: 0;
  background: #c8d400;
}
.resultado-economia {
  position: relative;
  z-index: 4;
  width: clamp(130px, 16vw, 205px);
  margin: -2.5rem auto 0;
  line-height: 0;
}
.resultado-economia img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
.resultados-brand__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 1.25rem 0 0;
}
.resultados-brand__disclaimer {
  display: inline-block;
  margin: 0 0 1rem;
  padding: clamp(0.55rem, 1vw, 0.75rem) clamp(0.85rem, 1.5vw, 1.15rem);
  background: var(--brand-blue-mid);
  color: #fff;
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  box-sizing: border-box;
}
.resultados-brand__bg {
  width: 100%;
  line-height: 0;
  margin-top: clamp(0.5rem, 2vw, 1.25rem);
}
.resultados-brand__bg-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
@media (max-width: 899px) {
  .resultados-brand {
    overflow-x: clip;
    overflow-y: visible;
  }
  .resultado-card-wrap {
    justify-content: center;
  }
  .resultado-card-wrap__icon {
    display: none;
  }
  .resultado-economia {
    margin-top: -1.5rem;
    width: clamp(120px, 34vw, 180px);
  }
  .resultados-brand__bg {
    margin-top: 0;
    transform: translateY(-50%);
  }
}
@media (max-width: 639px) {
  .resultados-brand .section-head {
    margin-bottom: 1.2rem;
  }
  .resultado-card__title {
    font-size: 0.92rem;
    padding: 0 0.85rem;
  }
  .resultado-card__value {
    padding: 0 0.85rem;
  }
  .resultado-card__value strong {
    font-size: 1.55rem;
  }
  .resultado-card__list {
    padding: 0 0.85rem;
    top: 54%;
  }
  .resultado-card__list li {
    font-size: 0.72rem;
  }
}
@media (min-width: 900px) {
  .resultado-economia {
    position: absolute;
    left: 50%;
    bottom: 7rem;
    margin: 0;
    transform: translateX(-50%);
  }
  .resultados-brand__cta {
    margin-top: 5.5rem;
  }
}


/* ===== Orçamento ===== */
.budget-notice {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(14, 116, 144, 0.12));
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  margin-bottom: 1.4rem;
}
.budget-steps-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .budget-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.budget-step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1.1rem 1rem;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.05);
}
.budget-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--solar-blue));
  margin-bottom: 0.65rem;
}
.budget-step-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
}
.budget-step-card p {
  margin: 0;
  color: var(--muted-foreground);
}
.budget-actions {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #25d366;
  color: #fff;
  border: none;
}
.btn-whatsapp:hover {
  background: #1fb855;
  color: #fff;
}
/* ===== Calculadora Solar (legado — páginas antigas) ===== */
.calculadora-page:not(.page-tool-brand) {
  background: #eef2f5;
}
.calc-hero {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 992px) {
  .calc-hero {
    grid-template-columns: 1.8fr 1fr;
  }
}
.calc-hero-media {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 520px;
  background: url('../../images/hero-solar.jpg') center/cover no-repeat;
}
.calc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 25, 43, 0.86), rgba(11, 25, 43, 0.25));
}
.calc-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 520px;
  padding: 3rem 2rem;
}
.calc-hero-content h1 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
}
.calc-hero-content p {
  color: rgba(255, 255, 255, 0.9);
}
.calc-card {
  background: #fff;
  border: 1px solid #dbe3ea;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  padding: 1.1rem;
}
.calc-card h2 {
  margin: 0;
  color: #0f172a;
}
.calc-subtitle {
  margin-top: 0.25rem;
  margin-bottom: 0.9rem;
  color: #64748b;
  font-size: 0.85rem;
}
.calc-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.calc-tab {
  border: 1px solid #d9e1ea;
  background: #f8fafc;
  border-radius: 0.5rem;
  padding: 0.5rem;
  font-weight: 600;
  color: #334155;
}
.calc-tab.is-active {
  border-color: #f59e0b;
  background: #fff7e6;
}
#calc-solar-form:not(.contact-form) label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  margin: 0.52rem 0 0.24rem;
}
#calc-solar-form input {
  width: 100%;
  height: 38px;
  border: 1px solid #d5dde7;
  border-radius: 0.5rem;
  padding: 0 0.75rem;
  margin-bottom: 0.5rem;
}
.calc-row-inline {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 0.6rem;
}
.calc-row-inline input {
  margin-bottom: 0.2rem;
}
.calc-summary-grid {
  display: grid;
  gap: 0.55rem;
  margin: 0.4rem 0 0.9rem;
}
.calc-summary-grid div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #f8fafc;
}
.calc-summary-grid span {
  font-size: 0.8rem;
  color: #475569;
}
.calc-summary-grid strong {
  font-size: 0.88rem;
  color: #0f172a;
}
.calc-actions {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.45rem;
}
.calc-feedback {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: #166534;
}
#calc-btn-simular {
  margin-top: 0.55rem;
}

/* ===== Depoimentos ===== */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  margin: 0;
  position: relative;
}
.testimonial-quote {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--secondary);
  opacity: 0.2;
}
.testimonial-stars { color: var(--solar-yellow); margin-bottom: 0.75rem; font-size: 1rem; }
.testimonial-card p { font-style: italic; margin: 0 0 1rem; }
.testimonial-card footer { font-size: 0.875rem; color: var(--muted-foreground); }
.testimonial-card cite { font-style: normal; font-weight: 700; color: var(--foreground); }

/* Parceiros — home (rodapé igual depoimentos) */
.parceiros-brand.section-padding {
  padding-bottom: 0;
}
.parceiros-brand {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.parceiros-brand .section-container {
  flex: 1 0 auto;
  width: 100%;
}
.parceiros-brand .brands-grid {
  margin-bottom: 0.25rem;
}

/* ===== Parceiros ===== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .brands-grid { grid-template-columns: repeat(6, 1fr); }
}
.brand-card {
  --brand-card-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(77, 129, 194, 0.16);
  border-radius: 0 var(--brand-card-radius) 0 var(--brand-card-radius);
  padding: 1rem;
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 32, 77, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.brands-grid .brand-card:nth-child(even) {
  border-radius: var(--brand-card-radius) 0 var(--brand-card-radius) 0;
}
.brand-card:hover {
  border-color: rgba(77, 129, 194, 0.28);
  box-shadow: 0 12px 28px rgba(0, 32, 77, 0.1);
  transform: translateY(-2px);
}
.brand-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
}
.brand-card--logo {
  padding: 0.5rem 0.65rem;
  min-height: 6.5rem;
}
/* Logos sempre visíveis (sem opacity 0 do reveal-scale) */
.brands-grid .brand-card {
  opacity: 1;
  transform: none;
}
.brand-card__logo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 4.5rem;
  object-fit: contain;
  object-position: center;
  opacity: 0.95;
}
@media (min-width: 768px) {
  .brand-card--logo {
    min-height: 7.25rem;
    padding: 0.55rem 0.75rem;
  }
  .brand-card__logo {
    max-height: 5.25rem;
  }
}
@media (min-width: 1024px) {
  .brand-card--logo {
    min-height: 7.75rem;
  }
  .brand-card__logo {
    max-height: 5.75rem;
  }
}

/* ===== FAQ Accordion ===== */
.accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.accordion-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.accordion-item:focus-within,
.accordion-item[data-open="true"] { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  color: var(--foreground);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--secondary); }
.accordion-trigger svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.accordion-item[data-open="true"] .accordion-trigger svg { transform: rotate(180deg); }
.accordion-content {
  overflow: hidden;
}
.accordion-content[hidden] {
  display: none !important;
}
.accordion-item[data-open="true"] .accordion-content {
  display: block;
}
.accordion-content p {
  padding: 0 1.5rem 1rem;
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== Blog ===== */
.blog-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.blog-card-image {
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  color: var(--primary-foreground);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-body { padding: 1.5rem; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.blog-meta svg { flex-shrink: 0; }
.blog-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.blog-card h3 a { transition: color 0.2s; }
.blog-card h3 a:hover { color: var(--secondary); }
.blog-card-body > p { font-size: 0.875rem; color: var(--muted-foreground); margin: 0 0 1rem; }
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--secondary);
  transition: gap 0.2s;
}
.blog-link:hover { gap: 0.5rem; }
.blog-card h2 { font-size: 1.125rem; margin-bottom: 0.5rem; font-weight: 600; }
.blog-card h2 a { transition: color 0.2s; color: inherit; text-decoration: none; }
.blog-card h2 a:hover { color: var(--secondary); }

/* Blog brand — home e capa /blog (após legado, mesmo visual) */
.blog-brand.section-padding {
  padding-bottom: 0;
}
.blog-brand {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.blog-brand .section-container {
  flex: 1 0 auto;
  width: 100%;
}
.blog-brand .blog-grid {
  display: grid;
  gap: 1.25rem;
  width: 100%;
  margin: 0 0 0.25rem;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
  .blog-brand .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.blog-brand .blog-grid .blog-card {
  opacity: 1;
  transform: none;
}
.blog-brand .blog-card--brand {
  --brand-card-radius: 1.15rem;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(77, 129, 194, 0.16);
  border-radius: 0 var(--brand-card-radius) 0 var(--brand-card-radius);
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 32, 77, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.blog-brand .blog-card--brand:nth-child(even) {
  border-radius: var(--brand-card-radius) 0 var(--brand-card-radius) 0;
}
.blog-brand .blog-card--brand:hover {
  border-color: rgba(77, 129, 194, 0.28);
  box-shadow: 0 12px 28px rgba(0, 32, 77, 0.1);
  transform: translateY(-2px);
}
.blog-brand .blog-card--brand .blog-card-image {
  position: relative;
  height: 11rem;
  margin: 0;
  opacity: 1;
  color: var(--brand-lime);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(165deg, #4d81c2 0%, #3a6dad 52%, #2a5589 100%);
  border-bottom: 2px solid rgba(200, 212, 0, 0.5);
  overflow: hidden;
}
.blog-brand .blog-card--brand .blog-card-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(225deg, var(--brand-lime) 0%, transparent 68%);
  opacity: 0.28;
  pointer-events: none;
}
.blog-brand .blog-card--brand:nth-child(even) .blog-card-image::after {
  right: auto;
  left: 0;
  background: linear-gradient(135deg, var(--brand-lime) 0%, transparent 68%);
}
.blog-brand .blog-card--brand .blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-brand .blog-card--brand .blog-card-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-brand .blog-card--brand .blog-card-image--placeholder span {
  position: relative;
  z-index: 1;
}
.blog-brand .blog-card--brand .blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.15rem 1.2rem;
}
.blog-brand .blog-card--brand .blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-orange);
}
.blog-brand .blog-card--brand .blog-meta svg {
  flex-shrink: 0;
  color: var(--brand-orange);
}
.blog-brand .blog-card--brand h2,
.blog-brand .blog-card--brand h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}
.blog-brand .blog-card--brand h2 a,
.blog-brand .blog-card--brand h3 a {
  color: var(--brand-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-brand .blog-card--brand h2 a:hover,
.blog-brand .blog-card--brand h3 a:hover {
  color: var(--brand-orange-bright);
}
.blog-brand .blog-card--brand .blog-card-body > p {
  flex: 1;
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #2a4560;
}
.blog-brand .blog-card--brand .blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  align-self: flex-start;
  padding: 0.45rem 0.85rem 0.45rem 0.95rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-navy);
  background: rgba(77, 129, 194, 0.1);
  border-left: 4px solid var(--brand-lime);
  border-radius: 0 0.55rem 0.55rem 0;
  transition: background 0.2s ease, color 0.2s ease, gap 0.2s ease;
}
.blog-brand .blog-card--brand .blog-link:hover {
  color: var(--brand-orange-bright);
  background: rgba(77, 129, 194, 0.16);
  gap: 0.5rem;
}
.blog-brand__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
}
.blog-brand__actions .btn-cta-form {
  min-width: min(100%, 14rem);
}

/* Listagem de produtos (/produtos) — cards no padrão do blog */
.products-list-brand .blog-card-image--product-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-list-brand .blog-card-image--product-icon img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 4.75rem;
  max-height: 4.75rem;
  object-fit: contain;
}
.products-list-brand .product-list-card__potencia {
  margin: -0.15rem 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--brand-orange);
}

/* Página interna do post */
.blog-post-header { margin-bottom: 2rem; }
.blog-post-header .label { margin-bottom: 0.5rem; }
.blog-post-header .blog-meta { margin-top: 0.75rem; }
.blog-post-content {
  font-size: 1.0625rem;
  line-height: 1.7;
}
.blog-post-content img { max-width: 100%; height: auto; border-radius: var(--radius); }
.blog-post-cover {
  margin: 0 0 1.25rem;
}
.blog-post-cover img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.blog-post-content p { margin-bottom: 1rem; }
.blog-post-content h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.blog-post-content h3 { font-size: 1.25rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.blog-post-content ul, .blog-post-content ol { margin-bottom: 1rem; padding-left: 1.5rem; }

/* ===== Contato ===== */
.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-form-wrap h2,
.contact-form-wrap h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label { font-weight: 500; font-size: 0.875rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
}
.contact-form textarea { resize: vertical; min-height: 8rem; }
.form-feedback { margin-top: 1rem; padding: 0.75rem; border-radius: var(--radius); }
.form-feedback.success { background: hsl(150 60% 95%); color: var(--solar-green); }
.form-feedback.error { background: hsl(0 84% 95%); color: hsl(0 84% 40%); }
.alert { margin-bottom: 1rem; padding: 0.75rem 1rem; border-radius: var(--radius); }
.alert-success { background: hsl(150 60% 95%); color: hsl(150 50% 25%); border: 1px solid hsl(150 50% 85%); }

.contact-info-card {
  background: var(--muted);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.contact-info-card h4 { margin-bottom: 1rem; }
.contact-info-card ul { list-style: none; padding: 0; margin: 0; }
.contact-info-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--muted-foreground);
}
.contact-info-card li:last-child { margin-bottom: 0; }
.contact-info-card svg { color: var(--secondary); flex-shrink: 0; margin-top: 0.125rem; }

.contact-osm-map {
  width: 100%;
  height: 16rem;
  min-height: 16rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--muted);
  z-index: 0;
}
.contact-osm-map .leaflet-container {
  width: 100%;
  height: 100%;
  font-family: inherit;
}
.contact-osm-map .leaflet-control-attribution {
  font-size: 0.65rem;
  background: rgba(255, 255, 255, 0.92);
}
.osm-marker-leaflet {
  background: transparent;
  border: none;
}
.osm-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 4px 10px rgba(15, 23, 42, 0.28));
}
.osm-marker-pin {
  width: 48px;
  height: 48px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  border: 3px solid #fff;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.osm-marker-pin img {
  width: 30px;
  height: 30px;
  transform: rotate(45deg);
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
  padding: 2px;
}
.osm-marker-tip {
  width: 0;
  height: 0;
  margin-top: -2px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #ea580c;
}
.osm-popup strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--foreground);
}
.osm-popup p {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.4;
}
.osm-popup a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--secondary);
}
@media (min-width: 768px) {
  .contact-osm-map {
    height: 18rem;
    min-height: 18rem;
  }
}

/* ===== Footer ===== */
.footer {
  color: var(--primary-foreground);
  padding-top: 3rem;
  padding-bottom: 2rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
.footer-brand p { font-size: 0.875rem; opacity: 0.8; line-height: 1.6; margin: 0; }
.footer-brand-nap {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  opacity: 0.85;
}
.footer-brand-nap__item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}
.footer-brand-nap__icon {
  flex-shrink: 0;
  color: var(--solar-yellow);
  margin-top: 0.1rem;
}
.footer-brand-nap__icon svg { display: block; }
.footer-brand-nap__text { flex: 1; min-width: 0; }
.footer-brand-nap a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-brand-nap a:hover { color: var(--solar-yellow); }
.footer-logo { height: 4rem; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer h4 { font-size: 1rem; margin-bottom: 1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; font-size: 0.875rem; opacity: 0.8; }
.footer li { margin-bottom: 0.5rem; }
.footer a:hover { color: var(--solar-yellow); transition: color 0.2s; }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--secondary); }
.footer-solar-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--solar-yellow);
}
.footer-security-seals {
  margin-top: 0.75rem;
}
.footer-security-seals img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 0.35rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.6;
}

/* ===== Popup Newsletter ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.newsletter-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease-out, visibility 0.35s ease-out;
}
.newsletter-popup.is-open {
  opacity: 1;
  visibility: visible;
}
.newsletter-popup.is-open .newsletter-popup-box {
  transform: scale(1);
  opacity: 1;
}
.newsletter-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 40, 0.75);
  backdrop-filter: blur(6px);
}
.newsletter-popup-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35), 0 0 0 1px var(--border);
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.35s ease-out, opacity 0.35s ease-out;
}
.newsletter-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted);
  border: none;
  border-radius: 50%;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.newsletter-popup-close:hover {
  background: var(--border);
  color: var(--foreground);
}
.newsletter-popup-sun {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  padding: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.15), rgba(234, 179, 8, 0.2));
  color: var(--solar-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-popup-title {
  font-size: 1.5rem;
  text-align: center;
  margin: 0 0 0.5rem;
}
.newsletter-popup-text {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}
.newsletter-popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.newsletter-popup-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
}
.newsletter-popup-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.15);
}
.newsletter-popup-form .btn {
  width: 100%;
  padding: 0.75rem 1rem;
  font-weight: 700;
}
.newsletter-popup-feedback {
  margin: 0.75rem 0 0;
  padding: 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  text-align: center;
}
.newsletter-popup-feedback.success {
  background: hsl(150 60% 94%);
  color: var(--solar-green);
}
.newsletter-popup-feedback.error {
  background: hsl(0 84% 95%);
  color: hsl(0 84% 40%);
}

/* ===== Ícones flutuantes (WhatsApp + Chatbot) ===== */
.float-buttons {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}
.float-btn {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.float-btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.float-btn-whatsapp:hover { color: #fff; }
.float-btn-chatbot {
  background: var(--card);
  padding: 0;
  overflow: hidden;
}
.float-btn-chatbot img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

/* Painel do chatbot (placeholder) */
.chatbot-panel {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  width: 20rem;
  max-width: calc(100% - 2.5rem);
  background: var(--card);
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px var(--border);
  z-index: 899;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
}
.chatbot-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.chatbot-panel h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.chatbot-panel h3 img { width: 1.5rem; height: 1.5rem; object-fit: contain; }
.chatbot-panel p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0 0 1rem;
  line-height: 1.5;
}
.chatbot-panel .btn { width: 100%; }

body.is-scroll-locked {
  overflow: hidden;
}

/* ===== Animações ao rolar (scroll reveal) ===== */
/* Sem JS: conteúdo visível. Com js-scroll-reveal: anima ao entrar na tela */
html.js-scroll-reveal .reveal-up:not(.is-visible),
html.js-scroll-reveal .reveal-left:not(.is-visible),
html.js-scroll-reveal .reveal-right:not(.is-visible),
html.js-scroll-reveal .reveal-scale:not(.is-visible) {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
html.js-scroll-reveal .reveal-up:not(.is-visible) {
  transform: translateY(30px);
}
html.js-scroll-reveal .reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
html.js-scroll-reveal .reveal-left:not(.is-visible) {
  transform: translateX(-40px);
}
html.js-scroll-reveal .reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}
html.js-scroll-reveal .reveal-right:not(.is-visible) {
  transform: translateX(40px);
}
html.js-scroll-reveal .reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}
html.js-scroll-reveal .reveal-scale:not(.is-visible) {
  transform: scale(0.92);
}
html.js-scroll-reveal .reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Quando o container stagger fica visível, os filhos animam */
html.js-scroll-reveal .reveal-stagger.is-visible .reveal-up { opacity: 1; transform: translateY(0); }
html.js-scroll-reveal .reveal-stagger.is-visible .reveal-scale { opacity: 1; transform: scale(1); }
html.js-scroll-reveal .reveal-stagger:not(.is-visible) .reveal-up:not(.is-visible),
html.js-scroll-reveal .reveal-stagger:not(.is-visible) .reveal-scale:not(.is-visible) {
  opacity: 0;
}
html.js-scroll-reveal .reveal-stagger:not(.is-visible) .reveal-up:not(.is-visible) {
  transform: translateY(30px);
}
html.js-scroll-reveal .reveal-stagger:not(.is-visible) .reveal-scale:not(.is-visible) {
  transform: scale(0.92);
}

html.js-scroll-reveal .reveal-up,
html.js-scroll-reveal .reveal-left,
html.js-scroll-reveal .reveal-right,
html.js-scroll-reveal .reveal-scale {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Stagger: atraso progressivo nos filhos quando o pai fica visível */
.reveal-stagger.is-visible .reveal-up:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible .reveal-up:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-visible .reveal-up:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-visible .reveal-up:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-visible .reveal-up:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.is-visible .reveal-up:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.is-visible .reveal-up:nth-child(7) { transition-delay: 480ms; }
.reveal-stagger.is-visible .reveal-up:nth-child(8) { transition-delay: 560ms; }
.reveal-stagger.is-visible .reveal-up:nth-child(9) { transition-delay: 640ms; }
.reveal-stagger.is-visible .reveal-up:nth-child(10) { transition-delay: 720ms; }
.reveal-stagger.is-visible .reveal-up:nth-child(11) { transition-delay: 800ms; }
.reveal-stagger.is-visible .reveal-up:nth-child(12) { transition-delay: 880ms; }

.reveal-stagger.is-visible .reveal-scale:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible .reveal-scale:nth-child(2) { transition-delay: 50ms; }
.reveal-stagger.is-visible .reveal-scale:nth-child(3) { transition-delay: 100ms; }
.reveal-stagger.is-visible .reveal-scale:nth-child(4) { transition-delay: 150ms; }
.reveal-stagger.is-visible .reveal-scale:nth-child(5) { transition-delay: 200ms; }
.reveal-stagger.is-visible .reveal-scale:nth-child(6) { transition-delay: 250ms; }
.reveal-stagger.is-visible .reveal-scale:nth-child(7) { transition-delay: 300ms; }
.reveal-stagger.is-visible .reveal-scale:nth-child(8) { transition-delay: 350ms; }
.reveal-stagger.is-visible .reveal-scale:nth-child(9) { transition-delay: 400ms; }
.reveal-stagger.is-visible .reveal-scale:nth-child(10) { transition-delay: 450ms; }
.reveal-stagger.is-visible .reveal-scale:nth-child(11) { transition-delay: 500ms; }
.reveal-stagger.is-visible .reveal-scale:nth-child(12) { transition-delay: 550ms; }

@media (prefers-reduced-motion: reduce) {
  html.js-scroll-reveal .reveal-up:not(.is-visible),
  html.js-scroll-reveal .reveal-left:not(.is-visible),
  html.js-scroll-reveal .reveal-right:not(.is-visible),
  html.js-scroll-reveal .reveal-scale:not(.is-visible),
  .reveal-up, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero .hero-overlay-sunrise,
  .hero .hero-sun,
  .hero .hero-content {
    -webkit-animation: none;
    animation: none;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  .hero .hero-sun {
    -webkit-transform: none;
    transform: none;
  }
  .hero .hero-sun-glow {
    -webkit-animation: none;
    animation: none;
  }
  .hero-brand .hero-brand__center,
  .hero-brand .hero-content {
    opacity: 1;
    animation: none;
  }
}

/* ===== Home — layout ilustrado (artes Adobe) ===== */
.section-brand-light {
  background: var(--brand-section-bg);
}
.label-brand {
  color: var(--brand-orange);
  letter-spacing: 0.14em;
}
.section-title-brand {
  color: var(--brand-orange);
  font-weight: 800;
}
.text-brand-orange {
  color: var(--brand-orange-bright);
  background: none;
  -webkit-text-fill-color: currentColor;
}

/* Rodapé decorativo das seções (SVG Illustrator) */
.section-footer {
  position: relative;
  z-index: 6;
  width: 100%;
  max-width: 100%;
  line-height: 0;
  flex-shrink: 0;
  overflow: hidden;
}
.section-footer__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
.section-footer--sobre {
  margin-top: 0.5rem;
}
.about-brand.section-padding {
  padding-bottom: 2.5rem;
}
.about-brand .section-footer--sobre {
  margin-top: -0.5rem;
}
@media (min-width: 1024px) {
  .about-brand {
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
  }
  .about-brand.section-padding {
    padding-bottom: 0.5rem;
  }
  .about-brand .section-container {
    position: relative;
    z-index: 1;
  }
  .about-brand__visual {
    z-index: 1;
  }
  .about-brand .section-footer--sobre {
    position: relative;
    z-index: 5;
    margin-top: clamp(-6.5rem, -10vw, -9.5rem);
    margin-bottom: 0;
    pointer-events: none;
  }
}

/* Hero ilustrado (layout Adobe) */
.hero.hero-brand {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: #004380;
  padding: 0;
}
.hero-brand__layout {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(100vh - 48px);
  padding: 5.5rem 0 1.5rem;
  box-sizing: border-box;
}
.hero-brand__figure {
  position: absolute;
  bottom: 48px;
  z-index: 1;
  margin: 0;
  line-height: 0;
  pointer-events: none;
  display: none;
}
.hero-brand__figure--left {
  left: 0;
}
.hero-brand__figure--right {
  right: 0;
}
.hero-brand__figure img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
}
.hero-brand__center {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem 0.5rem;
}
.hero-brand__sun {
  margin: 0 auto 0.85rem;
  line-height: 0;
}
.hero-brand__sun svg {
  display: block;
  margin: 0 auto;
  width: 64px;
  height: 64px;
}
.hero-brand .hero-title,
.hero-brand .hero-title span,
.hero-brand .text-gradient-solar {
  font-family: var(--font-heading);
  color: var(--brand-lime);
  background: none;
  -webkit-text-fill-color: currentColor;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.65rem);
  line-height: 1.05;
  margin: 0 auto 0.85rem;
}
.hero-brand .hero-title__line1 {
  display: block;
  white-space: nowrap;
}
.hero-brand .hero-title__line2 {
  display: block;
}
.hero-brand .hero-lead {
  font-family: var(--font-body);
  font-weight: 400;
  color: #fff;
  max-width: 36rem;
  margin: 0 auto 1.25rem;
  font-size: clamp(0.88rem, 1.5vw, 1.05rem);
  line-height: 1.45;
}
.hero-lead-line {
  display: block;
}
.hero-lead-line--big {
  margin-top: 0.15rem;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
}
.hero-lead-pct {
  font-size: 2.75em;
  font-weight: 900;
  color: var(--brand-orange-bright);
  line-height: 1;
  vertical-align: baseline;
}
.hero-lead-highlight {
  color: var(--brand-orange-bright);
  font-weight: 800;
}
.hero-brand__cta {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(0.35rem, 1.2vw, 0.85rem);
  width: 100%;
  margin: 0 auto;
}
.hero-cta-btn {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.hero-cta-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
}
.hero-cta-btn img {
  display: block;
  width: clamp(9.5rem, 17vw, 17.375rem);
  height: auto;
  max-width: none;
}
.hero-brand .section-footer {
  position: relative;
  z-index: 4;
  margin-top: auto;
  flex-shrink: 0;
}
.section-footer--hero {
  margin-top: auto;
}
@media (min-width: 1024px) {
  .hero-brand__layout {
    min-height: auto;
    flex: 1 1 auto;
    justify-content: flex-end;
    padding-bottom: clamp(3.5rem, 7vh, 6rem);
    margin-bottom: -1.5rem;
  }
  .hero-brand .section-footer--hero {
    margin-top: clamp(-14rem, -22vw, -18rem);
    margin-bottom: -3rem;
    z-index: 5;
    pointer-events: none;
  }
  .hero-brand__figure {
    display: block;
    bottom: 5.5rem;
  }
  .hero-brand__figure--left img {
    max-height: calc(100vh - 11rem);
    object-fit: contain;
    object-position: left bottom;
  }
  .hero-brand__figure--right img {
    width: 500px;
    max-height: calc(100vh - 11rem);
    object-fit: contain;
    object-position: right bottom;
  }
}
@media (max-width: 1200px) and (min-width: 1024px) {
  .hero-brand__figure--left img,
  .hero-brand__figure--right img {
    width: min(500px, 38vw);
  }
  .hero-cta-btn img {
    width: clamp(8.5rem, 14vw, 12rem);
  }
}
@media (max-width: 1023px) {
  .hero-brand__layout {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 2rem;
  }
  .hero-brand .hero-title__line1 {
    white-space: normal;
  }
  .hero-brand__cta {
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }
}
@media (max-width: 640px) {
  .hero-brand__cta {
    flex-direction: column;
    align-items: center;
  }
  .hero-cta-btn img {
    width: min(17.375rem, 88vw);
  }
}

/* Sobre ilustrado */
.about-brand__text {
  color: #3d4f63;
  margin-bottom: 1rem;
}
.stats-grid-brand {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}
/* Cards Sobre — layout Illustrator: ícone à esquerda (~1/3), valor amarelo + label branca */
.stat-card-brand {
  --stat-icon-slot: 5.625rem;
  --stat-card-radius: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 6.75rem;
  padding: 0.75rem 1rem 0.75rem 0.65rem;
  /* Illustrator: arredondado exceto canto sup. direito e inf. esquerdo */
  border-radius: var(--stat-card-radius) 0 var(--stat-card-radius) 0;
  background: var(--brand-blue-mid);
  color: #fff;
  text-align: left;
  box-sizing: border-box;
}
.stat-card-brand__icon {
  flex: 0 0 var(--stat-icon-slot);
  width: var(--stat-icon-slot);
  max-width: 100px;
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.stat-card-brand__icon-img {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.stat-card-brand__text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
}
.stat-card-brand__value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.625rem;
  color: var(--brand-lime);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.stat-card-brand__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.35;
  color: #fff;
}
@media (min-width: 1024px) {
  .stat-card-brand {
    --stat-icon-slot: 6.25rem;
    --stat-card-radius: 1.5rem;
    min-height: 7.25rem;
    padding: 0.85rem 1.15rem 0.85rem 0.75rem;
  }
  .stat-card-brand__icon-img {
    width: 4rem;
    height: 4rem;
  }
  .stat-card-brand__value {
    font-size: 1.875rem;
  }
  .stat-card-brand__label {
    font-size: 0.875rem;
  }
}
@media (max-width: 639px) {
  .stat-card-brand {
    --stat-icon-slot: 4.75rem;
    --stat-card-radius: 1.15rem;
    min-height: 6rem;
    padding: 0.65rem 0.75rem 0.65rem 0.5rem;
  }
  .stat-card-brand__icon-img {
    width: 3rem;
    height: 3rem;
  }
  .stat-card-brand__value {
    font-size: 1.375rem;
  }
  .stat-card-brand__label {
    font-size: 0.75rem;
  }
}
.about-brand__visual {
  position: relative;
  min-height: 320px;
}
.about-brand__big-num {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 900;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 3px var(--brand-orange);
  pointer-events: none;
  user-select: none;
}
.about-brand__photo-wrap {
  --about-photo-radius: 1.75rem;
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  overflow: hidden;
  border-radius: var(--about-photo-radius) 0 var(--about-photo-radius) 0;
  box-shadow: 0 20px 40px rgba(0, 32, 77, 0.15);
}
.about-brand__photo {
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--about-photo-radius) 0 var(--about-photo-radius) 0;
}
@media (min-width: 1024px) {
  .about-brand__photo-wrap {
    --about-photo-radius: 2rem;
  }
}
.about-brand__person {
  position: absolute;
  left: -1.5rem;
  bottom: -1rem;
  z-index: 2;
  width: min(55%, 280px);
  height: 220px;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  display: none;
}
@media (min-width: 768px) {
  .about-brand__person { display: block; }
}
.about-brand__person img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2128px;
  max-width: none;
  height: auto;
  transform: translate(-32%, 12%) scale(0.22);
  transform-origin: bottom left;
}

/* Vídeo ilustrado */
.video-brand .section-head {
  margin-bottom: 2rem;
}
.video-brand__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 56rem;
  margin: 0 auto;
}
.video-brand__art {
  display: none;
  flex: 0 0 auto;
  width: min(24vw, 220px);
  height: 340px;
  overflow: hidden;
  margin: 0;
  pointer-events: none;
}
@media (min-width: 1280px) {
  .video-brand__art { display: block; }
}
.video-brand__art img {
  display: block;
  width: 2128px;
  max-width: none;
  height: auto;
}
.video-brand__art--left img {
  transform: translate(-8%, -22%) scale(0.42);
  transform-origin: top left;
}
.video-brand__art--right img {
  transform: translate(-72%, -22%) scale(0.42);
  transform-origin: top left;
}
.video-institucional-wrap--brand {
  flex: 1 1 auto;
  width: 100%;
  max-width: 44rem;
  border-radius: 1.25rem;
  border: 3px solid var(--brand-navy);
  box-shadow: 0 16px 40px rgba(0, 32, 77, 0.12);
}
.video-brand.section-padding {
  padding-bottom: 1rem;
}
.section-footer--video {
  margin-top: 0;
}
@media (min-width: 1024px) {
  .video-brand {
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
  }
  .video-brand.section-padding {
    padding-bottom: 0;
  }
  .video-brand .section-container {
    position: relative;
    z-index: 1;
    padding-bottom: 0.5rem;
  }
  .video-brand__stage {
    margin-bottom: -2rem;
  }
  .video-brand .section-footer--video {
    position: relative;
    z-index: 5;
    margin-top: clamp(-14rem, -22vw, -18rem);
    margin-bottom: -3rem;
    pointer-events: none;
  }
}

/* Serviços ilustrados */
.services-brand .section-head {
  margin-bottom: 2.5rem;
}
.services-brand .section-title-brand {
  color: #8f2f12;
  font-weight: 800;
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  line-height: 1.2;
}
.services-brand .text-brand-orange {
  color: var(--brand-orange);
}
.services-grid-brand {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 640px) {
  .services-grid-brand { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .services-grid-brand { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
/* Card serviço — forma do Ativo 14card-solucoes.svg */
.service-card-brand {
  --card-inset-x: 1.4rem;
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 386.6 / 240.63;
  filter: drop-shadow(0 10px 22px rgba(0, 32, 77, 0.12));
  transition: transform 0.25s ease, filter 0.25s ease;
}
.service-card-brand:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 14px 28px rgba(0, 32, 77, 0.18));
}
.service-card-brand__shape {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
}
.service-card-brand__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.service-card-brand__inner a,
.service-card-brand__inner button {
  pointer-events: auto;
}
/* Ícone — até 100px de largura × 130px de altura, imagem centralizada */
.service-card-brand__icon {
  position: absolute;
  top: 0;
  left: var(--card-inset-x);
  width: 100px;
  max-width: 90px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  pointer-events: none;
}
.service-card-brand__icon-img {
  display: block;
  width: 3.85rem;
  height: 3.85rem;
  max-width: 100%;
  max-height: 100%;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
}
/* Textos na faixa azul — título verde limão + descrição branca */
.service-card-brand__body {
  position: absolute;
  left: 0;
  right: 0;
  top: max(130px, 44%);
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.3rem var(--card-inset-x) 1.35rem var(--card-inset-x);
  box-sizing: border-box;
  pointer-events: none;
}
.service-card-brand__body h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 0.5rem;
  color: var(--brand-lime);
}
.service-card-brand__body p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 639px) {
  .service-card-brand {
    --card-inset-x: 1.05rem;
  }
  .service-card-brand__icon-img {
    width: 3.15rem;
    height: 3.15rem;
  }
  .service-card-brand__body {
    padding-top: 1rem;
    padding-bottom: 1.1rem;
  }
  .service-card-brand__body h3 {
    font-size: 1.1875rem;
    margin-bottom: 0.35rem;
  }
  .service-card-brand__body p {
    font-size: 0.75rem;
    line-height: 1.45;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .service-card-brand__icon-img {
    width: 3.6rem;
    height: 3.6rem;
  }
  .service-card-brand__body h3 {
    font-size: 1.3rem;
  }
}
.services-brand.section-padding {
  padding-bottom: 0;
}
.services-brand .services-grid-brand {
  margin-bottom: 0.5rem;
}
.services-brand .section-footer--servicos {
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
}

/* Produtos ilustrados */
.products-brand .section-head {
  margin-bottom: 2rem;
}
.products-brand .section-title-brand {
  color: var(--brand-orange);
  font-weight: 800;
}
.products-brand .text-brand-orange {
  color: var(--brand-orange-bright);
}
.products-tabs-brand {
  margin-bottom: 2rem;
}
.product-tab-brand {
  padding: 0.7rem 1.35rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  background: #b8d4eb;
  color: var(--brand-navy);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.product-tab-brand:hover {
  background: #a3c8e6;
}
.product-tab-brand.active {
  background: var(--brand-orange);
  color: #fff;
  box-shadow: 0 6px 16px rgba(216, 78, 34, 0.28);
}
.products-grid-brand {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 768px) {
  .products-grid-brand { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .products-grid-brand { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.product-card-brand {
  --product-card-inset-x: 1.25rem;
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 386.6 / 214.11;
  filter: drop-shadow(0 10px 22px rgba(0, 32, 77, 0.12));
  transition: transform 0.25s ease, filter 0.25s ease;
}
.product-card-brand:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 14px 28px rgba(0, 32, 77, 0.18));
}
.product-card-brand__shape {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
}
.product-card-brand__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.product-card-brand__icon {
  position: absolute;
  top: 0;
  left: var(--product-card-inset-x);
  width: 5.5rem;
  max-width: 32%;
  height: 38%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  --icon-scale: 1;
}
.product-card-brand__icon-frame {
  width: 3.25rem;
  height: 3.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-brand__icon-img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(var(--icon-scale, 1));
  transform-origin: center center;
}
.product-card-brand__body {
  position: absolute;
  left: 0;
  right: 0;
  top: 36%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: calc(0.85rem + 20px) var(--product-card-inset-x) 1rem;
  box-sizing: border-box;
  pointer-events: none;
}
.product-card-brand__body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.4rem;
  color: var(--brand-lime);
}
.product-card-brand__body p {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.45;
  color: #fff;
  flex: 0 1 auto;
}
.product-card-brand__power {
  display: inline-block;
  align-self: flex-start;
  margin-top: 0.25rem;
  padding: 0.35rem 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--brand-orange);
  background: #fff;
  border-radius: 9999px;
}
.products-brand__cta {
  margin-top: 2.25rem;
  margin-bottom: 0;
  text-align: center;
}
.btn-brand-orange {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: var(--brand-orange);
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(216, 78, 34, 0.3);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.btn-brand-orange:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  color: #fff;
}
.products-brand.section-padding {
  padding-bottom: 0;
}

/* Página interna do produto */
.produto-detalhe-brand.section-padding {
  padding-bottom: 0;
}
.produto-detalhe__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1.75rem;
  font-size: 0.875rem;
  color: #5a6d82;
}
.produto-detalhe__breadcrumb a {
  color: var(--brand-orange);
  text-decoration: none;
  font-weight: 600;
}
.produto-detalhe__breadcrumb a:hover {
  text-decoration: underline;
}
.produto-detalhe__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}
@media (min-width: 900px) {
  .produto-detalhe__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }
}
.produto-detalhe__figure {
  margin: 0;
  border-radius: 0 1.25rem 0 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 32, 77, 0.14);
  border: 1px solid rgba(77, 129, 194, 0.16);
  background: #fff;
}
.produto-detalhe__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.produto-detalhe__title {
  margin-top: 0.35rem;
  margin-bottom: 0.75rem;
}
.produto-detalhe__power {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.4rem 0.95rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--brand-orange);
  background: rgba(77, 129, 194, 0.12);
  border-left: 4px solid var(--brand-lime);
  border-radius: 0 0.5rem 0.5rem 0;
}
.produto-detalhe__lead {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
  color: #2a4560;
}
.produto-detalhe__text {
  margin: 0 0 1.25rem;
  font-size: 0.975rem;
  line-height: 1.7;
  color: #5a6d82;
}
.produto-detalhe__highlights {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.produto-detalhe__highlights li {
  position: relative;
  padding: 0.7rem 1rem 0.7rem 2.15rem;
  background: rgba(77, 129, 194, 0.1);
  border-left: 4px solid var(--brand-lime);
  border-radius: 0 0.65rem 0.65rem 0;
  font-weight: 500;
  line-height: 1.45;
  color: #2a4560;
}
.produto-detalhe__highlights li::before {
  content: "✓";
  position: absolute;
  left: 0.85rem;
  top: 0.72rem;
  color: var(--brand-lime);
  font-weight: 800;
}
.produto-detalhe__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.produto-detalhe__wa {
  flex: 1 1 auto;
  min-width: min(100%, 16rem);
  text-align: center;
  justify-content: center;
}
.produto-detalhe__back {
  flex: 0 0 auto;
  display: inline-block;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--brand-navy, #00204d);
  background: rgba(77, 129, 194, 0.12);
  border: 1px solid rgba(77, 129, 194, 0.25);
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.produto-detalhe__back:hover {
  background: rgba(77, 129, 194, 0.2);
  color: var(--brand-navy, #00204d);
}
.product-card-brand__link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.product-card-brand__link:hover .product-card-brand__more {
  color: var(--brand-lime);
}
.product-card-brand__more {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.section-footer--produtos {
  margin-top: 0;
}
.products-brand .section-footer--produtos {
  margin-top: 1.25rem;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .products-brand {
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
  }
  .products-brand__cta {
    margin-bottom: 0;
  }
  .products-brand .section-footer--produtos {
    margin-top: -10rem;
    margin-bottom: 0;
    z-index: 5;
    pointer-events: none;
  }
}
@media (max-width: 639px) {
  .product-card-brand {
    --product-card-inset-x: 1rem;
  }
  .product-card-brand__icon-frame {
    width: 2.75rem;
    height: 2.75rem;
  }
  .product-card-brand__body h3 {
    font-size: 1.1rem;
  }
  .product-tab-brand {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
}

/* ===== Landing page (mesmo design system da home) ===== */
.section-contato{position: relative;padding-bottom: 500px!important;background:none!important;}
.section-footer-contato{position: absolute!important;bottom: 0!important;left: 0;width: 100%;z-index: -1!important;transform:scaleX(-1);}
.page-landing .lp-header-brand {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.page-landing .lp-header-brand__inner {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.page-landing .lp-header-brand .logo-link img {
  height: 2.65rem;
  width: auto;
}
.page-landing .lp-header-brand__wa {
  flex-shrink: 0;
  font-size: 0.9rem;
  padding: 0.55rem 1rem;
}
.page-landing .lp-hero .label-brand--hero {
  display: block;
  margin-bottom: 0.65rem;
  text-align: center;
}
.page-landing .lp-hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
}
.page-landing .lp-hero-points li::before {
  content: "✓ ";
  color: var(--brand-lime);
  font-weight: 700;
}
.page-landing .lp-portfolio-grid {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}
.page-landing .lp-passos__lead {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  color: #5a6d82;
}

/* Passos — mesmo padrão do card de serviços (faixa colorida + corpo azul) */
.page-landing .lp-steps-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}
@media (min-width: 640px) {
  .page-landing .lp-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .page-landing .lp-steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
  }
}
.page-landing .step-card-brand {
  --step-inset-x: 1.25rem;
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 386.6 / 280;
  filter: drop-shadow(0 10px 22px rgba(0, 32, 77, 0.12));
  transition: transform 0.25s ease, filter 0.25s ease;
}
.page-landing .step-card-brand:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 14px 28px rgba(0, 32, 77, 0.18));
}
.page-landing .step-card-brand__shape {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
}
.page-landing .step-card-brand__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.page-landing .step-card-brand__head {
  position: absolute;
  top: 0;
  left: var(--step-inset-x);
  width: 60px;
  height: 100px;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.page-landing .step-card-brand__num {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 8vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 32, 77, 0.22);
}
.page-landing .step-card-brand--1 .step-card-brand__num { color: #fff; }
.page-landing .step-card-brand--2 .step-card-brand__num { color: #fff; }
.page-landing .step-card-brand--3 .step-card-brand__num { color: #fff; }
.page-landing .step-card-brand--4 .step-card-brand__num { color: #fff; }
.page-landing .step-card-brand__body {
  position: absolute;
  left: 0;
  right: 0;
  top: 90px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0.55rem var(--step-inset-x) 1.1rem;
  box-sizing: border-box;
}
.page-landing .step-card-brand__body h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--brand-lime);
}
.page-landing .step-card-brand__body p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.8vw, 0.85rem);
  line-height: 1.48;
  color: #f4f8ff;
}
@media (max-width: 639px) {
  .page-landing .step-card-brand {
    --step-inset-x: 1rem;
  }
  .page-landing .step-card-brand__head {
    width: 60px;
    height: 100px;
  }
  .page-landing .step-card-brand__body {
    top: 140px;
    padding-top: 0.45rem;
  }
}

/* Depoimentos — cards CSS (#4d81c2, 386.6×222) — LP, home e página */
.page-landing .lp-depoimentos.section-padding,
.depoimentos-brand.section-padding {
  padding-bottom: 0;
}
.page-landing .lp-depoimentos .lp-testimonials-grid,
.depoimentos-brand .lp-testimonials-grid {
  margin-bottom: 0.25rem;
}
.page-landing .lp-depoimentos .section-footer--servicos,
.depoimentos-brand .section-footer--servicos,
.parceiros-brand .section-footer--servicos,
.blog-brand .section-footer--servicos,
.page-tool-brand .section-footer--servicos {
  margin-top: clamp(2.75rem, 6vw, 4.5rem);
  width: 100%;
  align-self: stretch;
}
/* Grid alinhado ao padrão do site (como .services-grid-brand) */
.page-landing .lp-testimonials-grid,
.depoimentos-brand .lp-testimonials-grid {
  display: grid;
  gap: 1.25rem;
  width: 100%;
  max-width: none;
  margin: 0;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 640px) {
  .page-landing .lp-testimonials-grid,
  .depoimentos-brand .lp-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .page-landing .lp-testimonials-grid,
  .depoimentos-brand .lp-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.page-landing .testimonial-card-brand,
.depoimentos-brand .testimonial-card-brand {
  --depo-card-r: 1.35rem;
  display: block;
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  border: none;
  padding: 0;
  filter: drop-shadow(0 10px 22px rgba(0, 32, 77, 0.12));
  transition: transform 0.25s ease, filter 0.25s ease;
}
.page-landing .testimonial-card-brand:hover,
.depoimentos-brand .testimonial-card-brand:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 14px 28px rgba(0, 32, 77, 0.18));
}
.page-landing .testimonial-card-brand__frame,
.depoimentos-brand .testimonial-card-brand__frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 386.6 / 222;
}
.page-landing .testimonial-card-brand__panel,
.depoimentos-brand .testimonial-card-brand__panel {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: #4d81c2;
  border-radius: var(--depo-card-r) 0 var(--depo-card-r) 0;
}
.page-landing .testimonial-card-brand:nth-child(even) .testimonial-card-brand__panel,
.depoimentos-brand .testimonial-card-brand:nth-child(even) .testimonial-card-brand__panel {
  border-radius: 0 var(--depo-card-r) 0 var(--depo-card-r);
}
.page-landing .testimonial-card-brand__body,
.depoimentos-brand .testimonial-card-brand__body {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.5rem;
  padding: clamp(1rem, 5.2%, 2rem);
  box-sizing: border-box;
  overflow: hidden;
}
.page-landing .testimonial-card-brand__meta,
.depoimentos-brand .testimonial-card-brand__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.65rem;
  flex-shrink: 0;
  margin-bottom: 0.15rem;
}
.page-landing .testimonial-card-brand__quote,
.depoimentos-brand .testimonial-card-brand__quote {
  width: 1.35rem;
  height: 1.35rem;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}
.page-landing .testimonial-card-brand__stars,
.depoimentos-brand .testimonial-card-brand__stars {
  font-size: clamp(0.8rem, 1.7vw, 0.95rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--brand-lime);
}
.page-landing .testimonial-card-brand__body p,
.depoimentos-brand .testimonial-card-brand__body p {
  flex: 0 1 auto;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.85vw, 0.9rem);
  font-style: italic;
  line-height: 1.5;
  color: #f4f8ff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.page-landing .testimonial-card-brand__body footer,
.depoimentos-brand .testimonial-card-brand__body footer {
  flex-shrink: 0;
  margin: auto 0 0;
  padding-top: 0.25rem;
  font-size: clamp(0.72rem, 1.6vw, 0.82rem);
  line-height: 1.4;
  color: #d8e6f5;
}
.page-landing .testimonial-card-brand__body cite,
.depoimentos-brand .testimonial-card-brand__body cite {
  font-style: normal;
  font-weight: 800;
  color: var(--brand-lime);
}
.depoimentos-brand {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.depoimentos-brand .section-container {
  flex: 1 0 auto;
  width: 100%;
  max-width: var(--layout-max);
}
.depoimentos-brand__actions .btn-cta-form,
.lp-faq__actions .btn-cta-form {
  min-width: min(100%, 14rem);
  max-width: 100%;
}

/* Botão CTA — formulário LP “Receba sua simulação personalizada” */
.btn-cta-form,
.lp-formulario .contact-form .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 1.5rem;
  border-radius: 1.75rem 0 1.75rem 0;
  box-shadow: 0 10px 24px rgba(216, 78, 34, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}
.btn-cta-form:hover,
.lp-formulario .contact-form .btn-primary:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(216, 78, 34, 0.42);
}
.lp-formulario .contact-form .btn-cta-form.btn-full {
  width: 100%;
  margin-top: 0.35rem;
}

/* Botão CTA — bloco final da LP */
.btn-cta-final,
.page-landing .lp-final-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.9rem 1.35rem;
  border-radius: 1.75rem 0 1.75rem 0;
  box-shadow: 0 10px 24px rgba(216, 78, 34, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}
.btn-cta-final:hover,
.page-landing .lp-final-actions .btn-primary:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(216, 78, 34, 0.42);
}

.depoimentos-brand__actions,
.lp-faq__actions,
.about-brand__actions,
.services-brand__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: clamp(1.5rem, 4vw, 2rem);
}
.about-brand__actions {
  justify-content: flex-start;
}
.about-brand__actions .btn-cta-form,
.services-brand__actions .btn-cta-form {
  min-width: min(100%, 14rem);
}
.page-landing .lp-garantia {
  --lp-trust-radius: 1.35rem;
  display: flex;
  flex-direction: column;
}
.page-landing .lp-garantia.section-padding {
  padding-bottom: 0;
}
.page-landing .lp-garantia .section-container {
  flex: 1 0 auto;
}
.page-landing .lp-garantia .lp-trust-grid {
  margin-bottom: 0.25rem;
}
.page-landing .lp-garantia .section-footer--servicos {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  width: 100%;
  align-self: stretch;
}
.page-landing .lp-garantia__lead {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  color: #5a6d82;
}
.page-landing .lp-trust-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 72rem;
  margin: 0 auto;
  counter-reset: lp-trust;
}
@media (min-width: 640px) {
  .page-landing .lp-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .page-landing .lp-trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }
}
.page-landing .lp-trust-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  counter-increment: lp-trust;
  padding: 0;
  text-align: left;
  color: #f4f8ff;
  background: linear-gradient(165deg, #4d81c2 0%, #3a6dad 52%, #2a5589 100%);
  border: none;
  border-radius: var(--lp-trust-radius) 0 var(--lp-trust-radius) 0;
  box-shadow: 0 14px 32px rgba(0, 32, 77, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-landing .lp-trust-card:nth-child(even) {
  border-radius: 0 var(--lp-trust-radius) 0 var(--lp-trust-radius);
}
.page-landing .lp-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 32, 77, 0.22);
}
.page-landing .lp-trust-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(225deg, var(--brand-lime) 0%, transparent 68%);
  opacity: 0.28;
  pointer-events: none;
}
.page-landing .lp-trust-card:nth-child(even)::after {
  right: auto;
  left: 0;
  background: linear-gradient(135deg, var(--brand-lime) 0%, transparent 68%);
}
.page-landing .lp-trust-card__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 1rem 1.15rem 0.85rem;
  box-sizing: border-box;
  border-radius: 0;
  background: rgba(0, 32, 77, 0.24);
  border-bottom: 2px solid rgba(200, 212, 0, 0.5);
  color: #fff;
}
.page-landing .lp-trust-card__icon::before {
  content: counter(lp-trust, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--brand-lime);
  flex-shrink: 0;
}
.page-landing .lp-trust-card__icon svg {
  width: 1.85rem;
  height: 1.85rem;
  flex-shrink: 0;
  margin-left: auto;
  opacity: 0.95;
}
.page-landing .lp-trust-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0.75rem 1.15rem 0;
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--brand-lime);
}
.page-landing .lp-trust-card p {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  margin: 0;
  padding: 0.45rem 1.15rem 1.15rem;
  font-size: 0.86rem;
  line-height: 1.48;
  color: #d8e6f5;
}
.page-landing .lp-trust-card p::before {
  content: "A2S garante";
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

/* FAQ — acordeão criativo (LP) */
.lp-faq {
  --lp-faq-radius: 1.35rem;
  display: flex;
  flex-direction: column;
}
.lp-faq.section-padding {
  padding-bottom: 0;
}
.lp-faq .section-container {
  flex: 1 0 auto;
  width: 100%;
  max-width: 48rem;
  box-sizing: border-box;
}
.lp-faq .accordion {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  min-width: 100%;
  gap: 1rem;
  margin-bottom: 0.25rem;
  counter-reset: lp-faq;
  box-sizing: border-box;
}
.lp-faq .section-footer--servicos {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  width: 100%;
  align-self: stretch;
}
.lp-faq .accordion-content[hidden] {
  display: none !important;
}
.lp-faq .accordion-item[data-open="true"] .accordion-content {
  display: block;
}
.lp-faq .accordion-item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  counter-increment: lp-faq;
  overflow: hidden;
  border: none;
  background: linear-gradient(165deg, #4d81c2 0%, #3a6dad 52%, #2a5589 100%);
  border-radius: var(--lp-faq-radius) 0 var(--lp-faq-radius) 0;
  box-shadow: 0 12px 28px rgba(0, 32, 77, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lp-faq .accordion-trigger {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.lp-faq .accordion-content {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.lp-faq .accordion-item:nth-child(even) {
  border-radius: 0 var(--lp-faq-radius) 0 var(--lp-faq-radius);
}
.lp-faq .accordion-item:hover {
  transform: translateY(-2px);
}
.lp-faq .accordion-item:focus-within,
.lp-faq .accordion-item[data-open="true"] {
  box-shadow: 0 18px 36px rgba(0, 32, 77, 0.22);
}
.lp-faq .accordion-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3.75rem;
  height: 3.75rem;
  background: linear-gradient(225deg, var(--brand-lime) 0%, transparent 68%);
  opacity: 0.26;
  pointer-events: none;
}
.lp-faq .accordion-item:nth-child(even)::after {
  right: auto;
  left: 0;
  background: linear-gradient(135deg, var(--brand-lime) 0%, transparent 68%);
}
.lp-faq .accordion-trigger {
  position: relative;
  z-index: 1;
  padding: 1.05rem 1.15rem 1.05rem 3.35rem;
  font-size: clamp(0.92rem, 2.2vw, 1.02rem);
  font-weight: 800;
  color: var(--brand-lime);
  background: rgba(0, 32, 77, 0.22);
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.lp-faq .accordion-trigger::before {
  content: counter(lp-faq, decimal-leading-zero);
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
}
.lp-faq .accordion-item[data-open="true"] .accordion-trigger {
  color: #fff;
  background: rgba(0, 32, 77, 0.3);
  border-bottom-color: rgba(200, 212, 0, 0.5);
}
.lp-faq .accordion-trigger:hover {
  color: #fff;
}
.lp-faq .accordion-trigger svg {
  width: 1.35rem;
  height: 1.35rem;
  padding: 0.2rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 0.4rem 0 0.4rem 0;
  box-sizing: content-box;
}
.lp-faq .accordion-content p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0.85rem 1.15rem 1rem;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #f4f8ff;
  background: rgba(255, 255, 255, 0.09);
  border-left: 4px solid var(--brand-lime);
  border-radius: 0 0.55rem 0.55rem 0;
}
.lp-faq .accordion-content p::before {
  content: "Resposta";
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.page-landing .lp-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.page-landing .lp-check-list li {
  position: relative;
  padding-left: 1.65rem;
  font-family: var(--font-body);
  color: #3d4f63;
  line-height: 1.45;
}
.page-landing .lp-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-lime);
  font-weight: 800;
}

/* Formulário — simulação personalizada (LP + home + contato) */
.lp-formulario {
  --lp-form-radius: 1.35rem;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  width: 100%;
}
.lp-formulario.section-padding {
  padding-bottom: 0;
}
.lp-formulario .section-container {
  flex: 1 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.lp-formulario .contact-grid {
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}
@media (min-width: 1024px) {
  .lp-formulario .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }
}
.lp-formulario .contact-grid > .reveal-left,
.lp-formulario .lp-formulario__aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(1.15rem, 3vw, 1.5rem);
  background: #fff;
  border: 1px solid rgba(77, 129, 194, 0.16);
  border-radius: 0 var(--lp-form-radius) 0 var(--lp-form-radius);
  box-shadow: 0 12px 32px rgba(0, 32, 77, 0.08);
  box-sizing: border-box;
}
.lp-formulario .lp-formulario__info {
  position: relative;
  margin-top: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(77, 129, 194, 0.16);
  border-radius: 0 var(--lp-form-radius) 0 var(--lp-form-radius);
  box-shadow: 0 10px 28px rgba(0, 32, 77, 0.07);
  background: #fff;
}
.lp-formulario .lp-formulario__info::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(225deg, var(--brand-lime) 0%, transparent 68%);
  opacity: 0.22;
  pointer-events: none;
}
.lp-formulario .lp-formulario__info-head {
  position: relative;
  z-index: 1;
  padding: 0.9rem 1.15rem 0.8rem;
  background: linear-gradient(165deg, #4d81c2 0%, #3a6dad 52%, #2a5589 100%);
  border-bottom: 2px solid rgba(200, 212, 0, 0.5);
}
.lp-formulario .lp-formulario__info-head h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--brand-lime);
}
.lp-formulario .lp-formulario__info-list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0.9rem 1rem 1rem;
  display: grid;
  gap: 0.65rem;
}
.lp-formulario .lp-formulario__info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem 0.75rem 0.95rem;
  background: rgba(77, 129, 194, 0.1);
  border-left: 4px solid var(--brand-lime);
  border-radius: 0 0.65rem 0.65rem 0;
}
.lp-formulario .lp-formulario__info-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  background: #fff;
  border: 1px solid rgba(77, 129, 194, 0.18);
  border-radius: 0 0.5rem 0.5rem 0;
  color: var(--brand-orange);
  box-shadow: 0 4px 10px rgba(0, 32, 77, 0.06);
}
.lp-formulario .lp-formulario__info-icon svg {
  display: block;
}
.lp-formulario .lp-formulario__info-text {
  flex: 1;
  min-width: 0;
  padding-top: 0.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  color: #2a4560;
}
.lp-formulario .section-head-left .section-desc {
  color: #5a6d82;
}
.lp-formulario .lp-check-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.lp-formulario .lp-check-list li {
  position: relative;
  padding: 0.7rem 1rem 0.7rem 2.15rem;
  background: rgba(77, 129, 194, 0.1);
  border-left: 4px solid var(--brand-lime);
  border-radius: 0 0.65rem 0.65rem 0;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.45;
  color: #2a4560;
}
.lp-formulario .lp-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0.85rem;
  top: 0.72rem;
  color: var(--brand-lime);
  font-weight: 800;
}
.lp-formulario .contact-form-wrap {
  position: relative;
  align-self: start;
  height: auto;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(165deg, #4d81c2 0%, #3a6dad 52%, #2a5589 100%);
  border: none;
  border-radius: var(--lp-form-radius) 0 var(--lp-form-radius) 0;
  box-shadow: 0 18px 42px rgba(0, 32, 77, 0.18);
  filter: drop-shadow(0 10px 24px rgba(0, 32, 77, 0.12));
}
.lp-formulario .contact-form-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4.5rem;
  height: 4.5rem;
  background: linear-gradient(225deg, var(--brand-lime) 0%, transparent 68%);
  opacity: 0.28;
  pointer-events: none;
}
.lp-formulario .contact-form-wrap h2,
.lp-formulario .contact-form-wrap h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 1rem 1.25rem 0.85rem;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--brand-lime);
  text-align: left;
  background: rgba(0, 32, 77, 0.26);
  border-bottom: 2px solid rgba(200, 212, 0, 0.5);
}
.lp-formulario .contact-form {
  position: relative;
  z-index: 1;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem 1.35rem;
}
.lp-formulario .contact-form label:not(.simulator-check) {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}
.lp-formulario .contact-form input:not([type="checkbox"]):not([type="range"]),
.lp-formulario .contact-form textarea {
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  color: #1a3a5c;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 0.55rem 0 0.55rem 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lp-formulario .contact-form input::placeholder,
.lp-formulario .contact-form textarea::placeholder {
  color: #6b7f94;
}
.lp-formulario .contact-form input:not([type="checkbox"]):not([type="range"]):focus,
.lp-formulario .contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-lime);
  box-shadow: 0 0 0 3px rgba(200, 212, 0, 0.28);
}
.lp-formulario .contact-form textarea {
  min-height: 6.5rem;
}
.lp-formulario .form-feedback {
  margin: 0 1.25rem 1.25rem;
  border-radius: 0 0.5rem 0.5rem 0;
}
.lp-formulario .section-footer--produtos {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  width: 100%;
  align-self: stretch;
  transform: scaleX(-1);
}
.lp-formulario .section-footer--produtos .section-footer__img {
  display: block;
  width: 100%;
  height: auto;
}

/* Simulador e calculadora — layout formulário brand */
.page-tool-brand.section-padding {
  padding-bottom: 0;
}
.page-tool-brand {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.page-tool-brand .section-container {
  flex: 1 0 auto;
  width: 100%;
}
.page-tool-brand__alert {
  margin-top: 1rem;
  border-radius: 0 0.55rem 0.55rem 0;
}
.page-tool-brand .page-tool-form__lead {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 1.25rem 0.85rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
.page-tool-brand .page-tool-form-wrap .simulator-steps,
.page-tool-brand .page-tool-form-wrap .calc-tabs {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 1.25rem 0.85rem;
}
.page-tool-brand .simulator-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.page-tool-brand .step-indicator {
  border-top: 3px solid rgba(255, 255, 255, 0.22);
  padding-top: 0.5rem;
}
.page-tool-brand .step-indicator span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.page-tool-brand .step-indicator strong {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
}
.page-tool-brand .step-indicator.is-active {
  border-top-color: var(--brand-lime);
}
.page-tool-brand .step-indicator.is-active strong {
  color: var(--brand-lime);
}
.page-tool-brand .contact-form input[type="range"] {
  width: 100%;
  accent-color: var(--brand-lime);
  margin: 0.15rem 0 0.35rem;
  padding: 0;
  height: auto;
  border: none;
  background: transparent;
}
.page-tool-brand .simulator-range-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.5rem;
}
.page-tool-brand .simulator-result-highlight {
  text-align: center;
  margin: 0.5rem 0 0.25rem;
  padding: 0.9rem 1rem;
  background: rgba(0, 32, 77, 0.28);
  border-left: 4px solid var(--brand-lime);
  border-radius: 0 0.65rem 0.65rem 0;
}
.page-tool-brand .simulator-result-highlight p {
  margin: 0 0 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}
.page-tool-brand .simulator-result-highlight strong {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.1;
  color: var(--brand-lime);
}
.lp-formulario .contact-form label.simulator-check,
.page-tool-brand .simulator-check {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.35rem 0 0.5rem;
  padding: 0;
  font-family: var(--font-body);
  font-size: inherit;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}
.lp-formulario .contact-form label.simulator-check input[type="checkbox"],
.page-tool-brand .simulator-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  margin: 0.2rem 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 0.2rem 0 0.2rem 0;
  box-shadow: none;
  accent-color: var(--brand-lime);
  cursor: pointer;
}
.lp-formulario .contact-form label.simulator-check span,
.page-tool-brand .simulator-check span {
  flex: 1;
  min-width: 0;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
.page-tool-brand #calc-solar-form label:not(.simulator-check),
.page-tool-brand.lp-formulario .contact-form label:not(.simulator-check) {
  color: rgba(255, 255, 255, 0.88);
}
.page-tool-brand .page-tool-btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 0.55rem 0 0.55rem 0;
  box-shadow: none;
}
.page-tool-brand .page-tool-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.page-tool-brand .calc-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}
.page-tool-brand .calc-tab {
  padding: 0.55rem 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 32, 77, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 0.55rem 0.55rem 0;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.page-tool-brand .calc-tab.is-active {
  color: var(--brand-navy);
  background: var(--brand-lime);
  border-color: var(--brand-lime);
}
.page-tool-brand .calc-summary-grid {
  display: grid;
  gap: 0.55rem;
  margin: 0.15rem 0 0.5rem;
}
.page-tool-brand .calc-summary-grid div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  background: rgba(0, 32, 77, 0.22);
  border-left: 4px solid var(--brand-lime);
  border-radius: 0 0.55rem 0.55rem 0;
}
.page-tool-brand .calc-summary-grid span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}
.page-tool-brand .calc-summary-grid strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--brand-lime);
}
.page-tool-brand .calc-actions {
  display: grid;
  gap: 0.65rem;
}
.page-tool-brand .calc-feedback {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: hsl(150 50% 22%);
  background: hsl(150 60% 95%);
  border: 1px solid hsl(150 50% 85%);
  border-radius: 0 0.55rem 0.55rem 0;
}
.page-tool-brand .calc-row-inline {
  display: grid;
  grid-template-columns: 1fr 5.5rem;
  gap: 0.65rem;
}
.page-tool-brand .calc-row-inline > div {
  display: flex;
  flex-direction: column;
}

/* CTA final — card e botões no padrão brand (LP) */
.page-landing .lp-final-cta {
  --lp-cta-radius: 1.35rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #e8f0fa 0%, #f4f8ff 48%, #fff 100%);
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}
.page-landing .lp-final-cta__inner {
  position: relative;
  z-index: 1;
}
.page-landing .lp-final-cta__box {
  position: relative;
  max-width: 44rem;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(165deg, #4d81c2 0%, #3a6dad 52%, #2a5589 100%);
  border: none;
  border-radius: var(--lp-cta-radius) 0 var(--lp-cta-radius) 0;
  box-shadow: 0 18px 42px rgba(0, 32, 77, 0.22);
  filter: drop-shadow(0 12px 28px rgba(0, 32, 77, 0.14));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-landing .lp-final-cta__box:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0, 32, 77, 0.26);
}
.page-landing .lp-final-cta__box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(225deg, var(--brand-lime) 0%, transparent 68%);
  opacity: 0.3;
  pointer-events: none;
}
.page-landing .lp-final-cta__label {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  padding: 1rem 1.5rem 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-lime);
  background: rgba(0, 32, 77, 0.26);
  border-bottom: 2px solid rgba(200, 212, 0, 0.5);
}
.page-landing .lp-final-cta__title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 1rem 1.5rem 0.65rem;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4.2vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}
.page-landing .lp-final-cta__accent {
  color: var(--brand-lime);
}
.page-landing .lp-final-cta__lead {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 34rem;
  padding: 0 1.5rem 0.85rem;
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  line-height: 1.55;
  color: #e8f2fc;
}
.page-landing .lp-final-cta__badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 1.5rem 0;
  padding: 0.45rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #1a3a5c;
  background: var(--brand-lime);
  border-radius: 0.65rem 0 0.65rem 0;
  box-shadow: 0 6px 16px rgba(0, 32, 77, 0.12);
}
.page-landing .lp-final-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.85rem;
  margin: 0;
  padding: 1.2rem 1.5rem 1.5rem;
  background: rgba(0, 32, 77, 0.18);
  border-top: 2px solid rgba(200, 212, 0, 0.35);
}
.page-landing .lp-final-actions .btn {
  flex: 1 1 12.5rem;
  min-width: min(100%, 12.5rem);
  max-width: 100%;
}
.page-landing .lp-final-actions .btn:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.page-landing .lp-final-actions .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: #fff;
  background: #25d366;
  border-radius: 0 1.75rem 0 1.75rem;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
}
.page-landing .lp-final-actions .btn-whatsapp:hover {
  background: #1fb855;
  color: #fff;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.4);
}
@media (max-width: 479px) {
  .page-landing .lp-final-actions {
    flex-direction: column;
  }
  .page-landing .lp-final-actions .btn {
    flex: 1 1 auto;
    width: 100%;
  }
}
.page-landing .section-head-left {
  text-align: left;
  margin-bottom: 1.25rem;
}
.page-landing .section-head-left .section-desc {
  margin-left: 0;
  margin-right: 0;
}
.page-landing .lp-footer .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  text-align: center;
}
.page-landing .lp-footer__home {
  color: var(--brand-lime);
  font-weight: 600;
}
.page-landing .lp-footer__home:hover {
  text-decoration: underline;
}
.page-landing .bg-muted .section-title-brand,
.page-landing .section-brand-light .section-title-brand {
  color: var(--brand-orange);
}

/* LP — fim de página no Safari iOS (sem faixa extra após o rodapé) */
html.page-landing,
body.page-landing {
  background: var(--primary);
  overflow-x: clip;
}
body.page-landing {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-height: 100dvh;
  min-height: 100svh;
  min-height: -webkit-fill-available;
}
body.page-landing main {
  flex: 1 0 auto;
  background: var(--brand-section-bg);
  overflow-x: clip;
}
body.page-landing .lp-footer {
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: 0;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
}
body.page-landing .lp-footer + .float-buttons {
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
}
body.page-landing .section-footer {
  contain: layout style paint;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
body.page-landing .lp-formulario {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  padding-bottom: clamp(12rem, 28vw, 20rem);
}
body.page-landing .lp-formulario .section-container {
  position: relative;
  z-index: 2;
  flex: 1 0 auto;
}
body.page-landing .lp-formulario .section-footer--produtos {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  margin: 0;
  contain: none;
  pointer-events: none;
  transform: scaleX(-1) translateZ(0);
  -webkit-transform: scaleX(-1) translateZ(0);
}
body.page-landing .lp-formulario .section-footer__img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  vertical-align: bottom;
}
@media (min-width: 1024px) {
  body.page-landing .lp-footer {
    margin-top: 0;
  }
  body.page-landing .lp-formulario {
    padding-bottom: clamp(10rem, 16vw, 14rem);
  }
}
@media (max-width: 1023px) {
  body.page-landing .lp-footer {
    margin-top: 0;
  }
  body.page-landing .hero.hero-brand.lp-hero {
    min-height: auto;
    overflow: hidden;
  }
  body.page-landing .hero.hero-brand.lp-hero .hero-brand__layout {
    min-height: auto;
  }
}
@supports (-webkit-touch-callout: none) {
  body.page-landing .hero.hero-brand.lp-hero {
    min-height: auto;
  }
}
