/* ============================================================
   MONTEIRO & ASSOCIADOS — style.css
   ============================================================ */

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

:root {
  --ink: #0f0e0c;
  --gold: #b89a5a;
  --gold-light: #d4b87a;
  --cream: #f5f2eb;
  --warm-gray: #8c8880;
  --white: #fdfcfa;
  --card-bg: #ffffff;
  --border: rgba(184,154,90,0.18);
  --shadow: 0 4px 40px rgba(15,14,12,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ─────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}

/* ── HEADER / NAV ──────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,252,250,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow .3s;
}
header.scrolled { box-shadow: 0 2px 30px rgba(15,14,12,0.06); }

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.50em;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  text-decoration: none;
  display: flex; align-items: center; gap: .6rem;
}
.logo-mark {
  width: 32px; height: 32px;
  /* border: 1.0px solid var(--gold); */
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--gold);
}

nav { display: flex; align-items: center; gap: 2rem; }
nav a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--warm-gray);
  transition: color .2s;
}
nav a:hover { color: var(--gold); }

.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: .55rem 1.4rem;
  font-size: .78rem !important;
  letter-spacing: .1em;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1.5px; background: var(--ink); transition: .3s; }

/* ── HERO ──────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8vw 5vw 8vw 8vw;
  position: relative; z-index: 1;
}

.eyebrow {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .8rem;
  opacity: 0; animation: fadeUp .8s .2s forwards;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.01em;
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp .8s .35s forwards;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero h3 em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: 1rem;
  color: var(--warm-gray);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 3rem;
  font-weight: 300;
  opacity: 0; animation: fadeUp .8s .5s forwards;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s .65s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: .9rem 2.2rem;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  transition: background .25s, transform .2s;
  display: inline-flex; align-items: center; gap: .6rem;
}
.btn-primary:hover { background: var(--ink); transform: translateY(-1px); }

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--ink);
  padding: .9rem 2.2rem;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  transition: border-color .25s, background .25s;
  display: inline-flex; align-items: center; gap: .6rem;
}
.btn-secondary:hover { border-color: var(--gold); background: rgba(184,154,90,0.06); }

.hero-right {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  overflow: hidden;
  height: 690px;
}

.hero-visual {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; animation: fadeIn 1.2s .3s forwards;
}

.hero-geo { position: relative; width: 380px; height: 380px; }
.geo-ring {
  position: absolute;
  border: 1px solid rgba(184,154,90,0.3);
  border-radius: 50%;
  animation: spin linear infinite;
}
.geo-ring:nth-child(1) { inset: 0; animation-duration: 30s; }
.geo-ring:nth-child(2) { inset: 30px; animation-duration: 20s; animation-direction: reverse; }
.geo-ring:nth-child(3) { inset: 60px; animation-duration: 40s; }

.geo-center {
  position: absolute; inset: 90px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  opacity: .12;
}

.hero-stats {
  position: absolute; bottom: 10%; left: 5%;
  display: flex; gap: 2.5rem;
}
.stat { text-align: left; }
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-l { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--warm-gray); margin-top: .3rem; }

.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--warm-gray);
  animation: bounce 2s infinite;
}
.scroll-hint svg { width: 18px; opacity: .4; }

/* ── SECTION SHARED ────────────────────── */
section { padding: 7rem 8vw; position: relative; }
.section-tag {
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1rem;
  display: flex; align-items: center; gap: .7rem;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: .95rem; color: var(--warm-gray); max-width: 520px;
  line-height: 1.8; font-weight: 300;
}

/* ── AREAS ─────────────────────────────── */
.areas { background: var(--white); }
.areas-header { margin-bottom: 4rem; }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}

.area-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  transition: background .3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.area-card:hover::before { transform: scaleX(1); }
.area-card:hover { background: var(--cream); }

.area-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.8rem;
  font-size: 1.3rem;
  color: var(--gold);
  transition: border-color .3s, background .3s;
}
.area-card:hover .area-icon { border-color: var(--gold); background: rgba(184,154,90,0.08); }

.area-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.area-card p { font-size: .88rem; color: var(--warm-gray); line-height: 1.75; font-weight: 300; }

