:root {
  --bg: #0e0b08;
  --bg-2: #14100c;
  --bg-3: #1a1510;
  --surface: #201a14;
  --line: rgba(198, 161, 91, 0.22);

  --beige: #f4ede1;
  --beige-2: #ece2d0;
  --tint: #eee3d2;

  --nude: #d8c3a3;
  --gold: #c6a15b;
  --gold-light: #ecd9ae;
  --rose: #c48a8f;
  --rose-deep: #a96a72;

  --text-dark: #2b241c;
  --muted-dark: #8b6f4f;

  --text-light: #f5efe4;
  --muted-light: #b3a48d;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", "Segoe UI", Arial, sans-serif;

  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--text-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #1a130c;
  padding: 0.6rem 1rem;
  z-index: 500;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-narrow {
  max-width: 780px;
}

.center {
  text-align: center;
}

/* ---------- Typography ---------- */

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.1rem;
  color: var(--text-light);
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-style: italic;
  color: var(--nude);
  margin-bottom: 1.25rem;
}

.section-text {
  color: var(--muted-light);
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.section-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted-light);
}

/* ---------- Light sections ---------- */

.section {
  padding: 4.5rem 0;
  background: var(--bg);
}

.section-dark {
  background: var(--bg-2);
}

.section-tint {
  background: var(--tint);
  color: var(--text-dark);
}

.section-tint .section-title {
  color: var(--text-dark);
}

.section-tint .lead {
  color: var(--rose-deep);
}

.section-tint .section-text {
  color: var(--muted-dark);
}

.section-tint .eyebrow {
  color: var(--rose-deep);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95rem 1.8rem;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #201810;
  box-shadow: 0 10px 28px rgba(198, 161, 91, 0.28);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(198, 161, 91, 0.38);
}

.btn-ghost {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-ghost:hover {
  background: rgba(198, 161, 91, 0.1);
  transform: translateY(-2px);
}

.section-tint .btn-ghost {
  border-color: var(--rose-deep);
  color: var(--rose-deep);
}

.section-tint .btn-ghost:hover {
  background: rgba(169, 106, 114, 0.1);
}

.btn-lg {
  padding: 1.05rem 2.1rem;
  font-size: 0.82rem;
}

/* ---------- Header / Nav ---------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(14, 11, 8, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(198, 161, 91, 0.14);
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: rgba(10, 8, 6, 0.94);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

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

.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.brand-tag {
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-left: 0.2em;
}

.nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #0f0c09;
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.25rem 1.5rem;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}

.nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-list a {
  display: block;
  padding: 0.65rem 0.25rem;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid rgba(198, 161, 91, 0.1);
  transition: color 0.2s, padding-left 0.2s;
}

.nav-list a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

.nav-cta {
  margin-top: 1.1rem;
  width: 100%;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 9rem 0 0;
  background:
    radial-gradient(60% 90% at 85% 10%, rgba(198, 161, 91, 0.12), transparent 60%),
    radial-gradient(50% 80% at 10% 90%, rgba(169, 106, 114, 0.08), transparent 60%),
    var(--bg);
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(3rem, 9vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 1.4rem;
}

.hero-title-light {
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}

.hero-slogan {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-style: italic;
  color: var(--nude);
  margin-bottom: 0.6rem;
}

.hero-sub {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--muted-light);
  margin-bottom: 2rem;
}

.hero-sub strong {
  color: var(--gold-light);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-photo {
  position: relative;
  margin: 0 -1.25rem;
}

.hero-photo-frame {
  position: relative;
  overflow: hidden;
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 11, 8, 0.4), transparent 35%);
  pointer-events: none;
}

.hero-photo-frame img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero-caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.25rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
  z-index: 2;
}

/* ---------- Service cards ---------- */

.cards {
  display: grid;
  gap: 1.15rem;
  margin-top: 2.5rem;
}

.card {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(198, 161, 91, 0.45);
  box-shadow: var(--shadow);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.card-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--muted-light);
  margin-bottom: 1.2rem;
}

.card-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s, gap 0.2s;
}

.card-link::after {
  content: "→";
  transition: transform 0.2s;
}

.card-link:hover {
  color: var(--gold-light);
}
.card-link:hover::after {
  transform: translateX(4px);
}

/* ---------- Filters ---------- */

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0 2.2rem;
}

.filter-btn {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--muted-light);
  transition: all 0.25s;
}

.filter-btn:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

.filter-btn.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #201810;
  font-weight: 600;
}

