:root {
  --primary: #0d47a1;
  --primary-light: #1565c0;
  --accent: #00acc1;
  --dark: #0a1929;
  --light: #f5f9fc;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header - sempre visível */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: 56px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

nav,
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary);
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.logo-wrap:hover {
  opacity: 0.85;
}
.logo-softbridge {
  height: 36px;
  width: auto;
  max-width: 180px;
}

/* Drawer: centro (links) + direita (CTA) no desktop */
.nav-drawer {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--primary);
}

/* CTA: botão destacado à direita */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(13, 71, 161, 0.3);
}

.nav-cta:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(13, 71, 161, 0.4);
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-suporte,
.suporte-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s, text-decoration-color 0.2s;
}

.nav-suporte:hover,
.suporte-link:hover {
  color: var(--primary);
  opacity: 0.85;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nav-suporte-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.85;
}

.nav-overlay {
  display: none;
}

/* Hamburger - escondido no desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  border-radius: var(--radius);
}

.nav-toggle:hover {
  background: rgba(0,0,0,0.05);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

nav.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

nav.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

nav.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Desktop: overlay escondido, drawer inline */
@media (min-width: 993px) {
  .nav-overlay {
    display: none !important;
  }
}

/* Mobile: menu hambúrguer + drawer deslizante */
@media (max-width: 982px) {
  .nav-drawer {
    position: fixed;
    top: 56px;
    right: 0;
    width: 280px;
    max-width: 85vw;
    max-height: calc(100vh - 56px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: #fff;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .nav-drawer::-webkit-scrollbar {
    display: none;
  }

  nav.nav-open .nav-drawer,
  .navbar.nav-open .nav-drawer {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex: none;
    gap: 0;
    padding: 0;
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 1.1rem;
    white-space: normal;
  }

  .nav-links a:last-of-type {
    border-bottom: none;
  }

  .nav-right {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-suporte {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 1rem;
  }

  .nav-cta {
    margin-top: 1rem;
    text-align: center;
    padding: 0.75rem 1.25rem;
  }

  .nav-toggle {
    display: flex !important;
    position: relative;
    z-index: 102;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  nav.nav-open .nav-overlay,
  .navbar.nav-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  color: var(--white);
  position: relative;
  background: var(--primary) center/cover;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1920') center/cover;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.88) 0%, rgba(10, 25, 41, 0.92) 100%);
  pointer-events: none;
}

/* Hero moderno - multi-apps, soluções no dia a dia */
.hero-modern {
  background: linear-gradient(160deg, #0a1929 0%, #0d3a7a 30%, #0a4d6e 60%, #00695c 100%);
}

.hero-modern::before {
  background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1920') center/cover;
  opacity: 0.14;
  filter: blur(1px);
}

.hero-modern::after {
  background: linear-gradient(160deg, rgba(10, 25, 41, 0.94) 0%, rgba(13, 58, 122, 0.9) 35%, rgba(10, 77, 110, 0.92) 65%, rgba(0, 105, 92, 0.92) 100%);
}

.hero-modern .hero-content::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse 80% 50% at 50% 20%, rgba(0, 172, 193, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero h1,
.hero-title {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.hero-landing .hero-title {
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.65;
  opacity: 0.97;
  margin-bottom: 2.25rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.97;
  margin-bottom: 2.25rem;
}

.hero-landing .ctas {
  gap: 1rem;
}

.btn-cta-main {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* CTAs */
.ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,172,193,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,172,193,0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

/* Section */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section h2,
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section p {
  color: #444;
  max-width: 640px;
}

/* Product section - single product presentation */
.section-product {
  text-align: center;
}

.section-product .section-subtitle {
  margin: 0 auto 2.75rem;
  font-size: 1.1rem;
  color: #555;
  max-width: 560px;
  line-height: 1.6;
}

.section-solucoes {
  padding: 5rem 1.5rem 5.5rem;
  background: linear-gradient(180deg, #fafbfc 0%, #f5f9fc 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.product-grid .product-card {
  max-width: none;
  margin: 0;
}

.product-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 2.25rem 1.75rem 2rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1), 0 6px 16px rgba(0,0,0,0.06);
}

.product-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.product-card-icon-tacoma {
  background: rgba(13, 71, 161, 0.1);
  color: var(--primary);
}

.product-card-icon-nivvo {
  background: rgba(0, 172, 193, 0.12);
  color: var(--accent);
}

.product-card-icon-condex {
  background: rgba(0, 105, 92, 0.12);
  color: #00695c;
}

.product-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.product-card .product-card-title {
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

/* CONDEX logo - padrão do site */
.condex-logo {
  display: block;
  height: auto;
  object-fit: contain;
}

.product-card-logo {
  max-width: 240px;
  max-height: 52px;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.product-card-logo-nivvo {
  max-height: 44px;
}

.condex-logo-nav {
  height: 28px;
  width: auto;
  display: block;
}

/* Nav: itens de produto (logos) com legenda e hover */
.nav-product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  color: var(--dark);
  padding: 0.35rem 0.5rem;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.2s;
}

.nav-product-item:hover {
  color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(13, 71, 161, 0.18);
}

.nav-product-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  transition: filter 0.25s ease;
}

.nav-product-item:hover .nav-product-logo-wrap {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.nav-product-caption {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.nav-logo-condex {
  line-height: 0;
}

.nav-logo-condex:hover .condex-logo-nav {
  opacity: 0.95;
}

.nivvos-logo-nav {
  height: 28px;
  width: auto;
  display: block;
}

.nav-logo-nivvos {
  line-height: 0;
}

.nav-logo-nivvos:hover .nivvos-logo-nav {
  opacity: 0.95;
}

/* Tacoma logo na nav (SVG proposta: proporção larga) */
.tacoma-logo-nav {
  height: 28px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  display: block;
}

.nav-logo-tacoma {
  line-height: 0;
}

.nav-logo-tacoma:hover .tacoma-logo-nav {
  opacity: 0.95;
}

.product-card-logo-tacoma {
  max-height: 48px;
}

/* Botão flutuante Abrir chamado */
.btn-abrir-chamado-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--primary);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(13, 71, 161, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-abrir-chamado-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 71, 161, 0.45);
  color: var(--white);
}

.btn-whatsapp-fab {
  background: #25d366;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
}

.btn-whatsapp-fab:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.3);
}

footer .footer-abrir-chamado {
  color: var(--accent);
  text-decoration: none;
}

footer .footer-abrir-chamado:hover {
  text-decoration: underline;
}

.footer-modern .footer-abrir-chamado {
  color: rgba(255,255,255,0.9);
}

.footer-modern .footer-abrir-chamado:hover {
  color: var(--white);
}

.product-card-title {
  color: var(--dark);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.product-card-desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.35rem;
}

.product-shot-wrap {
  position: relative;
  display: block;
  width: 100%;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.product-shot-wrap img {
  pointer-events: none;
}

.product-shot-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.blur-overlay {
  position: absolute;
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.25);
}

.blur-overlay-condominio {
  left: 18%;
  top: 0;
  width: 82%;
  height: 10%;
}

.blur-overlay-usuario {
  left: 0;
  bottom: 0;
  width: 18%;
  height: 12%;
}

.product-card .btn {
  margin-top: 0;
}

.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.product-card-link:hover {
  color: inherit;
}

.product-card-link .btn {
  pointer-events: none;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
}

.card .btn {
  margin-top: 1rem;
}

/* Product page - Nivvo (layout moderno) */
.page-product-nivvo {
  padding-top: 0;
  min-height: 100vh;
}

/* Hero */
.nivvo-hero-modern {
  background: linear-gradient(160deg, #0a1929 0%, #0d3a7a 35%, #0a4d6e 70%, #00695c 100%);
  color: var(--white);
  padding: 6rem 1.5rem 5rem;
  text-align: center;
}

.nivvo-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.nivvo-hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}

.nivvo-hero-modern .nivvo-hero-logo {
  max-width: 200px;
  max-height: 52px;
  margin-bottom: 1.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.nivvo-hero-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.nivvo-hero-modern .nivvo-hero-tagline {
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: 0.92;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .nivvo-hero-modern .nivvo-hero-tagline {
    white-space: normal;
  }
}

.nivvo-hero-bullets {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.nivvo-hero-bullets li {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.6rem;
  padding-left: 1.25rem;
  position: relative;
}

.nivvo-hero-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.7);
}

.nivvo-hero-bullets li strong {
  color: var(--white);
}

.nivvo-hero-cta {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.85rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  background: linear-gradient(90deg, #4fc3f7, #26a69a);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(38, 166, 154, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nivvo-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(38, 166, 154, 0.45);
  color: var(--dark);
}

.nivvo-hero-trial {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.nivvo-hero-free {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: inline-block;
}

.nivvo-hero-free-link {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.nivvo-hero-free-link:hover {
  background: rgba(255,255,255,0.25);
  color: rgba(255,255,255,1);
  transform: translateY(-1px);
}

/* Acesso antecipado app Android */
.nivvo-hero-android-text {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.95);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.nivvo-hero-android-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  background: linear-gradient(90deg, #4fc3f7, #26a69a);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(38, 166, 154, 0.35);
}

.nivvo-hero-android-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(38, 166, 154, 0.45);
}

.nivvo-android-form-wrap {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.nivvo-android-form-intro {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
}

.nivvo-android-form-row {
  margin-bottom: 1rem;
}

.nivvo-android-form-row label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin-bottom: 0.35rem;
}

.nivvo-android-form-row input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  background: rgba(255,255,255,0.95);
  color: var(--dark);
  box-sizing: border-box;
}

.nivvo-android-form-row input::placeholder {
  color: #888;
}

.nivvo-android-form-actions {
  margin-top: 1.25rem;
}

.nivvo-android-form .nivvo-android-submit {
  margin-top: 0;
}

.nivvo-android-message {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
}

.nivvo-android-message--success {
  background: rgba(76, 175, 80, 0.25);
  color: rgba(255,255,255,0.98);
}

.nivvo-android-message--error {
  background: rgba(244, 67, 54, 0.25);
  color: rgba(255,255,255,0.98);
}

.nivvo-android-message--error a {
  color: #81d4fa;
  text-decoration: underline;
}

/* Features - grid alternado */
.nivvo-features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nivvo-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nivvo-feature:last-of-type {
  border-bottom: none;
}

.nivvo-feature--reverse .nivvo-feature-content {
  order: 2;
}

.nivvo-feature--reverse .nivvo-feature-visual {
  order: 1;
}

.nivvo-feature-content {
  max-width: 420px;
}

.nivvo-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.nivvo-feature-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.nivvo-feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nivvo-frame {
  width: 100%;
  max-width: 520px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
}

.nivvo-frame img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .nivvo-feature,
  .nivvo-feature--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
  }
  .nivvo-feature--reverse .nivvo-feature-content,
  .nivvo-feature--reverse .nivvo-feature-visual {
    order: unset;
  }
  .nivvo-feature-content {
    max-width: none;
  }
}

/* CTA band */
.nivvo-cta-modern {
  background: var(--dark);
  color: var(--white);
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.nivvo-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.nivvo-cta-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.nivvo-cta-text {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.nivvo-cta-free {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.nivvo-cta-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  background: linear-gradient(90deg, #4fc3f7, #26a69a);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(38, 166, 154, 0.35);
}

.nivvo-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(38, 166, 154, 0.45);
  color: var(--dark);
}

/* Product page - Tacoma (segue padrão moderno) */
.page-product-tacoma {
  padding-top: 0;
  min-height: 100vh;
}

.tacoma-hero-modern {
  background: radial-gradient(circle at top left, #1976d2 0%, #0d47a1 30%, #0a1929 70%, #020817 100%);
  color: var(--white);
  padding: 6rem 1.5rem 5rem;
  text-align: center;
}

.tacoma-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.tacoma-hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}

.tacoma-hero-logo {
  max-width: 260px;
  max-height: 64px;
  margin-bottom: 1.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.tacoma-hero-title {
  font-size: clamp(1.6rem, 4.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.tacoma-hero-tagline {
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: 0.92;
  margin: 0 auto 1.25rem;
  max-width: 640px;
}

.tacoma-hero-primary-link {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  background: linear-gradient(90deg, #4fc3f7, #26a69a);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(38, 166, 154, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.tacoma-hero-primary-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(38, 166, 154, 0.45);
  color: var(--dark);
}

.tacoma-features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.tacoma-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.tacoma-feature:last-of-type {
  border-bottom: none;
}

.tacoma-feature--reverse .tacoma-feature-content {
  order: 2;
}

.tacoma-feature--reverse .tacoma-feature-visual {
  order: 1;
}

.tacoma-feature-content {
  max-width: 440px;
}

.tacoma-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.tacoma-feature-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.tacoma-feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tacoma-frame {
  width: 100%;
  max-width: 520px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
}

.tacoma-frame img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .tacoma-feature,
  .tacoma-feature--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
  }
  .tacoma-feature--reverse .tacoma-feature-content,
  .tacoma-feature--reverse .tacoma-feature-visual {
    order: unset;
  }
  .tacoma-feature-content {
    max-width: none;
  }
}

.tacoma-cta-modern {
  background: #061324;
  color: var(--white);
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.tacoma-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.tacoma-cta-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.tacoma-cta-text {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.tacoma-cta-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  background: linear-gradient(90deg, #4fc3f7, #26a69a);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(38, 166, 154, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.tacoma-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(38, 166, 154, 0.45);
  color: var(--dark);
}

/* Footer moderno */
.footer-modern {
  background: #061324;
  color: rgba(255,255,255,0.8);
  padding: 2rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-copy {
  font-size: 0.9rem;
  margin: 0;
}

.footer-modern .footer-copy a {
  color: rgba(255,255,255,0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-modern .footer-copy a:hover {
  color: var(--white);
}

/* Página Entre em contato - layout sofisticado */
.page-contato {
  padding-top: 0;
  min-height: 100vh;
  background: linear-gradient(to bottom, #f8fafc, #eef2f7);
}

.contato-hero {
  padding: 5rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contato-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 100%;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(13, 71, 161, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.contato-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.contato-hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contato-hero-title {
  font-size: clamp(1.85rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.contato-hero-tagline {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.contato-form-section {
  padding: 0 1.5rem 4rem;
}

.contato-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.contato-quick-contact {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #e5e7eb;
  border-radius: 18px;
  padding: 1.25rem 1.5rem 1.5rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.32);
  border: 1px solid rgba(148, 163, 184, 0.35);
  margin-bottom: 1.5rem;
}

.contato-quick-note {
  font-size: 0.9rem;
  margin: 0 0 0.85rem;
  color: #ffffff;
}

.contato-quick-subnote {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 0.9rem;
}

.contato-quick-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contato-quick-btn--full {
  width: 100%;
  justify-content: center;
}

.contato-quick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.contato-quick-icon {
  font-size: 1rem;
}

.contato-quick-btn--whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: none;
}

.contato-quick-btn--whatsapp:hover {
  background: #1ebe5d;
}

.contato-quick-btn--phone {
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.contato-quick-btn--phone:hover {
  background: #020617;
  transform: translateY(-1px);
}

.contato-quick-btn--ticket {
  background: rgba(15, 118, 110, 0.9);
  color: #ecfeff;
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.45);
}

.contato-quick-btn--ticket:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.55);
}

.contato-quick-response {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.contato-divider-text {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
}

.contato-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.75rem 2.25rem 2.25rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
  position: relative;
}

.contato-form-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 1.25rem;
}

.contato-form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.08), transparent 40%, transparent 60%, rgba(0, 172, 193, 0.06));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.contato-form .contato-form-group {
  margin-bottom: 1.35rem;
}

.contato-form-group label {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.contato-form-group .required {
  color: #dc2626;
}

.contato-form-group input,
.contato-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: #f9fafb;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.contato-form-group input::placeholder,
.contato-form-group textarea::placeholder {
  color: #94a3b8;
}

.contato-form-group input:hover,
.contato-form-group textarea:hover {
  background: var(--white);
  border-color: #cbd5e1;
}

.contato-form-group input:focus,
.contato-form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
  background: var(--white);
}

.contato-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contato-select {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
  background: #f9fafb;
  color: var(--dark);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.contato-select:hover {
  background: var(--white);
  border-color: #cbd5e1;
}

.contato-select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
  background: var(--white);
}

.contato-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 520px) {
  .contato-form-row {
    grid-template-columns: 1fr;
  }

  .contato-quick-buttons {
    flex-direction: column;
  }

  .contato-quick-btn {
    width: 100%;
  }
}

.contato-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
}

.btn-contato {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-contato-primary {
  background: #2563eb;
  color: var(--white);
  box-shadow: none;
}

.btn-contato-primary:hover {
  background: #1d4ed8;
}

.btn-contato-ghost {
  background: transparent;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.btn-contato-ghost:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(13, 71, 161, 0.04);
}

.contato-privacy-note {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0.35rem 0 0;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contato-message {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 12px;
}

.contato-message-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.contato-message--success .contato-message-icon {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.contato-message-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.35rem;
}

.contato-message-text {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.contato-message--success {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.06) 0%, rgba(16, 185, 129, 0.04) 100%);
  border: 1px solid rgba(5, 150, 105, 0.15);
}

.contato-message--error {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.04) 100%);
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.contato-message--error .contato-message-title {
  color: #b91c1c;
}

/* Form page - Solicitar demonstração */
.page-form {
  padding-top: 5rem;
  min-height: 100vh;
  background: var(--light);
}

.form-section {
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.form-container h1 {
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-intro {
  color: #555;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.demo-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.form-group .required {
  color: #c62828;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(13, 71, 161, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.form-actions .btn-submit {
  min-width: 180px;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-message {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.form-message p {
  margin: 0 0 0.5rem;
  color: var(--dark);
}

.form-message .btn {
  margin-top: 1rem;
}

.form-message--success {
  border-left: 4px solid #2e7d32;
}

.form-message--error {
  border-left: 4px solid #c62828;
}

/* Página Solicitar demonstração (CONDEX) */
.page-demo .demo-section {
  max-width: 520px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

.demo-container {
  text-align: center;
}

.demo-title {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.demo-subtitle {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

.demo-benefits {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  text-align: left;
  max-width: 320px;
}

.demo-benefits li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #444;
}

.demo-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.page-demo .demo-form {
  margin-bottom: 1.5rem;
}

.page-demo .form-actions {
  border-top: none;
  padding-top: 0;
  margin-top: 1.25rem;
}

.page-demo .form-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-size: 1.05rem;
}

.form-error {
  display: none;
  font-size: 0.85rem;
  color: #c62828;
  margin-top: 0.25rem;
}

.demo-alternativa {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 1.25rem;
}

.demo-alternativa-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.75rem;
}

.btn-whatsapp-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #25d366;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-whatsapp-demo:hover {
  color: #fff;
  opacity: 0.95;
  transform: translateY(-1px);
}

.demo-trust {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

.footer-demo {
  text-align: center;
  padding: 1.5rem 1.5rem 2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-demo p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

.footer-demo a {
  color: var(--primary);
  text-decoration: none;
}

.footer-demo a:hover {
  text-decoration: underline;
}

/* Prova social - landing */
.section-trust {
  padding: 3rem 1.5rem;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.trust-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.trust-text {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.trust-text strong {
  color: var(--primary);
  font-weight: 700;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.trust-badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  padding: 0.4rem 0.9rem;
  background: #f1f5f9;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
}

/* Footer landing - conversão */
.footer-landing {
  margin-top: 0;
  background: linear-gradient(180deg, #0a1929 0%, #0d3a7a 100%);
  color: var(--white);
  padding: 0;
}

.footer-cta-block {
  text-align: center;
  padding: 3.5rem 1.5rem 3rem;
}

.footer-cta-text {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  opacity: 0.98;
}

.btn-footer-cta {
  display: inline-flex;
  padding: 0.95rem 2rem;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 172, 193, 0.45);
}

.footer-legal {
  padding: 1.5rem 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.footer-legal p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.88;
}

.footer-landing .footer-legal a {
  color: rgba(255,255,255,0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-landing .footer-legal a:hover {
  color: var(--white);
}

.footer-landing .footer-abrir-chamado {
  color: var(--accent);
}

/* ========== Landing CONDEX ========== */
.hero-condex .hero-subtitle {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Problema */
.landing-problem {
  background: #f8fafc;
}

.landing-problem .section-subtitle {
  margin-bottom: 2rem;
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 1rem;
  line-height: 1.55;
  color: #444;
}

.problem-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.problem-item strong {
  color: var(--dark);
}

/* Solução CONDEX */
.landing-solution .section-subtitle {
  margin-bottom: 1.5rem;
}

.solution-visual {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.08);
}

.solution-visual-inner {
  background: var(--white);
}

.solution-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.solution-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.btn-solution-cta {
  display: inline-flex;
}

/* Prova social – apenas texto, centralizado */
.landing-proof {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.landing-proof-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.landing-proof-title {
  margin-bottom: 1.25rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--dark);
}

.landing-proof-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin: 0 0 1.75rem;
}

.landing-proof-validation {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 0.5rem;
  line-height: 1.5;
}

.landing-proof-evolution {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Como funciona */
.landing-steps {
  background: #f8fafc;
}

.landing-steps .section-subtitle {
  margin-bottom: 2.5rem;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step-item {
  text-align: center;
  padding: 1.5rem 1.25rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .steps-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Benefícios */
.landing-benefits {
  text-align: center;
}

.benefits-title {
  margin-bottom: 0.75rem;
}

.benefits-subtitle {
  font-size: 1.05rem;
  color: #555;
  max-width: 520px;
  margin: 0 auto 2.25rem;
  line-height: 1.55;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.benefit-card {
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.benefit-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 0.4rem;
}

.benefit-card-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
  margin: 0;
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* CTA final – textos claros (sobrescreve .section h2 e .section p) */
.landing-cta-final {
  padding: 4.5rem 1.5rem;
  background: linear-gradient(160deg, #0a1929 0%, #0d3a7a 60%);
  color: #fff;
}

.landing-cta-final .cta-final-inner,
.landing-cta-final .cta-final-inner p,
.landing-cta-final .cta-final-inner h2 {
  color: #fff !important;
}

.cta-final-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.landing-cta-final .cta-final-title,
.landing-cta-final h2.cta-final-title {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #ffffff !important;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.landing-cta-final .cta-final-text {
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.95) !important;
}

.btn-cta-final {
  display: inline-block;
  background: linear-gradient(135deg, #4fc3f7 0%, #26a69a 100%);
  color: #0a1929;
  border: none;
  padding: 0.95rem 2.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(38, 166, 154, 0.35);
}

.btn-cta-final:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  color: #0a1929;
  box-shadow: 0 6px 20px rgba(38, 166, 154, 0.4);
}

.landing-cta-final .cta-final-trust {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92) !important;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

/* Outras soluções da Softbridge – visual secundário */
.section-title--secondary {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #64748b;
}

.landing-other {
  background: #f8fafc;
  padding: 2.5rem 1.5rem 3.5rem;
}

.landing-other .section-title {
  margin-bottom: 0.5rem;
}

.landing-other-subtitle {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.55;
  max-width: 520px;
  margin: 0 auto 2rem;
  text-align: center;
}

.other-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 680px;
  margin: 0 auto;
}

.other-product-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.other-product-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.other-product-logo {
  display: block;
  height: 32px;
  width: auto;
  max-width: 120px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.other-product-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 0.5rem;
}

.other-product-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 1.25rem;
}

.other-product-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  background: transparent;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.other-product-btn:hover {
  background: rgba(13, 71, 161, 0.06);
  border-color: var(--primary);
  color: var(--primary);
}

@media (max-width: 640px) {
  .other-products {
    grid-template-columns: 1fr;
  }
}

/* Footer (genérico) */
footer {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 2rem 1.5rem;
  margin-top: 3rem;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

@media (max-width: 600px) {
  .ctas {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
}
