:root {
  --ink:       #0d0b09;
  --deep:      #111418;
  --panel:     #191612;
  --warm:      #c97b3a;
  --amber:     #e8943a;
  --glow:      #f2a94e;
  --cream:     #f0e8d8;
  --mist:      #9d9186;
  --line:      rgba(200,170,130,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Archivo', sans-serif;
  background: var(--ink);
  color: var(--cream);
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 9999;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.14); }
}

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,11,9,0.55) 0%, rgba(13,11,9,0.2) 40%, rgba(13,11,9,0.75) 100%),
    linear-gradient(135deg, rgba(201,123,58,0.35) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(200,170,130,0.35);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--glow);
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  background: rgba(13,11,9,0.4);
  animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.6); }
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.15s ease both;
}

h1 em {
  font-style: italic;
  color: var(--glow);
}

.hero p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--mist);
  font-weight: 300;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, var(--warm), var(--amber));
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-contact-whatsapp {
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, var(--warm), var(--amber));
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-contact-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, var(--warm), var(--amber));
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232,148,58,0.45);
}
.hero-contact-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

.hero-contact-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(188, 24, 136, 0.45);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0.55;
  animation: fadeUp 1s 1s ease both;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── INTRO ── */
.intro {
  padding: 7rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
}

.intro h2 em { font-style: italic; color: var(--glow); }

.intro-text {
  color: var(--mist);
  line-height: 1.85;
  font-weight: 300;
  font-size: 1rem;
}

.intro-stat {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  color: var(--glow);
  font-weight: 300;
  line-height: 1;
}

.stat-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
}

.divider {
  width: 1px;
  height: 60px;
  background: var(--line);
  align-self: center;
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  padding: 2rem 2rem 3.5rem;
}

.section-header .intro-label { display: block; margin-bottom: 0.8rem; }

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
}

/* ── GRID ── */
.carousel-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 7rem;
}

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

/* ── CARD ── */
.carousel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.carousel:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(200,170,130,0.12);
}

.carousel-header {
  padding: 1.1rem 1.4rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.carousel-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.carousel-header .event-num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
  opacity: 0.7;
}

/* ── TRACK ── */
.carousel-track {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.67%; /* Proporção ideal para fotos horizontais (3:2) */
  overflow: hidden;
  background: #000;
}

.carousel-track img {
  position: absolute;
  inset: 0;
  width: 100%; 
  height: 100%;
  object-fit: cover; 
  /* 'center 15%' garante que o topo da foto (cabeças) apareça mais que os pés */
  object-position: center 15%; 
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: scale(1.04);
}

.carousel-track img.active {
  opacity: 1;
  transform: scale(1);
}

/* amber corner accent */
.carousel-track::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,9,0.55) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

/* ── CONTROLS ── */
.carousel-controls {
  position: absolute;
  bottom: 1rem;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  z-index: 2;
}

.carousel-controls button {
  width: 38px; height: 38px;
  border: 1px solid rgba(200,170,130,0.3);
  border-radius: 50%;
  background: rgba(13,11,9,0.6);
  color: var(--cream);
  font-size: 1rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  display: flex; align-items: center; justify-content: center;
}

.carousel-controls button:hover {
  background: var(--warm);
  border-color: var(--warm);
  color: var(--ink);
  transform: scale(1.08);
}

/* ── DOTS ── */
.dots {
  position: absolute;
  bottom: 1.05rem;
  left: 50%; transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 2;
}

.dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(200,170,130,0.35);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.dot.active {
  background: var(--glow);
  transform: scale(1.5);
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--line);
  padding: 4rem 2rem;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.footer-logo em { color: var(--glow); font-style: italic; }

.footer p {
  font-size: 0.8rem;
  color: var(--mist);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── REVEAL ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .intro { grid-template-columns: 1fr; gap: 2rem; }
  .carousel-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  h1 { font-size: 2.8rem; }
  .intro-stat { gap: 1.5rem; }
}