:root {
  --rose: #9b5145;
  --rose-light: #f1d9d9;
  --muted: #8e7e7c;
  --blush: #e6b2b9;
  --rose-dark: #7c5651;
  --sand: #b09894;
  --cream: #d1bebc;
  --warm: #966b66;
  --bg: #fdf8f7;
  --bg-dark: #180e0d;
  --text: #221514;
  --text-light: #6b4f4c;
  --fd: "Playfair Display", Georgia, serif;
  --fb: "Jost", sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* LGPD */
#lgpd {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-dark);
  color: #f1d9d9;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  line-height: 1.6;
  transform: translateY(100%);
  animation: slideUp 0.5s 0.9s forwards;
}
@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}
#lgpd p {
  flex: 1;
  min-width: 220px;
}
#lgpd a {
  color: var(--blush);
  text-decoration: underline;
}
.lgpd-btns {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.lb-btn {
  padding: 0.48rem 1.1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-family: var(--fb);
  cursor: pointer;
  border: none;
  letter-spacing: 0.05em;
  transition: 0.3s;
}
.lb-ok {
  background: var(--rose);
  color: #fff;
}
.lb-ok:hover {
  background: var(--rose-dark);
}
.lb-no {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(209, 190, 188, 0.35);
}
.lb-no:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* NAV */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 2.5rem;
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
#nav.sc {
  background: rgba(253, 248, 247, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--cream);
}
.nlogo {
  height: 60px;
  width: 60px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(155, 81, 69, 0.3));
}
.nlinks {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nlinks a {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  transition: color 0.3s;
}
.nlinks a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.35s var(--ease);
}
.nlinks a:hover {
  color: var(--rose);
}
.nlinks a:hover::after {
  width: 100%;
}
.ncta {
  background: var(--rose) !important;
  color: #fff !important;
  padding: 0.5rem 1.3rem;
  border-radius: 100px;
}
.ncta:hover {
  background: var(--rose-dark) !important;
}
.ncta::after {
  display: none !important;
}
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: 0.35s var(--ease);
}
.ham.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ham.open span:nth-child(2) {
  opacity: 0;
}
.ham.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
#nmob {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#nmob.open {
  display: flex;
}
#nmob a {
  font-family: var(--fd);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
#nmob a:hover {
  color: var(--blush);
}
.nmc {
  position: absolute;
  top: 1.3rem;
  right: 2rem;
  font-size: 1.8rem;
  color: var(--sand);
  background: none;
  border: none;
  cursor: pointer;
}

