﻿:root {
  --navy: #0f223f;
  --navy-2: #19355f;
  --gold: #c8a45a;
  --gold-2: #dfc084;
  --gold-3: #f3e2b2;
  --gold-deep: #b88a2c;
  --wa-green: #1c9f60;
  --wa-green-2: #127646;
  --bg: #f4f6fb;
  --bg-soft: #eef2f8;
  --text: #1a2b42;
  --text-soft: #4b5f79;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(12, 29, 54, 0.08);
  --shadow-lg: 0 28px 70px rgba(12, 29, 54, 0.16);
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(900px 520px at 90% -5%, rgba(25, 53, 95, 0.2), rgba(25, 53, 95, 0)),
    radial-gradient(840px 500px at -8% 104%, rgba(200, 164, 90, 0.22), rgba(200, 164, 90, 0)),
    linear-gradient(180deg, #f7f9fc 0%, #f3f6fb 100%);
}

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

a {
  color: inherit;
}

h1,
h2 {
  text-wrap: balance;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0 0 12px;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

h3 {
  font-size: clamp(1.16rem, 2.2vw, 1.48rem);
}

p {
  margin: 0 0 12px;
}

ul,
ol {
  margin: 0;
  padding-left: 20px;
}

.container {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}

.section {
  padding: 84px 0;
  content-visibility: auto;
  contain-intrinsic-size: 780px;
}

.section-alt {
  background: linear-gradient(180deg, rgba(15, 34, 63, 0.03), rgba(15, 34, 63, 0.06));
  border-block: 1px solid rgba(15, 34, 63, 0.09);
}

.kicker {
  color: #936a2f;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.77rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.lead {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  max-width: 66ch;
}

.section-head {
  max-width: 76ch;
  margin-bottom: 32px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
  z-index: 9999;
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 10px;
  padding: 8px 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: linear-gradient(135deg, rgba(246, 231, 183, 0.98), rgba(222, 191, 118, 0.98));
  border-bottom: 1px solid rgba(97, 65, 11, 0.22);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 32px rgba(12, 29, 54, 0.12);
  background: linear-gradient(135deg, rgba(242, 223, 167, 0.99), rgba(215, 177, 92, 0.99));
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1200;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), #e8cf9c, var(--navy-2));
  box-shadow: 0 0 10px rgba(200, 164, 90, 0.55);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

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

.brand-text strong {
  display: block;
  font-size: 0.98rem;
  color: var(--navy);
}

.brand-text small {
  color: rgba(15, 34, 63, 0.8);
  font-size: 0.77rem;
}

.menu-btn {
  display: none;
  margin-left: auto;
  border: 1px solid rgba(15, 34, 63, 0.28);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  border-radius: 11px;
  padding: 10px 13px;
  font: inherit;
  box-shadow: 0 12px 24px rgba(15, 34, 63, 0.18);
}

.nav-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: nowrap;
}

.nav-menu > a,
.nav-dropdown > summary {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 8px 4px;
  white-space: nowrap;
}

.nav-menu .nav-mobile-btn {
  display: none;
}

.nav-menu > a.btn {
  padding: 11px 18px;
}

.nav-menu > a.btn::after {
  display: none;
}

.nav-menu > a.btn-primary,
.nav-menu > a.btn-primary:visited {
  color: #fff;
}

.nav-menu > a.btn-gold,
.nav-menu > a.btn-gold:visited {
  color: #1a2b42;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-menu > a::after,
.nav-dropdown > summary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transition: transform 0.22s ease;
}

.nav-menu > a:hover::after,
.nav-menu > a[aria-current="page"]::after,
.nav-dropdown > summary:hover::after,
.nav-dropdown[open] > summary::after,
.nav-dropdown.active > summary::after {
  transform-origin: left;
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  background: linear-gradient(180deg, #fffaf0, #f7e4b2);
  border: 1px solid rgba(15, 34, 63, 0.14);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  display: grid;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-menu a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  padding: 9px 10px;
  border-radius: 10px;
}

.nav-dropdown-menu a:hover {
  background: rgba(15, 34, 63, 0.08);
}

.nav-dropdown-menu a.nav-featured {
  background: linear-gradient(135deg, rgba(15, 34, 63, 0.92), rgba(25, 53, 95, 0.92));
  color: #fff;
  box-shadow: 0 12px 22px rgba(15, 34, 63, 0.18);
}

.nav-dropdown[open] .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.95rem;
  min-height: 44px;
  padding: 11px 18px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: var(--shadow-lg);
}

.btn-gold {
  color: #1a2b42;
  background: linear-gradient(130deg, var(--gold-2), var(--gold));
  border: 1px solid rgba(126, 88, 24, 0.28);
  box-shadow: 0 10px 24px rgba(200, 164, 90, 0.32);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  box-shadow: 0 16px 34px rgba(200, 164, 90, 0.38);
}

.btn-ghost {
  color: var(--navy);
  background: transparent;
  border: 1px solid rgba(15, 34, 63, 0.3);
}

/* Padrao visual dos botoes de conteudo: dourado com texto azul */
main .btn-primary,
main .btn-ghost,
main .btn-primary:visited,
main .btn-ghost:visited {
  color: #1a2b42;
  background: linear-gradient(130deg, var(--gold-2), var(--gold));
  border: 1px solid rgba(126, 88, 24, 0.28);
  box-shadow: 0 10px 24px rgba(200, 164, 90, 0.32);
}

main .btn-primary:hover,
main .btn-primary:focus-visible,
main .btn-ghost:hover,
main .btn-ghost:focus-visible {
  box-shadow: 0 16px 34px rgba(200, 164, 90, 0.38);
}

/* Regra global para botoes de WhatsApp */
a.btn[href*="api.whatsapp.com"],
a.btn[href*="wa.me"],
a.btn[href*="api.whatsapp.com"]:visited,
a.btn[href*="wa.me"]:visited,
.contact-form button.btn[type="submit"] {
  color: #fff;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-green-2));
  border: 1px solid rgba(11, 100, 51, 0.45);
  box-shadow: 0 14px 30px rgba(18, 118, 70, 0.3);
}

a.btn[href*="api.whatsapp.com"]:hover,
a.btn[href*="api.whatsapp.com"]:focus-visible,
a.btn[href*="wa.me"]:hover,
a.btn[href*="wa.me"]:focus-visible,
.contact-form button.btn[type="submit"]:hover,
.contact-form button.btn[type="submit"]:focus-visible {
  box-shadow: 0 20px 38px rgba(18, 118, 70, 0.36);
}

.nav-consulta {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 14px 28px rgba(15, 34, 63, 0.22);
  white-space: nowrap;
  padding-inline: 15px;
  font-size: 0.9rem;
}

.nav-cta {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 34, 63, 0.16);
  box-shadow: 0 10px 22px rgba(15, 34, 63, 0.12);
  white-space: nowrap;
  padding-inline: 15px;
  font-size: 0.9rem;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  box-shadow: 0 16px 32px rgba(15, 34, 63, 0.18);
}

