/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}
*:not(dialog) {
  margin: 0;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}
#root, #__next {
  isolation: isolate;
}

/* Início dos estilos do site */

:root {
  --primary-color: #8b4545;
  --background-color: #EFECE1;
  --text-color: #1D1C1A;
  --link-bg-color: rgba(255, 255, 255, 0.5);
  --link-border-color: rgba(139, 69, 69, 0.15);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: var(--background-color);
  color: var(--text-color);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 24px;
  flex: 1;
}

.logo { 
  margin-top: 40px;
}

.logo-img {
  max-width: 200px;
  height: auto;
  margin: 0 auto;
}

.mission-statement {
  text-align: center;
  font-size: 15px;
  opacity: 0.8;
  max-width: 550px;
  margin: 0 auto;
  margin-top: 24px;
  margin-bottom: 32px;
}

.links-container {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.link-card {
  border: 1px solid rgba(0, 0, 0, 0.20);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.6s ease;
  transition-property: transform, border-color;
  cursor: pointer;
}

.link-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.link-title {
  font-family: "Bitter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
}

.link-subtitle {
  font-size: 15px;
  font-weight: 400;
  opacity: 0.6;
}

.link-arrow {
  width: 24px;
  height: 24px;
  color: #8b4545;
  flex-shrink: 0;
  margin-left: 16px;
}

.footer {
  text-align: center;
  padding: 40px 24px;
  font-size: 14px;
  opacity: 0.5;
}

.logo-home {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-home .logo-img {
  max-width: 200px;
}
