﻿:root {
  --ink: #0f3448;
  --muted: #5b6974;
  --paper: #f4f8fb;
  --surface: #ffffff;
  --line: rgba(15, 52, 72, 0.12);
  --green: #2b931f;
  --blue: #0798d8;
  --amber: #0798d8;
  --graphite: #10384f;
  --cream: #e8f3f8;
  --shadow: 0 20px 60px rgba(15, 52, 72, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(15, 52, 72, 0.12);
  backdrop-filter: blur(14px);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(15, 52, 72, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: clamp(132px, 13vw, 176px);
  height: 76px;
}

.header-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.header-logo-divider {
  width: 1px;
  height: 42px;
  background: rgba(15, 65, 88, 0.18);
}

.brand-siecon {
  display: inline-flex;
  align-items: center;
  width: clamp(112px, 11vw, 150px);
  height: 54px;
}

.brand-siecon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand-logo {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 76px;
  object-fit: contain;
  object-position: left center;
  transition: opacity 180ms ease;
}

.brand-logo-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light {
  opacity: 1;
}

.site-header.is-scrolled .brand-logo-dark {
  opacity: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.92rem;
}

.nav a {
  opacity: 0.86;
  font-weight: 680;
}

.nav a:hover {
  opacity: 1;
}

.nav-featured {
  min-height: 34px;
  border: 1px solid rgba(43, 147, 31, 0.28);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--green);
  background: rgba(43, 147, 31, 0.08);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 760;
}

.header-cta {
  padding: 0 18px;
  border: 1px solid rgba(43, 147, 31, 0.34);
  color: var(--green);
  background: rgba(43, 147, 31, 0.08);
}

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #1f7f18);
  box-shadow: 0 14px 34px rgba(43, 147, 31, 0.28);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  color: #fff;
  background: var(--graphite);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 31, 47, 0.96), rgba(9, 66, 96, 0.72) 42%, rgba(9, 66, 96, 0.08) 78%),
    linear-gradient(0deg, rgba(16, 56, 79, 0.78), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 180px 0 56px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.partner-lockup {
  display: inline-flex;
  min-height: 54px;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.partner-lockup span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 840;
  text-transform: uppercase;
}

.partner-lockup img {
  width: 96px;
  max-height: 66px;
  object-fit: contain;
}

.partner-lockup .logo77-on-white {
  width: 106px;
  max-height: 72px;
  border-radius: 6px;
  padding: 4px 8px;
  background: #fff;
}

.partner-lockup .siecon-logo {
  width: 116px;
  border-radius: 6px;
  padding: 5px 8px;
  background: #fff;
}

.partner-lockup b {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(900px, 100%);
  margin: 72px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-stats div {
  padding: 22px;
  background: rgba(12, 15, 17, 0.36);
}

.hero-stats dt {
  font-size: 1.4rem;
  font-weight: 850;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.section {
  padding: clamp(70px, 10vw, 122px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr 1fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.1rem);
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
}

p {
  line-height: 1.68;
}

.intro p:last-child,
.method-layout > div p,
.quote-block p,
.final-cta p,
.partner-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.partner-section {
  background:
    linear-gradient(90deg, rgba(7, 152, 216, 0.07), transparent 34%),
    #fff;
}

.partner-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 7vw, 78px);
  align-items: center;
}

.partner-copy p {
  margin-top: 24px;
}

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

.partner-cards article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, var(--paper));
}

.partner-cards img {
  width: min(156px, 100%);
  height: 108px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 28px;
}

.partner-cards p {
  margin: 12px 0 0;
  color: var(--muted);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 680px;
}

.pain-section,
.proof-section {
  background: var(--surface);
}

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

.pain-card,
.deliverables-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.pain-card p,
.deliverables-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.icon {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-weight: 850;
}

.method-section {
  background:
    linear-gradient(135deg, rgba(7, 152, 216, 0.18), transparent 36%),
    var(--graphite);
  color: #fff;
}