.hero {
  padding-top: 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 34, 63, 0.13);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(15, 34, 63, 0.14);
  box-shadow: var(--shadow-lg);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 13;
  object-fit: cover;
}

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

.trust-chip {
  background: linear-gradient(150deg, rgba(15, 34, 63, 0.95), rgba(21, 48, 85, 0.95));
  color: #edf2fb;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card .hero-actions {
  margin-top: auto;
}

.service-pill {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(200, 164, 90, 0.18);
  color: #855a1c;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card {
  background: linear-gradient(180deg, #fff, #f8f3e9);
  border: 1px solid rgba(15, 34, 63, 0.13);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 164, 90, 0.45);
}

.card ul {
  margin-top: 10px;
}

.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.office-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 34, 63, 0.12);
}

.office-photo img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

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

.blog-card {
  background: #fff;
  border: 1px solid rgba(15, 34, 63, 0.12);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.blog-meta {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  background: rgba(200, 164, 90, 0.18);
  color: #8d6327;
  margin-bottom: 10px;
}

.banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 34, 63, 0.14);
  box-shadow: var(--shadow-lg);
}

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

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 24, 43, 0.9), rgba(10, 24, 43, 0.44) 58%, rgba(10, 24, 43, 0.2));
}

.banner-content {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 620px;
  color: #f2f6fb;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
}

.timeline li {
  background: #fff;
  border: 1px solid rgba(15, 34, 63, 0.14);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}

.page-hero {
  padding-top: 72px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.area-detail {
  background: #fff;
  border: 1px solid rgba(15, 34, 63, 0.14);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.area-detail + .area-detail {
  margin-top: 14px;
}

.area-detail ul {
  margin-top: 10px;
}

.area-detail li {
  margin-bottom: 6px;
}

.security-alert {
  background: linear-gradient(180deg, #fff9ec, #f8e3b8);
  border: 1px solid rgba(126, 88, 24, 0.26);
  border-left: 5px solid #c58c2d;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.security-alert h2 {
  color: #6d4a18;
}

.security-alert p {
  color: #233753;
}

.security-list {
  margin-top: 10px;
}

.security-list li {
  margin-bottom: 8px;
}

.security-commitment {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(126, 88, 24, 0.35);
}

.security-commitment h3 {
  color: #6d4a18;
  margin-bottom: 10px;
}

.security-commitment p {
  color: #233753;
}

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

.security-figure {
  width: 100%;
  max-width: 232px;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  justify-self: center;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f3f6fb, #e9eef6);
  border: 1px solid rgba(15, 34, 63, 0.12);
  box-shadow: 0 14px 26px rgba(12, 29, 54, 0.12);
}

.security-figure img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-list {
  margin-top: 12px;
}

.contact-list li {
  margin-bottom: 8px;
}

.contact-form {
  background: #fff;
  border: 1px solid rgba(15, 34, 63, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
}

.contact-form label {
  display: block;
  margin: 10px 0 6px;
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 34, 63, 0.24);
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 164, 90, 0.24);
}

#form-feedback {
  min-height: 22px;
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.map-box {
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 34, 63, 0.14);
  box-shadow: var(--shadow-sm);
}

.map-box iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.site-footer {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(246, 231, 183, 0.98), rgba(222, 191, 118, 0.98));
  color: var(--navy);
  border-top: 1px solid rgba(97, 65, 11, 0.22);
  padding: 34px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 16px;
}

