@charset "UTF-8";
:root {
  font-size: 62.5%; /* Define 1rem como 10px */
}

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

html body {
  background: linear-gradient(to bottom right, hsla(40, 100%, 70%, 0.6) 0%, white 20%, white 85%, rgba(59, 59, 72, 0.6) 100%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
html body header p {
  color: #3b3b48;
}
html body main div {
  min-width: 300px;
}
html body h1 {
  color: #3b3b48;
  font-size: 4rem;
}
html body h2 {
  color: #5c5c6d;
  font-size: 3rem;
}
html body h3 {
  font-size: 1.8rem;
  color: #5c5c6d;
}
html body h4 {
  font-size: 1.6rem;
}
html body h5 {
  font-size: 1.4rem;
}
html body p {
  color: #6f6f7c;
  font-size: 1.4rem;
  text-align: justify;
}

.container {
  width: 1280px;
  max-width: 1280px;
  min-height: 100vh;
}

.content {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  flex-wrap: wrap;
  gap: 4rem;
  overflow-y: auto;
  padding-bottom: 4rem;
}

.gradient-text {
  background: linear-gradient(45deg, #ff6b6b, #3b3b48);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  text-align: center;
}

.card-modulo-wop-com-imagem {
  background-color: whitesmoke;
  overflow: hidden;
  border-radius: 1rem;
  gap: 1rem;
  align-items: center;
  display: flex;
  flex-direction: column;
  border: solid 1px rgba(0, 0, 0, 0.08);
  box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.08);
  padding-bottom: 2rem;
}
.card-modulo-wop-com-imagem img {
  display: block;
  object-fit: fill;
  max-height: 25rem;
}
.card-modulo-wop-com-imagem div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  gap: 1rem;
  padding: 1rem;
}
.card-modulo-wop-com-imagem div p {
  padding: 1rem;
  font-size: 1.5rem;
}
.card-modulo-wop-com-imagem div button {
  margin-bottom: 2rem;
}
.card-modulo-wop-com-imagem div.img-container-formacao {
  width: 100%;
  background-color: #fffef2;
}
.card-modulo-wop-com-imagem div.img-container-governo {
  width: 100%;
  background-color: antiquewhite;
}
.card-modulo-wop-com-imagem div.img-container-obra {
  width: 100%;
  background-color: white;
}

.card-modulo-wop {
  word-wrap: break-word;
  overflow-wrap: break-word;
  box-shadow: -4px 4px 5px 0 rgba(0, 0, 0, 0.1);
  background-color: #fef9f0;
  border-radius: 1rem;
}
.card-modulo-wop p {
  font-size: 2rem;
}

.card-button {
  max-height: 4rem;
  width: 50%;
  background-color: #f4c773; /* dourado base */
  color: #3b3b48; /* grafite no texto */
  border: none;
  padding: 1.2rem 2.4rem;
  border-radius: 1rem; /* formato pill */
  font-weight: bold;
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  text-decoration: none;
}

.card-button:hover {
  background-color: #f7d892; /* dourado mais claro */
  transform: translateY(-2px); /* leve elevação */
}

.ponto::after {
  content: "•";
  padding-right: 0.5rem;
  font-size: 1.2rem;
}

.bold {
  font-weight: bold;
}

.bolder {
  font-weight: bolder;
}

.border {
  border: 1px solid silver;
}

.rem-1 {
  font-size: 1rem;
}

.rem-2 {
  font-size: 2rem;
}

.rem-3 {
  font-size: 3rem;
}

.rem-4 {
  font-size: 4rem;
}

.rem-5 {
  font-size: 5rem;
}

.pl-1 {
  padding-left: 1rem;
}

.pl-2 {
  padding-left: 2rem;
}

.pl-3 {
  padding-left: 3rem;
}

.pr-1 {
  padding-right: 1rem;
}

.pr-2 {
  padding-right: 2rem;
}

.pr-3 {
  padding-right: 3rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.p-1 {
  padding: 1rem;
}

.p-2 {
  padding: 2rem;
}

.p-3 {
  padding: 3rem;
}

.radius-1 {
  border-radius: 1rem;
}

.radius-2 {
  border-radius: 2rem;
}

.radius-3 {
  border-radius: 3rem;
}

.radius-4 {
  border-radius: 4rem;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
}

.playfair {
  font-family: "Playfair Display", serif;
}

.raleway {
  font-family: "Raleway", sans-serif;
}

.cinzel {
  font-family: "Cinzel", serif;
}

.lora {
  font-family: "Lora", serif;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

.size-1 {
  font-size: 1rem;
}

.size-2 {
  font-size: 2rem;
}

.size-3 {
  font-size: 3rem;
}

.size-4 {
  font-size: 4rem;
}

.size-5 {
  font-size: 5rem;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-no-wrap {
  flex-wrap: nowrap;
}

.flex-basis-100 {
  flex-basis: 100%;
}

.flex-column {
  flex-direction: column;
}

.flex-item {
  flex: 1;
}

.align-center {
  align-items: center;
}

.items-center {
  align-content: center;
}

.items-space-between {
  align-items: space-between;
}

.space-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.w-100 {
  width: 100%;
}

.w-fit-content {
  width: fit-content;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.bg-white {
  background-color: white;
}

.text-center {
  text-align: center;
}

.highlight {
  color: #f4c773; /* Destaques */
}

.icon {
  color: #bfbfbf; /* Ícones / elementos suaves */
}