﻿:root {
  color-scheme: light;
  --bg: #f4f6f8;
  --bg-alt: #eef2f5;
  --surface: #ffffff;
  --surface-dark: #101b2b;
  --primary: #089cc4;
  --primary-dark: #2639b5;
  --accent: #3c6fda;
  --primary-rgb: 8, 156, 196;
  --accent-rgb: 38, 57, 181;
  --text: #0f172a;
  --muted: #5b6779;
  --border: #dde3ea;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius: 18px;
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: linear-gradient(180deg, #eef3f6 0%, #f8fafc 40%, #eef2f7 100%);
  color: var(--text);
  line-height: 1.6;
}

.page-glow {
  position: fixed;
  top: -30vh;
  left: 0;
  right: 0;
  height: 70vh;
  pointer-events: none;
  z-index: -1;
  transform: translateZ(0);
  overflow: hidden;
  overflow: clip;
}

.page-glow::before,
.page-glow::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(55px);
  opacity: 0.7;
}

.page-glow::before {
  width: 55vw;
  height: 55vw;
  left: -10vw;
  top: -12vw;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.32), rgba(var(--primary-rgb), 0));
}

.page-glow::after {
  width: 42vw;
  height: 42vw;
  right: -8vw;
  top: -6vw;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.28), rgba(var(--accent-rgb), 0));
  opacity: 0.5;
}

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

h1 strong {
  color: var(--primary)
}

h2 strong {
  color: var(--primary)
}

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(244, 246, 248, 0.85);
  border-bottom: 1px solid rgba(221, 227, 234, 0.7);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.logo > div {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-mark {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}

.logo strong {
  display: block;
  font-size: 1.1rem;
}

.logo span {
  font-size: 0.75rem;
  color: var(--muted);
}

.site-header .logo {
  gap: 10px;
}

.site-header .logo-mark {
  width: 200px;
  height: 38px;
  filter: drop-shadow(0 6px 10px rgba(var(--primary-rgb), 0.18));
}

.site-header .logo strong {
  font-size: 1rem;
  letter-spacing: 0.2px;
}

.site-header .logo span {
  font-size: 0.7rem;
  letter-spacing: 0.3px;
}

.site-nav {
  display: flex;
  gap: 22px;
  font-weight: 500;
  color: var(--muted);
}

.site-nav a {
  padding: 6px 0;
  position: relative;
}

.site-nav a.active {
  color: var(--text);
  font-weight: 600;
}

.site-nav a.active::after {
  width: 100%;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

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

.phone {
  text-align: right;
  font-size: 0.8rem;
  color: var(--muted);
}

.phone strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(var(--primary-rgb), 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: #fff;
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 0.85rem;
}

.pill-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.pill-icon svg {
  width: 100%;
  height: 100%;
}

.hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.4rem, 2.8vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  gap: 32px;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-meta strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.segmentos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.segmentos-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.segmentos-tags span {
  background: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid var(--border);
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}

.hero-image-copy {
  position: relative;
  height: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 1;
}

.hero-image-copy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.35), rgba(var(--primary-rgb), 0));
  filter: blur(10px);
  pointer-events: none;
  z-index: 1;
}

.hero-image::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(80%, 420px);
  height: 100px;
  pointer-events: none;
  backdrop-filter: blur(50px);
  background: rgba(255, 255, 255, 0.38);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, blue 90%);
  mask-image: linear-gradient(to bottom, transparent 0%, blue 90%);
  z-index: 4;
}

.hero-image img {
  width: clamp(220px, 40vw, 420px);
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  position: relative;
  z-index: 3;
}

.hero-card {
  position: absolute;
  top: 24px;
  left: -24px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  z-index: 3;
}

.hero-card--classic {
  left: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.hero-card strong {
  display: block;
  font-size: 1.1rem;
}

.hero-stamp {
  position: absolute;
  bottom: -26px;
  right: 12px;
  background: var(--surface-dark);
  color: #fff;
  padding: 18px 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  z-index: 3;
}

.hero-stamp strong {
  display: block;
  font-size: 1.5rem;
}

.stats {
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 36px;
  box-shadow: var(--shadow);
}

.stats-grid strong {
  font-size: 1.6rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.stats-grid span {
  color: var(--muted);
}

section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 42px;
}

.section-title.left {
  text-align: left;
  margin-bottom: 24px;
}

.section-title h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  margin-bottom: 12px;
}