.method-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 7vw, 86px);
  align-items: start;
}

.method-layout > div {
  position: sticky;
  top: 112px;
}

.method-layout > div p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.timeline span {
  color: #5fd24e;
  font-size: 1.45rem;
  font-weight: 850;
}

.timeline p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.deliverables,
.models-section {
  background: var(--cream);
}

.deliverables-grid article {
  background: rgba(255, 255, 255, 0.62);
}

.models-section {
  padding-top: 0;
}

.models-heading p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
}

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

.model-card {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.model-card.featured {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(16, 56, 79, 0.96), rgba(7, 152, 216, 0.78), rgba(43, 147, 31, 0.88)),
    url("assets/hero-construtoras-77.png") center / cover;
}

.model-topline,
.model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.model-topline {
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 840;
  text-transform: uppercase;
}

.model-card.featured .model-topline {
  color: rgba(255, 255, 255, 0.74);
}

.model-topline strong {
  color: var(--green);
}

.model-card.featured .model-topline strong {
  color: #fff;
}

.model-card h3 {
  font-size: 1.45rem;
}

.model-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 2px 0 4px;
}

.model-preview div {
  min-height: 74px;
  border: 1px solid rgba(21, 23, 26, 0.1);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.74);
}

.model-preview span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 760;
}

.model-preview strong {
  display: block;
  margin-top: 8px;
  color: var(--graphite);
  font-size: 1.15rem;
}

.model-preview .wide {
  grid-column: 1 / -1;
  min-height: 58px;
}

.model-preview b {
  display: block;
  height: 12px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0b8fc9, #2c9b21);
}

.model-card.featured .model-preview div {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.model-card.featured .model-preview span,
.model-card.featured .model-preview strong {
  color: #fff;
}

.model-card p {
  margin: 0;
  color: var(--muted);
}

.model-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.model-pain {
  padding-top: 4px;
}

.model-tags {
  margin-top: auto;
}

.model-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--graphite);
  font-size: 0.82rem;
  font-weight: 760;
  background: rgba(255, 255, 255, 0.54);
}

.model-card.featured .model-tags span {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.model-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  font-weight: 820;
  background: linear-gradient(135deg, var(--graphite), #0b6a95);
}

.model-card.featured .model-link {
  color: var(--ink);
  background: #fff;
}

.proof-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(32px, 6vw, 70px);
  align-items: center;
}

.quote-block p {
  margin-top: 22px;
}

.metrics-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.metrics-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  background: #fff;
}

.metrics-panel span {
  color: var(--muted);
}

.metrics-panel strong {
  color: var(--green);
}

.final-cta {
  color: #fff;
  background:
    linear-gradient(115deg, rgba(8, 37, 55, 0.96), rgba(16, 56, 79, 0.86)),
    url("assets/hero-construtoras-77.png") center / cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(32px, 7vw, 82px);
  align-items: start;
}

.final-cta p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 720;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.26);
  outline: none;
}

.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.lead-form select option {
  color: var(--ink);
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(7, 152, 216, 0.22);
}

.form-button {
  width: 100%;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--graphite);
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 8px 12px;
  background: #fff;
}

.site-footer img {
  width: min(132px, 42vw);
  height: auto;
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .nav {
    order: 3;
    display: flex;
    width: 100%;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 0.84rem;
    scrollbar-width: thin;
  }

  .nav a {
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 31, 47, 0.96), rgba(9, 66, 96, 0.78)),
      linear-gradient(0deg, rgba(16, 56, 79, 0.72), transparent 46%);
  }

  .hero-stats,
  .intro-grid,
  .partner-layout,
  .method-layout,
  .proof-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .method-layout > div {
    position: static;
  }

  .pain-grid,
  .deliverables-grid,
  .partner-cards,
  .models-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 10px 14px;
  }

  .header-cta {
    display: none;
  }

  .brand {
    width: 82px;
    height: 54px;
  }

  .header-brand-lockup {
    gap: 9px;
  }

  .header-logo-divider {
    height: 32px;
  }

  .brand-siecon {
    width: 94px;
    height: 42px;
  }

  .brand-logo {
    left: 0;
    width: 100%;
    max-height: 54px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 13vw, 3.2rem);
  }

  .partner-lockup {
    width: 100%;
  }

  .partner-lockup img {
    width: 92px;
  }

  .partner-lockup .siecon-logo {
    width: 104px;
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .pain-grid,
  .deliverables-grid,
  .partner-cards,
  .models-grid {
    grid-template-columns: 1fr;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .metrics-panel div,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .lead-form {
    padding: 20px;
  }
}

/* Ajuste de ancora para o menu fixo */
#modelos {
  scroll-margin-top: 120px;
}




