:root {
  --bg: #0f1115;
  --surface: #151922;
  --surface-soft: #f5f7fb;
  --card: #ffffff;
  --text: #10131a;
  --text-light: #f2f5fb;
  --muted: #667085;
  --border: rgba(16, 19, 26, 0.08);
  --primary: #dd1717;
  --primary-dark: #a90f0f;
  --accent: #1f2937;
  --shadow: 0 24px 60px rgba(15, 17, 21, 0.12);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(221, 23, 23, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(31, 41, 55, 0.06), transparent 30%);
  z-index: -1;
}

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

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(16, 19, 26, 0.06);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: 54px;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #364152;
  font-weight: 500;
}

.menu a:hover {
  color: var(--primary);
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 1 240px;
}

.search-input {
  width: 100%;
  padding: 10px 14px 10px 36px;
  border: 1px solid rgba(16, 19, 26, 0.12);
  border-radius: 999px;
  font-size: 0.9rem;
  font-family: inherit;
  background: rgba(16, 19, 26, 0.04);
  color: var(--text);
  transition: all 0.2s ease;
}

.search-input::placeholder {
  color: var(--muted);
}

.search-input:focus {
  outline: none;
  background: rgba(16, 19, 26, 0.08);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(221, 23, 23, 0.1);
}

.search-icon {
  position: absolute;
  left: 12px;
  color: var(--muted);
  pointer-events: none;
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
  z-index: 40;
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.hero {
  position: relative;
  color: var(--text-light);
  padding: 72px 0 64px;
  background: url("hero1.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 17, 0.9) 0%, rgba(10, 12, 17, 0.72) 42%, rgba(10, 12, 17, 0.45) 100%),
    linear-gradient(180deg, rgba(10, 12, 17, 0.35) 0%, rgba(10, 12, 17, 0.65) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
}

.hero::before {
  width: 420px;
  height: 420px;
  background: rgba(221, 23, 23, 0.16);
  top: -140px;
  right: -120px;
}

.hero::after {
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.05);
  bottom: -80px;
  left: -40px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  color: #ffb2b2;
  margin-bottom: 18px;
}

.section-tag {
  color: var(--primary);
  margin-bottom: 14px;
}

.section-tag.light {
  color: rgba(255, 255, 255, 0.78);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.hero-copy p {
  margin: 20px 0 0;
  max-width: 62ch;
  color: rgba(242, 245, 251, 0.84);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff4b4b);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(221, 23, 23, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-light {
  background: #ffffff;
  color: var(--accent);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}

.hero-highlights li {
  display: flex;
  gap: 10px;
  color: rgba(242, 245, 251, 0.82);
}

.hero-highlights li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a7a, #dd1717);
  margin-top: 9px;
  flex: 0 0 auto;
}

.hero-panel {
  position: relative;
}

.panel-main {
  margin-bottom: 18px;
}

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

.panel-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
}

.panel-card strong {
  display: block;
  font-size: 1.06rem;
  margin-bottom: 8px;
}

.panel-card p {
  margin: 0;
  color: rgba(242, 245, 251, 0.74);
  font-size: 0.96rem;
}

.panel-label,
.panel-number {
  display: inline-flex;
  margin-bottom: 14px;
  color: #ffb7b7;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section {
  padding: 64px 0;
}

/* Seções sem fundo próprio em sequência não somam padding:
   o espaço entre elas fica sempre 64px, e não 128px. */
.section:not(.section-dark):not(.section-muted):not(.cta-section)
  + .section:not(.section-dark):not(.section-muted):not(.cta-section) {
  padding-top: 0;
}

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

.section-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: start;
}

.about-grid p,
.section-head p,
.feature-box p,
.contact-grid p,
.cta-box p,
.gallery-content p {
  color: var(--muted);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head-narrow {
  max-width: 720px;
}

.section-head p {
  margin: 16px 0 0;
}

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

.service-card,
.feature-box,
.contact-card,
.gallery-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 28px;
}

.service-card h3,
.feature-box h3,
.gallery-content h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.service-card p,
.feature-box p,
.gallery-content p {
  margin: 0;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(221, 23, 23, 0.12), rgba(221, 23, 23, 0.22));
  color: var(--primary-dark);
}

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

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

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-content {
  padding: 22px 22px 24px;
}

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

.feature-box {
  padding: 30px;
}

.cta-section {
  background: linear-gradient(135deg, #12161f, #1f2430);
  color: var(--text-light);
}

.cta-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, rgba(221, 23, 23, 0.9), rgba(169, 15, 15, 0.94));
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.cta-box h2 {
  color: #ffffff;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.84);
  margin: 14px 0 0;
}

.contact-card {
  padding: 30px;
  display: grid;
  gap: 18px;
}

.contact-item {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(16, 19, 26, 0.08);
}

.contact-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-item strong,
.contact-item a {
  font-size: 1.08rem;
  font-weight: 700;
  word-break: break-word;
}

.contact-item a {
  color: var(--primary-dark);
}

/* ── Formulário de Contato ── */
.contact-single {
  display: grid;
}

.contact-form {
  display: grid;
  width: 100%;
  gap: 18px;
  align-content: start;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
}

