*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --chalk: #f5f2ec;
  --white: #ffffff;
  --ink: #1c1a17;
  --ink2: #2e2b27;
  --mist: #8a8680;
  --gold: #b8963e;
  --gold2: #d4af6a;
  --gold-pale: #f0e4c8;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(.22, .68, 0, 1.2);
  --ease2: cubic-bezier(.4, 0, .2, 1)
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px
}

body {
  font-family: var(--sans);
  background: var(--chalk);
  color: var(--ink);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6
}

img {
  display: block;
  max-width: 100%
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

button {
  cursor: pointer;
  font-family: var(--sans);
  border: none;
  background: none
}

#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  z-index: 9999;
  transition: width .1s linear
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, box-shadow .4s, height .4s
}

#navbar.scrolled {
  background: rgba(28, 26, 23, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(184, 150, 62, .2);
  height: 64px
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: .5rem
}

.nav-brand span {
  color: var(--gold2)
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center
}

.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  position: relative;
  transition: color .3s
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold2);
  transition: width .35s
}

.nav-links a:hover {
  color: var(--white)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: .55rem 1.4rem;
  border-radius: 2px;
  font-weight: 500;
  font-size: .82rem !important;
  letter-spacing: .08em;
  transition: background .3s, transform .2s
}

.nav-cta:hover {
  background: var(--gold2);
  transform: translateY(-1px)
}

.nav-cta::after {
  display: none !important
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: .3s;
  transform-origin: center
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  display: flex
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--white);
  font-style: italic;
  transition: color .3s
}

.mobile-menu a:hover {
  color: var(--gold2)
}

.mobile-menu .m-cta {
  margin-top: 1rem;
  background: var(--gold);
  color: var(--ink);
  padding: .8rem 2.5rem;
  border-radius: 2px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 1rem;
  font-weight: 500
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease2), transform .7s var(--ease2)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1 {
  transition-delay: .1s
}

.reveal-delay-2 {
  transition-delay: .2s
}

.reveal-delay-3 {
  transition-delay: .3s
}

.reveal-delay-4 {
  transition-delay: .4s
}

.reveal-delay-5 {
  transition-delay: .5s
}

.section {
  padding: 100px 5%
}

.section-dark {
  background: var(--ink);
  color: var(--white)
}

.section-chalk {
  background: var(--chalk)
}

.section-white {
  background: var(--white)
}

.eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem
}

.eyebrow-light {
  color: var(--gold2)
}

h2.display {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em
}

.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0
}

#hero {
  min-height: 100vh;
  background: var(--ink);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('/img/hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate
}

@keyframes heroZoom {
  from {
    transform: scale(1.04)
  }

  to {
    transform: scale(1.12)
  }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12, 10, 8, .88) 0%, rgba(12, 10, 8, .72) 55%, rgba(12, 10, 8, .55) 100%)
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 60% 70% at 75% 50%, rgba(184, 150, 62, .06) 0%, transparent 65%);
  pointer-events: none
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 140px 5% 100px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease2) .3s forwards
}

.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold)
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -.03em;
  max-width: 780px;
  opacity: 0;
  animation: fadeUp .9s var(--ease2) .5s forwards
}

.hero-title em {
  font-style: italic;
  color: var(--gold2)
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .6);
  max-width: 480px;
  margin-top: 1.5rem;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp .9s var(--ease2) .7s forwards
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease2) .9s forwards
}

.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--gold);
  color: var(--ink);
  padding: .9rem 2rem;
  border-radius: 2px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  transition: background .3s, transform .2s
}

.btn-primary-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px)
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--white);
  padding: .9rem 2rem;
  border-radius: 2px;
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .06em;
  transition: border-color .3s, background .3s, transform .2s
}

.btn-outline-white:hover {
  border-color: var(--gold2);
  background: rgba(184, 150, 62, .08);
  transform: translateY(-2px)
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  opacity: 0;
  animation: fadeUp .9s var(--ease2) 1.1s forwards
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1
}

.stat-label {
  font-size: .78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .3rem
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .3);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s var(--ease2) 1.5s forwards
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(1)
  }

  50% {
    opacity: 1;
    transform: scaleY(1.15)
  }
}

.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gold);
  border: 2px solid var(--gold)
}

.dif-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background .3s
}

.dif-card:hover {
  background: var(--ink)
}

.dif-card:hover .dif-title,
.dif-card:hover .dif-text {
  color: var(--white)
}

.dif-card:hover .dif-icon {
  color: var(--gold2)
}

.dif-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
  transition: color .3s
}

.dif-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .5rem;
  transition: color .3s
}