/* ======================================================
   BLOCO 77 - WHATSAPP + VIDEO + CARROSSEL CLIENTES
====================================================== */

.whatsapp-77-float {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 178px;
  padding: 12px 15px 12px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(18, 140, 126, 0.38);
  animation: whatsapp77Float 3.2s ease-in-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-77-float:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 24px 60px rgba(18, 140, 126, 0.52);
}

.whatsapp-77-pulse {
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.42);
  animation: whatsapp77Pulse 1.8s ease-out infinite;
}

.whatsapp-77-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  font-size: 22px;
}

.whatsapp-77-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.whatsapp-77-text strong {
  font-size: 14px;
  font-weight: 900;
}

.whatsapp-77-text small {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 700;
  opacity: 0.84;
}

@keyframes whatsapp77Float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  35% {
    transform: translateY(-10px) translateX(-3px);
  }
  70% {
    transform: translateY(3px) translateX(2px);
  }
}

@keyframes whatsapp77Pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.94);
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

.depoimento-77-section,
.clientes-77-section {
  padding: 82px 6vw;
  background: #f8fafc;
  color: #111827;
}

.depoimento-77-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.depoimento-77-kicker,
.clientes-77-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(17, 27, 79, 0.08);
  color: #111B4F;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.depoimento-77-content h2,
.clientes-77-header h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.055em;
  color: #0f172a;
}

.depoimento-77-content p,
.clientes-77-header p {
  margin: 18px 0 0;
  max-width: 720px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.65;
}

.depoimento-77-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.depoimento-77-points span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #111B4F;
  font-size: 13px;
  font-weight: 800;
}



.clientes-77-section {
  padding-top: 40px;
  overflow: hidden;
}

.clientes-77-header {
  max-width: 1180px;
  margin: 0 auto 32px;
  text-align: center;
}

.clientes-77-header p {
  margin-left: auto;
  margin-right: auto;
}

.clientes-logo-carousel {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  padding: 12px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clientes-logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 18px;
  animation: clientes77Scroll 34s linear infinite;
}

.clientes-logo-carousel:hover .clientes-logo-track {
  animation-play-state: paused;
}

.cliente-logo-item {
  width: 168px;
  height: 86px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.cliente-logo-item img {
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.72;
  transition: 0.25s ease;
}

.cliente-logo-item:hover img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
  transform: scale(1.04);
}

@keyframes clientes77Scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .depoimento-77-wrap {
    grid-template-columns: 1fr;
  }

  .cliente-logo-item {
    width: 145px;
    height: 76px;
  }
}

@media (max-width: 640px) {
  .whatsapp-77-float {
    right: 14px;
    bottom: 16px;
    min-width: auto;
    padding: 10px;
  }

  .whatsapp-77-text {
    display: none;
  }

  .depoimento-77-section,
  .clientes-77-section {
    padding: 58px 20px;
  }

  .cliente-logo-item {
    width: 132px;
    height: 70px;
    padding: 12px;
  }

  .clientes-logo-track {
    gap: 12px;
    animation-duration: 24s;
  }
}



.depoimento-77-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.depoimento-77-video {
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  border-radius: 30px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(17,27,79,0.10), rgba(214,179,106,0.24));
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.18);
}

