:root {
  --background-color: #fff;
  --white-color-200: #dcdcdc;

  --brand-primary: #009354;
  --brand-primary-600: #009354;
  --brand-primary-700: #009354;

  --brand-secondary: #364967;

  --text-dark-primary: #1e1c2d;
  --text-dark-secondary: #76738f;

  --text-light-primary: #fff;
  --text-light-secondary: #c4c4c4;

  --border-primary: #f0f0f0;
}

html {
  font-family: "Inter", sans-serif;
  background-color: var(--background-color);
  color: var(--text-dark-primary);
  scroll-behavior: smooth;
}

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

.section {
  padding: 6.25rem 1rem;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

header {
  background-color: var(--brand-primary);
  height: 120px;
}

header .logo {
  position: absolute;
  left: 50%;
  top: 120px;
  transform: translate(-50%, -50%);

  background-color: var(--brand-primary);
  border: 1px solid var(--background-color);

  padding: 12px;
  width: 120px;
  height: 120px;

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

header .logo img {
  width: 100%;
}

main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 8rem 3rem 0rem 3rem;
}

.buttons a {
  all: unset;
  background-color: var(--brand-primary);
  color: var(--text-light-primary);
  font-size: 16px;
  line-height: 125%;
  height: 56px;
  padding: 0 14px;
  border-radius: 6px;
  line-height: 1.25rem;
  width: 100%;
  max-width: 768px;
  text-align: center;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  transition: all 0.3s;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.buttons a svg {
  max-width: 32px;
}

.buttons a:hover {
  background-color: var(--brand-primary-600);
}

.split {
  width: 90%;
  max-width: 800px;
  height: 2px;
  background-color: var(--border-primary);
  margin: auto;
}

.extra-infos {
  width: 100%;
}

.extra-infos .info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.extra-infos .info p {
  color: var(--text-dark-primary);
  font-size: 24px;
  line-height: 25.6px;
  font-weight: 600;
  max-width: 400px;
  display: block;
}

.extra-infos .info span {
  font-size: 16px;
  font-weight: 700;
}

.extra-infos .info .info__options {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.extra-infos .info .info__options a {
  background-color: var(--brand-primary);
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 6px;
}

.extra-infos .info .info__options a:hover {
  background-color: var(--brand-primary-600);
}

.extra-infos .info .info__options a svg {
  height: 32px;
  width: 32px;
}