.section-title p {
  color: var(--muted);
}

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

.service-card {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
}

.service-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
}

.differentials {
  background: var(--bg-alt);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.diff-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 20px 0 28px;
  color: var(--muted);
}

.diff-list li {
  padding-left: 26px;
  position: relative;
}

.diff-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.diff-cards {
  display: grid;
  gap: 18px;
}

.diff-cards article {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.diff-cards h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 8px;
}

.diff-cards p {
  color: var(--muted);
}

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

.quality-card {
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff, #f1f5fb);
  box-shadow: var(--shadow);
}

.quality-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 12px;
}

.quality-card p {
  color: var(--muted);
}

.compare-section {
  background: var(--surface);
}

.compare {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 650px;
  max-width: 980px;
  margin: 0 auto;
}

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

.compare-flag {
  position: absolute;
  top: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 10px 20px rgba(8, 156, 196, 0.25);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.compare-flag--before {
  left: 16px;
}

.compare-flag--after {
  right: 16px;
}

.compare--hide-before .compare-flag--before,
.compare--hide-after .compare-flag--after {
  opacity: 0;
  transform: translateY(-6px);
}

.compare-before {
  filter: grayscale(20%);
}

.compare-after {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  left: var(--pos);
  transform: translateX(-1px);
  border-left: 2px solid rgba(255, 255, 255, 0.9);
  pointer-events: none;
}

.compare-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  border: 2px solid rgba(var(--primary-rgb), 0.4);
}

.compare input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.gallery-hero {
  padding-bottom: 40px;
}

.gallery-hero-grid {
  align-items: center;
}

.gallery-hero-copy p {
  max-width: 560px;
}

.gallery-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.gallery-hero-meta div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.gallery-hero-meta strong {
  display: block;
  font-size: 1rem;
}

.gallery-hero-meta span {
  color: var(--muted);
  font-size: 0.85rem;
}

.gallery-hero-visual {
  display: flex;
  justify-content: flex-end;
}

.gallery-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 150px);
  gap: 16px;
  width: min(520px, 100%);
}

.gallery-collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: block;
}

.gallery-collage-img--large {
  grid-row: span 2;
}

.gallery-categories {
  background: var(--bg-alt);
  padding: 40px 0;
}

.gallery-categories-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.gallery-categories-header h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 6px;
}

.gallery-categories-header p {
  color: var(--muted);
}

.gallery-categories-note {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  color: var(--muted);
}

.gallery-categories-note strong {
  display: block;
  color: var(--text);
}

.gallery-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-chip {
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.gallery-chip.is-active {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}

.gallery-wall-section {
  padding: 60px 0;
}

.gallery-wall-title {
  max-width: 640px;
  margin-bottom: 24px;
}

.gallery-wall-title h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 8px;
}

.gallery-wall-title p {
  color: var(--muted);
}

.gallery-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 16px;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: #fff;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  color: #fff;
  background: linear-gradient(180deg, rgba(12, 20, 34, 0) 0%, rgba(12, 20, 34, 0.85) 100%);
}

.gallery-item figcaption span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.gallery-item figcaption strong {
  display: block;
  font-size: 1rem;
  margin-top: 4px;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--xl {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-compare-section {
  padding: 60px 0;
  background: var(--surface);
}

.gallery-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.gallery-compare-copy p {
  color: var(--muted);
}

.gallery-compare-list {
  margin-top: 18px;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.gallery-compare-list li::before {
  content: "•";
  color: var(--primary);
  margin-right: 8px;
}

.gallery-compare {
  height: 440px;
  max-width: 100%;
}

.clients {
  background: var(--bg-alt);
}

.clients-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}

.clients-marquee::before,
.clients-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, var(--bg-alt) 0%, rgba(238, 242, 245, 0) 100%);
}

.clients-marquee::after {
  right: 0;
  transform: scaleX(-1);
}

.clients-marquee::before {
  left: 0;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: clients-scroll 28s linear infinite;
}

.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

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

.client-logo {
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 90px;
}