/* HERO */
#hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hl {
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 4rem 4rem 5rem;
  position: relative;
  z-index: 1;
}
.hl::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 70px;
  background: var(--bg-dark);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 2;
}
.heb {
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fu 0.7s 0.3s forwards;
}
.hh1 {
  font-family: var(--fd);
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--rose-light);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fu 0.7s 0.5s forwards;
}
.hh1 em {
  font-style: italic;
  color: var(--blush);
}
.hsub {
  font-size: 0.91rem;
  color: var(--sand);
  line-height: 1.8;
  max-width: 355px;
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: fu 0.7s 0.7s forwards;
}
.hacts {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fu 0.7s 0.9s forwards;
}
@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bp {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--rose);
  color: #fff;
  padding: 0.85rem 1.9rem;
  border-radius: 100px;
  font-size: 0.77rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--fb);
  border: none;
  cursor: pointer;
  transition:
    background 0.35s,
    transform 0.35s,
    box-shadow 0.35s;
}
.bp:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(155, 81, 69, 0.3);
}
.bs {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  color: var(--cream);
  padding: 0.85rem 1.9rem;
  border-radius: 100px;
  font-size: 0.77rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(209, 190, 188, 0.3);
  transition:
    border-color 0.35s,
    color 0.35s;
}
.bs:hover {
  border-color: var(--cream);
  color: #fff;
}
.hr {
  position: relative;
  overflow: hidden;
}
.hr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.95);
}
.hbadge {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  background: rgba(253, 248, 247, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  padding: 0.6rem 1.2rem;
  font-size: 0.72rem;
  color: #fff;
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.pdot.opn {
  background: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.25);
  animation: pp 2s infinite;
}
.pdot.cls {
  background: var(--muted);
}
@keyframes pp {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

/* STATUS BAR */
#sb {
  background: var(--rose-light);
  color: var(--rose-dark);
  padding: 0.72rem 2rem;
  font-size: 0.77rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.8rem;
  flex-wrap: wrap;
}
.sdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.sdot.open {
  background: #4caf50;
}
.sdot.closed {
  background: var(--muted);
}
.sh {
  opacity: 0.65;
}

/* REVEAL */
.rev {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.rev.vis {
  opacity: 1;
  transform: translateY(0);
}

/* SECTIONS */
section {
  padding: 5.5rem 2.5rem;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
}
.sl {
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.6rem;
}
.st {
  font-family: var(--fd);
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.st em {
  font-style: italic;
  color: var(--rose);
}
.ss {
  color: var(--text-light);
  line-height: 1.8;
  max-width: 510px;
  font-size: 0.91rem;
}

/* SOBRE */
#sobre {
  background: #fff;
}
.sg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.si {
  position: relative;
}
.si-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
}
.si-acc {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 52%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 5px solid #fff;
  border-radius: 2px;
  box-shadow: 0 16px 50px rgba(155, 81, 69, 0.14);
}
.nums {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.ni {
  text-align: center;
    flex: 0 1 auto;
    /* não força largura fixa */
    min-width: 120px;
}
.nv {
  font-family: var(--fd);
  font-size: 2.5rem;
  color: var(--rose);
  line-height: 1;
}
.nl {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 0.25rem;
  letter-spacing: 0.04em;
}

/* SERVIÇOS */
#servicos {
  background: var(--bg);
}
.svh {
  text-align: center;
  margin-bottom: 3.5rem;
}
.svh .ss {
  margin: 0 auto;
}
.svg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.2rem;
}
.svc {
  background: #fff;
  border: 1px solid var(--rose-light);
  border-radius: 2px;
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s,
    border-color 0.4s;
}
.svc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--blush));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.svc:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 46px rgba(155, 81, 69, 0.11);
  border-color: var(--blush);
}
.svc:hover::before {
  transform: scaleX(1);
}
.svico {
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
}
.svn {
  font-family: var(--fd);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.svd {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.72;
}

/* GALERIA */
#galeria {
  background: var(--bg-dark);
  padding: 5.5rem 0;
}
.gh {
  padding: 0 2.5rem;
  margin-bottom: 2.8rem;
}
.gh .st {
  color: var(--rose-light);
}
.gh .sl {
  color: var(--blush);
}
.gh .ss {
  color: var(--sand);
}
.co {
  overflow: hidden;
}
.ct {
  display: flex;
  gap: 1rem;
  padding: 0 2.5rem;
  transition: transform 0.5s var(--ease);
}
.ci {
  flex: 0 0 calc(33.333% - 0.67rem);
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.ci img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ci:hover img {
  transform: scale(1.06);
}
.cov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(24, 14, 13, 0.72) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.ci:hover .cov {
  opacity: 1;
}
.clbl {
  font-size: 0.7rem;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cv {
  flex: 0 0 calc(33.333% - 0.67rem);
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  background: #000;
}
.cv video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.pio {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 14, 13, 0.35);
  transition: background 0.35s;
}
.cv:hover .pio {
  background: rgba(24, 14, 13, 0.55);
}
.pic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  transition:
    transform 0.35s,
    background 0.35s;
}
.cv:hover .pic {
  transform: scale(1.1);
  background: rgba(155, 81, 69, 0.5);
}
.cc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.2rem;
  padding: 0 2.5rem;
}
.cb {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(209, 190, 188, 0.3);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.35s,
    border-color 0.35s;
}
.cb:hover {
  background: var(--rose);
  border-color: var(--rose);
}
.cds {
  display: flex;
  gap: 0.45rem;
}
.cd {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(209, 190, 188, 0.3);
  cursor: pointer;
  transition:
    background 0.35s,
    width 0.35s;
}
.cd.on {
  background: var(--blush);
  width: 18px;
  border-radius: 3px;
}
.ic {
  text-align: center;
  margin-top: 2.8rem;
  padding: 0 2.5rem;
}
.ia {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-size: 0.77rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    opacity 0.35s,
    transform 0.35s;
}
.ia:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}
.ia svg {
  width: 17px;
  height: 17px;
}

