/* ========================================================================== */
/* ============ 1) Variáveis, Reset e Utilitários Globais =================== */
/* ========================================================================== */

:root {
  --gold: #C8A64B;
  --gold-2: #E6C46A;
  --ink: #0F0F12;
  --ink-2: #141417;
  --light: #ffffff;
  --soft: #f6f7f9;
  --text: #1b1b1f;
  --muted: #6b6b72;
  --ring: rgba(200, 166, 75, .25);
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .12);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--soft);
  line-height: 1.6;
}

html {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html {
    overflow-x: hidden;
  }
}

[data-aos] {
  contain: paint;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ========================================================================== */
/* ===================== 2) Tipografia e Utilitários comuns ================= */
/* ========================================================================== */

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  letter-spacing: .3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.website {
  overflow-x: hidden;
}

section {
  padding: 96px 0;
}

.section--alt {
  background: var(--light);
}

.head {
  text-align: center;
  margin-bottom: 44px;
}

.head h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  margin: 0 0 10px;
}

.head p {
  color: var(--muted);
  max-width: 780px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  padding: 14px 22px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(200, 166, 75, .25);
  transition: .25s;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(200, 166, 75, .35);
}

.btn.outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

/* ========================================================================== */
/* =============================== 3) Navbar =================================*/
/* ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 999;
  display: flex;
  align-items: center;
  background: transparent;
  transition: .25s ease;
}

.nav.scrolled {
  background: rgba(15, 15, 18, .80);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

.brand .word {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand .title {
  color: #fff;
  font-weight: 900;
  letter-spacing: .4px;
}

.brand .kicker {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.brand .bar {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  opacity: .95;
}

.nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.burger {
  display: none;
  color: #fff;
  font-size: 20px;
  margin-left: 12px;
  border: 1.5px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(6px);
  transition: .2s;
}

.burger:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .38);
  color: var(--gold);
}

.burger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

@media (max-width: 860px) {
  .burger {
    display: block;
  }

  .nav ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(15, 15, 18, .96), rgba(15, 15, 18, .92));
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 14px 22px 18px;
    max-height: calc(100vh - 72px);
    overflow: auto;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }

  .nav ul li a {
    display: block;
    padding: 12px 4px;
    font-weight: 700;
    letter-spacing: .2px;
  }

  .nav.open ul {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }

  .nav.open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  body.lock {
    overflow: hidden;
  }
}

/* ========================================================================== */
/* ================================= 4) Hero =================================*/
/* ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  background-image: url('../images/hero.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  overflow: hidden;
}

.hero .bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1589829540026-2d0125f4fcaa?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
  filter: brightness(.55) saturate(.95);
  transform: scale(1.02);
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 255), transparent 200%);
}

.hero .content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 900px;
  padding: 96px 24px 64px;
}

.hero .kicker {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .18em;
  font-size: .85rem;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 64px);
  margin: 12px 0 14px;
  line-height: 95%;
}

.hero p {
  color: #EDEDEF;
  font-size: clamp(16px, 1.2vw, 20px);
  margin: 0 auto 24px;
  max-width: 740px;
}

.hero .cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ========================================================================== */
/* =============================== 5) Métricas =============================== */
/* ========================================================================== */

.metrics {
  background: linear-gradient(180deg, var(--ink), var(--ink-2));
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 25px 0;
}

.m-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.metric .num {
  font-weight: 900;
  font-size: 32px;
  color: var(--gold);
}

.metrics .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.metric .label {
  color: #d6d6dc;
  font-size: 14px;
}

@media (max-width: 600px) {
  .metric .num {
    font-weight: 900;
    font-size: 26px;
    color: var(--gold);
  }

  .metric .label {
    color: #d6d6dc;
    font-size: 10px;
  }

  .metrics {
    background: linear-gradient(180deg, var(--ink), var(--ink-2));
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 15px;
  }
}

@media (max-width: 465px) {
  .metrics .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
  }

  .metric .num {
    font-weight: 900;
    font-size: 22px;
    color: var(--gold);
  }

  .metric .label {
    color: #d6d6dc;
    font-size: 10px;
  }

  .metrics {
    background: linear-gradient(180deg, var(--ink), var(--ink-2));
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 10px;
  }
}

@media (max-width: 404px) {
  .m-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px 0px;
  }

  .metrics .container {
    padding: 0px 0;
  }

  .metrics {
    padding: 0px;
  }
}

/* ========================================================================== */
/* ================================ 6) Sobre =================================*/
/* ========================================================================== */

.about {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 38px;
  align-items: center;
}

.about .card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