.depoimento-77-player {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  background: #000;
  object-fit: contain;
}

@media (max-width: 980px) {
  .depoimento-77-wrap {
    grid-template-columns: 1fr;
  }

  .depoimento-77-video {
    max-width: 340px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .depoimento-77-video {
    max-width: 300px;
  }

  .depoimento-77-player {
    aspect-ratio: 9 / 16;
  }
}



/* ======================================================
   BLOCO 77 - MODELOS VISUAL SIMPLES
====================================================== */

.modelos-visual-77 {
  padding: 88px 6vw;
  background:
    radial-gradient(circle at top left, rgba(214, 179, 106, 0.18), transparent 34%),
    linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  color: #0f172a;
}

.modelos-visual-container {
  max-width: 1220px;
  margin: 0 auto;
}

.modelos-visual-header {
  max-width: 820px;
  margin-bottom: 28px;
}

.modelos-visual-header span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(7, 27, 51, 0.08);
  color: #071b33;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modelos-visual-header h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: #08111f;
}

.modelos-visual-header p {
  max-width: 660px;
  margin: 16px 0 0;
  color: #64748b;
  font-size: 17px;
  line-height: 1.65;
}

.modelos-visual-filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.modelo-filtro {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #071b33;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  transition: 0.22s ease;
}

.modelo-filtro.ativo,
.modelo-filtro:hover {
  background: #071b33;
  color: #ffffff;
  border-color: #071b33;
  transform: translateY(-2px);
}

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

.modelo-visual-card {
  position: relative;
  min-height: 318px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.09);
  transition: 0.26s ease;
}

.modelo-visual-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 179, 106, 0.7);
  box-shadow: 0 32px 88px rgba(15, 23, 42, 0.16);
}

.modelo-preview {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #0f172a;
}

.modelo-preview iframe {
  width: 1440px;
  height: 900px;
  border: 0;
  transform: scale(0.23);
  transform-origin: top left;
  pointer-events: none;
  filter: saturate(0.92) contrast(1.02);
}

.modelo-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 40%, rgba(7, 27, 51, 0.42)),
    linear-gradient(135deg, rgba(7, 27, 51, 0.05), rgba(214, 179, 106, 0.10));
}

.modelo-info {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "tag tag"
    "title btn";
  align-items: end;
  gap: 8px 12px;
  padding: 18px;
}

.modelo-info span {
  grid-area: tag;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(7, 27, 51, 0.08);
  color: #071b33;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modelo-info h3 {
  grid-area: title;
  margin: 0;
  color: #08111f;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.modelo-info button {
  grid-area: btn;
  border: 0;
  border-radius: 999px;
  padding: 11px 14px;
  background: #d6b36a;
  color: #111827;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.22s ease;
}

.modelo-visual-card:hover .modelo-info button {
  background: #071b33;
  color: #ffffff;
}

.modelo-visual-card.escondido {
  display: none;
}

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

@media (max-width: 720px) {
  .modelos-visual-77 {
    padding: 62px 20px;
  }

  .modelos-visual-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .modelo-visual-card {
    flex: 0 0 86%;
    scroll-snap-align: start;
    min-height: 290px;
  }

  .modelo-preview {
    height: 190px;
  }

  .modelo-preview iframe {
    transform: scale(0.20);
  }

  .modelo-info {
    grid-template-columns: 1fr;
    grid-template-areas:
      "tag"
      "title"
      "btn";
  }

  .modelo-info button {
    width: fit-content;
  }
}



/* ======================================================
   BLOCO 77 - MODELOS VITRINE VISUAL
====================================================== */

.modelos-vitrine-77 {
  background:
    radial-gradient(circle at top left, rgba(214, 179, 106, 0.16), transparent 34%),
    linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
}

.modelos-vitrine-heading {
  max-width: 820px;
}

.modelos-vitrine-heading h2 {
  letter-spacing: -0.055em;
}

