/* ==========================================================================
Everest — Para Empresas
Fiel ao node 2060:530 do arquivo "Everest Institucional" (Figma).
Imagens e ícones locais ficam concentrados na pasta ./img.
Fontes: o design usa Avenir / Avenir Next (licenciadas). O CSS abaixo
tenta as duas primeiro e cai em Nunito Sans (geométrica, métricas
próximas) quando não estiverem instaladas.
========================================================================== */
:root {
  /* Principais */
  --branco: #ffffff;
  --laguna: #13c4d2;
  --verde-agua: #11c4d1;
  --atlantico: #095354;
  --canela: #e06110;
  --manga: #ff8c00;
  --onix: #333333;

  /* Global / verde água */
  --va-500: #13c4d2;
  --va-600: #109ba2;
  --va-700: #095354;
  --va-800: #053535;
  --va-footer: #159fb0;

  /* Neutras */
  --cinza-50: #f3f2f2;
  --cinza-100: #e4e4e4;
  --cinza-1: #f2f2f3;
  --cinza-2: #e5e6e7;
  --cinza-3: #d7d9db;
  --cinza-texto: #58595b;
  --cinza-form: #f4f4f4;
  --placeholder: #b6b6b6;

  /* Feedback de formulário. O verde de sucesso vive nas classes .alert-*,
  que trazem a própria paleta. */
  --erro: #c8322c;

  --display: "Avenir","Avenir Next","Nunito Sans",system-ui,-apple-system,Segoe UI,sans-serif;
  --body: "Avenir Next","Avenir","Nunito Sans",system-ui,-apple-system,Segoe UI,sans-serif;

  --gutter: 123px;
  --content: 1120px;
}