.about .card p {
  color: #52525a;
}

.about .photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
  }

}

/* ========================================================================== */
/* ================================ 7) Áreas =================================*/
/* ========================================================================== */

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  align-items: stretch;
}

.areas-grid>* {
  flex: 1 1 360px;
  max-width: 360px;
}

.area-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
}

.area-media {
  aspect-ratio: 16/9;
  background: #000;
}

.area-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05);
}

.area-body {
  padding: 18px 18px 6px;
}

.area-body h3 {
  margin: 0 0 6px;
}

.area-body p {
  margin: 0;
  color: #555;
}

.area-foot {
  padding: 0 18px 18px;
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1f1f5;
  border: 1px solid #ececf0;
  color: #444;
  font-weight: 700;
  white-space: nowrap;
}

.chip i {
  color: var(--gold);
}

/* ========================================================================== */
/* =============================== 8) Processo =============================== */
/* ========================================================================== */

section#processo {
  background-color: #fff;
}

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

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

.step {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 26px;
  position: relative;
  border-top: 4px solid var(--gold);
}

.step h4 {
  margin: 6px 0 8px;
}

.step p {
  color: #555;
}

.step .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  font-weight: 900;
  box-shadow: 0 10px 22px var(--ring);
}

/* ========================================================================== */
/* ============================== 9) Parceiros =============================== */
/* ========================================================================== */

section#parceiros {
  background-color: var(--soft);
}

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

@media (max-width: 860px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

.partner-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px;
  border-top: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.partner-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 96px;
  min-height: 84px;
}

.partner-photo {
  flex: 0 0 auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}

.partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.partner-info {
  flex: 1 1 auto;
  min-width: 0;
}

.partner-info h3 {
  margin: 0;
  color: #1b1b1f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.partner-info .oab {
  margin: 4px 0 0;
  color: #6b6b72;
  font-weight: 700;
}

.partner-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 10px;
  margin: 0;
  z-index: 2;
}

.pact {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 8px 18px rgba(200, 166, 75, .25);
  transition: .2s;
}

.pact:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(200, 166, 75, .35);
}

@media (max-width: 540px) {
  .partner-card {
    padding: 16px 16px 14px;
  }

  .partner-top {
    gap: 12px;
    padding-right: 86px;
    min-height: 72px;
  }

  .partner-photo {
    width: 64px;
    height: 64px;
  }

  .partner-info h3 {
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.15;
  }

  .partner-info .oab {
    font-size: .9rem;
  }

  .partner-actions {
    top: 12px;
    right: 12px;
    gap: 8px;
  }

  .pact {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
}

@media (max-width: 380px) {
  .partner-top {
    padding-right: 76px;
  }

  .partner-info h3 {
    font-size: 1.2rem;
  }

  .partner-info .oab {
    font-size: 1rem;
  }
}

.partner-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid #eef0f3;
}

.partner-specialties::before {
  content: "Áreas de atuação:";
  flex-basis: 100%;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.partner-specialties li,
.partner-specialties .ps-pill {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f6f7f9;
  border: 1px solid #ececf0;
  color: #444;
  font-weight: 700;
  white-space: nowrap;
}

.partner-specialties i {
  color: var(--gold);
}

.hint a {
  color: #6b6b72;
}

/* ========================================================================== */
/* ================================ 10) Contato ============================== */
/* ========================================================================== */

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

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

.form {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 28px;
}

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

@media (max-width: 680px) {
  .row {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.label {
  font-weight: 800;
  color: #333;
}

.input,
.textarea {
  border: 1.5px solid #E2E2E7;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  background: #fff;
  transition: border .2s, box-shadow .2s;
}

.input:focus,
.textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 6px var(--ring);
}

.textarea {
  min-height: 140px;
  resize: vertical;
}

.agree {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .95rem;
  color: #555;
}

.map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ddd;
  min-height: 100%;
}

.actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hint {
  color: #777;
  font-size: .9rem;
}

.quote-head {
  text-align: center;
  margin-bottom: 18px;
}

.q-badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 10px 22px var(--ring), inset 0 0 0 1px rgba(255, 255, 255, .55);
}

.q-title {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-size: clamp(28px, 4vw, 42px);
  margin: 10px 0 6px;
  line-height: 1.1;
}

.q-sub {
  color: var(--muted);
  max-width: 820px;
  margin: 0 auto 14px;
}

.trust-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.trust-pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f6f7f9;
  border: 1px solid #ececf0;
  color: #444;
  font-weight: 800;
}