.modelos-vitrine-filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 28px;
}

.modelo-vitrine-filtro {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #071b33;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  transition: 0.22s ease;
}

.modelo-vitrine-filtro.ativo,
.modelo-vitrine-filtro:hover {
  background: #071b33;
  color: #ffffff;
  border-color: #071b33;
  transform: translateY(-2px);
}

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

.modelo-vitrine-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.09);
  transition: 0.26s ease;
}

.modelo-vitrine-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 179, 106, 0.7);
  box-shadow: 0 32px 88px rgba(15, 23, 42, 0.16);
}

.modelo-vitrine-preview {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #0f172a;
}

.modelo-vitrine-preview iframe {
  width: 1440px;
  height: 900px;
  border: 0;
  transform: scale(0.235);
  transform-origin: top left;
  pointer-events: none;
  filter: saturate(0.96) contrast(1.02);
}

.modelo-vitrine-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 45%, rgba(7, 27, 51, 0.48)),
    linear-gradient(135deg, rgba(7, 27, 51, 0.04), rgba(214, 179, 106, 0.10));
}

.modelo-vitrine-info {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "tag tag"
    "titulo botao";
  gap: 8px 12px;
  align-items: end;
  padding: 18px;
}

.modelo-vitrine-info span {
  grid-area: tag;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(7, 27, 51, 0.08);
  color: #071b33;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modelo-vitrine-info h3 {
  grid-area: titulo;
  margin: 0;
  color: #08111f;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.modelo-vitrine-info strong {
  grid-area: botao;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 999px;
  background: #d6b36a;
  color: #111827;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
  transition: 0.22s ease;
}

.modelo-vitrine-card:hover .modelo-vitrine-info strong {
  background: #071b33;
  color: #ffffff;
}

.modelo-vitrine-card.escondido {
  display: none;
}

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

@media (max-width: 720px) {
  .modelos-vitrine-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .modelo-vitrine-card {
    flex: 0 0 86%;
    scroll-snap-align: start;
    min-height: 290px;
  }

  .modelo-vitrine-preview {
    height: 190px;
  }

  .modelo-vitrine-preview iframe {
    transform: scale(0.20);
  }

  .modelo-vitrine-info {
    grid-template-columns: 1fr;
    grid-template-areas:
      "tag"
      "titulo"
      "botao";
  }

  .modelo-vitrine-info strong {
    width: fit-content;
  }
}


/* ======================================================
   BLOCO 77 - RELATÓRIOS AUTOMÁTICOS WHATSAPP
====================================================== */

.whatsapp-reports-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 164, 224, 0.18), transparent 28%),
    radial-gradient(circle at 88% 100%, rgba(16, 185, 129, 0.16), transparent 30%),
    linear-gradient(135deg, #061622 0%, #0b2334 44%, #101827 100%);
  color: #ffffff;
}

.whatsapp-reports-section::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  pointer-events: none;
}

.whatsapp-reports-inner {
  position: relative;
  z-index: 1;
}

.whatsapp-reports-heading {
  max-width: 880px;
  margin-bottom: 28px;
}

.whatsapp-reports-heading h2 {
  max-width: 820px;
  color: #ffffff;
}

.whatsapp-reports-heading p {
  color: rgba(226, 232, 240, 0.82);
}

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

.whatsapp-phone-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.phone-device {
  width: 100%;
  max-width: 285px;
  margin: 0 auto;
  border: 9px solid #050b12;
  border-radius: 34px;
  background: #050b12;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-top {
  display: flex;
  justify-content: center;
  padding: 8px 0 7px;
}

.phone-top span {
  width: 74px;
  height: 6px;
  border-radius: 999px;
  background: #182235;
}

.phone-screen {
  min-height: 430px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(rgba(7, 24, 36, 0.78), rgba(7, 24, 36, 0.78)),
    radial-gradient(circle at 30% 10%, rgba(0, 164, 224, 0.32), transparent 32%),
    linear-gradient(135deg, #102033, #071824);
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 12px;
  color: #ffffff;
  background: rgba(15, 65, 88, 0.88);
}

.phone-header strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 950;
}

