@font-face {
  font-family: "Spadina Archivo";
  src: url("./fonts/Archivo-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --bg: #0c0b0d;
  --bg-soft: #111014;
  --surface: #17151a;
  --line: rgba(247, 243, 245, 0.14);
  --text: #f7f3f5;
  --muted: #f7f3f5;
  --muted-dark: #c8bec4;
  --wine: #681b39;
  --wine-bright: #a53f63;
  --wine-brand: #8f2b50;
  --institutional-cyan: #00e5ff;
  --white: #ffffff;
  --max: 1180px;
  --font-body: "Segoe UI", Arial, "Helvetica Neue", sans-serif;
  --font-display: "Spadina Archivo", "Segoe UI", Arial, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--white);
  color: var(--bg);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(247, 243, 245, 0.13);
  background: rgba(12, 11, 13, 0.72);
  backdrop-filter: blur(14px);
}

.header-inner,
.header-actions,
.brand,
.footer-inner,
.footer-links,
.footer-brand,
.button-row {
  display: flex;
  align-items: center;
}

.header-inner {
  min-height: 74px;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  gap: 11px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand,
.header-actions {
  flex: 0 0 auto;
}

.brand strong,
.footer-brand strong {
  color: var(--wine-brand);
  font-weight: inherit;
}

.header-actions {
  gap: 20px;
}

.institutional-link,
.footer-links a,
.text-link {
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

.institutional-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid var(--white);
  border-radius: 4px;
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
}

.institutional-link:hover,
.institutional-link:focus-visible {
  border-color: var(--institutional-cyan);
  background: transparent;
  color: var(--institutional-cyan);
}

.institutional-link-footer {
  min-height: 36px;
  font-size: 13px;
}

.site-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 0;
  min-height: 42px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.site-nav a {
  flex: 0 0 auto;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--wine-bright);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 1px solid var(--wine);
  border-radius: 6px;
  background: var(--wine);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--wine-bright);
  background: #8c2b50;
  transform: translateY(-1px);
}

.button-small {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 14px;
}

.button-card {
  width: 100%;
  margin-top: auto;
}

.button-outline {
  border-color: var(--wine-bright);
  background: transparent;
}

.text-link {
  color: var(--wine-bright);
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--white);
}

.text-link-light {
  color: var(--text);
}

:where(a, button):focus-visible {
  outline: 3px solid var(--wine-bright);
  outline-offset: 4px;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  object-position: 65% center;
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(12, 11, 13, 0.97) 0%, rgba(12, 11, 13, 0.83) 40%, rgba(12, 11, 13, 0.25) 78%, rgba(12, 11, 13, 0.48) 100%), linear-gradient(0deg, rgba(12, 11, 13, 0.6), transparent 38%);
}

.hero-content {
  padding-top: 90px;
}

.hero-content h1 {
  max-width: 860px;
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 78px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero-lead {
  max-width: 560px;
  margin: 0 0 32px;
  color: var(--text);
  font-size: clamp(19px, 2.4vw, 26px);
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.3;
}

.button-row {
  flex-wrap: wrap;
  gap: 20px;
}

.section {
  padding: 78px 0;
  scroll-margin-top: 118px;
}

.section-dark {
  background: var(--bg);
}

.section-split,
.section-reviews {
  background: var(--bg-soft);
}

.section-gallery {
  background: #0f0e11;
}

.section-with-background {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg);
}

.section-with-background::before,
.section-with-background::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  pointer-events: none;
}

.section-with-background::before {
  background-image: var(--section-image);
  background-position: var(--section-position, center);
  background-size: cover;
  filter: saturate(0.68) contrast(1.04);
  opacity: 0.48;
  transform: scale(1.02);
}

.section-with-background::after {
  z-index: -1;
  background: linear-gradient(90deg, rgba(12, 11, 13, 0.9), rgba(12, 11, 13, 0.78) 58%, rgba(12, 11, 13, 0.72));
}

.section-with-background > .container {
  position: relative;
  z-index: 1;
}

.benefits-section {
  --section-image: url("images/beneficios-circuitos-gerado.webp");
  --section-position: center 62%;
}