*,*::before,*::after {
  box-sizing: border-box;
}
html {
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  max-width: 100%;
  margin: 0;
  background: var(--branco);
  color: var(--onix);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.4;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
p {
  margin: 0;
}
h1,h2,h3 {
  margin: 0;
  font-weight: 400;
}
button {
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid var(--canela);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.container {
  width: 100%;
  max-width: calc(var(--content) + var(--gutter)*2);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  height: 56px;
  padding: 8px 16px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  background: var(--canela);
  color: #f2f2f2;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.08));
  transition: background-color .2s ease,transform .2s ease;
}
.btn:hover {
  background: #c95409;
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn--hero {
  width: 435px;
  max-width: 100%;
}
.btn--block {
  width: 100%;
}

/* ==========================================================================
1. HERO
========================================================================== */
.hero {
  position: relative;
  min-height: 1800px;
  background: #979797 url("./img/hero-1366.webp") center top/cover no-repeat;
  overflow: hidden;
}
@media (min-width:1367px) {
  .hero {
    background-image: url("./img/hero-1920.webp");
  }
}
.hero::after {
  /* Ellipse 16 — brilho em overlay no topo */
  content: "";
  position: absolute;
  z-index: 0;
  left: 11%;
  right: 16%;
  top: -98px;
  height: 340px;
  background: radial-gradient(50% 50% at 50% 50%,rgba(255,255,255,.55),rgba(255,255,255,0) 70%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 714px;
  margin: 0 auto;
  padding: 88px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.hero__brand {
  height: 80px;
  width: auto;
}
.hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -2px;
  color: var(--branco);
  margin-top: 48px;
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
}

/* ==========================================================================
2. ECONOMIA + CARROSSEL  (bloco branco com canto superior direito de 160px)
========================================================================== */
.page-body {
  position: relative;
  z-index: 2;
  margin-top: -160px;
  background: var(--branco);
  border-top-right-radius: 160px;
}

.economia {
  padding: 104px 0 0;
}
.economia__grid {
  display: flex;
  align-items: center;
  gap: 96px;
}
.economia__photo {
  position: relative;
  z-index: 2;
  flex: 0 0 476px;
  height: 650px;
  border-radius: 32px;
  overflow: hidden;
  background: #eae9ee;
}
.economia__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.economia__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.economia__col {
  flex: 0 0 477px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.economia__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  color: var(--onix);
}

/* Carrossel */
.carousel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.carousel__viewport {
  overflow: visible;
  touch-action: pan-y;
  cursor: grab;
}
.carousel__viewport:active {
  cursor: grabbing;
}
.carousel__track {
  display: flex;
  gap: 24px;
  will-change: transform;
}
.card-benefit {
  flex: 0 0 453px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  border: 1px solid var(--cinza-2);
  border-radius: 24px;
  background: rgba(255,255,255,.1);
}
.card-benefit.is-passed {
  visibility: hidden;
  pointer-events: none;
}
.card-benefit__icon {
  width: 64px;
  height: 64px;
  flex: none;
}
.card-benefit__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-benefit__icon {
  display: grid;
  place-items: center;
}
.card-benefit__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -.24px;
  color: var(--verde-agua);
}
.card-benefit__description {
  font-size: 18px;
  line-height: 1.4;
  color: var(--cinza-texto);
}

.carousel__nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.carousel__btn {
  width: 48px;
  height: 48px;
  flex: none;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: var(--verde-agua);
  transition: background-color .2s ease,opacity .2s ease;
}
.carousel__btn img {
  width: 32px;
  height: 32px;
}
.carousel__btn[disabled] {
  background: var(--cinza-100);
  cursor: not-allowed;
}
.carousel__count {
  font-size: 18px;
  line-height: 1.4;
  color: var(--cinza-texto);
  white-space: nowrap;
}

/* ==========================================================================
3. PRODUTOS
========================================================================== */
.produtos {
  padding: 170px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.produtos__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  color: var(--onix);
  text-align: center;
}
.produtos__grid {
  display: flex;
  gap: 24px;
  width: 100%;
}
.card-product {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
}
.card-product__media {
  position: relative;
  width: 100%;
  aspect-ratio: 374/461;
  background: var(--cinza-50);
  border-radius: 30px;
  overflow: hidden;
}
.card-product__photo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: opacity .4s ease;
}
.card-product__photo:not(.card-product__photo--hover) {
  width: 80%;
}

/* Foto de ambiente exibida no hover — crop próprio de cada variante,
em % do container de 374x461 do Figma */
.card-product__photo--hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  opacity: 0;
  transition: opacity .4s ease;
}
.card-product--inverter {
  --hx: -39.3%;
  --hy: -12.8%;
  --hw: 178.34%;
  --hh: 113.02%;
}
.card-product--plus {
  --hx: -27.27%;
  --hy: -32.75%;
  --hw: 149.73%;
  --hh: 215.62%;
}
.card-product--star {
  --hx: -60.16%;
  --hy: -1.95%;
  --hw: 227.81%;
  --hh: 103.9%;
}

.card-product:hover .card-product__photo--hover,
.card-product:focus-visible .card-product__photo--hover {
  opacity: 1;
}
.card-product:hover .card-product__photo:not(.card-product__photo--hover),
.card-product:focus-visible .card-product__photo:not(.card-product__photo--hover) {
  opacity: 0;
}
.card-product__tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 0 0 8px 8px;
  background: var(--manga);
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .54px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.card-product__sheet {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 8px 16px;
  border: 0;
  border-radius: 8px;
  background: var(--laguna);
  color: #f2f2f2;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .3s ease,transform .3s ease;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.08));
}
.card-product__sheet img {
  position: static;
  width: 18px;
  height: 18px;
  flex: none;
  transform: none;
  aspect-ratio: auto;
  object-fit: contain;
}
.card-product:hover .card-product__sheet,
.card-product:focus-visible .card-product__sheet {
  opacity: 1;
  transform: translateY(0);
}
.card-product__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.card-product__name {
  font-family: var(--body);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: .54px;
  text-transform: uppercase;
  color: var(--cinza-texto);
  max-width: 270px;
}
.card-product__specs {
  display: flex;
  align-items: center;
  gap: 4px;
}
.swatch {
  display: block;
  border: 1px solid var(--cinza-3);
  border-radius: 50%;
  background: var(--swatch-color,#000);
}
.card-product__specs .swatch {
  width: 18px;
  height: 18px;
}
.swatch--black {
  --swatch-color: #000;
}
.swatch--red {
  --swatch-color: #ba0c15;
}
.swatch--white {
  --swatch-color: #fff;
}
.swatch--silver {
  --swatch-color: #d7d9db;
}

/* ==========================================================================
4. COMPARATIVO + SOLUÇÃO COMPLETA (bloco atlântico)
========================================================================== */
.compare-wrap {
  padding: 170px 0 0;
  overflow: clip;
}
.compare {
  position: relative;
  overflow: visible;
  isolation: isolate;
  padding: 120px 97px 100px;
}
.compare__background {
  position: absolute;
  inset-block: 0;
  left: 50%;
  z-index: 0;
  width: min(968px,calc(100vw - 32px));
  transform: translateX(-50%);
  border-radius: 80px;
  background: var(--atlantico);
  pointer-events: none;
}
.compare__head {
  position: relative;
  z-index: 2;
  max-width: 929px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.compare__head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  color: var(--branco);
}
.compare__head p {
  font-size: 22px;
  line-height: 1.4;
  color: #fff;
}

.compare__cols {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 96px;
}
.panel {
  position: relative;
  border-radius: 30px;
  min-width: 0;
}
/* Geometria do Figma (container 930px): escuro 609px, teal 462px em
left:468px — ou seja, 141px de sobreposição. O escuro fica centralizado
verticalmente em relação ao teal via align-items:center. */
.panel--old {
  background: var(--va-800);
  flex: 0 0 65.48%;
  /* 609 / 930 */
  /* Área visível do card escuro = 468/930 do container. As linhas respeitam
  24px de padding: começam em 24px e param 24px antes do card teal.
  23.15% = os 141px de sobreposição em relação à largura do card. */
  padding: 42px calc(23.15% + 24px) 40px 24px;
  z-index: 1;
}
.panel--new {
  background: var(--va-500);
  flex: 0 0 49.68%;
  /* 462 / 930 */
  margin-left: -15.16%;
  /* -141 / 930 */
  padding: 50px 24px 72px;
  z-index: 2;
}
.panel--old .panel__head {
  margin-bottom: 22px;
}
.panel__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 64px;
  margin-bottom: 44px;
}
.panel__head h3 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 32px;
  line-height: 31px;
  color: #fff;
  white-space: nowrap;
}
.panel__head img {
  height: 64px;
  width: auto;
}
.panel__list {
  display: flex;
  flex-direction: column;
}
.panel__row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 110px;
  padding: 16px 20px;
  font-size: 20px;
  line-height: 31px;
  color: #fff;
}
.panel--old .panel__row {
  border-bottom: 1px solid var(--va-700);
}
.panel--new .panel__row {
  border-bottom: 1px solid var(--va-600);
}
.panel__row:last-child {
  border-bottom: 0;
}
.panel__row-icon {
  width: 80px;
  height: 80px;
  flex: none;
  display: grid;
  place-items: center;
}
.panel__row-icon img {
  display: block;
  width: 80px;
  height: 80px;
}
.panel__row b {
  font-weight: 700;
}