.form-field label .opt {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--muted);
  opacity: 0.75;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 96px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(102, 112, 133, 0.7);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(221, 23, 23, 0.12);
}

.form-field input.has-error,
.form-field textarea.has-error {
  border-color: var(--primary);
  background: rgba(221, 23, 23, 0.03);
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 46px;
  font-weight: 700;
  cursor: pointer;
}

.select-wrap i,
.select-wrap svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--muted);
  pointer-events: none;
}

.form-note {
  margin: 2px 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.form-note-mail {
  display: block;
  margin-top: 4px;
  color: var(--text);
}

.form-note-mail strong {
  color: var(--primary-dark);
  word-break: break-word;
}

/* Campo isca anti-spam: fora da tela, invisível para quem usa o site. */
.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 0;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.92rem;
}

.form-status.is-error {
  color: var(--primary-dark);
  background: rgba(221, 23, 23, 0.07);
}

.form-status.is-success {
  color: #0f6b3f;
  background: rgba(22, 163, 74, 0.09);
}

.form-status.is-loading {
  color: var(--muted);
  background: rgba(16, 19, 26, 0.04);
}

.form-submit {
  justify-self: center;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
  padding: 0 34px;
  margin-top: 8px;
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: progress;
  transform: none;
}

/* ── Section Dark (Números) ── */
.section-dark {
  background: linear-gradient(135deg, #12161f, #1a1f2b);
  color: var(--text-light);
}

.section-dark h2 {
  color: #ffffff;
}

.section-head-center {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 10px;
}

.stat-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}

.stat-number {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ff6b6b, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.stat-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

/* ── Segmentos Grid ── */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.segment-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.segment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(15, 17, 21, 0.16);
}

.segment-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(221, 23, 23, 0.1), rgba(221, 23, 23, 0.2));
  color: var(--primary-dark);
}

.segment-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.2;
}

.segment-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

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

/* ── Map ── */
.map-wrap {
  margin-top: 64px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
}

/* ── Footer ── */
.site-footer {
  background: #0f1115;
  color: rgba(255, 255, 255, 0.72);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr;
  gap: 40px;
}

.footer-brand p {
  margin: 14px 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.56);
}

.footer-logo {
  height: 44px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4 {
  margin: 0 0 6px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ff7a7a;
}

.footer-links p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.footer-bottom {
  margin-top: 40px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.breadcrumb a:hover {
  opacity: 0.7;
}

.breadcrumb span {
  color: var(--text);
}

/* ── Document Page ── */
.document-page {
  min-height: 100vh;
  padding: 48px 0;
}

.document-header {
  margin-bottom: 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.back-link:hover {
  transform: translateX(-4px);
}

.document-header h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.document-actions {
  display: flex;
  gap: 12px;
  margin: 0 0 24px;
  justify-content: center;
}

.document-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.document-actions .btn svg {
  width: 18px;
  height: 18px;
}

.document-container {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 800px;
  margin: 24px 0;
}

.document-container iframe {
  width: 100%;
  height: 100%;
  min-height: 800px;
  border: none;
  display: block;
}

.document-container object {
  width: 100%;
  height: 100%;
  min-height: 800px;
  border: none;
  display: block;
}

.document-container p {
  padding: 20px;
  text-align: center;
}

/* ── Docs Grid (Compliance Hub) ── */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.doc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.doc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(15, 17, 21, 0.16);
}

.doc-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(221, 23, 23, 0.12), rgba(221, 23, 23, 0.22));
  color: var(--primary-dark);
}

.doc-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.2;
}

.doc-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.doc-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  margin-top: auto;
  transition: transform 0.2s ease;
}

.doc-card:hover .doc-link {
  transform: translateX(4px);
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 50;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.12); }
}

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero-grid,
  .section-grid,
  .contact-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .nav {
    flex-wrap: wrap;
    padding: 16px 0;
    min-height: auto;
  }

  .search-wrapper {
    display: none;
  }

  .search-input {
    font-size: 0.85rem;
    padding: 8px 12px 8px 32px;
  }

  .search-icon {
    width: 14px;
    height: 14px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--border);
  }

  .menu.is-open {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .menu a {
    width: 100%;
    padding: 14px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(16, 19, 26, 0.04);
  }

  .menu a:last-child {
    border-bottom: none;
  }

  .hero,
  .section {
    padding: 48px 0;
  }

  .cards-grid,
  .feature-grid,
  .panel-grid,
  .gallery-grid,
  .segments-grid {
    grid-template-columns: 1fr;
  }

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

  .panel-card,
  .service-card,
  .feature-box,
  .contact-card,
  .cta-box,
  .gallery-card,
  .segment-card {
    border-radius: 20px;
  }

  .cta-box {
    padding: 28px;
  }

  .brand-logo {
    height: 46px;
  }

  .hero h1 {
    max-width: none;
  }

  .gallery-card img {
    height: 220px;
  }

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

  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
  }

  .hero-actions,
  .cta-actions {
    justify-content: center;
  }

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

  .document-container {
    min-height: 500px;
  }

  .document-container iframe {
    min-height: 500px;
  }

  .document-header h1 {
    font-size: 1.8rem;
  }
}

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