.dif-text {
  font-size: .88rem;
  color: var(--mist);
  line-height: 1.65;
  transition: color .3s
}

.equipe-header {
  text-align: center;
  margin: 0 auto 4rem;
  max-width: 560px
}

.equipe-header h2 {
  color: var(--white)
}

.equipe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  background: rgba(184, 150, 62, .2);
  max-width: 1100px;
  margin: 0 auto
}

.membro-card {
  background: var(--ink2);
  padding: 3rem;
  display: flex;
  flex-direction: row;
  gap: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: background .4s
}

.membro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--gold2));
  transition: height .5s var(--ease2)
}

.membro-card:hover {
  background: #252220
}

.membro-card:hover::before {
  height: 100%
}

.membro-foto-wrap {
  position: relative;
  align-self: flex-start
}

.membro-foto {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  filter: grayscale(15%);
  display: block
}

.membro-foto-placeholder {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4/5;
  background: rgba(255, 255, 255, .04);
  border: 1px dashed rgba(184, 150, 62, .3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, .25)
}

.membro-foto-placeholder svg {
  opacity: .35
}

.membro-foto-placeholder span {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase
}

.membro-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 1rem 1.25rem;
  text-align: center;
  font-family: var(--serif)
}

.membro-badge .badge-num {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1
}

.membro-badge .badge-label {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .2rem
}

.membro-badge-future {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(184, 150, 62, .15);
  border: 1px solid rgba(184, 150, 62, .3);
  color: var(--gold2);
  padding: 1rem 1.25rem;
  text-align: center;
  font-family: var(--serif)
}

.membro-badge-future .badge-label {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase
}

.membro-info {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  flex: 1;
  justify-content: center
}

.membro-role {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold)
}

.membro-nome {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15
}

.membro-nome em {
  font-style: italic;
  color: var(--gold2)
}

.membro-bio {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8
}

.membro-bio strong {
  color: var(--gold2);
  font-weight: 500
}

.membro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .25rem
}

.membro-tag {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  padding: .3rem .75rem;
  border: 1px solid rgba(184, 150, 62, .3);
  color: rgba(255, 255, 255, .45);
  border-radius: 1px
}

.membro-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .6
}

@media(max-width:768px) {
  .equipe-grid {
    grid-template-columns: 1fr
  }

  .membro-card {
    padding: 2.5rem 1.5rem;
    flex-direction: column
  }

  .membro-foto,
  .membro-foto-placeholder {
    max-width: 100%
  }
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem
}

.section-header h2 {
  color: var(--ink)
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto
}

.servico-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .07);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease2), box-shadow .3s;
  cursor: default
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease2)
}

.servico-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 242, 236, .92);
  transition: background .45s var(--ease2);
  z-index: 0
}

.servico-card:hover::after {
  background: rgba(28, 26, 23, .78)
}

.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18)
}

.servico-card:hover::before {
  transform: scaleX(1)
}

.servico-card:hover .servico-num {
  color: rgba(212, 175, 106, .18)
}

.servico-card:hover .servico-name {
  color: var(--white)
}

.servico-card:hover .servico-desc {
  color: rgba(255, 255, 255, .6)
}

.servico-card:hover .servico-link {
  color: var(--gold2)
}

.servico-card:hover .servico-link:hover {
  color: var(--white)
}

.servico-card>* {
  position: relative;
  z-index: 1
}

.servico-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .6s var(--ease2);
  z-index: 0
}

.servico-card:hover .servico-bg {
  transform: scale(1.06)
}

.servico-card[data-bg="marmore"] .servico-bg {
  background-image: url('../img/marble.jpg')
}

.servico-card[data-bg="cimento"] .servico-bg {
  background-image: url('https://images.unsplash.com/photo-1604709177225-055f99402ea3?w=800&q=80&fit=crop')
}

.servico-card[data-bg="madeira"] .servico-bg {
  background-image: url('../img/galeria/IMG_2.jpeg')
}

.servico-card[data-bg="grafiato"] .servico-bg {
  background-image: url('../img/galeria/IMG_7.jpg')
}

.servico-card[data-bg="3d"] .servico-bg {
  background-image: url('../img/galeria/IMG_4.jpeg')
}

.servico-card[data-bg="stencil"] .servico-bg {
  background-image: url('../img/galeria/IMG_6.jpeg')
}

.servico-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(184, 150, 62, .12);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  user-select: none
}

.servico-icon {
  font-size: 1.8rem;
  margin-bottom: 1.25rem
}

.servico-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .6rem;
  color: var(--ink)
}

.servico-desc {
  font-size: .87rem;
  color: var(--mist);
  line-height: 1.65;
  margin-bottom: 1.5rem
}