/* Bento — solução completa */
.solucao {
  position: relative;
  z-index: 2;
  margin-top: 112px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.solucao__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  color: var(--branco);
  max-width: 606px;
}
.bento {
  display: grid;
  width: 100%;
  grid-template-columns: 262fr 263fr 356fr;
  grid-template-rows: 224px 224px;
  gap: 24px;
}
.bento .tile {
  position: relative;
  width: auto;
  height: auto;
  min-height: 224px;
}
.b-garantia {
  grid-column: 1;
  grid-row: 1;
}
.b-atendimento {
  grid-column: 2;
  grid-row: 1;
}
.b-assistencia {
  grid-column: 3;
  grid-row: 1;
}
.b-refrigeracao {
  grid-column: 1 / span 2;
  grid-row: 2;
}
.b-inmetro {
  grid-column: 3;
  grid-row: 2;
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 224px;
  height: 224px;
}
.tile--icon {
  padding: 22px 27px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tile--icon img {
  width: 80px;
  height: 80px;
}
.tile--600 {
  background: var(--va-600);
}
.tile--800 {
  background: var(--va-800);
}
.tile--photo {
  border-radius: 24px;
  background: #d9d9d9;
}
.tile--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tile--photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 134px;
  background: linear-gradient(to bottom,rgba(13,13,13,0),#0d0d0d);
  opacity: .8;
}
.tile p {
  position: relative;
  z-index: 1;
  font-size: 20px;
  line-height: 31px;
  color: #fff;
}
.tile--photo p {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 26px;
  max-width: 394px;
}
.tile--icon p {
  max-width: 223px;
}
.tile b {
  font-weight: 700;
}

/* ==========================================================================
5. CALCULADORA
========================================================================== */
.calcular-sect {
  padding-top: 100px;
}
@media (max-width:767px) {
  .calcular-sect {
    padding-top: 72px;
  }
}
.calculadora {
  position: relative;
  min-height: 496px;
  overflow: hidden;
  border-radius: 40px;
  background: #e7e4e4;
}
@media (max-width:1199px) {
  .calculadora {
    min-height: 853px;
    border-radius: 32px;
  }
}
.calculadora__media {
  position: absolute;
  top: 0;
  height: 496px;
}
@media (max-width:1199px) {
  .calculadora__media {
    top: 0;
    width: 1200px;
    height: 853px;
    left: 54%;
    transform: translateX(-50%);
  }
}
.calculadora__image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.calculadora__glow {
  position: absolute;
  top: -156px;
  left: -244px;
  width: 750px;
  height: 792px;
  pointer-events: none;
}
@media (max-width:1199px) {
  .calculadora__glow {
    display: none;
  }
}
.calculadora__glow-image {
  position: absolute;
  top: -37.88%;
  left: -40%;
  width: 180%;
  height: 175.76%;
  max-width: none;
  opacity: .57;
}
.calculadora__content {
  position: relative;
  z-index: 1;
  width: 457px;
  padding-top: 60px;
  margin-left: 71px;
}
@media (max-width:1199px) {
  .calculadora__content {
    width: auto;
    padding-top: 34px;
    margin: 0 19px 0 31px;
    display: flex;
    flex-direction: column;
    gap: 27px;
  }
}
.calculadora__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calculadora__title {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--onix);
}
@media (max-width:1199px) {
  .calculadora__title {
    font-size: 32px;
    color: var(--branco);
  }
}
.calculadora__description {
  font-size: 22px;
  line-height: 1.4;
  color: var(--onix);
}
@media (max-width:1199px) {
  .calculadora__description {
    font-size: 18px;
    line-height: normal;
    color: var(--branco);
  }
}
.calculadora__button {
  width: 435px;
  max-width: 100%;
  margin-top: 29px;
}
@media (max-width:1199px) {
  .calculadora__button {
    width: 100%;
    max-width: none;
    margin-top: 0;
    font-size: 18px;
  }
}
.calculadora__button-label {
  white-space: nowrap;
}
.calculadora__button-icon {
  width: 20px;
  height: 20px;
  flex: none;
}
.calculadora__note {
  width: 643px;
  margin-top: 20px;
  font-size: 14px;
  line-height: normal;
  color: var(--onix);
}
@media (max-width:1199px) {
  .calculadora__note {
    width: 100%;
    margin-top: 0;
    color: var(--branco);
  }
}