.phone-header small {
  display: block;
  margin-top: 2px;
  color: rgba(226, 232, 240, 0.75);
  font-size: 0.68rem;
  font-weight: 700;
}

.phone-header span {
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.66rem;
  font-weight: 800;
}

.wa-message {
  margin: 18px 12px;
  border-radius: 18px 18px 18px 4px;
  padding: 14px;
  color: #122019;
  background: #dcf8c6;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
}

.wa-message.danger {
  background: #ffe4e6;
  color: #3b1018;
}

.wa-message.obra {
  background: #e0f2fe;
  color: #082f49;
}

.wa-message p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
}

.wa-title {
  margin-bottom: 8px !important;
  font-size: 0.92rem !important;
  font-weight: 950;
}

.wa-kpi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  border-radius: 12px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.52);
}

.wa-kpi span {
  font-size: 0.7rem;
  font-weight: 800;
  opacity: 0.82;
}

.wa-kpi strong {
  font-size: 0.88rem;
  font-weight: 950;
  white-space: nowrap;
}

.wa-list {
  display: grid;
  gap: 5px;
  margin-top: 12px;
}

.wa-list p {
  font-size: 0.72rem;
}

.whatsapp-card-info span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  color: #93e5ff;
  font-size: 0.72rem;
  font-weight: 950;
  background: rgba(14, 116, 144, 0.24);
}

.whatsapp-card-info h3 {
  margin: 10px 0 6px;
  color: #ffffff;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.whatsapp-card-info p {
  margin: 0;
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.86rem;
  line-height: 1.5;
}

.whatsapp-demo-box {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.whatsapp-demo-tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 12px;
  color: #041018;
  font-size: 0.75rem;
  font-weight: 950;
  background: #8ee8ff;
}

.whatsapp-demo-copy h3 {
  margin: 14px 0 8px;
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.whatsapp-demo-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
  line-height: 1.6;
}

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

.whatsapp-benefits span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 10px 12px;
  color: rgba(248, 250, 252, 0.92);
  font-size: 0.82rem;
  font-weight: 760;
  background: rgba(255, 255, 255, 0.07);
}

@media (max-width: 1100px) {
  .whatsapp-reports-grid,
  .whatsapp-demo-box {
    grid-template-columns: 1fr;
  }

  .whatsapp-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .phone-device {
    max-width: 260px;
  }

  .phone-screen {
    min-height: 390px;
  }

  .whatsapp-demo-box {
    padding: 16px;
  }
}


/* ======================================================
   BLOCO 77 - REDES SOCIAIS
====================================================== */

.social-77-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 164, 224, 0.16), transparent 26%),
    radial-gradient(circle at 88% 88%, rgba(16, 185, 129, 0.13), transparent 30%),
    linear-gradient(135deg, #f8fafc 0%, #eef6fb 48%, #f8fafc 100%);
}

.social-77-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: center;
}

.social-77-copy h2 {
  max-width: 680px;
  margin-bottom: 10px;
  color: #0f172a;
}

.social-77-copy p {
  max-width: 620px;
  color: #64748b;
}

.social-77-grid {
  display: grid;
  gap: 14px;
}

.social-77-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 28px;
  gap: 14px;
  align-items: center;
  border: 1px solid #dbe3ec;
  border-radius: 22px;
  padding: 16px;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.social-77-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 164, 224, 0.38);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14);
}

.social-77-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  font-size: 1.35rem;
  background: #f1f5f9;
}

.social-77-card span {
  display: block;
  color: #0b8fbd;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-77-card strong {
  display: block;
  margin-top: 3px;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.social-77-card small {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.4;
}

.social-77-card b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: #0f4158;
}