.section-optimization {
  --section-image: url("images/otimizacao-componentes.webp");
}

.section-cleaning {
  --section-image: url("images/limpeza-refrigeracao.webp");
}

.section-support {
  --section-image: url("images/suporte-componentes-gerado.webp");
}

.section-assembly {
  --section-image: url("images/montagem-componentes-gerado.webp");
  --section-position: center;
}

.section-projects {
  --section-image: url("images/projetos-detalhes-gerado.webp");
}

.section-reviews {
  --section-image: url("images/avaliacoes-gerado.webp");
}

.section-heading {
  max-width: 690px;
  margin-bottom: 44px;
}

.section-heading.narrow {
  max-width: 650px;
}

#otimizacao .section-heading,
#limpeza .section-heading {
  margin-inline: auto;
  text-align: center;
}

#limpeza .section-heading {
  max-width: 820px;
}

h2,
h3,
h4,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.section-heading > p:last-child,
.final-cta-inner > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.benefits-section {
  padding-top: 64px;
}

.benefit-grid,
.service-support-grid {
  display: grid;
  gap: 18px;
}

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

.benefit-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(23, 21, 26, 0.92);
  backdrop-filter: blur(8px);
}

.benefit-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  margin-bottom: 15px;
}

.benefit-card svg {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  fill: var(--wine-bright);
}

.benefit-card h3 {
  margin-bottom: 0;
  font-size: 20px;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.plan-grid,
.cleaning-grid {
  display: grid;
  gap: 18px;
}

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

.plan-card,
.cleaning-card,
.service-feature-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(23, 21, 26, 0.94);
  backdrop-filter: blur(8px);
}