/* ==========================================================================
6. FORMULÁRIO
========================================================================== */
.form-section {
  padding: 120px 0 120px;
}
.form-section__grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 56px;
}
.form-section__intro {
  flex: 0 0 398px;
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
}
.form-section__intro h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  color: var(--onix);
}
.form-section__intro p {
  font-size: 18px;
  line-height: 1.4;
  color: #212529;
}

.form-card {
  flex: 0 0 643px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border-radius: 24px;
  background: var(--cinza-form);
}
.form-card__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.2;
  color: var(--verde-agua);
  text-transform: uppercase;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 0;
  min-width: 0;
}
.field__row {
  display: flex;
  gap: 24px;
  width: 100%;
}
.field label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #000;
}
.field label span {
  font-weight: 400;
  font-size: 14px;
  color: var(--cinza-texto);
}
.field input,.field textarea,.field select {
  width: 100%;
  height: 60px;
  padding: 0 12px;
  border: 1px solid var(--cinza-100);
  border-radius: 8px;
  background: #fff;
  font-family: var(--display);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--onix);
  transition: border-color .2s ease,box-shadow .2s ease;
}
.field textarea {
  height: 133px;
  padding: 20px 12px;
  resize: vertical;
}
.field select {
  appearance: none;
  color: var(--onix);
  /* CaretDown: caixa de 22px com o vetor em inset 34.38%/15.62%,
  ou seja o glifo mede 15,13x8,25 — 22x22 aqui esticava o chevron.
  A caixa de 22px termina a 12px da borda, daí o offset de 15,44px. */
  background-image: none;
  background-repeat: no-repeat;
  background-position: right 15.44px center;
  background-size: 15.13px 8.25px;
  padding-right: 46px;
  /* 12 + 22 (ícone) + 12 (gap) */
}
.field input::placeholder,.field textarea::placeholder {
  color: var(--placeholder);
}
.field select:invalid {
  color: var(--placeholder);
}
.field select:disabled {
  background-color: var(--cinza-50);
  color: var(--placeholder);
  cursor: progress;
}
.field input:focus,.field textarea:focus,.field select:focus {
  border-color: var(--verde-agua);
  box-shadow: 0 0 0 3px rgba(17,196,209,.18);
  outline: none;
}
.field--invalid input,.field--invalid textarea,.field--invalid select {
  border-color: var(--erro);
}
.field--invalid input:focus,.field--invalid textarea:focus,.field--invalid select:focus {
  border-color: var(--erro);
  box-shadow: 0 0 0 3px rgba(200,50,44,.18);
}
.field__error {
  font-family: var(--display);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: var(--erro);
}
/* Isca de spam. Fora da tela em vez de display:none, porque parte dos robôs
ignora campo com display:none mas preenche qualquer input que encontre. */
.field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-card__note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--onix);
  text-align: center;
}