.client-logo img {
  max-height: 48px;
  max-width: 140px;
  width: auto;
  height: auto;
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-logo:hover img {
  filter: none;
  opacity: 1;
}

@keyframes clients-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

.testimonial-card {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(10, 20, 40, 0.06);
  position: relative;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.rating {
  display: inline-flex;
  gap: 6px;
  color: var(--primary);
  font-size: 1.05rem;
}

.quote-mark {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(var(--accent-rgb), 0.2);
}

.testimonial-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.testimonial-divider {
  height: 1px;
  background: rgba(10, 20, 40, 0.08);
  margin: 18px 0;
}

.testimonial-card strong {
  display: block;
}

.testimonial-card span {
  color: var(--accent);
  font-size: 0.9rem;
}

.pricing {
  background: var(--bg-alt);
}

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

.pricing-card {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
}

.pricing-card:first-child {
  background: linear-gradient(135deg, #fff5f5, #ffffff);
  border-color: rgba(220, 38, 38, 0.25);
  position: relative;
}

.pricing-card:first-child h3 {
  color: #b91c1c;
}

.pricing-card:first-child li::before {
  color: #dc2626;
}

.pricing-card:first-child::after {
  content: "Risco alto";
  position: absolute;
  top: -14px;
  left: 20px;
  background: #dc2626;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card.highlight {
  border: 2px solid rgba(var(--accent-rgb), 0.6);
  position: relative;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  box-shadow: 0 22px 50px rgba(var(--accent-rgb), 0.25);
}

.pricing-card .badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.pricing-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 16px;
}

.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.pricing-card li::before {
  content: "•";
  margin-right: 8px;
  color: var(--primary);
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.structure-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.structure-stats strong {
  font-size: 1.2rem;
  font-family:"Plus Jakarta Sans", sans-serif;
}

.structure-stats span {
  color: var(--muted);
}

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

.structure-cards article {
  padding: 22px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.structure-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
  margin-bottom: 12px;
}

.structure-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.structure-cards h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 8px;
}

.structure-cards p {
  color: var(--muted);
}

.cta {
  padding: 60px 0 90px;
}

.cta-box {
  background: linear-gradient(120deg, #0f1b3a, #1b3f86);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer {
  background: #0c1422;
  color: #cdd6e2;
  padding: 50px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 30px;
}

.footer-grid h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 12px;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.85rem;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: #cdd6e2;
  text-decoration: underline;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  display: block;
}

.contact-main {
  background: var(--bg);
}

.contact-hero {
  position: relative;
  padding: 90px 0 60px;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  width: 55vw;
  height: 55vw;
  top: -35vw;
  right: -20vw;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.25), rgba(var(--primary-rgb), 0));
  pointer-events: none;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.contact-hero-copy h1 {
  font-size: clamp(2.3rem, 2.6vw, 3.1rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.contact-hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 22px;
  max-width: 560px;
}

.contact-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.contact-hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-hero-highlights div {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  font-size: 0.88rem;
}

.contact-hero-highlights strong {
  display: block;
  font-size: 1rem;
}

.contact-hero-highlights span {
  color: var(--muted);
}

.contact-hero-visual {
  position: relative;
}

.contact-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 460px;
}

.contact-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-hero-card {
  position: absolute;
  left: -18px;
  top: 26px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.contact-hero-card span {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
}

.contact-hero-card strong {
  font-size: 1.05rem;
}

.contact-hero-card--accent {
  left: auto;
  right: -16px;
  bottom: 28px;
  top: auto;
  background: var(--surface-dark);
  color: #fff;
}

.contact-hero-card--accent span {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form-section {
  padding: 60px 0;
  background: var(--surface);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: grid;
  gap: 18px;
}

.contact-form-header h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 6px;
}

.contact-form-header p {
  color: var(--muted);
}

.contact-field {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #fff;
  color: var(--text);
}

.contact-field textarea {
  resize: vertical;
}

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

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

.contact-form-note {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: -6px;
}

.contact-info-panel {
  display: grid;
  gap: 16px;
}

.contact-info-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  margin-bottom: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.contact-info-card p {
  color: var(--muted);
  margin-bottom: 12px;
}

.contact-info-link {
  font-weight: 700;
  color: var(--primary);
}

.contact-info-card--accent {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--primary-rgb), 0.03));
  border: 1px solid rgba(var(--primary-rgb), 0.35);
}

