@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

/* BODY */

body {
  background: #0f0b08;
  color: #f5efe6;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* IMAGENS */

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

/* LINKS */

a {
  text-decoration: none;
  transition: 0.3s;
}

/* NAVBAR */

.navbar {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 26px 7%;

  background: rgba(8, 6, 4, 0.65);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255,255,255,0.08);

  z-index: 999;
}

.brand a {
  color: #f0d3a1;

  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;

  letter-spacing: 4px;
}

.navbar ul {
  display: flex;
  gap: 34px;

  list-style: none;
}

.navbar ul a {
  color: #f6f0e5;

  font-size: 0.82rem;

  text-transform: uppercase;

  letter-spacing: 2px;
}

.navbar ul a:hover {
  color: #d7a15c;
}

/* HERO */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 120px 8%;

  background:
  linear-gradient(rgba(0,0,0,0.65),
  rgba(0,0,0,0.82)),
  url("image.png");

  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
  radial-gradient(circle,
  rgba(214,162,94,0.14),
  transparent 60%);
}

.hero-content {
  position: relative;
  max-width: 950px;
}

.logo {
  width: 180px;

  margin: auto;
  margin-bottom: 40px;

  border-radius: 50%;

  border: 2px solid rgba(255,255,255,0.12);

  box-shadow:
    0 0 80px rgba(0,0,0,0.6);
}

.subtitle {
  color: #f3d5a1;

  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(2rem, 5vw, 4rem);

  letter-spacing: 5px;

  margin-bottom: 28px;
}

.hero p {
  max-width: 700px;

  margin: auto;

  color: rgba(255,255,255,0.8);

  line-height: 2;

  font-size: 1.08rem;
}

/* PAGE */

.page {
  width: min(1250px, 90%);
  margin: auto;

  padding: 160px 0 120px;
}

/* TITLES */

h1 {
  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(4rem, 9vw, 7rem);

  font-weight: 500;

  text-align: center;

  margin-bottom: 80px;

  color: #f1dcc0;

  letter-spacing: 3px;
}

h2 {
  font-family: 'Cormorant Garamond', serif;

  font-size: 3rem;

  margin-bottom: 30px;
  margin-top: 90px;

  color: #d8a96d;
}

h3 {
  font-family: 'Cormorant Garamond', serif;

  font-size: 2rem;

  margin-bottom: 16px;

  color: #f0dcc0;
}

h4 {
  color: #d7a15c;

  margin-top: 30px;
  margin-bottom: 20px;
}

/* TEXT */

p {
  color: rgba(255,255,255,0.78);

  line-height: 2;

  margin-bottom: 22px;

  font-size: 1.04rem;
}

ul {
  margin-left: 24px;
  margin-bottom: 24px;
}

li {
  margin-bottom: 12px;

  color: rgba(255,255,255,0.82);
}

/* SOBRE */

.sobre {
  width: min(1350px, 90%);
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 100px;

  align-items: center;

  padding: 160px 0;
}

.sobre-img img {
  border-radius: 34px;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.4);
}

.sobre-texto {
  position: relative;
}

.sobre-texto::before {
  content: "";

  position: absolute;

  left: -40px;
  top: 0;

  width: 2px;
  height: 100%;

  background:
  linear-gradient(to bottom,
  #d6a25e,
  transparent);
}

/* CARDS */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));

  gap: 40px;
}

.card {
  background:
  linear-gradient(
  135deg,
  rgba(255,255,255,0.04),
  rgba(255,255,255,0.02));

  border: 1px solid rgba(255,255,255,0.06);

  border-radius: 34px;

  overflow: hidden;

  backdrop-filter: blur(10px);

  transition: 0.4s;
}

.card:hover {
  transform: translateY(-12px);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.3);
}

.card-content {
  padding: 34px;
}

.event-date {
  display: inline-block;

  color: #d6a25e;

  margin-bottom: 18px;

  font-size: 0.85rem;

  letter-spacing: 2px;

  text-transform: uppercase;
}

/* IMAGES */

.event-img,
.poster-img {
  width: 100%;
  display: block;

  transition: 0.4s ease;
}

.event-img:hover,
.poster-img:hover {
  transform: scale(1.03);
  opacity: 0.92;
}

/* POSTER */

.poster {
  margin: 70px 0;
}

.poster-img {
  border-radius: 34px;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.35);
}

/* VIDEO */

.video-section {
  margin: 80px 0;
}

video {
  border-radius: 34px;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.35);
}

/* TIMELINE */

.timeline {
  position: relative;

  padding-left: 80px;
}

.timeline::before {
  content: "";

  position: absolute;

  left: 20px;
  top: 0;

  width: 1px;
  height: 100%;

  background:
  linear-gradient(to bottom,
  #d6a25e,
  transparent);
}

.item {
  position: relative;

  margin-bottom: 50px;

  background:
  linear-gradient(
  135deg,
  rgba(255,255,255,0.04),
  rgba(255,255,255,0.02));

  border: 1px solid rgba(255,255,255,0.05);

  border-radius: 30px;

  padding: 36px;

  backdrop-filter: blur(12px);

  box-shadow:
    0 15px 50px rgba(0,0,0,0.18);
}

.item::before {
  content: "";

  position: absolute;

  left: -68px;
  top: 36px;

  width: 16px;
  height: 16px;

  border-radius: 50%;

  background: #d6a25e;

  box-shadow:
    0 0 20px rgba(214,162,94,0.5);
}

/* MEMORANDO */

.memorando {
  margin-bottom: 110px;
}

/* HR */

hr {
  border: none;

  height: 1px;

  background:
  linear-gradient(
  to right,
  transparent,
  rgba(214,162,94,0.35),
  transparent);

  margin: 90px 0;
}

/* FOOTER */

footer {
  margin-top: 120px;

  padding: 70px 20px;

  text-align: center;

  background: #090705;

  border-top: 1px solid rgba(255,255,255,0.06);

  color: rgba(255,255,255,0.5);

  line-height: 2;
}

/* RESPONSIVO */

@media (max-width: 1100px) {

  .sobre {
    grid-template-columns: 1fr;
  }

  .sobre-texto::before {
    display: none;
  }

  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .timeline {
    padding-left: 40px;
  }

  .timeline::before {
    left: 10px;
  }

  .item::before {
    left: -38px;
  }

  h2 {
    font-size: 2.2rem;
  }

}
