:root {
  --bg: #0b0b0b;
  --bg-soft: #111111;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #c8c8c8;
  --gold: #caa25a;
  --gold-dark: #b58b41;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
  --transition: 0.25s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-kicker {
  display: inline-block;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-heading h2,
.review-content h2,
.cta-box h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.15;
}

.section-text,
.review-content p,
.location-content p,
.cta-box p {
  color: var(--muted);
  font-size: 1.02rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #111111;
}

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-card {
  width: 100%;
  margin-top: auto;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(202, 162, 90, 0.42);
}

.btn-card:hover {
  background: rgba(202, 162, 90, 0.08);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.82) 100%),
    url("imagens/corte1.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(202, 162, 90, 0.18), transparent 38%);
  pointer-events: none;
}

.topbar,
.hero-content {
  position: relative;
  z-index: 2;
}

.topbar {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 150px;
  height: auto;
}

.instagram-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.instagram-link:hover {
  background: rgba(202, 162, 90, 0.12);
  border-color: rgba(202, 162, 90, 0.4);
}

.instagram-link svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0 90px;
}

.hero-badge {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(202, 162, 90, 0.14);
  border: 1px solid rgba(202, 162, 90, 0.35);
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-content h1 {
  max-width: 820px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero-content h1 span {
  color: var(--gold);
}

.hero-content p {
  max-width: 700px;
  color: #dddddd;
  font-size: 1.08rem;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* About */
.section-about .section-text {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

/* Gallery */
.section-gallery {
  padding-top: 24px;
}

.gallery-wrapper {
  overflow: hidden;
  user-select: none;
  cursor: grab;
  padding: 8px 0 4px;
}

.gallery-wrapper.dragging {
  cursor: grabbing;
}

.gallery-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 clamp(260px, 30vw, 360px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #171717;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-content h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.card-content p {
  color: var(--muted);
  margin-bottom: 20px;
}

/* Review */
.section-review {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.review-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.review-content p {
  margin: 18px 0 24px;
  max-width: 560px;
}

.review-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.location-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  min-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.location-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-content .btn {
  width: fit-content;
  margin-top: 10px;
}

/* CTA */
.section-cta {
  padding-top: 10px;
  padding-bottom: 100px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 34px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(202,162,90,0.14), rgba(255,255,255,0.02));
  border: 1px solid rgba(202, 162, 90, 0.22);
  box-shadow: var(--shadow);
}

.cta-box p {
  margin-top: 12px;
  max-width: 700px;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #080808;
}

.footer-content {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #aaaaaa;
}

.nexo-link {
  color: var(--gold);
  font-weight: 700;
}

.nexo-link:hover {
  color: var(--gold-dark);
}

.footer-instagram {
  width: 44px;
  height: 44px;
}

/* Responsive */
@media (max-width: 1024px) {
  .cards-grid,
  .review-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .location-image img {
    min-height: 340px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .logo {
    width: 128px;
  }

  .hero-content {
    padding: 40px 0 70px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .gallery-item {
    flex: 0 0 82vw;
  }

  .gallery-item img {
    height: 360px;
  }

  .card-image img {
    height: 220px;
  }

  .cta-box {
    padding: 26px 20px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-left {
    align-items: center;
  }
}

@media (max-width: 540px) {
  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .btn,
  .btn-card {
    width: 100%;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .location-content .btn {
    width: 100%;
  }

  .instagram-link {
    width: 44px;
    height: 44px;
  }
}