@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap");

/* ////////////////////////////// */
/* GENERAL */
/* ////////////////////////////// */
:root {
  --main-font-family: "Exo 2", sans-serif;
}

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

html {
  font-size: 62.5%;
}

body {
  font-family: var(--main-font-family);
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  color: #333;
  overflow-y: scroll;
}

.flex-conteiner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-4 {
  gap: 4rem;
}

.grid-cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.grid-rows-3 {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  height: 90vh;
}

.grid-rows-2 {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
}

.grid-rows-2-gap {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
}

.heading {
  font-size: 5.2rem;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.2;
}

.heading-secondary {
  font-size: 4.4rem;
  font-weight: 400;
  letter-spacing: -0.5px;
  text-align: center;
  padding: 3.6rem;
}

.heading-tertiary {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: -0.5px;
  text-align: center;
  padding: 3.6rem;
}

.header-save {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 7px;
}

.logo-sw {
  width: 4.4rem;
}

.link:link,
.link:visited {
  text-decoration: none;
  color: #0d7c66;
  transition: all 0.3s;
}

.link:hover,
.link:active {
  color: #3d9685;
}

.btn:link,
.btn:visited {
  font-weight: 600;
  text-decoration: none;
  color: #0d7c66;
  font-size: 1.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: 11px;
  border: solid 2px #0d7c66;
  transition: all 0.3s;
}

.btn:hover,
.btn:active {
  color: #3d9685;
  transform: scale(1.02);
  box-shadow: inset 0 0 0 2px #3d9685;
  border-color: #3d9685;
}

.btn--full:link,
.btn--full:visited {
  background-color: #0d7c66;
  color: #ebe1f8;
  letter-spacing: 1.1px;

  transition: all 0.3s;
}

.btn--full:hover,
.btn--full:active {
  background-color: #ebe1f8;
  color: #3d9685;
}

.btn--modal,
.btn--form {
  font-size: 2.4rem;
  font-weight: 200;
  letter-spacing: 1.7px;
  border: none;
  margin: 1.6rem auto;
  cursor: pointer;
  background-color: #0d7c66;
  color: #ebe1f8;
  width: 99%;
  padding: 0.8rem;
  border-radius: 11px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

/* BUTTON */
.btn-primary {
  margin-top: 24px;
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background: #0d7c66;
  color: #e7f2f0;
  cursor: pointer;
}

.mrg-bottom {
  margin-bottom: 6.4rem;
}

*:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(61, 150, 134, 0.5);
}
/* TABLE */
.table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 1%;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.table thead {
  background-color: #0d7c66;
  color: #f7f3fc;
}

.table th,
td {
  border-top: 1px solid #d7c3f1;
  padding: 0.8rem 1.6rem;
  text-align: left;
  vertical-align: top;
}

.table tbody tr:nth-child(even) td {
  background-color: #f7f3fc;
}

/* table pagination */
.pagination--box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn--page {
  border: 1px solid transparent;
  background-color: transparent;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--page.active {
  background-color: #3d9685;
  color: white;
  font-weight: bold;
}

.btn--page:hover:not(:disabled) {
  color: #3d9685;
  border-color: #3d9685;
  background-color: white;
  transform: translateY(-1px);
}

.btn--page:disabled {
  opacity: 0.4;
  cursor: auto;
}
/*
--- 01 TYPOGRAPHY SYSTEM
- Font size system (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

--- 02 Whitespace
- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

--- 03 Colors
- Primary: #0d7c66
- Tints:

#3d9685
#e7f2f0

#ebe1f8
#f7f3fc
- Shades:
#ac9cc1
#6c6279
- Accents: #d7c3f1

- Greys: 
#333

--- 04 Font family
- "Exo 2", sans-serif

*/