.trust-pills i {
  color: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-areas:
    "form channels"
    "form map";
  gap: 24px;
  align-items: start;
}

.contact-form {
  grid-area: form;
}

.channels-card {
  grid-area: channels;
}

#contato .map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ddd;
  min-height: 420px;
}

.channels-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  border-top: 4px solid var(--gold);
}

.cc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cc-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  font-weight: 900;
  box-shadow: 0 10px 22px var(--ring), inset 0 0 0 1px rgba(255, 255, 255, .45);
}

.cc-logo i {
  font-size: 16px;
}

.cc-id {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.cc-name {
  color: #1b1b1f;
  font-weight: 900;
}

.cc-meta {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 800;
}

.cc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.cc-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #ececf0;
  color: #1b1b1f;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
  transition: transform .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease;
}

form {
  min-height: 642px;
}

.cc-chip i {
  color: var(--gold);
  font-size: 16px;
}

.cc-chip:hover {
  transform: translateY(-2px);
  color: var(--gold);
  border-color: #e6e6ec;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .1);
}

.cc-chip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 6px var(--ring);
}

.cc-chip[href^="https://wa.me"] i {
  color: #1fa855;
}

.contact-form .actions .btn {
  white-space: nowrap;
}

.contact-form .hint a {
  color: var(--gold);
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "channels"
      "form"
      "map";
  }

  #contato .map {
    min-height: 340px;
  }
}

@media (max-width: 560px) {

  .cc-chip span {
    display: none;
  }

  .cc-chip {
    width: 42px;
    height: 42px;
    justify-content: center;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  .cc-chip,
  .cc-logo {
    transition: none;
  }
}

#contato .map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  display: block;
  border: 0;
}


/* ========================================================================== */
/* ================================ 11) Footer =============================== */
/* ========================================================================== */
.foot.modern-foot {
  background:
    radial-gradient(900px 500px at 80% -20%, rgba(200, 166, 75, .12), transparent),
    #0b0b0d;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  padding: 44px 30px;
  align-items: start;
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    padding: 0px 0px;
    margin: 20px 10px;
    justify-items: center;
  }

  .footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .infos {
    text-align: center;
  }

  .footer-contact,
  .footer-links {
    justify-self: center;
  }

  .footer-brand .brand--foot {
    justify-content: center;
  }

  .foot .infos p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0;
  }


  address.infos {
    margin-right: auto;
    margin-left: auto;
  }

  .foot .foot-list {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    gap: 12px;
    justify-items: center;
  }

  .foot .foot-list li {
    display: flex !important;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    text-align: center;
  }

  .foot .foot-list i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    color: var(--gold);
    margin: 0 !important;
    font-size: 16px;
    flex: 0 0 32px;
  }

  .foot .foot-list li a,
  .foot .foot-list li span,
  .foot .foot-list li p {
    display: inline-block !important;
    line-height: 1.5;
    text-align: center !important;
    margin: 0;
    max-width: calc(100% - 42px);
    text-wrap: pretty;
  }

  .foot .infos p a {
    line-height: 1.5;
  }

  .foot-list li {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .foot .infos p {
    gap: 12px;
  }

  .foot .infos i {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

@media (400px <=width < 424px) {
  .fa-location-dot {
    position: relative;
    left: 6%;
  }
}

@media screen and (min-width: 365px) and (max-width: 400px) {
  .fa-location-dot {
    position: relative;
    left: 3%;
  }
}

.links {
  line-height: 15px;
  text-align: center;
}

.infos {
  line-height: 20px;
  font-style: normal;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.brand--foot .title {
  color: #fff;
}

.brand--foot .kicker {
  color: var(--gold);
}

.brand--foot .bar {
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.footer-tag {
  color: #c9c9cf;
  margin: 8px 0 14px;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.foot-chip {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #e7e7ea;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.foot-chip:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  border-color: transparent;
  box-shadow: 0 10px 22px var(--ring);
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  margin: 0 0 10px;
}

.foot-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.foot-nav a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 0;
  text-decoration: none;
  color: #e7e7ea;
  opacity: .92;
  transition: color .18s ease, opacity .18s ease, transform .18s ease;
}

.foot-nav a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  opacity: .8;
}

.foot-nav a:hover {
  color: var(--gold);
  opacity: 1;
  transform: translateX(2px);
}

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

.foot-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.foot-list i {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  color: var(--gold);
}

.foot-list a {
  color: #e7e7ea;
  text-decoration: none;
  opacity: .95;
}

.foot-list a:hover {
  color: var(--gold);
  opacity: 1;
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, .09);
  text-align: center;
  padding: 16px 0;
  color: #9ea0a8;
  font-size: .95rem;
}


/* ========================================================================== */
/* =========================== 12) WhatsApp Widget ========================== */
/* ========================================================================== */

#zap-widget.zap {
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  z-index: 2147483647;
  width: auto !important;
  height: auto !important;
  pointer-events: none;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

#zap-widget .zap-btn {
  pointer-events: auto;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #22c55e;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
  transition: transform .15s ease, box-shadow .15s ease, background .50s ease;
}

#zap-widget .zap-btn:hover {
  transform: translateY(-2px);
  background: #18a74c;
}