.area-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.tag {
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--border);
  padding: .3rem .7rem;
  color: var(--warm-gray);
  transition: border-color .2s, color .2s;
}
.area-card:hover .tag { border-color: rgba(184,154,90,0.4); color: var(--gold); }

/* ── DIFFERENTIALS ─────────────────────── */
.differentials { background: var(--ink); color: var(--white); }
.differentials .section-tag { color: var(--gold-light); }
.differentials .section-tag::before { background: var(--gold-light); }
.differentials .section-title { color: var(--white); }
.differentials .section-sub { color: rgba(253,252,250,.5); }

.diff-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: center; }

.diff-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; }
.diff-item {
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(253,252,250,.08);
  display: flex; gap: 1.5rem; align-items: flex-start;
  opacity: 0; transform: translateX(-20px);
  transition: opacity .5s, transform .5s;
}
.diff-item.visible { opacity: 1; transform: none; }
.diff-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300;
  color: rgba(184,154,90,.3);
  line-height: 1; flex-shrink: 0; width: 2.5rem;
}
.diff-text h4 { font-size: 1rem; font-weight: 500; margin-bottom: .4rem; color: var(--white); }
.diff-text p { font-size: .85rem; color: rgba(253,252,250,.5); font-weight: 300; line-height: 1.7; }

.diff-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.diff-box {
  border: 1px solid rgba(253,252,250,.08);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color .3s, background .3s;
}
.diff-box:hover { border-color: var(--gold); background: rgba(184,154,90,.05); }
.diff-box .big-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300;
  color: var(--gold); line-height: 1; margin-bottom: .5rem;
}
.diff-box .big-l { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(253,252,250,.45); }
.diff-box.featured { grid-column: span 2; background: rgba(184,154,90,.06); border-color: rgba(184,154,90,.2); }

/* ── PROCESS ───────────────────────────── */
.process { background: var(--cream); }
.process-steps {
  display: flex; gap: 0;
  margin-top: 4rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 28px; left: 0; right: 0; height: 1px;
  background: var(--border);
}
.step { flex: 1; padding: 0 2rem 0 0; }
.step-dot {
  width: 56px; height: 56px;
  border: 1.5px solid var(--gold);
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300; color: var(--gold);
  position: relative; z-index: 1;
  margin-bottom: 1.8rem;
}
.step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400;
  margin-bottom: .6rem;
}
.step p { font-size: .83rem; color: var(--warm-gray); line-height: 1.7; font-weight: 300; }

/* ── TESTIMONIALS ──────────────────────── */
.testimonials { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.testi-card {
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  transition: box-shadow .3s;
}
.testi-card:hover { box-shadow: var(--shadow); }
.testi-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; color: var(--gold);
  opacity: .15; position: absolute;
  top: .5rem; left: 1.5rem; line-height: 1;
}
.testi-text { font-size: .92rem; line-height: 1.8; color: #444; font-weight: 300; margin-bottom: 2rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--cream); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--gold);
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
}
.testi-name { font-size: .85rem; font-weight: 500; }
.testi-role { font-size: .75rem; color: var(--warm-gray); }

/* ── CONTACT ───────────────────────────── */
.contact { background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 6rem; align-items: start; }

.contact-channels { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.channel {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none; color: var(--ink);
  transition: border-color .25s, box-shadow .25s, transform .2s;
}
.channel:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(184,154,90,.12); transform: translateX(4px); }
.channel-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.ch-wpp .channel-icon { background: #25D366; color: white; }
.ch-email .channel-icon { background: var(--ink); color: white; }
.ch-phone .channel-icon { background: var(--gold); color: white; }
.ch-linkedin .channel-icon { background: #0077B5; color: white; }
.channel-text .ch-label { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--warm-gray); }
.channel-text .ch-value { font-size: .95rem; font-weight: 500; margin-top: .1rem; }
.channel-arrow { margin-left: auto; color: var(--warm-gray); font-size: 1rem; transition: transform .2s; }
.channel:hover .channel-arrow { transform: translateX(4px); color: var(--gold); }

/* ── FORM ──────────────────────────────── */
.contact-form { background: var(--white); padding: 3rem; border: 1px solid var(--border); }
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: .5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; }
.form-submit {
  width: 100%;
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  margin-top: .5rem;
  transition: background .25s;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
}
.form-submit:hover { background: var(--gold); }
.privacy-note { font-size: .72rem; color: var(--warm-gray); margin-top: 1rem; text-align: center; }

