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

:root {
  --background-default: #f5f4f0;
  --border-primary: #d9d9d9;

  --text-primary: #1b1b1b;
  --text-secondary: #333333;
  --text-tertiary: #696969;
  --text-headline: #e1624f;

  --accent-blue: #0c51a7;
  --accent-orange: #e95e10;
  --accent-pink: #e5245e;
  --accent-purple: #591b98;
}

body,
html {
  height: 100%;
  font-family: "Open Sans", sans-serif;
}

.container {
  max-width: 1200px; /* Define largura máxima */
  margin: 0 auto; /* Centraliza horizontalmente */
  padding: 20px; /* Espaçamento interno */
}

.divider {
  width: 100%;
  height: 1px;
  margin: 36px 0;
  background-color: var(--border-primary);
}

.container figure img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  margin-bottom: 24px;
}

.subtitle {
  color: var(--text-headline);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
}

.title {
  color: var(--text-primary);
  font-size: 36px;
}

.title-page {
  height: 79px;
}

figure img {
  border-radius: 28px;
}

figure figcaption {
  font-style: italic;
  text-align: center;
  padding: 0 10px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.title-description .subtitle {
  margin-bottom: 2px;
}

.title-description .title {
  margin-bottom: 8px;
}

.title-description {
  margin-bottom: 64px;
}

.tourist-spot figure img {
  height: 350px;
  border-radius: 28px;
  width: 100%;
  object-fit: cover;
  display: block;
  margin-top: 48px;
  margin-bottom: 20px;
}

footer {
  margin-top: 65px;
  text-align: center;
  font-family: Alice, sans-serif;
}

footer svg {
  vertical-align: middle;
}

footer svg {
  color: black;
}

.spot-info .title {
  padding-left: 15px;
  margin-bottom: 4px;
}

.spot-info strong {
  margin-top: 24px;
  display: block;
}

.spot-info ul li {
  color: var(--accent-blue);
}

.spot-info ul {
  padding-left: 20px;
}

ul li::marker {
  color: #333333;
}

p {
  color: var(--text-secondary);
}

.main > p {
  text-align: center;
}

.custom-list .custom-list-1 {
  color: var(--accent-purple);
}

.custom-list .custom-list-2 {
  color: var(--accent-pink);
}

.custom-list .custom-list-3 {
  color: var(--accent-orange);
}

@media (max-width: 768px) {
  .title {
    font-size: 28px;
  }

  .spot-info .title {
    padding-left: 0;
  }

  .container {
    padding: 16px;
  }

  figure img {
    border-radius: 16px;
  }
}