.fa-brands.icon {
  font-size: 30px;
  position: relative;
  left: 1px;
  color: #fff;
}

#zap-widget .zap-panel {
  position: fixed;
  right: 22px;
  bottom: 30px;
  width: 360px;
  max-width: calc(100vw - 32px);
  border-radius: 16px;
  overflow: hidden;
  background: #0f1720;
  opacity: 0;
  transform: translateY(6px) scale(.98);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

#zap-widget.open .zap-panel {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

#zap-widget.open .zap-btn {
  display: none;
}

#zap-widget.open .zap-close {
  opacity: 1;
  display: initial;
}

#zap-widget .zap-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #22c55e;
  color: #062a15;
  font-weight: 900;
}

#zap-widget .zap-close {
  pointer-events: auto;
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  color: #062a15;
  opacity: 0;
  display: none;
}

#zap-widget .zap-close:hover {
  background: rgba(0, 0, 0, .06);
}

#zap-widget .zap-body {
  padding: 16px;
  background: #101418;
}

#zap-widget .zap-bubble {
  position: relative;
  background: #4b5563;
  color: #f3f4f6;
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 15px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05);
}

#zap-widget .zap-bubble::before {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -12px;
  width: 0;
  height: 0;
  border-top: 12px solid #4b5563;
  border-left: 12px solid transparent;
}

#zap-widget .zap-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px 16px 16px;
  text-decoration: none;
  font-weight: 900;
  background: linear-gradient(135deg, #68ee9d, #22c55e);
  color: #000000;
  padding: 14px 16px;
  border-radius: 12px;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

#zap-widget .zap-cta:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
}

#zap-widget .zap-cta svg {
  width: 22px;
  height: 22px;
  fill: #062a15;
}

@media (max-width: 520px) {
  #zap-widget.zap {
    right: 12px !important;
    bottom: 12px !important;
  }

  #zap-widget .zap-panel {
    right: 12px;
    bottom: 30px;
    width: 320px;
  }
}

section#faq {
  background-color: var(--soft);
}

#faq .head p {
  max-width: 720px;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  overflow: hidden;
}

.faq-heading {
  margin: 0;
}

.faq-trigger {
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
}

.faq-trigger:hover {
  background: #fafafa;
}

.faq-trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 6px var(--ring) inset;
  border-radius: 8px;
  background: #fafafa;
}

.faq-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  position: relative;
}

.faq-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: .9;
  transition: transform .22s ease, opacity .22s ease;
}

.faq-trigger[aria-expanded="true"] .faq-icon::before {
  transform: rotate(-135deg);
  opacity: 1;
}

.faq-panel {
  overflow: hidden;
  height: auto;
  transition: height .24s ease;
  background: #fff;
  border-top: 1px solid #eee;
  will-change: height;
}

.faq-panel[hidden] {
  display: none !important;
  height: 0 !important;
  max-height: 0 !important;
}

.faq-panel__inner {
  padding: 14px 18px 18px;
  color: #4b4b51;
}

@media (max-width: 640px) {
  .faq-trigger {
    padding: 16px;
  }

  .faq-panel__inner {
    padding: 12px 16px 16px;
  }
}


@media (prefers-reduced-motion: reduce) {
  .faq-panel {
    transition: none;
  }

  .faq-icon::before {
    transition: none;
  }
}

.owner-contacts {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding-bottom: 20px;
}

.oc-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .12);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    filter .18s ease,
    border-color .18s ease;
}

.oc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}

.oc-btn i {
  font-size: 16px;
  color: var(--gold);
}

.oc-btn span {
  display: none !important;
}

@supports (backdrop-filter: blur(6px)) {
  .oc-btn {
    background: rgba(51, 51, 51, 0.415);
    backdrop-filter: blur(6px);
  }
}

.oc-btn[href*="wa.me"]:hover {
  filter: saturate(1.05);
}

.oc-btn[href*="instagram.com"]:hover {
  filter: saturate(1.08);
}