.plan-card {
  display: flex;
  position: relative;
  min-height: 100%;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.plan-card-header,
.cleaning-card-header {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.plan-card-header {
  min-height: 286px;
}

.cleaning-card-header {
  min-height: 176px;
}

.plan-card-features,
.cleaning-card-features {
  padding: 22px 28px 28px;
  border-top: 1px solid var(--line);
  background: rgba(12, 11, 13, 0.2);
}

.plan-features-label {
  margin: 0 0 15px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.plan-card-featured {
  border-color: var(--wine);
  background: linear-gradient(165deg, rgba(143, 43, 86, 0.3), var(--surface) 34%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.plan-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  margin-bottom: 8px;
  justify-content: flex-start;
}

.plan-title-row h3 {
  margin-bottom: 0;
}

.plan-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: var(--wine-bright);
}

.card-badge {
  display: inline-flex;
  position: static;
  align-self: flex-end;
  align-items: center;
  min-height: 24px;
  padding: 5px 10px;
  border: 1px solid var(--wine-bright);
  border-radius: 999px;
  background: var(--surface);
  color: var(--wine-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: -8px -8px 10px 0;
  white-space: nowrap;
}

.card-badge::before {
  margin-right: 6px;
  color: currentColor;
  content: "★";
  font-size: 10px;
}

.plan-card h3,
.cleaning-card h3,
.service-feature-card h3 {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.16;
}

.plan-title-row + .price {
  margin-top: 0;
}

.price {
  margin-bottom: 13px;
  color: var(--text);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
}

.plan-card-header > p:not(.price),
.service-feature-card > p:not(.price):not(.service-availability) {
  color: var(--muted);
}

.plan-card-header > p:not(.price) {
  text-align: left;
}

.plan-card .price {
  margin-top: 0;
  text-align: left;
  font-size: 30px;
}

.plan-summary {
  min-height: 58px;
  margin-bottom: 0;
}

.plan-card .feature-list {
  margin: 0;
}

.feature-list,
.check-list {
  display: grid;
  gap: 9px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.feature-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--wine-bright);
  content: "✓";
  font-weight: 800;
}

.feature-list li.included-from-previous,
.check-list li.included-from-previous {
  padding-left: 0;
  color: var(--text);
  font-weight: 800;
}

.feature-list li.included-from-previous::before,
.check-list li.included-from-previous::before {
  content: none;
}

.plan-card-features .feature-list,
.cleaning-card-features .check-list {
  margin: 0;
  padding-top: 0;
  border-top: 0;
}

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

.cleaning-card {
  display: flex;
  position: relative;
  min-width: 0;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(23, 21, 26, 0.94);
  backdrop-filter: blur(8px);
}

.cleaning-card-accent {
  border-color: var(--wine);
  background: linear-gradient(165deg, rgba(143, 43, 86, 0.3), var(--surface) 34%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.plan-card-featured .card-badge,
.cleaning-card-accent .card-badge {
  background: #26131c;
}

.service-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-title-row h3 {
  margin-bottom: 0;
}

.service-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: var(--wine-bright);
}

.price-start {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.price-prefix {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.price-value {
  color: var(--text);
  font-size: 23px;
  font-weight: 700;
}

.cleaning-card .service-title-row {
  min-height: 42px;
  justify-content: flex-start;
}

.cleaning-card .price-start {
  justify-content: flex-start;
}

.service-availability {
  margin: 0 0 4px;
  color: var(--muted-dark);
  font-size: 13px;
}

.cleaning-card .price {
  margin-top: 0;
  font-size: 26px;
}

.cleaning-card .check-list {
  margin: 0;
}

.plan-card-header .button-card,
.cleaning-card-header .button-card {
  margin-top: auto;
}

.section-soft {
  background: var(--bg-soft);
}

.service-suite .section-heading {
  margin-bottom: 44px;
}

.service-support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-feature-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(23, 21, 26, 0.94);
  backdrop-filter: blur(8px);
}

.service-feature-card .eyebrow {
  margin-bottom: 12px;
}

.service-feature-card h3 {
  margin-bottom: 8px;
  font-size: 27px;
}

.service-feature-card .price-start {
  margin-top: 12px;
  margin-bottom: 13px;
}

.service-feature-card .button {
  align-self: flex-start;
  margin-top: auto;
}

#suporte .service-title-row {
  min-height: 71px;
}

.assembly-card-wrap {
  display: flex;
  justify-content: center;
}

.assembly-card {
  width: min(100%, 920px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.92fr);
  gap: 34px;
}

.assembly-card-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.assembly-card-content .button {
  align-self: flex-start;
  margin-top: auto;
}

.assembly-benefits {
  min-width: 0;
  padding: 24px;
  border-left: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 11, 13, 0.36);
}

.assembly-benefits-title {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
}

.assembly-benefits .check-list {
  margin: 0;
}

.review-carousel {
  position: relative;
  margin-bottom: 30px;
  padding: 0 48px;
}

.review-viewport {
  overflow: hidden;
}

.review-track {
  display: flex;
  align-items: stretch;
  transition: transform 350ms ease;
}

.review-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 33.3333%;
  min-width: 0;
  margin: 0;
  padding: 0 9px;
}

.review-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  padding: 12px;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.project-carousel .review-slide {
  padding: 0 9px;
}

.project-carousel .review-slide img {
  height: auto;
  aspect-ratio: 4 / 3;
  padding: 12px;
  object-fit: contain;
  background: var(--surface);
  filter: saturate(0.82) contrast(1.04);
}

.carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  padding: 0;
  place-items: center;
  border: 1px solid var(--wine-bright);
  border-radius: 50%;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  font-family: var(--font-display);
  transform: translateY(-50%);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--wine);
}

.carousel-arrow-prev { left: 0; }
.carousel-arrow-next { right: 0; }

.google-reviews-link {
  display: flex;
  width: max-content;
  margin-inline: auto;
}

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

.social-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.project-instagram-link {
  display: flex;
  width: max-content;
  margin-inline: auto;
}

