@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400..900&family=Arvo:wght@400;700&family=Roboto:wght@400;700&display=swap");

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

html {
  scroll-behavior: smooth;
}

:root {
  --branco-fundo: #eee5e5;
  --gold: #b0901c;
  --azul-banana: #19647e;
  --azul-escuro: #0d0221;
  --font-head: "Playfair Display", serif;
  --font-main: "Roboto", sans-serif;
}

body {
  background-color: var(--branco-fundo);
  font-family: var(--font-main);
}

.capa {
  position: relative;
  height: 661px;
}

.slideshow {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: troca 32s infinite;
}

.slideshow img:nth-child(1) {
  animation-delay: 0s;
}

.slideshow img:nth-child(2) {
  animation-delay: 4s;
}

.slideshow img:nth-child(3) {
  animation-delay: 8s;
}

.slideshow img:nth-child(4) {
  animation-delay: 12s;
}

.slideshow img:nth-child(5) {
  animation-delay: 16s;
}

.slideshow img:nth-child(6) {
  animation-delay: 20s;
}

.slideshow img:nth-child(7) {
  animation-delay: 24s;
}

.slideshow img:nth-child(8) {
  animation-delay: 28s;
}

@keyframes troca {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  5% {
    opacity: 1;
  }

  20% {
    opacity: 1;
    transform: scale(1.05);
  }

  25% {
    opacity: 0;
    transform: scale(1.08);
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

header {
  padding: 16px;
}

.capa-texto {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;

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

  text-align: center;
  color: white;

  width: 90%;

  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.capa-texto h1 {
  font-family: var(--font-head);
  font-size: 80px;
  margin-bottom: 14px;

  opacity: 0;
  animation: aparecer 1s ease forwards;
  animation-delay: 0.4s;
}

@keyframes aparecer {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.topo-inteiro {
  display: flex;
  justify-content: center;
}

.topo {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
  max-width: 1100px;
  color: #fff;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: var(--azul-banana);
  border-radius: 999px;
  gap: 100px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px;
  margin-left: 100px;
}

.logo {
  margin: 0;
  margin-right: 80px;
}

.logo:hover {
  transform: scale(1.05);
}

.lista {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 50px;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.a {
  transition: color 0.2s ease;
  cursor: pointer;
  color: white;
  text-decoration: none;
}

.a:visited {
  color: white;
  text-decoration: none;
}

.a:hover {
  color: #a8d8e8;
}

.a-selected {
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease;
  cursor: pointer;
  text-decoration: underline 2px;
  text-underline-offset: 7px;
}

.a-selected:hover {
  color: #a8d8e8;
}

.a-selected:visited {
  color: white;
  text-decoration: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-outline,
.btn-fill {
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-outline {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.btn-outline:hover {
  transform: scale(1.03);
}

.btn-fill {
  background: white;
  border: none;
  color: var(--azul-banana);
}

.btn-fill:hover {
  transform: scale(1.03);
}

.pages-bar {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100;
}

.pages {
  display: flex;
  justify-content: center;
}

.pages a {
  position: relative;
  font-family: "Lato", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #19647e;
  text-decoration: none;
  padding: 16px 28px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.pages a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #19647e 0%, #27a3cc 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.pages a:hover {
  transform: scale(1.05);
}

.pages a:hover::after {
  transform: scaleX(1);
}

.porta {
  background: #eee5e5;
  min-height: 100%;
  color: rgb(0, 0, 0);
}

h1 {
  font-family: initial;
  padding: 60px;
  font-size: 40px;
}

h2 {
  font-family: initial;
  padding: 50px;
  font-size: 30px;
}

.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

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

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.info {
  padding: 15px;
}

.info h3 {
  margin-bottom: 5px;
}

.nota {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 12px;
  margin: 8px 0;
}

.preco {
  font-weight: bold;
  color: #333;
}

.footer {
  background-color: var(--azul-escuro);
  margin-top: 0;
}

.footer-inner {
  display: flex;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 32px;
}
