.priv-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.priv-wrapper {
  max-width: 1440px;
  width: 100%;
  padding: 1rem;
}

.priv-header-nav {
  width: 100%;
  max-width: 1440px;
  height: 80px;
  display: flex;
  align-items: center;
}

.priv-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--cor-escala-roxo-500);
  padding: 0 64px;
}

.priv-header-item {
  color: var(--cor-neutra-branco);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.priv-header-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  transition: all 1s ease-in-out;
  font-size: 14px;
  line-height: 24px;
  font-weight: 900;
  padding: 0.5rem 0.5rem 0.5rem 2.25rem;
  font-family: "Inter", sans-serif;
  position: relative;
}

.priv-header-item svg {
  position: absolute;
  top: 20%;
  left: 0.25rem;
  transition: all 0.5s ease-in-out;
}

.priv-header-item a:hover svg {
  position: absolute;
  top: 20%;
  left: 0;
}

.priv-header-img {
  width: 68px;
  height: 48px;
}

.priv-title-h1 {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  line-height: 40px;
  color: var(--color-vinho-500);
  margin-top: 0;
  margin-bottom: 32px;
  font-weight: bold;
}

.priv-title-h2 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-vinho-500);
  font-weight: bold;
}

.priv-text {
  font-size: 18px;
  line-height: 27px;
  color: var(--color-vinho-500);
  margin-top: 0;
  margin-bottom: 24px;
  font-weight: 400;
}

.priv-strong {
  font-weight: bold;
}

.priv-list {
  list-style: disc;
  padding-left: 40px;
}

li::marker {
  color: black;
}

.accordion.first {
  margin: 80px auto 0px;
}

.accordion.last {
  margin: 0px auto 80px;
}

.accordion {
  border-bottom: 1px solid #e5e1e1;
  margin: 24px auto;
  font-family: "Inter", sans-serif;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 16px;
  padding: 0 0 24px 0;
}

.accordion-header h2 {
  margin: 0;
}

.arrow {
  transition: transform 0.3s ease;
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition:
    all 0.6s ease,
    padding 0.3s ease;
}

.accordion.open .accordion-content {
  max-height: fit-content;
  padding: 0px;
}

.accordion.open .arrow {
  transform: rotate(-45deg);
}

.priv-footer {
  margin: 0;
  padding: 0;
}

.priv-footer .priv-text {
  margin-bottom: 12px;
}

@media (width >= 48em) {
  .priv-wrapper {
    padding: 3rem 2rem 4rem;
  }
}

@media (width >= 64em) {
  .priv-wrapper {
    padding: 4rem;
  }
}