.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 22px auto 20px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.google-rating-stars {
  color: var(--wine-bright);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.google-maps-pin {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

a[href^="https://wa.me/"]:not(.floating-whatsapp) {
  gap: 8px;
}

a[href^="https://wa.me/"]:not(.floating-whatsapp)::before {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.5 3.5A11.7 11.7 0 0 0 12.17 0C5.7 0 .43 5.26.43 11.73c0 2.07.54 4.08 1.57 5.86L.33 23.8l6.35-1.63a11.72 11.72 0 0 0 5.48 1.39h.01c6.47 0 11.73-5.26 11.73-11.73 0-3.14-1.22-6.08-3.4-8.33ZM12.17 21.55h-.01a9.77 9.77 0 0 1-4.98-1.36l-.36-.22-3.77.97 1.01-3.68-.24-.38a9.76 9.76 0 1 1 18.11-5.15c0 5.44-4.42 9.72-9.87 9.72Zm5.41-7.3c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.17-.17.2-.35.23-.65.08-.3-.15-1.27-.47-2.42-1.5-.9-.8-1.5-1.78-1.68-2.08-.18-.3-.02-.46.13-.61.14-.14.3-.35.45-.52.15-.18.2-.3.3-.5.1-.2.05-.38-.03-.53-.08-.15-.67-1.61-.92-2.2-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.08-.79.38-.27.3-1.04 1.02-1.04 2.49s1.06 2.89 1.21 3.09c.15.2 2.08 3.17 5.04 4.44.7.3 1.25.48 1.68.62.71.23 1.36.2 1.87.12.57-.08 1.76-.72 2.01-1.41.25-.69.25-1.28.17-1.41-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.5 3.5A11.7 11.7 0 0 0 12.17 0C5.7 0 .43 5.26.43 11.73c0 2.07.54 4.08 1.57 5.86L.33 23.8l6.35-1.63a11.72 11.72 0 0 0 5.48 1.39h.01c6.47 0 11.73-5.26 11.73-11.73 0-3.14-1.22-6.08-3.4-8.33ZM12.17 21.55h-.01a9.77 9.77 0 0 1-4.98-1.36l-.36-.22-3.77.97 1.01-3.68-.24-.38a9.76 9.76 0 1 1 18.11-5.15c0 5.44-4.42 9.72-9.87 9.72Zm5.41-7.3c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.17-.17.2-.35.23-.65.08-.3-.15-1.27-.47-2.42-1.5-.9-.8-1.5-1.78-1.68-2.08-.18-.3-.02-.46.13-.61.14-.14.3-.35.45-.52.15-.18.2-.3.3-.5.1-.2.05-.38-.03-.53-.08-.15-.67-1.61-.92-2.2-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.08-.79.38-.27.3-1.04 1.02-1.04 2.49s1.06 2.89 1.21 3.09c.15.2 2.08 3.17 5.04 4.44.7.3 1.25.48 1.68.62.71.23 1.36.2 1.87.12.57-.08 1.76-.72 2.01-1.41.25-.69.25-1.28.17-1.41-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 20px;
}

.carousel-dot {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.carousel-dot::before {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted-dark);
  content: "";
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.carousel-dot.is-active::before,
.carousel-dot:hover::before,
.carousel-dot:focus-visible::before {
  background: var(--wine-bright);
}

.final-cta {
  --section-image: url("images/cta-textura-gerado.webp");
  --section-position: center;
  padding: 110px 0;
  background: var(--wine);
}

.final-cta.section-with-background::after {
  background: linear-gradient(90deg, rgba(91, 24, 52, 0.97), rgba(126, 35, 72, 0.9), rgba(91, 24, 52, 0.97));
}

.final-cta-inner {
  max-width: 770px;
  text-align: center;
}

.final-cta .eyebrow,
.final-cta-inner > p:not(.eyebrow) {
  color: var(--white);
}

.final-cta h2 {
  margin-inline: auto;
  font-size: clamp(38px, 5vw, 66px);
}

.final-cta .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--wine);
}

.final-cta .button:hover,
.final-cta .button:focus-visible {
  border-color: var(--white);
  background: #f0e8ed;
}

.contact-actions {
  justify-content: center;
}

.final-cta .button-outline {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.final-cta .button-outline:hover,
.final-cta .button-outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  padding: 34px 0 100px;
  background: var(--bg);
}

.footer-inner {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 34px;
  color: var(--muted-dark);
  font-size: 14px;
}

.footer-brand {
  color: var(--text);
  font-size: 15px;
}

.footer-brand img {
  width: 34px;
  height: 34px;
}

.footer-links {
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.footer-links .institutional-link:hover,
.footer-links .institutional-link:focus-visible {
  border-color: var(--institutional-cyan);
  color: var(--institutional-cyan);
}

.footer-inner p {
  width: 100%;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-inner p a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

.footer-inner p a:hover,
.footer-inner p a:focus-visible {
  color: var(--wine-bright);
}

.floating-whatsapp {
  position: fixed;
  z-index: 12;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--wine-bright);
  border-radius: 999px;
  background: var(--wine);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #8c2b50;
}

.floating-whatsapp svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: currentColor;
}

@media (max-width: 1050px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-support-grid .service-feature-card:last-child {
    grid-column: 1 / -1;
  }

  .plan-title-row {
    min-height: 72px;
  }

  .plan-summary {
    min-height: 104px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 0;
    flex-wrap: wrap;
    gap: 10px 16px;
    padding: 12px 0;
  }

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

  .site-nav {
    flex: 1 0 100%;
    order: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    min-height: 0;
    padding: 8px 0 2px;
    border-top: 1px solid rgba(247, 243, 245, 0.1);
    overflow: visible;
  }

  .site-nav a {
    width: 100%;
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 0;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
  }

  .section {
    scroll-margin-top: 130px;
  }
}

@media (max-width: 820px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .assembly-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .assembly-benefits {
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    border-radius: 0;
    background: transparent;
  }

  .plan-title-row,
  .plan-summary {
    min-height: 0;
  }

  .hero {
    min-height: 660px;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(12, 11, 13, 0.94) 0%, rgba(12, 11, 13, 0.72) 58%, rgba(12, 11, 13, 0.48) 100%), linear-gradient(0deg, rgba(12, 11, 13, 0.65), transparent 42%);
  }

  .section-with-background::after {
    background: linear-gradient(180deg, rgba(12, 11, 13, 0.91), rgba(12, 11, 13, 0.8) 54%, rgba(12, 11, 13, 0.86));
  }
}