.footer-brand-name {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}

.footer-meta {
  color: rgba(15, 34, 63, 0.88);
  font-size: 0.92rem;
}

.footer-grid a {
  color: var(--navy-2);
}

.footer-credit {
  margin-top: 14px;
  color: rgba(15, 34, 63, 0.8);
  font-size: 0.84rem;
  width: min(var(--container), 92vw);
  margin-inline: auto;
  text-align: center;
  padding-inline: 12px;
}

.copyright {
  margin-top: 16px;
  text-align: center;
  color: rgba(15, 34, 63, 0.78);
  font-size: 0.84rem;
}

.floating-priority {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 990;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(145deg, #1c9f60, #127646);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  box-shadow: 0 22px 52px rgba(18, 118, 70, 0.36);
  animation: pulse 3s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.52s ease, transform 0.52s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

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

@media (max-width: 1320px) {
  .brand-text small {
    display: none;
  }
}

@media (max-width: 1220px) and (min-width: 981px) {
  .brand-logo {
    width: 134px;
  }

  .brand-text strong {
    font-size: 0.9rem;
  }

  .nav-menu {
    gap: 6px;
  }

  .nav-menu > a,
  .nav-dropdown > summary {
    font-size: 0.79rem;
  }

  .nav-consulta,
  .nav-cta {
    padding-inline: 13px;
    font-size: 0.85rem;
  }
}

@media (max-width: 980px) {
  .menu-btn {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: calc(100% + 8px);
    background: linear-gradient(180deg, #fffaf0, #f4ddb0);
    border: 1px solid rgba(15, 34, 63, 0.18);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav-menu[data-open="true"] {
    display: flex;
  }

  .nav-menu .nav-mobile-btn {
    display: inline-flex;
    margin-top: 4px;
    justify-content: center;
    width: 100%;
  }

  .nav-menu .nav-mobile-btn.btn-primary,
  .nav-menu .nav-mobile-btn.btn-primary:visited {
    color: #fff !important;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    margin-top: 8px;
    box-shadow: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.62);
  }

  .nav-consulta {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .office-grid,
  .page-hero-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

  .cards-grid,
  .blog-grid,
  .timeline,
  .footer-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .security-figure {
    max-width: 204px;
  }

  .section {
    padding: 68px 0;
  }

  .banner-content {
    left: 16px;
    right: 16px;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-wrap {
    min-height: 78px;
    gap: 8px;
  }

  .brand-logo {
    width: 136px;
  }

  .brand-text strong {
    font-size: 0.9rem;
  }

  .hero-card {
    padding: 22px;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .floating-priority {
    right: 12px;
    bottom: 12px;
    padding: 11px 14px;
    font-size: 0.9rem;
  }

  .banner::after {
    background: linear-gradient(180deg, rgba(10, 24, 43, 0.86), rgba(10, 24, 43, 0.66));
  }

  .banner-content {
    top: auto;
    left: 14px;
    right: 14px;
    bottom: 14px;
    transform: none;
  }

  .banner-content .hero-actions {
    margin-top: 14px;
  }

  .hero-image-focus-left {
    aspect-ratio: 3 / 2;
    object-position: 22% center;
  }

  .security-figure {
    max-width: 186px;
    padding: 9px;
  }
}

@media (max-width: 430px) {
  .security-figure {
    max-width: 170px;
    padding: 8px;
  }
}

@media (max-width: 360px) {
  .security-figure {
    max-width: 156px;
    padding: 7px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(var(--container), 94vw);
  }

  .brand-logo {
    width: 124px;
  }

  .menu-btn {
    padding: 9px 11px;
    font-size: 0.9rem;
  }

  .hero-card,
  .card,
  .blog-card,
  .contact-form,
  .area-detail {
    padding: 18px;
  }

  .banner img {
    min-height: 240px;
  }

  .floating-priority {
    left: 12px;
    right: 12px;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .brand-logo {
    width: 116px;
  }

  .brand-text strong {
    font-size: 0.82rem;
  }

  .hero-actions {
    gap: 8px;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    width: 110px;
  }

  .menu-btn {
    padding: 8px 10px;
    font-size: 0.86rem;
  }

  .section {
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(1.72rem, 6.5vw, 2.2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
