@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Source+Sans+Pro:wght@300;400;600&display=swap");

:root {
  /* Color Palette */
  --cor-primaria: #0a0a0a;
  --cor-secundaria: #f8f6f0;
  --cor-terciaria: #d4af37;
  --cor-quaternaria: #1a1a1a;
  --cor-hover: #2a2a2a;
  --cor-shadow: #000000;
  --cor-highlight: #ffffff;
  --cor-muted: #8a8a8a;
  --cor-border: #333333;

  /* Typography */
  --fonte-primaria: "Playfair Display", serif;
  --fonte-secundaria: "Crimson Text", serif;
  --fonte-terciaria: "Source Sans Pro", sans-serif;
}

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

body {
  background: linear-gradient(135deg, var(--cor-primaria) 0%, #1a1a1a 100%);
  color: var(--cor-secundaria);
  font-family: var(--fonte-secundaria);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Cinematic Film Grain Effect */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(120, 120, 120, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(120, 120, 120, 0.1) 0%,
      transparent 50%
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23ffffff' fill-opacity='0.02' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.cabecalho {
  padding: 2rem 0 0 8rem;
  background: linear-gradient(
    90deg,
    var(--cor-primaria) 0%,
    rgba(26, 26, 26, 0.95) 100%
  );
  border-bottom: 1px solid var(--cor-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
}

.cabecalho::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--cor-terciaria) 50%,
    transparent 100%
  );
  opacity: 0.3;
}

.cabecalho__menu {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.cabecalho__menu__link {
  font-family: var(--fonte-terciaria);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cor-secundaria);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: 0.8rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cabecalho__menu__link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 50%;
  background: var(--cor-terciaria);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
}

.cabecalho__menu__link:hover {
  color: var(--cor-highlight);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.cabecalho__menu__link:hover::before {
  width: 100%;
  box-shadow: 0 0 8px var(--cor-terciaria);
}

.apresentacao {
  padding: 4rem 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
  min-height: 80vh;
  position: relative;
  z-index: 5;
}

.apresentacao::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 40%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 40%
    );
  pointer-events: none;
  z-index: -1;
}

.apresentacao__conteudo {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
}

.apresentacao__conteudo::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--cor-terciaria) 0%, transparent 70%);
  border-radius: 2px;
  opacity: 0.6;
}

.apresentacao__conteudo__titulo {
  font-size: 3.2rem;
  font-family: var(--fonte-primaria);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  position: relative;
}

.apresentacao__conteudo__titulo::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--cor-terciaria);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.titulo-destaque {
  color: var(--cor-terciaria);
  font-weight: 900;
  position: relative;
  display: inline-block;
}

.titulo-destaque::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(212, 175, 55, 0.1) 50%,
    transparent 70%
  );
  transform: skew(-15deg);
  z-index: -1;
}

.apresentacao__conteudo__texto {
  font-size: 1.25rem;
  font-family: var(--fonte-secundaria);
  font-weight: 400;
  color: var(--cor-secundaria);
  text-align: justify;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(212, 175, 55, 0.3);
  line-height: 1.8;
}

.apresentacao__conteudo__texto::first-letter {
  font-size: 3.5rem;
  font-family: var(--fonte-primaria);
  float: left;
  line-height: 1;
  margin: 0.1rem 0.5rem 0.2rem 0;
  color: var(--cor-terciaria);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.apresentacao__links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.apresentacao__links__subtitulo {
  font-family: var(--fonte-primaria);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--cor-terciaria);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.apresentacao__links__subtitulo::before,
.apresentacao__links__subtitulo::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--cor-terciaria) 50%,
    transparent 100%
  );
}

.apresentacao__links__subtitulo::before {
  left: -60px;
}

.apresentacao__links__subtitulo::after {
  right: -60px;
}

.apresentacao__links__navegacao {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--cor-terciaria);
  width: 280px;
  text-align: center;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 400;
  font-family: var(--fonte-terciaria);
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: var(--cor-secundaria);
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.8) 0%,
    rgba(42, 42, 42, 0.4) 100%
  );
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apresentacao__links__navegacao::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.2) 50%,
    transparent 100%
  );
  transition: left 0.5s ease;
}