@media (max-width: 720px) {
  .review-carousel {
    padding: 0 30px;
  }

  .review-slide {
    flex-basis: 100%;
    padding: 0;
  }

  .review-slide img {
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .header-inner {
    align-items: center;
    column-gap: 8px;
    padding: 12px 0;
  }

  .brand {
    gap: 6px;
    min-width: 0;
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .header-actions {
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
  }

  .institutional-link {
    font-size: 12px;
  }

  .site-nav {
    gap: 0;
    padding-top: 8px;
    padding-bottom: 2px;
    border-top: 1px solid rgba(247, 243, 245, 0.1);
    overflow: visible;
  }

  .site-nav a {
    min-height: 32px;
    padding: 3px 0;
    font-size: clamp(11px, 3.05vw, 12px);
    letter-spacing: -0.01em;
    overflow-wrap: normal;
    text-align: center;
    white-space: nowrap;
  }

  .button-small {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .section {
    scroll-margin-top: 122px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding-top: 44px;
  }

  .hero-image {
    object-position: 70% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(12, 11, 13, 0.86) 0%, rgba(12, 11, 13, 0.71) 44%, rgba(12, 11, 13, 0.9) 100%);
  }

  .hero-content h1 {
    max-width: 360px;
    font-size: clamp(38px, 11vw, 52px);
  }

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

  .section,
  .final-cta {
    padding: 58px 0;
  }

  .benefits-section {
    padding-top: 48px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .service-feature-card,
  .benefit-card {
    padding: 22px;
  }

  .plan-card,
  .cleaning-card {
    padding: 0;
  }

  .plan-card-header,
  .cleaning-card-header {
    padding: 22px;
  }

  .plan-card-features,
  .cleaning-card-features {
    padding: 20px 22px 22px;
  }

  .benefit-grid,
  .service-support-grid {
    grid-template-columns: 1fr;
  }

  .benefit-heading,
  #suporte .service-title-row {
    min-height: 0;
  }

  .service-support-grid .service-feature-card:last-child {
    grid-column: auto;
  }

  .service-feature-card .button {
    align-self: stretch;
  }

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

  .review-carousel {
    padding: 0 30px;
  }

  .review-slide {
    flex-basis: 100%;
    padding: 0;
  }

  .review-slide img {
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .project-carousel .review-slide img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

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

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