/* ==========================================================================
6. FOOTER
========================================================================== */
.footer {
  background: var(--va-footer);
}
.footer__inner {
  min-height: 184px;
  padding: 32px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__logo {
  width: 204px;
  height: auto;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  color: #fff;
}
.footer__line {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  line-height: 22px;
}
.footer__line img {
  flex: none;
}
.footer__line--mail img,.footer__line--phone img {
  width: 24px;
  height: 24px;
}
.footer__line--sac {
  display: block;
  text-align: left;
}
.footer__line strong {
  font-weight: 600;
}
.footer__seal {
  width: 251px;
  height: auto;
}
.footer__copy {
  background: var(--verde-agua);
  padding: 30px 24px;
  text-align: center;
}
.footer__copy p {
  font-family: var(--body);
  font-weight: 500;
  font-size: 14px;
  line-height: 19.2px;
  color: #fff;
}

/* CTA flutuante */
.floating-cta {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 90;
}
.floating-cta__link {
  display: flex;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}
.floating-cta__bubble {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-height: 68px;
  padding: 8px 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 1px 3px 8.5px rgba(0,0,0,.4);
  color: var(--onix);
  white-space: nowrap;
}
.floating-cta__bubble::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 19px;
  height: 19px;
  background: #fff;
  border-radius: 2px;
  transform: translateY(-50%) rotate(45deg);
}
.floating-cta__title,.floating-cta__subtitle {
  position: relative;
  z-index: 1;
}
.floating-cta__title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}
.floating-cta__subtitle {
  font-size: 16px;
  line-height: 1.2;
  color: #666;
}
.floating-cta__avatar {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: block;
  border-radius: 999px;
  background: var(--laguna);
  box-shadow: 1.143px 3.429px 9.714px rgba(19,196,210,.4);
}
.floating-cta__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.floating-cta:not(.is-open) .floating-cta__bubble {
  display: none;
}

