:root {
  --navy: #082f5f;
  --navy-dark: #041c39;
  --blue: #005b9f;
  --cyan: #1aa7d9;
  --steel: #697483;
  --ink: #101722;
  --muted: #5c6572;
  --line: #d8dee7;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --silver: #a3a7ad;
  --shadow: 0 24px 70px rgba(4, 28, 57, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

main {
  display: flex;
  flex-direction: column;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  color: var(--navy-dark);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(216, 222, 231, 0.86);
  box-shadow: 0 10px 36px rgba(4, 28, 57, 0.06);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(216, 222, 231, 0.96);
  box-shadow: 0 16px 44px rgba(4, 28, 57, 0.12);
}

.top-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  min-height: 30px;
  padding: 7px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(90deg, var(--navy-dark), var(--navy), var(--navy-dark));
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.top-ribbon span {
  position: relative;
  white-space: nowrap;
}

.top-ribbon span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: calc(clamp(12px, 3vw, 34px) / -2 - 2px);
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.header-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 5vw, 72px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  color: var(--navy-dark);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 52px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
  clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
  font-size: 23px;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: #273244;
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 10px 0;
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transition: width 180ms ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  gap: 10px;
  min-height: 46px;
  padding: 0 17px;
  color: var(--navy-dark);
  background: #fff;
  border: 1px solid rgba(8, 47, 95, 0.22);
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(4, 28, 57, 0.1);
}

.header-cta:hover {
  color: #fff;
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  color: #1fa855;
  fill: currentColor;
  flex: 0 0 auto;
  filter: drop-shadow(0 5px 8px rgba(31, 168, 85, 0.16));
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--navy-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(4, 28, 57, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  gap: 10px;
  padding: 0 22px;
}

.button:hover,
.header-cta:hover,
.problem-card:hover {
  transform: translateY(-2px);
}

.primary {
  color: #fff;
  background: linear-gradient(135deg, #0073d1, var(--blue));
  box-shadow: 0 16px 34px rgba(0, 91, 159, 0.25);
}

.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.chart-icon,
.doc-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
}

.chart-icon::before {
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 15px;
  height: 15px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
}

.chart-icon::after {
  position: absolute;
  left: 6px;
  top: 4px;
  width: 10px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(-35deg);
}

.doc-icon::before {
  position: absolute;
  inset: 2px 4px;
  border: 2px solid currentColor;
  border-radius: 3px;
  content: "";
}

.doc-icon::after {
  position: absolute;
  left: 8px;
  top: 8px;
  width: 7px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
}

.hero {
  position: relative;
  order: 1;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding: 168px clamp(18px, 5vw, 72px) 78px;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-carousel,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-image: var(--hero-image);
  background-position: center right;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 6000ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 28, 57, 0.97) 0%, rgba(4, 28, 57, 0.82) 39%, rgba(4, 28, 57, 0.28) 72%, rgba(4, 28, 57, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 28, 57, 0.22), rgba(4, 28, 57, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
}

.hero-carousel-controls {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: rgba(4, 28, 57, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.hero-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  font: inherit;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  transition: background 180ms ease, transform 180ms ease;
}

.hero-arrow:hover {
  background: rgba(39, 169, 255, 0.28);
  transform: translateY(-1px);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.hero-dot.active {
  background: #27a9ff;
  transform: scale(1.35);
}

.eyebrow {
  margin: 0 0 14px;
  color: #24a8ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(42px, 5.6vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 strong {
  display: block;
  color: #27a9ff;
}

.hero-copy {
  width: min(540px, 100%);
  margin-bottom: 28px;
  color: #e4edf7;
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
}

.section {
  padding: clamp(44px, 5.5vw, 76px) clamp(18px, 5vw, 72px);
  scroll-margin-top: 82px;
}

.hero,
.final-cta {
  scroll-margin-top: 82px;
}

.feature-strip {
  order: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(4, 28, 57, 0.08);
}

.feature-strip article {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 124px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.feature-strip article::before {
  position: absolute;
  inset: 10px 12px;
  background: linear-gradient(135deg, rgba(26, 167, 217, 0.08), rgba(255, 255, 255, 0));
  border: 1px solid rgba(26, 167, 217, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 91, 159, 0.12);
  content: "";
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.feature-strip article:hover {
  transform: translateY(-3px);
}

.feature-strip article:hover::before {
  opacity: 1;
  transform: scale(1);
}

.feature-strip article:first-child {
  padding-left: 0;
}

.feature-strip article:last-child {
  padding-right: 0;
  border-right: 0;
}

.feature-strip .icon {
  width: 48px;
  height: 48px;
  color: var(--blue);
}

.feature-icon-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 104px;
  height: 104px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 0 rgba(0, 91, 159, 0));
  transition: transform 220ms ease, filter 220ms ease;
}

.feature-strip article:hover .feature-icon-img {
  filter: drop-shadow(0 12px 18px rgba(0, 91, 159, 0.2));
  transform: translateY(-4px) scale(1.04);
}

.feature-strip p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.feature-strip strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--navy-dark);
  font-size: 16px;
  line-height: 1.18;
  text-transform: uppercase;
}

.section-heading {
  width: 100%;
  margin-bottom: 28px;
}

.section-heading.narrow {
  width: 100%;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy-dark);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.section-heading p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  text-align: justify;
  text-justify: inter-word;
  hyphens: manual;
}

.diagnostic-note {
  margin-top: 22px;
  padding: 18px 20px;
  color: var(--navy-dark);
  background: #fff;
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(4, 28, 57, 0.06);
  font-weight: 700;
}

.problem-section,
.deliveries-section,
.partners-section {
  background: var(--soft);
}

.problem-section {
  order: 4;
  padding-top: clamp(32px, 4vw, 54px);
}

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

.problem-card {
  position: relative;
  --problem-image: url("assets/diagnostico-direcao.png");
  --problem-text-width: min(270px, 54%);
  display: flex;
  min-height: 236px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  padding: 28px;
  color: #fff;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(4, 28, 57, 0.9) 0%, rgba(4, 28, 57, 0.72) 46%, rgba(4, 28, 57, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.26) 100%),
    var(--problem-image) center / cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(4, 28, 57, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.problem-card[data-problem="direcao"] {
  --problem-image: url("assets/diagnostico-direcao.png");
}

.problem-card[data-problem="equipe"] {
  --problem-image: url("assets/diagnostico-equipe.png");
}

.problem-card[data-problem="manutencao"] {
  --problem-image: url("assets/diagnostico-manutencao.png");
}

.problem-card[data-problem="seguranca"] {
  --problem-image: url("assets/diagnostico-seguranca.png");
}

.problem-card[data-problem="transparencia"] {
  --problem-image: url("assets/diagnostico-transparencia.png");
}

.problem-card.active {
  border-color: rgba(26, 167, 217, 0.8);
  box-shadow: var(--shadow);
}

.problem-card strong {
  position: relative;
  z-index: 1;
  max-width: var(--problem-text-width);
  color: #fff;
  font-size: 20px;
  line-height: 1.16;
  text-shadow: 0 2px 12px rgba(4, 28, 57, 0.34);
}

.problem-card small {
  position: relative;
  z-index: 1;
  max-width: var(--problem-text-width);
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(4, 28, 57, 0.26);
}

.icon {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  color: var(--navy);
}

.icon::before,
.icon::after {
  position: absolute;
  content: "";
}

.compass::before {
  inset: 4px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.compass::after {
  left: 19px;
  top: 7px;
  width: 4px;
  height: 26px;
  background: var(--cyan);
  transform: rotate(38deg);
}

.team::before {
  left: 10px;
  top: 3px;
  width: 20px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.team::after {
  left: 4px;
  bottom: 4px;
  width: 34px;
  height: 17px;
  border: 3px solid currentColor;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom: 0;
}

.gear::before {
  inset: 8px;
  border: 5px solid currentColor;
  border-radius: 50%;
  box-shadow:
    0 -12px 0 -7px currentColor,
    0 12px 0 -7px currentColor,
    12px 0 0 -7px currentColor,
    -12px 0 0 -7px currentColor,
    9px 9px 0 -7px currentColor,
    -9px -9px 0 -7px currentColor,
    9px -9px 0 -7px currentColor,
    -9px 9px 0 -7px currentColor;
}

.gear::after {
  inset: 18px;
  background: #fff;
  border-radius: 50%;
}

.tool::before {
  left: 17px;
  top: 4px;
  width: 7px;
  height: 34px;
  background: currentColor;
  transform: rotate(45deg);
}

.tool::after {
  right: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border: 4px solid currentColor;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.shield::before {
  inset: 3px 7px;
  border: 3px solid currentColor;
  border-radius: 18px 18px 22px 22px;
  clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%);
}

.shield::after {
  left: 15px;
  top: 18px;
  width: 15px;
  height: 8px;
  border-left: 3px solid var(--cyan);
  border-bottom: 3px solid var(--cyan);
  transform: rotate(-45deg);
}

.document::before {
  inset: 3px 8px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.document::after {
  left: 16px;
  top: 15px;
  width: 18px;
  height: 14px;
  border-top: 3px solid var(--cyan);
  border-bottom: 3px solid var(--cyan);
}

.growth::before {
  left: 3px;
  bottom: 3px;
  width: 34px;
  height: 34px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.growth::after {
  right: 2px;
  top: 4px;
  width: 24px;
  height: 20px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(-18deg);
}

.insight-panel {
  margin-top: 18px;
  padding: clamp(28px, 4vw, 42px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(4, 28, 57, 0.98), rgba(8, 47, 95, 0.94)),
    radial-gradient(circle at 88% 12%, rgba(36, 168, 255, 0.18), transparent 34%),
    linear-gradient(145deg, transparent 0%, transparent 62%, rgba(255, 255, 255, 0.06) 62%, rgba(255, 255, 255, 0.06) 100%);
  border-radius: 8px;
  border: 1px solid rgba(158, 232, 255, 0.16);
  box-shadow: 0 24px 70px rgba(4, 28, 57, 0.18);
}

.insight-panel span {
  display: block;
  margin-bottom: 14px;
  color: #9ee8ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insight-panel h3 {
  max-width: none;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.insight-panel p {
  max-width: none;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 500;
  line-height: 1.55;
  text-align: left;
}

.insight-panel p strong {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 0 0 6px;
  color: #9ee8ff;
  background: transparent;
  border-bottom: 2px solid rgba(158, 232, 255, 0.42);
  border-radius: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-panel p:last-child {
  margin-bottom: 0;
}

.story-section {
  order: 3;
  padding-bottom: clamp(32px, 4vw, 52px);
  background:
    linear-gradient(135deg, #fff 0%, #fff 58%, rgba(26, 167, 217, 0.08) 58%, rgba(26, 167, 217, 0.08) 100%);
}

.story-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.story-card {
  min-height: 220px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(4, 28, 57, 0.05);
}

.story-card.featured {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(4, 28, 57, 0.94), rgba(8, 47, 95, 0.9)),
    url("assets/instagram-preview.jpeg") center / cover;
  border-color: rgba(26, 167, 217, 0.28);
}

.story-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-card.featured span {
  color: #9ee8ff;
}

.story-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

.signal-box {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  padding: 26px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.93) 58%, rgba(255, 255, 255, 0.78) 100%),
    url("assets/condominio-reflexao.png") right center / cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(4, 28, 57, 0.07);
}

.signal-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-dark);
  font-size: 18px;
}

.signal-box p {
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 700;
}

.signal-box ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.signal-box li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.signal-box li::before {
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--cyan);
  content: "✓";
  font-weight: 800;
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-height: 38px;
  padding: 0 18px;
  color: #fff;
  background: var(--navy);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.signal-copy {
  display: grid;
}

.mini-cta:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.story-card.featured p {
  color: #fff;
}

.turnaround-points {
  margin: 24px 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.turnaround-points strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
}

.turnaround-points ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.turnaround-points li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.turnaround-points li::before {
  position: absolute;
  left: 0;
  top: 2px;
  color: #9ee8ff;
  content: "•";
  font-size: 20px;
  line-height: 1;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.timeline article {
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.timeline article:last-child {
  border-right: 0;
}

.timeline span,
.method-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy-dark);
  font-size: 21px;
  line-height: 1.18;
}

.timeline p,
.method-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.transformation-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  margin-top: 18px;
  padding: clamp(28px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.transformation-card h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.transformation-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.owner-mindset-visual {
  position: relative;
  overflow: hidden;
  margin: 30px 0 0;
  aspect-ratio: 16 / 9;
  background: var(--navy-dark);
  border: 1px solid rgba(26, 167, 217, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(4, 28, 57, 0.12);
}

.owner-mindset-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 28, 57, 0.18), transparent 48%),
    linear-gradient(0deg, rgba(4, 28, 57, 0.22), transparent 42%);
  content: "";
  pointer-events: none;
}

.owner-mindset-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.transformation-grid article {
  min-height: 168px;
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.transformation-grid article:hover {
  border-color: rgba(26, 167, 217, 0.55);
  box-shadow: 0 16px 34px rgba(4, 28, 57, 0.09);
  transform: translateY(-2px);
}

.transformation-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 16px;
  color: var(--blue);
  background: #fff;
  border: 1px solid rgba(26, 167, 217, 0.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.transformation-grid h4 {
  margin: 0 0 8px;
  color: var(--navy-dark);
  font-size: 17px;
  line-height: 1.2;
}

.transformation-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.story-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.story-focus-grid article {
  padding: 30px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.story-focus-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.method-section {
  position: relative;
  order: 5;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(36, 168, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #041c39 0%, #082f5f 58%, #041c39 100%);
}

.method-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0%, transparent 62%, rgba(255, 255, 255, 0.055) 62%, rgba(255, 255, 255, 0.055) 100%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 90px);
  content: "";
  pointer-events: none;
}

.method-section > * {
  position: relative;
  z-index: 1;
}

.method-section h2,
.method-section .section-heading p:not(.eyebrow) {
  color: #fff;
}

.method-section .eyebrow {
  color: #9ee8ff;
}

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

.method-grid article {
  position: relative;
  min-height: 228px;
  padding: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.method-grid article::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), rgba(158, 232, 255, 0.2));
  content: "";
}

.method-grid article::after {
  position: absolute;
  inset: auto -20% -55% 30%;
  height: 120px;
  background: radial-gradient(circle, rgba(158, 232, 255, 0.18), transparent 68%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.method-grid article:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(158, 232, 255, 0.44);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
  transform: translateY(-8px);
}

.method-grid article:hover::after {
  opacity: 1;
  transform: translateY(-18px);
}

.method-grid h3,
.method-grid p {
  color: #fff;
}

.method-grid span {
  color: #9ee8ff;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.deliveries-section {
  order: 6;
  padding-bottom: clamp(34px, 4vw, 52px);
}

.delivery-grid article {
  position: relative;
  min-height: 172px;
  padding: 22px;
  color: var(--navy-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--cyan);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(4, 28, 57, 0.06);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.delivery-grid article::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  background: radial-gradient(circle, rgba(26, 167, 217, 0.13), transparent 68%);
  content: "";
  transition: transform 200ms ease, opacity 200ms ease;
}

.delivery-grid article:hover {
  border-color: rgba(26, 167, 217, 0.5);
  box-shadow: 0 20px 46px rgba(4, 28, 57, 0.12);
  transform: translateY(-5px);
}

.delivery-grid article:hover::after {
  opacity: 1;
  transform: translate(-10px, -10px);
}

.delivery-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--blue);
  background: var(--soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.delivery-grid h3 {
  margin-bottom: 10px;
  color: var(--navy-dark);
  font-size: 19px;
}

.delivery-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.42;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.partners-section {
  order: 7;
  padding-top: clamp(34px, 4vw, 52px);
}

.partner-card {
  color: var(--navy-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(4, 28, 57, 0.05);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.partner-card:hover {
  border-color: rgba(26, 167, 217, 0.55);
  box-shadow: 0 24px 54px rgba(4, 28, 57, 0.13);
  transform: translateY(-5px);
}

.featured-partner {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 26px;
  border-top: 4px solid var(--cyan);
}

.partner-logo {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(4, 28, 57, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.partner-card:hover .partner-logo {
  box-shadow: 0 18px 36px rgba(0, 91, 159, 0.14);
  transform: scale(1.05);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-logo.initials {
  color: var(--blue);
  background:
    linear-gradient(135deg, rgba(26, 167, 217, 0.1), rgba(255, 255, 255, 0.96));
  font-size: 18px;
  font-weight: 900;
}

.partner-card span {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.featured-partner span {
  margin-bottom: 10px;
  font-size: 22px;
}

.featured-partner small {
  display: block;
  margin: -4px 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.featured-partner p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.55;
}

.compact-partner {
  display: grid;
  min-height: 144px;
  place-items: center;
  gap: 12px;
  padding: 20px;
  text-align: center;
}

.final-cta {
  order: 8;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(54px, 6vw, 84px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(4, 28, 57, 0.97), rgba(8, 47, 95, 0.78)),
    url("assets/hero-condominio-limpo.png") center / cover;
}

.final-cta h2,
.contact-copy p {
  color: #fff;
}

.contact-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: 18px;
}

.contact-details {
  display: grid;
  gap: 14px;
  width: min(680px, 100%);
  margin-top: 28px;
}

.contact-details div {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 3px solid #9ee8ff;
  border-radius: 8px;
}

.contact-details span {
  display: block;
  margin-bottom: 6px;
  color: #9ee8ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.45;
}

.contact-details a:hover {
  color: #9ee8ff;
}

.contact-copy small {
  display: block;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(4, 28, 57, 0.24);
  backdrop-filter: blur(16px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-dark);
  font-size: 13px;
  font-weight: 800;
}

.service-area-note {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 5px;
  padding: 17px 20px 17px 22px;
  color: var(--navy-dark);
  background:
    linear-gradient(135deg, rgba(245, 250, 253, 0.98), rgba(255, 255, 255, 0.98));
  border: 1px solid var(--line);
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(4, 28, 57, 0.05);
}

.service-area-note::after {
  position: absolute;
  inset: 0 0 0 auto;
  width: 28%;
  background: linear-gradient(135deg, transparent, rgba(26, 167, 217, 0.08));
  content: "";
  pointer-events: none;
}

.service-area-note strong {
  display: block;
  color: var(--navy-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-area-note p {
  position: relative;
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
  z-index: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 91, 159, 0.12);
}

.contact-form .button {
  width: max-content;
  min-width: 190px;
  margin-top: 4px;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.footer {
  order: 9;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #d8e5f4;
  background: var(--navy-dark);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  display: block;
  width: 78px;
  height: 78px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.footer-brand div {
  display: grid;
  gap: 2px;
}

.footer strong {
  color: #fff;
  font-size: 19px;
  line-height: 1.1;
}

.footer span,
.footer a {
  color: #d8e5f4;
}

.footer-credits {
  display: grid;
  justify-items: center;
  gap: 5px;
  color: rgba(216, 229, 244, 0.82);
  font-size: 13px;
  font-weight: 650;
  text-align: center;
}

.footer-credits span:last-child {
  color: rgba(216, 229, 244, 0.64);
  font-size: 12px;
}

.footer-credits a {
  color: #9ee8ff;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.footer-credits a:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .header-main {
    min-height: 72px;
  }

  .brand {
    font-size: 18px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: clamp(18px, 5vw, 72px);
    left: clamp(18px, 5vw, 72px);
    width: auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
    color: var(--navy-dark);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 52px rgba(4, 28, 57, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav a {
    display: grid;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 7px 8px;
    border-radius: 6px;
    text-align: center;
    line-height: 1.18;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
  }

  .nav a::before {
    display: none;
  }

  .nav a:hover {
    background: var(--soft);
    color: var(--blue);
    transform: translateY(-1px);
  }

  .nav a::after {
    display: none;
  }

  .site-header.menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
  }

.problem-grid,
.timeline,
.partners-grid,
.feature-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

  .feature-strip article {
    grid-template-columns: 118px minmax(0, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }

  .timeline article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

.method-grid,
.delivery-grid,
.partners-grid,
.story-intro,
.transformation-card,
.story-focus-grid,
  .final-cta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .transformation-card {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .featured-partner {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

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

  .section,
  .hero,
  .final-cta {
    scroll-margin-top: 88px;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.98);
  }

  .top-ribbon {
    justify-content: flex-start;
    gap: 18px;
    overflow: hidden;
    min-height: 26px;
    padding: 6px 16px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .top-ribbon span:nth-child(n + 4) {
    display: none;
  }

  .header-main {
    gap: 12px;
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-mark {
    width: 62px;
    height: 46px;
    font-size: 20px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .header-cta .whatsapp-icon {
    margin: 0;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .nav {
    left: 16px;
    right: 16px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    padding: 7px;
  }

  .nav a {
    min-height: 36px;
    padding: 7px 5px;
    font-size: 11px;
  }

  .section {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .story-section {
    padding-bottom: 48px;
  }

  .problem-section {
    padding-top: 26px;
  }

  .deliveries-section {
    padding-top: 26px;
  }

  .final-cta {
    padding-top: 44px;
    padding-bottom: 48px;
  }

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

  .section-heading p:not(.eyebrow),
  .contact-copy p:not(.eyebrow) {
    text-align: left;
    hyphens: manual;
  }

  .hero {
    min-height: 560px;
    padding: 132px 18px 48px;
  }

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

  .hero-overlay {
    display: block;
    background: linear-gradient(90deg, rgba(4, 28, 57, 0.96), rgba(4, 28, 57, 0.72));
  }

  .hero-carousel-controls {
    right: 18px;
    bottom: 18px;
    padding: 6px;
  }

  .hero-arrow {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 17px;
  }

  h2 {
    font-size: 31px;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .button {
    min-height: 52px;
  }

  .problem-grid,
  .timeline,
  .method-grid,
  .delivery-grid,
  .partners-grid,
  .feature-strip,
  .story-intro,
  .transformation-card,
  .transformation-grid,
  .story-focus-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .feature-strip article {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 112px;
    padding: 18px 0;
  }

  .feature-strip article::before {
    inset: 8px 0;
  }

  .problem-card,
  .timeline article,
  .method-grid article {
    min-height: auto;
  }

  .problem-card {
    --problem-text-width: min(330px, 72%);
    min-height: 220px;
  }

  .featured-partner {
    grid-template-columns: 1fr;
  }

  .partner-logo {
    width: 82px;
    height: 82px;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .contact-form .button {
    width: 100%;
  }

  .signal-box {
    padding: 22px;
    background:
      linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
      url("assets/condominio-reflexao.png") center / cover;
  }

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

@media (prefers-reduced-motion: reduce) {
  .method-grid article,
  .method-grid article::after,
  .delivery-grid article,
  .delivery-grid article::after,
  .feature-strip article,
  .feature-strip article::before,
  .feature-icon-img,
  .hero-slide,
  .hero-arrow,
  .hero-dot {
    transition: none;
  }

  .method-grid article:hover,
  .delivery-grid article:hover,
  .feature-strip article:hover {
    transform: none;
  }

  .feature-strip article:hover .feature-icon-img {
    filter: none;
    transform: none;
  }
}