.social-77-card.instagram .social-77-icon {
  background: linear-gradient(135deg, #fdf2f8, #fee2e2);
}

.social-77-card.linkedin .social-77-icon {
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
}

.social-77-card.facebook .social-77-icon {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.footer-social-77 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

.footer-social-77 a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  padding: 0 14px;
  color: #e2e8f0;
  font-size: 0.82rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.06);
}

.footer-social-77 a:hover {
  color: #ffffff;
  border-color: rgba(0, 164, 224, 0.45);
  background: rgba(0, 164, 224, 0.12);
}

@media (max-width: 980px) {
  .social-77-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .social-77-card {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .social-77-card b {
    display: none;
  }

  .social-77-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }
}


/* ======================================================
   BLOCO 77 - CORREÇÃO FILTRO RH / VITRINE
====================================================== */

.modelo-vitrine-card.escondido {
  display: none !important;
}

.modelo-vitrine-filtro.ativo,
.modelo-vitrine-filtro.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0f4158, #00a4e0) !important;
  border-color: rgba(0, 164, 224, 0.45) !important;
  box-shadow: 0 12px 26px rgba(0, 164, 224, 0.24) !important;
}


/* ======================================================
   BLOCO 77 - CORREÇÃO FILTRO RH FINAL
====================================================== */

.modelo-vitrine-card.escondido {
  display: none !important;
}

.modelo-vitrine-filtro.ativo,
.modelo-vitrine-filtro.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0f4158, #00a4e0) !important;
  border-color: rgba(0, 164, 224, 0.45) !important;
  box-shadow: 0 12px 26px rgba(0, 164, 224, 0.24) !important;
}


/* ======================================================
   BLOCO 77 - UX CLIENTE LANDING
====================================================== */

html {
  scroll-behavior: smooth;
}

.produtos-77-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(0, 164, 224, 0.14), transparent 26%),
    radial-gradient(circle at 90% 80%, rgba(15, 65, 88, 0.12), transparent 30%),
    linear-gradient(135deg, #f8fafc 0%, #eef6fb 52%, #ffffff 100%);
}

.produtos-77-inner {
  display: grid;
  gap: 26px;
}

.produtos-77-heading {
  max-width: 880px;
}

.produtos-77-heading h2 {
  max-width: 760px;
  margin-bottom: 10px;
  color: #0f172a;
  letter-spacing: -0.05em;
}

.produtos-77-heading p {
  max-width: 820px;
  color: #64748b;
}

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

.produto-77-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 65, 88, 0.12);
  border-radius: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.09);
}

.produto-77-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background: radial-gradient(circle at top right, #00a4e0, transparent 34%);
}

.produto-77-card.whatsapp::before {
  background: radial-gradient(circle at top right, #22c55e, transparent 34%);
}

.produto-77-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 20px;
  font-size: 1.55rem;
  background: #e0f2fe;
}

.produto-77-card.whatsapp .produto-77-icon {
  background: #dcfce7;
}