/* DEPOIMENTOS */
#depo {
  background: var(--rose-light);
}
.dh {
  text-align: center;
  margin-bottom: 3rem;
}
.dg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 1.2rem;
}
.dc {
  background: #fff;
  padding: 1.8rem;
  border-radius: 2px;
  box-shadow: 0 4px 18px rgba(155, 81, 69, 0.07);
}
.ds {
  color: var(--rose);
  font-size: 0.93rem;
  margin-bottom: 0.9rem;
}
.dt {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.78;
  margin-bottom: 1.3rem;
  font-style: italic;
}
.da {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.dav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 1rem;
  color: var(--rose);
}
.dn {
  font-size: 0.82rem;
  font-weight: 500;
}
.dsi {
  font-size: 0.7rem;
  color: var(--muted);
}

/* LOCALIZAÇÃO */
#loc {
  background: #fff;
}
.lg {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.ld {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--rose-light);
}
.ld:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.lic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rose-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.93rem;
}
.ll {
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.35rem;
}
.lv {
  font-size: 0.89rem;
  color: var(--text);
  line-height: 1.6;
}
.sch {
  width: 100%;
  margin-top: 1rem;
}
.sch td {
  padding: 0.28rem 0;
  font-size: 0.82rem;
  color: var(--text-light);
}
.sch td:first-child {
  font-weight: 500;
  color: var(--text);
  width: 52%;
}
.cr {
  color: var(--muted) !important;
  font-style: italic;
}
.mw {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 16px 52px rgba(155, 81, 69, 0.09);
}
.mw iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* CONTATO */
#contato {
  background: var(--bg);
}
.cti {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.cti .ss {
  margin: 0 auto 2.8rem;
}
.ctc {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.ctd {
  flex: 1;
  min-width: 155px;
  background: #fff;
  border: 1px solid var(--rose-light);
  border-radius: 2px;
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  cursor: pointer;
}
.ctd:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(155, 81, 69, 0.11);
}
.ctico {
  font-size: 1.85rem;
  margin-bottom: 0.9rem;
}
.ctit {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.cts {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* FOOTER */
footer {
  background: var(--bg-dark);
  color: var(--sand);
  padding: 2.8rem 2.5rem;
}
.fi {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.flogo {
  height: 110px;
  width: 110px;
  filter: brightness(0) invert(0.72) sepia(0.4) saturate(0.6);
}
.fl {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.fl a {
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  color: var(--muted);
  transition: color 0.3s;
}
.fl a:hover {
  color: var(--cream);
}
.fc {
  font-size: 0.69rem;
  color: var(--muted);
  width: 100%;
  text-align: center;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0.8rem;
}

/* WA FLOAT */
#waF {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}
.wab {
  background: var(--bg-dark);
  color: var(--cream);
  font-size: 0.71rem;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  animation: waPop 0.6s 1.5s both;
}
@keyframes waPop {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.wsd {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.wsd.open {
  background: #4caf50;
}
.wsd.closed {
  background: var(--muted);
}
.wbtn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 22px rgba(37, 211, 102, 0.38);
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  cursor: pointer;
}
.wbtn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.52);
}
.wbtn svg {
  width: 27px;
  height: 27px;
  fill: #fff;
}

/* LIGHTBOX */
#lb {
  position: fixed;
  inset: 0;
  background: rgba(24, 14, 13, 0.96);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
#lb.on {
  display: flex;
}
#lb img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 2px;
}
#lb video {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 2px;
  background: #000;
}
#lbc {
  position: absolute;
  top: 1.3rem;
  right: 1.5rem;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* RESPONSIVE */
@media (max-width: 920px) {
  #hero {
    grid-template-columns: 1fr;
  }
  .hl {
    padding: 6.5rem 2rem 3rem;
    min-height: 62svh;
  }
  .hl::after {
    display: none;
  }
  .hr {
    height: 52svh;
  }
  .sg,
  .lg {
    grid-template-columns: 1fr;
  }
  .si-acc {
    right: 0;
  }
  .ci,
  .cv {
    flex: 0 0 calc(50% - 0.5rem);
  }
  .nlinks {
    display: none;
  }
  .ham {
    display: flex;
  }
  section {
    padding: 4rem 1.5rem;
  }
}
@media (max-width: 560px) {
  .ci,
  .cv {
    flex: 0 0 80%;
  }
}