/* ==========================================================================
RESPONSIVO
========================================================================== */
@media (max-width:1280px) {
  :root {
    --gutter: 48px;
  }
  .compare {
    padding: 96px 56px 80px;
  }
  .compare__background {
    border-radius: 56px;
  }
  .economia__grid {
    gap: 48px;
  }
  .economia__photo {
    flex: 0 0 40%;
  }
  .economia__col {
    flex: 1 1 0;
  }
  .card-benefit {
    flex-basis: min(453px,calc(100vw - 136px));
  }
  .form-section__grid {
    gap: 32px;
  }
  .form-card {
    flex: 1 1 0;
  }
  .form-section__intro {
    flex: 0 0 340px;
  }
}
@media (max-width:1024px) {
  .hero {
    min-height: 1500px;
    background-position: center center;
  }
  .hero__title {
    font-size: 38px;
    letter-spacing: -1px;
  }
  .page-body {
    border-top-right-radius: 96px;
  }
  .economia__grid {
    flex-direction: column;
  }
  .economia__photo {
    width: 100%;
    flex: none;
    height: 420px;
  }
  .economia__col {
    width: 100%;
  }
  .produtos {
    padding-top: 112px;
  }
  .compare-wrap {
    padding-top: 112px;
  }
  .compare__cols {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .panel {
    flex: none;
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    padding: 50px 24px 60px;
  }
  .bento {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .bento .tile {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 224px;
    min-height: 224px;
  }
  .form-section__grid {
    flex-direction: column;
  }
  .form-section__intro {
    position: static;
    flex: none;
    width: 100%;
  }
  .form-card {
    width: 100%;
  }
  .footer__inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .footer__contact {
    align-items: center;
  }
  .footer__line--sac {
    text-align: center;
  }
}
@media (min-width:769px) and (max-width:1024px) {
  .hero__inner {
    gap: 20px;
  }
  .hero__title {
    margin-top: 24px;
  }
}
@media (min-width:1025px) {
  .form-card {
    max-width: 643px;
  }
  .footer__inner {
    gap: 24px;
  }
}
@media (max-width:768px) {
  :root {
    --gutter: 20px;
  }
  .hero {
    min-height: 1100px;
  }
  .hero__inner {
    padding-top: 40px;
  }
  .hero__brand {
    height: 56px;
  }
  .hero__title {
    font-size: 30px;
    margin-top: 0;
  }
  .produtos__title br {
    display: none;
  }
  .btn {
    height: auto;
    min-height: 56px;
    font-size: 16px;
    padding: 12px 16px;
  }
  .btn--hero {
    width: 100%;
  }
  .page-body {
    border-top-right-radius: 56px;
    margin-top: -80px;
  }
  .economia {
    padding-top: 72px;
  }
  .economia__title,.produtos__title,.compare__head h2,.solucao__title,.form-section__intro h2 {
    font-size: 32px;
  }
  .compare {
    padding: 56px 20px 56px;
  }
  .compare__background {
    border-radius: 32px;
  }
  .compare__head p {
    font-size: 18px;
  }
  .compare__cols {
    margin-top: 48px;
  }
  .panel {
    padding: 32px 16px 40px;
  }
  .panel__head h3 {
    font-size: 24px;
    white-space: normal;
  }
  .panel__head img {
    height: 44px;
  }
  .panel__row {
    font-size: 17px;
    line-height: 26px;
    min-height: 0;
    padding: 20px 8px;
  }
  .panel__row img {
    width: 72px;
    height: 72px;
  }
  .solucao {
    margin-top: 72px;
  }
  .tile p {
    font-size: 17px;
    line-height: 26px;
  }
  .b-inmetro p {
    max-width: 100%;
  }
  .produtos__grid {
    width: calc(100% + 48px);
    margin-inline: 0;
    --product-carousel-space: clamp(24px,6.15vw,48px);
    gap: var(--product-carousel-space);
    padding-inline: var(--product-carousel-space);
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-padding-inline: var(--product-carousel-space);
    -webkit-overflow-scrolling: touch;
  }
  .produtos__grid::-webkit-scrollbar {
    display: none;
  }
  .field__row {
    flex-direction: column;
    gap: 24px;
  }
  .form-section {
    padding: 72px 0;
  }
  .form-card {
    padding: 24px;
  }
  .floating-cta {
    right: 16px;
    bottom: 16px;
  }
  .floating-cta__link {
    gap: 12px;
  }
  .floating-cta__bubble {
    max-width: calc(100vw - 112px);
    white-space: normal;
  }
  .floating-cta__title {
    font-size: 16px;
  }
  .floating-cta__subtitle {
    display: none;
  }
}
@media (max-width: 1199px) {
  .card-product {
    flex: 0 0 calc(100vw - (var(--product-carousel-space) * 4.2));
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .card-product__media {
    aspect-ratio: 374 / 540;
  }
  .card-product__sheet {
    opacity: 1;
    transform: none;
  }
  .card-benefit {
    flex-basis: calc(100% - 48px);
  }

  .card-product__photo--hover,
  .card-product:hover .card-product__photo--hover,
  .card-product:focus-visible .card-product__photo--hover {
    display: none;
  }
  .card-product:hover .card-product__photo:not(.card-product__photo--hover),
  .card-product:focus-visible .card-product__photo:not(.card-product__photo--hover) {
    opacity: 1;
  }
}
@media (min-width: 1200px) {
  .card-product__name {
    font-size: 18px;
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  .produtos__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 768px;
  }
}


/* ==========================================================================
MODAL FICHA TÉCNICA  (nodes 2194:815 / 2219:1374 / 2219:1485)
========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[hidden] {
  display: none;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  animation: modal-fade .2s ease;
}
.modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1006px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fff;
  border-radius: 24px;
  animation: modal-in .25s cubic-bezier(.2,.8,.3,1);
}
@keyframes modal-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: 6px;
  transition: opacity .2s ease;
}
.modal__close:hover {
  opacity: .6;
}
.modal__body {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px;
}
.modal__media {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  flex: none;
}
.modal__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  min-width: 0;
}

/* Galeria */
.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.gallery__stage {
  width: 300px;
  height: 300px;
  flex: none;
}
.gallery__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__nav {
  width: 40px;
  height: 40px;
  flex: none;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: var(--verde-agua);
  transition: background-color .2s ease;
}
.gallery__nav img {
  width: 24px;
  height: 24px;
}
.gallery__nav[disabled] {
  background: var(--cinza-100);
  cursor: not-allowed;
}
.gallery__dots {
  height: 8px;
  width: 36px;
}

/* Especificações */
.specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}
.specs__label,.info__label {
  font-size: 14px;
  line-height: normal;
  color: #464749;
}
.specs__row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  min-width: 111px;
  padding: 12px;
  border-radius: 8px;
  background: var(--cinza-50);
  font-size: 14px;
  line-height: normal;
  color: #464749;
  white-space: nowrap;
}
.spec b {
  font-weight: 700;
}

/* Coluna de informações */
.info__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}
.info__badge {
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 8px;
  background: var(--manga);
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .54px;
  text-transform: uppercase;
  color: #fff;
}
.info__badge[hidden] {
  display: none;
}
.modal__info h2 {
  font-family: var(--body);
  font-weight: 700;
  font-size: 32px;
  line-height: 31px;
  color: #464749;
}
.info__price {
  font-size: 14px;
  line-height: normal;
  color: #464749;
}
.info__rule {
  width: 100%;
  height: 1px;
  margin: 0;
  border: 0;
  background: var(--cinza-50);
}
.info__colors {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}
.swatches {
  display: flex;
  align-items: center;
  gap: 5.333px;
}
.swatches .swatch {
  width: 24px;
  height: 24px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}