.produto-77-card span {
  display: block;
  margin-top: 18px;
  color: #0b8fbd;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.produto-77-card h3 {
  margin: 7px 0 9px;
  color: #0f172a;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.produto-77-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

.produto-77-lista {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 18px;
}

.produto-77-lista b {
  border: 1px solid rgba(15, 65, 88, 0.10);
  border-radius: 13px;
  padding: 9px 10px;
  color: #0f172a;
  font-size: 0.8rem;
  font-weight: 850;
  background: #f8fafc;
}

.produto-77-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  margin-top: 18px;
  border-radius: 999px;
  padding: 0 16px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 950;
  background: linear-gradient(135deg, #0f4158, #00a4e0);
  box-shadow: 0 12px 26px rgba(0, 164, 224, 0.22);
}

.whatsapp-rotina-77 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.whatsapp-rotina-77 div {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.whatsapp-rotina-77 strong {
  display: block;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 950;
}

.whatsapp-rotina-77 span {
  display: block;
  margin-top: 4px;
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.78rem;
  line-height: 1.4;
}

.whatsapp-form-security {
  margin: -4px 0 0;
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
}

.modelo-vitrine-card.escondido {
  display: none !important;
}

.modelo-vitrine-filtro.ativo,
.modelo-vitrine-filtro.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0f4158, #00a4e0) !important;
  border-color: rgba(0, 164, 224, 0.45) !important;
  box-shadow: 0 12px 26px rgba(0, 164, 224, 0.24) !important;
}

@media (max-width: 980px) {
  .produtos-77-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-rotina-77 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .produto-77-card {
    padding: 18px;
    border-radius: 22px;
  }

  .produto-77-lista {
    grid-template-columns: 1fr;
  }
}


/* ======================================================
   BLOCO 77 - PRODUTOS SOLUCAO
====================================================== */

.produtos-77-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(0, 164, 224, 0.14), transparent 26%),
    radial-gradient(circle at 90% 80%, rgba(15, 65, 88, 0.12), transparent 30%),
    linear-gradient(135deg, #f8fafc 0%, #eef6fb 52%, #ffffff 100%);
}

.produtos-77-inner {
  display: grid;
  gap: 26px;
}

.produtos-77-heading {
  max-width: 880px;
}

.produtos-77-heading h2 {
  max-width: 760px;
  margin-bottom: 10px;
  color: #0f172a;
  letter-spacing: -0.05em;
}

.produtos-77-heading p {
  max-width: 820px;
  color: #64748b;
}

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

.produto-77-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 65, 88, 0.12);
  border-radius: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.09);
}

.produto-77-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background: radial-gradient(circle at top right, #00a4e0, transparent 34%);
}

.produto-77-card.whatsapp::before {
  background: radial-gradient(circle at top right, #22c55e, transparent 34%);
}

.produto-77-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 20px;
  font-size: 1.55rem;
  background: #e0f2fe;
}

.produto-77-card.whatsapp .produto-77-icon {
  background: #dcfce7;
}

.produto-77-card span {
  display: block;
  margin-top: 18px;
  color: #0b8fbd;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.produto-77-card h3 {
  margin: 7px 0 9px;
  color: #0f172a;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.produto-77-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

.produto-77-lista {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 18px;
}

.produto-77-lista b {
  border: 1px solid rgba(15, 65, 88, 0.10);
  border-radius: 13px;
  padding: 9px 10px;
  color: #0f172a;
  font-size: 0.8rem;
  font-weight: 850;
  background: #f8fafc;
}

.produto-77-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  margin-top: 18px;
  border-radius: 999px;
  padding: 0 16px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 950;
  background: linear-gradient(135deg, #0f4158, #00a4e0);
  box-shadow: 0 12px 26px rgba(0, 164, 224, 0.22);
}

@media (max-width: 980px) {
  .produtos-77-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .produto-77-card {
    padding: 18px;
    border-radius: 22px;
  }

  .produto-77-lista {
    grid-template-columns: 1fr;
  }
}


/* ======================================================
   BLOCO 77 - MENU CONVERSAO
====================================================== */

header nav a,
.main-nav a,
.nav-77-conversao a {
  position: relative;
  color: inherit;
  text-decoration: none;
  font-weight: 850;
  transition: color 0.18s ease, opacity 0.18s ease;
}

header nav a:hover,
.main-nav a:hover,
.nav-77-conversao a:hover {
  color: #00a4e0;
}

header nav a.menu-ativo,
.main-nav a.menu-ativo,
.nav-77-conversao a.menu-ativo {
  color: #00a4e0;
}

header nav a.menu-ativo::after,
.main-nav a.menu-ativo::after,
.nav-77-conversao a.menu-ativo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f4158, #00a4e0);
}

@media (max-width: 860px) {
  header nav,
  .main-nav,
  .nav-77-conversao {
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }

  header nav a,
  .main-nav a,
  .nav-77-conversao a {
    white-space: nowrap;
  }
}