.servico-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .3s, color .3s
}

.servico-link:hover {
  gap: .7rem;
  color: var(--ink)
}

.depo-section {
  background: var(--chalk)
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto
}

.depo-card {
  background: var(--white);
  padding: 2rem;
  border-left: 3px solid var(--gold);
  transition: transform .3s var(--ease2)
}

.depo-card:hover {
  transform: translateY(-4px)
}

.depo-quote {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: .5rem
}

.depo-text {
  font-size: .9rem;
  color: var(--mist);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic
}

.depo-footer {
  display: flex;
  align-items: center;
  gap: .8rem
}

.depo-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-pale)
}

.depo-name {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink)
}

.depo-service {
  font-size: .75rem;
  color: var(--mist);
  letter-spacing: .05em
}

.depo-stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: 2px
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 4px
}

.galeria-item {
  position: relative;
  overflow: hidden;
  background: var(--ink2)
}

.galeria-item:first-child {
  grid-column: span 2;
  grid-row: span 2
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease2), filter .6s;
  filter: brightness(.85)
}

.galeria-item:hover img {
  transform: scale(1.06);
  filter: brightness(1)
}

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 26, 23, .8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem
}

.galeria-item:hover .galeria-overlay {
  opacity: 1
}

.galeria-label {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold2)
}

.cta-section {
  background: var(--ink);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(184, 150, 62, .07) 0%, transparent 70%);
  pointer-events: none
}

.cta-section h2 {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  max-width: 640px;
  margin: 0 auto 1rem
}

.cta-section p {
  color: rgba(255, 255, 255, .5);
  font-size: .95rem;
  max-width: 460px;
  margin: 0 auto 2.5rem;
  line-height: 1.75
}

#mapa {
  line-height: 0
}

#mapa iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0
}

footer {
  background: var(--ink2);
  color: rgba(255, 255, 255, .55);
  font-size: .87rem
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 60px 5% 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .4rem
}

.footer-brand span {
  color: var(--gold2)
}

.footer-tagline {
  font-size: .85rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem
}

.footer-socials {
  display: flex;
  gap: .75rem
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 2px;
  color: rgba(255, 255, 255, .5);
  font-size: 1rem;
  transition: border-color .3s, color .3s, background .3s
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 150, 62, .08)
}

.footer-col h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: .75rem
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--gold)
}

.footer-col li {
  margin-bottom: .55rem
}

.footer-col a {
  color: rgba(255, 255, 255, .45);
  transition: color .3s
}

.footer-col a:hover {
  color: var(--gold2)
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-bottom: .7rem;
  line-height: 1.5
}

.footer-contact li span:first-child {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .1rem
}

.footer-contact a {
  color: rgba(255, 255, 255, .45);
  transition: color .3s
}

.footer-contact a:hover {
  color: var(--gold2)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 5%;
  font-size: .78rem;
  color: rgba(255, 255, 255, .3)
}

.footer-bottom a {
  color: rgba(255, 255, 255, .4);
  transition: color .3s
}

.footer-bottom a:hover {
  color: var(--gold2)
}

#whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  background: #25d366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: transform .3s var(--ease), box-shadow .3s;
  animation: waPulse 3s ease-in-out infinite
}

#whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .55)
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4)
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, .65)
  }
}

#back-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 997;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, background .3s
}

#back-top.visible {
  opacity: 1;
  pointer-events: all
}

#back-top:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink)
}

@media(max-width:1024px) {
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .depo-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto
  }

  .galeria-item:first-child {
    grid-column: span 2;
    grid-row: span 1
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }
}

@media(max-width:768px) {
  .section {
    padding: 70px 5%
  }

  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .dif-grid {
    grid-template-columns: 1fr;
    gap: 0
  }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .sobre-img-badge {
    right: 0;
    bottom: -1rem
  }

  .servicos-grid {
    grid-template-columns: 1fr
  }

  .depo-grid {
    grid-template-columns: 1fr
  }

  .galeria-grid {
    grid-template-columns: 1fr 1fr
  }

  .galeria-item:first-child {
    grid-column: span 2
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .footer-bottom {
    flex-direction: column;
    gap: .5rem;
    text-align: center
  }

  .hero-stats {
    gap: 1.5rem
  }
}

@media(max-width:480px) {
  .hero-title {
    font-size: 2.4rem
  }

  .galeria-grid {
    grid-template-columns: 1fr
  }

  .galeria-item:first-child {
    grid-column: span 1
  }

  .hero-actions {
    flex-direction: column
  }

  .btn-primary-gold,
  .btn-outline-white {
    justify-content: center
  }
}