.apresentacao__links__navegacao img {
  width: 24px;
  height: 24px;
  filter: grayscale(100%) brightness(0.8) contrast(1.2);
  transition: all 0.4s ease;
}

.apresentacao__links__navegacao:hover {
  background: linear-gradient(
    135deg,
    rgba(42, 42, 42, 0.9) 0%,
    rgba(60, 60, 60, 0.6) 100%
  );
  border-color: var(--cor-highlight);
  color: var(--cor-highlight);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.apresentacao__links__navegacao:hover::before {
  left: 100%;
}

.apresentacao__links__navegacao:hover img {
  filter: grayscale(0%) brightness(1.1) contrast(1.3);
  transform: scale(1.1);
}

.apresentacao__imagem {
  width: 40%;
  position: relative;
}

.apresentacao__imagem img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  filter: grayscale(70%) contrast(1.2) brightness(0.9) sepia(10%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.apresentacao__imagem::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 1px solid var(--cor-terciaria);
  border-radius: 12px;
  opacity: 0.4;
  z-index: -1;
  transition: all 0.4s ease;
}

.apresentacao__imagem::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-top: 2px solid var(--cor-terciaria);
  border-right: 2px solid var(--cor-terciaria);
  opacity: 0.6;
}

.apresentacao__imagem:hover img {
  filter: grayscale(40%) contrast(1.3) brightness(1.05) sepia(5%);
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(212, 175, 55, 0.5),
    0 0 30px rgba(212, 175, 55, 0.2);
}

.apresentacao__imagem:hover::before {
  opacity: 0.8;
  transform: scale(1.02);
}

.rodape {
  color: var(--cor-primaria);
  background: linear-gradient(135deg, var(--cor-terciaria) 0%, #b8941f 100%);
  padding: 2rem;
  text-align: center;
  font-family: var(--fonte-terciaria);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 -5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  margin-top: 4rem;
}

.rodape::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
}

.rodape p {
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .cabecalho {
    padding: 1.5rem 4rem;
  }

  .cabecalho__menu {
    justify-content: center;
    gap: 2rem;
  }

  .apresentacao {
    flex-direction: column-reverse;
    padding: 3rem 4rem;
    gap: 4rem;
  }

  .apresentacao__conteudo {
    width: 100%;
  }

  .apresentacao__imagem {
    width: 60%;
    max-width: 400px;
  }

  .apresentacao__conteudo__titulo {
    font-size: 2.5rem;
    text-align: center;
  }

  .apresentacao__conteudo__texto {
    font-size: 1.1rem;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .cabecalho {
    padding: 1rem 2rem;
  }

  .cabecalho__menu {
    gap: 1.5rem;
  }

  .cabecalho__menu__link {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }

  .apresentacao {
    padding: 2rem;
    gap: 3rem;
  }

  .apresentacao__conteudo__titulo {
    font-size: 2rem;
  }

  .apresentacao__conteudo__texto {
    font-size: 1rem;
    padding-left: 1rem;
  }

  .apresentacao__conteudo__texto::first-letter {
    font-size: 2.5rem;
    margin: 0.05rem 0.3rem 0.1rem 0;
  }

  .apresentacao__imagem {
    width: 80%;
    max-width: 300px;
  }

  .apresentacao__links__navegacao {
    width: 100%;
    max-width: 280px;
  }

  .apresentacao__links__subtitulo::before,
  .apresentacao__links__subtitulo::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .cabecalho {
    padding: 1rem;
  }

  .cabecalho__menu {
    flex-direction: column;
    gap: 1rem;
  }

  .apresentacao {
    padding: 1.5rem;
  }

  .apresentacao__conteudo__titulo {
    font-size: 1.8rem;
  }

  .apresentacao__conteudo::before {
    left: -1rem;
  }

  .apresentacao__links__navegacao {
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }

  .rodape {
    padding: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
}