.contact-cta-strip {
  padding: 60px 0 90px;
  background: linear-gradient(120deg, #0f1b3a, #1b3f86);
  color: #fff;
}

.contact-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-cta-inner p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.privacy-hero {
  padding-bottom: 40px;
}

.privacy-section {
  background: var(--surface);
  padding: 60px 0 80px;
}

.privacy-grid {
  display: grid;
  gap: 18px;
}

.privacy-card {
  background: #fff;
  color: var(--text);
  border-radius: 20px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.privacy-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
  margin-bottom: 12px;
}

.privacy-card__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.privacy-card h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.privacy-card p,
.privacy-card li {
  color: var(--muted);
  font-size: 0.98rem;
}

.privacy-card ul {
  margin: 8px 0 0 18px;
  display: grid;
  gap: 6px;
}

.privacy-back {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  width: min(360px, 86vw);
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(12, 18, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  color: #f8fafc;
  z-index: 1000;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  display: grid;
  gap: 14px;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  color: rgba(248, 250, 252, 0.6);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}

.cookie-banner__close:hover {
  color: #f8fafc;
}

.cookie-banner__content strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}

.cookie-banner__content p {
  margin: 0 0 14px;
  color: rgba(248, 250, 252, 0.75);
  font-size: 0.9rem;
}

.cookie-banner__link {
  font-size: 0.85rem;
  color: #f8fafc;
  opacity: 0.8;
  text-decoration: none;
}

.cookie-banner__link:hover {
  opacity: 1;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner__actions .btn {
  padding: 8px 18px;
  font-size: 0.85rem;
  box-shadow: none;
}

.cookie-banner.is-hidden {
  display: none;
}

@media (max-width: 1024px) {
  .site-nav {
    display: none;
  }

  .hero-grid,
  .diff-grid,
  .structure-grid {
    grid-template-columns: 1fr;
  }

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

  .services-grid,
  .quality-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .gallery-hero-visual {
    order: -1;
  }

  .gallery-collage {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 170px);
  }

  .gallery-categories-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .gallery-compare-grid {
    grid-template-columns: 1fr;
  }

  .gallery-compare {
    height: 380px;
  }

  .contact-hero-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-visual {
    order: -1;
  }

  .contact-hero-card {
    position: static;
    margin-bottom: 12px;
  }

  .contact-hero-card--accent {
    margin-top: 12px;
  }

  .contact-hero-image {
    height: 360px;
  }

  .contact-hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner {
    left: 16px;
    bottom: 16px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-actions {
    display: none;
  }

  section {
    padding: 50px 0;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy,
  .section-title,
  .gallery-wall-title,
  .gallery-compare-copy {
    text-align: center;
  }

  .hero-copy p,
  .section-title p,
  .gallery-wall-title p,
  .gallery-compare-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-card,
  .hero-stamp {
    position: static;
    margin: 12px auto 0;
    text-align: center;
  }

  .hero-image {
    height: 360px;
  }

  .hero-image-copy {
    height: 360px;
  }

  .quem-somos-page .hero {
    padding-bottom: 20px;
  }

  .quem-somos-page .structure {
    padding-top: 30px;
  }

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

  .hero-actions .btn,
  .cta-actions .btn,
  .contact-hero-actions .btn,
  .contact-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-meta {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
  }

  .segmentos {
    align-items: center;
  }

  .segmentos-tags {
    justify-content: center;
  }

  .compare {
    height: 320px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .services-grid,
  .quality-grid,
  .clients-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .structure-cards {
    grid-template-columns: 1fr;
  }

  .clients-track {
    animation-duration: 22s;
  }

  .client-logo {
    min-width: 140px;
    height: 72px;
  }

  .client-logo img {
    max-height: 36px;
    max-width: 110px;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }

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

  .gallery-hero-meta {
    flex-direction: column;
  }

  .gallery-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .gallery-item--wide,
  .gallery-item--xl {
    grid-column: span 2;
  }

  .gallery-item--tall {
    grid-row: span 2;
  }

  .gallery-compare {
    height: 320px;
  }

  .contact-hero {
    padding-top: 70px;
  }

  .contact-hero-highlights {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-hero-image {
    height: 300px;
  }

  .privacy-card {
    padding: 18px;
  }

  .cookie-banner {
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner__link {
    display: inline-block;
    margin-bottom: 6px;
  }
}

@media (max-width: 560px) {
  .gallery-collage {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 160px 160px;
  }

  .gallery-collage-img--large {
    grid-row: span 1;
  }

  .gallery-wall {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item--wide,
  .gallery-item--xl,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clients-track {
    animation: none;
    transform: translateX(0);
  }
}