.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: normal;
  color: #212529;
}

/* Ícones compostos por fragmentos vetoriais exportados do Figma */
.ficon {
  display: block;
  position: relative;
  width: 32px;
  height: 32px;
  flex: none;
}
.ficon img {
  display: block;
  width: 100%;
  height: 100%;
}

.modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 56px;
  background: #fcfdfd;
}
.modal__footer p:first-child {
  font-family: var(--body);
  font-weight: 700;
  font-size: 18px;
  line-height: 31px;
  color: #464749;
}
.modal__footer p:last-child {
  font-size: 16px;
  line-height: normal;
  color: #464749;
}
.btn--laguna {
  background: var(--laguna);
  width: 381px;
  max-width: 100%;
}
.btn--laguna:hover {
  background: #0fa9b5;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width:1024px) {
  .modal__body {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 56px 24px 24px;
  }
  .modal__media {
    width: 100%;
  }
  .modal__info {
    padding: 0;
  }
  .modal__footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .btn--laguna {
    width: 100%;
  }
}
@media (max-width:768px) {
  .modal {
    padding: 0;
  }
  .modal__dialog {
    max-width: none;
    max-height: 100vh;
    border-radius: 0;
    min-height: 100vh;
  }
  .gallery__stage {
    width: 220px;
    height: 300px;
  }
  .modal__info h2 {
    font-size: 26px;
    line-height: 1.2;
  }
  .features li {
    font-size: 15px;
  }
}

/* Estilos anteriormente declarados diretamente no HTML */
.carousel__track {
  list-style: none;
  margin: 0;
  padding: 0;
}
.produtos__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.alert {
  padding: 16px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 16px; 
}

.alert-success {
  background-color: rgb(209, 231, 221);
  border-color: rgb(163, 207, 187);
  color: rgb(10, 54, 34);
}

.alert-danger {
  background-color: rgb(248, 215, 218);
  border-color: rgb(241, 174, 181);
  color: rgb(88, 21, 28);
}