/* ---------- Portfolio grid ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  aspect-ratio: 4 / 5;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.grid-item:hover img {
  transform: scale(1.06);
}

.grid-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(10, 8, 6, 0.85), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
}

.grid-item:hover .grid-item-overlay,
.grid-item:focus-visible .grid-item-overlay {
  opacity: 1;
}

.grid-item-cat {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.grid-item-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text-light);
}

.grid-item.hidden {
  display: none;
}

.grid-item {
  animation: fadeIn 0.45s var(--ease);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.grid-instagram {
  grid-template-columns: repeat(3, 1fr);
  margin: 2.5rem 0;
  gap: 0.5rem;
}

.grid-instagram .grid-item {
  aspect-ratio: 1 / 1;
  border-radius: 2px;
}

/* ---------- Sobre ---------- */

.sobre-inner {
  display: grid;
  gap: 2.5rem;
}

.sobre-photo {
  position: relative;
}

.sobre-photo::before {
  content: "";
  position: absolute;
  inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  pointer-events: none;
}

.sobre-photo img {
  position: relative;
  border-radius: 4px;
  width: 100%;
}

.sobre-text p {
  color: var(--muted-light);
  margin-bottom: 1.1rem;
}

.sobre-text strong {
  color: var(--gold-light);
  font-weight: 600;
}

.stats {
  display: grid;
  gap: 1.4rem;
  margin: 2rem 0 2.2rem;
}

.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted-light);
}

/* ---------- Check list ---------- */

.check-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 2.4rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--text-dark);
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.check {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(169, 106, 114, 0.14);
  color: var(--rose-deep);
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid rgba(169, 106, 114, 0.35);
}

/* ---------- CTA ---------- */

.cta-section {
  position: relative;
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(198, 161, 91, 0.16), transparent 65%),
    var(--bg-2);
}

.cta-section .lead {
  color: var(--muted-light);
}

.cta-section .section-note {
  color: var(--muted-light);
}

/* ---------- Footer ---------- */

.footer {
  background: #0a0806;
  border-top: 1px solid rgba(198, 161, 91, 0.15);
  padding: 3.5rem 0 2rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-brand p {
  color: var(--muted-light);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-top: 0.4rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.6rem;
  margin: 1.6rem 0;
}

.footer-nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nude);
  transition: color 0.2s;
}

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

.footer-contact {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted-light);
}

.footer-contact a {
  color: var(--gold-light);
  font-weight: 500;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(198, 161, 91, 0.12);
  font-size: 0.72rem;
  color: #6d5f4a;
  text-align: center;
}

/* ---------- WhatsApp float ---------- */

.wa-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease);
}

.wa-float:hover {
  transform: scale(1.08);
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(6, 5, 4, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 720px;
  width: 100%;
  text-align: center;
  transform: translateY(12px);
  transition: transform 0.35s var(--ease);
}

.lightbox.open .lightbox-content {
  transform: translateY(0);
}

.lightbox-content img {
  width: 100%;
  max-height: 62vh;
  object-fit: cover;
  border-radius: 4px;
}

.lightbox-info {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-top: 1rem;
  padding: 1.6rem 1.4rem;
  text-align: left;
}

.lightbox-cat {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.lightbox-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.lightbox-text {
  font-size: 0.88rem;
  color: var(--muted-light);
  margin-bottom: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold-light);
  width: 48px;
  height: 48px;
  transition: color 0.2s, transform 0.2s;
  z-index: 2;
}

.lightbox-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.4rem;
  color: var(--gold-light);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  z-index: 2;
}

.lightbox-nav:hover {
  color: var(--gold);
}

.lightbox-prev {
  left: 0.4rem;
}