/* ── FOOTER ────────────────────────────── */
footer { background: var(--ink); color: var(--white); padding: 4rem 8vw 2rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(253,252,250,.08); }
.footer-brand .logo { color: var(--white); margin-bottom: 1rem; display: inline-flex; }
.footer-brand p { font-size: .82rem; color: rgba(253,252,250,.4); line-height: 1.7; font-weight: 300; max-width: 260px; }
.footer-col h5 { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { font-size: .83rem; color: rgba(253,252,250,.45); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: .75rem; color: rgba(253,252,250,.25); }
.oab-badge { font-size: .72rem; letter-spacing: .1em; color: rgba(253,252,250,.25); }

/* ── WHATSAPP FLOAT ────────────────────── */
.wpp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  text-decoration: none; color: white; font-size: 1.6rem;
  animation: pulse 2.5s infinite;
  transition: transform .2s;
}
.wpp-float:hover { transform: scale(1.1); }
.wpp-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--ink); color: var(--white);
  padding: .4rem .9rem; font-size: .72rem; white-space: nowrap;
  opacity: 0; transition: opacity .2s;
  pointer-events: none;
}
.wpp-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-left-color: var(--ink);
}
.wpp-float:hover .wpp-tooltip { opacity: 1; }

/* ── BANNER CTA ────────────────────────── */
.cta-banner {
  background: var(--gold);
  padding: 4.5rem 8vw;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  max-width: 520px;
  line-height: 1.15;
}
.cta-banner .btn-white {
  background: var(--white);
  color: var(--gold);
  padding: .9rem 2.5rem;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s, color .25s;
}
.cta-banner .btn-white:hover { background: var(--ink); color: var(--white); }

/* ── ANIMATIONS ────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 36px rgba(37,211,102,.7); }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s, transform .7s;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE ────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 5rem 6vw; }
  .diff-layout, .contact-layout, .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; gap: 2.5rem; }
  .process-steps::before { display: none; }
  nav {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 2rem;
    border-bottom: 1px solid var(--border); gap: 1.2rem; z-index: 99;
  }
  nav.open { display: flex; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .diff-visual { grid-template-columns: 1fr 1fr; }
  section { padding: 5rem 6vw; }
  .contact-form { padding: 2rem; }
  .cta-banner { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* banner*................................................................................*/
.hero-visual{
  position:absolute;
  width:100%;
  height:700px;
  overflow:hidden;
  border-radius: 5px;
  
}

.hero-slider{
  position:relative;
  width:100%;
  height:100%;
}

.slide{
  position:absolute;
  inset:0;

  opacity:0;
  visibility:hidden;

  transition:
    opacity 1s ease,
    visibility 1s ease,
    transform 8s ease;

  transform:scale(1.05);
}

.slide.active{
  opacity:1;
  visibility:visible;
  transform:scale(1);
  z-index:2;
}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: center;
  filter:brightness(.72);
  /*opacity: 0.38; Efeito de desfoque para destacar o conteúdo sobreposto */
 
}

/* Overlay elegante */
.slide-overlay{
  position:absolute;
  left:60px;
  bottom:70px;

  max-width:500px;

  background:rgba(255,255,255,.08);
  backdrop-filter:blur(12px);

  padding:35px;
  border-radius:28px;

  border:1px solid rgba(255,255,255,.18);

  box-shadow:
    0 10px 40px rgba(0,0,0,.15);
}

.slide-overlay h3{
  color:#fff;
  font-size:2.5rem;
  line-height:1.1;
  margin-bottom:15px;

  font-family:serif;
}

.slide-overlay p{
  color:rgba(255,255,255,.9);
  line-height:1.8;
  font-size:1rem;
}

/* Navegação */
.slider-nav{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);

  display:flex;
  gap:12px;
  z-index:10;
}
.dot{
  width:12px;
  height:12px;
  border-radius:50%;

  background:rgba(255,255,255,.4);
  cursor:pointer;

  transition:.3s;
}

.dot.active{
  background:#c2a76d;
  transform:scale(1.2);
}