.lightbox-next {
  right: 0.4rem;
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ---------- Tablet ---------- */

@media (min-width: 640px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .grid-instagram {
    grid-template-columns: repeat(6, 1fr);
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .ba {
    aspect-ratio: 4 / 5;
  }
}

/* ---------- Desktop ---------- */

@media (min-width: 900px) {
  .container {
    padding: 0 2rem;
  }

  .section {
    padding: 6.5rem 0;
  }

  .header-inner {
    height: 84px;
  }

  .nav {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2.2rem;
    overflow: visible;
    max-height: none;
  }

  .nav-list {
    flex-direction: row;
    gap: 1.8rem;
  }

  .nav-list a {
    padding: 0;
    border: none;
    font-size: 0.76rem;
    color: var(--nude);
  }

  .nav-list a:hover {
    color: var(--gold);
    padding-left: 0;
  }

  .nav-cta {
    margin-top: 0;
    width: auto;
    padding: 0.7rem 1.3rem;
    font-size: 0.7rem;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    padding: 10rem 0 0;
  }

  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 4rem;
  }

  .hero-photo {
    margin: 0;
  }

  .hero-photo-frame img {
    min-height: 620px;
    max-height: 680px;
  }

  .hero-caption {
    left: 2rem;
    bottom: 1.8rem;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .sobre-inner {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 5rem;
  }
}

@media (min-width: 1120px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Vídeos ---------- */

.videos-filters {
  display: flex;
  gap: 0.5rem;
  margin: 2rem 0 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.videos-filters::-webkit-scrollbar {
  display: none;
}

.videos-filters .filter-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.vcard {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid rgba(198, 161, 91, 0.16);
  padding: 0;
  text-align: left;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  animation: vappear 0.5s var(--ease);
  cursor: pointer;
}

@keyframes vappear {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.vcard:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 161, 91, 0.5);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
}

.vposter {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.vcard:hover .vposter {
  transform: scale(1.05);
}

.vcard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 10, 7, 0.88) 0%, rgba(12, 10, 7, 0.2) 42%, transparent 65%);
  pointer-events: none;
}

.vplay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(14, 11, 8, 0.6);
  border: 1px solid rgba(236, 217, 174, 0.85);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}

.vcard:hover .vplay {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--gold);
  color: #201810;
  box-shadow: 0 12px 34px rgba(198, 161, 91, 0.5);
}

.vbadge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-light);
  background: rgba(10, 8, 6, 0.72);
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  backdrop-filter: blur(4px);
}

.vcard-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem 1.1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.vcard-cat {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.vcard-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--text-light);
}

.vcard-text {
  display: none;
  font-size: 0.78rem;
  color: var(--muted-light);
  line-height: 1.5;
  margin-top: 0.3rem;
}

.videos-cta {
  margin-top: 4rem;
}

.videos-cta-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.videos-cta-text {
  color: var(--muted-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.videos-final-cta {
  padding-top: 2.6rem;
  border-top: 1px solid var(--line);
}

/* ---------- Modal de vídeo ---------- */

.vmodal {
  position: fixed;
  inset: 0;
  z-index: 450;
  background: rgba(7, 5, 4, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.vmodal.open {
  opacity: 1;
  visibility: visible;
}

.vmodal-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem 1.4rem;
}

#vmodal-video {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.7);
  background: #000;
  transform: scale(0.96);
  opacity: 0.4;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.vmodal.open #vmodal-video {
  transform: scale(1);
  opacity: 1;
}

.vmodal-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold-light);
  background: rgba(20, 16, 12, 0.55);
  border: 1px solid rgba(198, 161, 91, 0.35);
  transition: transform 0.25s, color 0.25s, background 0.25s;
}

.vmodal-close:hover {
  color: #201810;
  background: var(--gold);
  transform: rotate(90deg);
}

@media (max-width: 640px) {
  .vmodal-stage {
    padding: 3.2rem 0.4rem 0.4rem;
  }

  #vmodal-video {
    width: 100%;
    max-height: calc(100dvh - 56px);
    object-fit: contain;
    border-radius: 12px;
  }
}

/* ---------- Carrossel ---------- */

.carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.carousel-track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.carousel-track.carousel-no-anim {
  transition: none;
}

.carousel-glide {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0 0.45rem;
}

.carousel-glide > * {
  width: 100%;
}

.carousel-track,
.carousel-track * {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  margin-top: 1.7rem;
  min-height: 2.5rem;
}

.carousel.is-single .carousel-controls {
  visibility: hidden;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(198, 161, 91, 0.45);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #201810;
}

.carousel-arrow:active {
  transform: scale(0.94);
}

.carousel-arrow.is-inactive {
  opacity: 0.35;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(198, 161, 91, 0.55);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.carousel-dot:hover {
  border-color: var(--gold);
}

.carousel-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.25);
}

@media (min-width: 640px) {
  .carousel-glide {
    flex-basis: 50%;
  }
}

@media (min-width: 900px) {
  .carousel-glide {
    flex-basis: 33.3333%;
  }
}

/* ---------- Carrossel responsivo de serviços ---------- */

.cards-controls {
  display: none;
}

@media (max-width: 899px) {
  .cards {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    padding: 0.25rem 0.5rem 1rem;
  }

  .cards::-webkit-scrollbar {
    display: none;
  }

  .cards .card {
    flex: 0 0 84%;
    min-width: 0;
    scroll-snap-align: center;
  }

  .cards-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.15rem;
    margin-top: 0.75rem;
  }
}