:root {
  --light_green: #c3f0c8;
  --green: #1ED760;
  --blue: #2D46B9;
  --black: #000000;
  --white: #ffffff;
}


header {
  align-items: center;
  background: var(--black);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  height: 12vh;
  padding: 0 40px;
  width: 100%;
}

header>div {
  align-items: center;
  display: flex;
  gap: 80px;
}

.logo-container {
  align-items: center;
  display: flex;
  gap: 14px;
}

.spotify-logo {
  height: 40px;
  width: auto;
}

header>div>.logo-container>h2 {
  font-size: 24px;
  font-weight: 700;
}

header>div>ul {
  align-items: center;
  display: flex;
  gap: 30px;
  list-style: none;
}

header>div>ul>li {
  display: flex;
  align-items: center;
}

header>div>ul>li>a {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-right: 4px;
  text-decoration: none;
}

header>input[type="text"] {
  background: url(../assets/img/search.svg) no-repeat right 10px center;
  border: none;
  border-bottom: 1.5px solid var(--white);
  font-size: 14px;
  padding: 8px 12px;
  width: 480px;
}

header>input[type="text"]::placeholder {
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
}

section {
  border-bottom: 1px solid var(--black);
  display: flex;
  width: 100%;
  background-color: #e0e0e0;
}

section>div.about-spotify {
  border-right: 1px solid var(--black);
  display: flex;
  flex-direction: column;
  margin: auto;
  padding: 80px;
  text-align: center;
  width: 65%;
}

section>.about-spotify>img {
  margin: auto;
  height: auto;
  width: 100%;
}

section>.about-spotify>h1 {
  font-size: 140px;
  font-weight: 700;
  margin: 20px 0 8px 0;
  text-align: start;
  text-transform: capitalize;
}

section>.about-spotify>p {
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
}

section>.teste {
  width: 35%;
}

.ceo {
  border-bottom: 1px solid var(--black);
  display: flex;
  flex-direction: column;
  height: 600px;
  align-items: flex-start;
  padding: 50px;
}

.ceo:hover {
  background: var(--blue);
}

.ceo:hover,
.ceo:hover h3 {
  color: var(--white);
}

section>.teste>.ceo>img {
  height: auto;
  width: 100%;
}

.ceo>h3 {
  color: var(--green);
  font-size: 15px;
  font-weight: 700;
  margin: 20px 0 8px 0;
  text-transform: uppercase;
}

.life-at-spotify {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 50px;
  position: relative;
  height: 100vh;
}

.life-at-spotify:hover {
  background: var(--blue);
}

.life-at-spotify:hover h2 {
  color: var(--white);
}

.life-at-spotify>h2 {
  color: var(--black);
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 20px;
  position: absolute;
  text-transform: capitalize;
}

.life-at-spotify>img {
  height: auto;
  margin-top: 48px;
  width: 100%;
}

.life-at-spotify>button {
  background: var(--green);
  border: none;
  border-radius: 50px;
  color: var(--black);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  margin: 40px auto;
  padding: 14px 30px;
  text-transform: uppercase;
  width: fit-content;
}

.life-at-spotify>button:hover {
  background: var(--white);
}

.our-mission {
  background: var(--light_green);
  border-bottom: 1px solid var(--black);
  padding: 80px;
  text-align: center;
  width: 65%;
}

.our-mission>p {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
  text-align: justify;
}

.by-numbers {
  background: var(--black);
  display: flex;
  flex-direction: column;
  padding: 0 60px;
  width: 35%;
}

.by-numbers>h2 {
  color: var(--white);
  font-size: 58px;
  font-weight: 700;
  margin: 80px auto 20px auto;
}

.by-numbers>button {
  background: var(--black);
  border: 1px solid var(--green);
  border-radius: 50px;
  color: var(--green);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  margin: 20px auto;
  padding: 14px 30px;
  text-transform: uppercase;
  width: fit-content;
}

.by-numbers>button:hover {
  background: var(--green);
  color: var(--black);
}

section:nth-child(3) {
  display: flex;
  width: 100%;
}

h4 {
  font-size: 32px;
  font-weight: 700;
  margin: 22px 0;
}

.sustainability,
.play-fair,
.loud-clear {
  display: flex;
  flex-direction: column;
  padding: 50px;
  width: 33.33%;
}

.sustainability,
.play-fair {
  border-right: 1px solid var(--black);
}

.sustainability>img,
.play-fair>img,
.loud-clear>img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.sustainability>p,
.play-fair>p,
.loud-clear>p {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}

/*
==================================================
 ESTILOS DO LIGHT MODE
==================================================
*/

.theme-toggle-button {
  background-color: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  border-radius: 20px;
  padding: 8px 16px;
  font-weight: 700;
  cursor: pointer;
  margin-left: 20px;
  transition: all 0.3s ease;
}

.theme-toggle-button:hover {
  background-color: #eee;
}

body.light-mode {
  background-color: var(--white);
  color: var(--black);
}

body.light-mode header {
  background: #f0f0f0;
  color: var(--black);
}

body.light-mode header>nav>a {
  color: var(--black);
}

body.light-mode header>input[type="text"] {
  border-bottom: 1.5px solid var(--black);
}

body.light-mode header>input[type="text"]::placeholder {
  color: #555;
}

body.light-mode section {
  border-bottom: 1px solid;
}

body.light-mode section>div.about-spotify {
  border-right: 1px solid;
}

body.light-mode .ceo {
  border-bottom: 1px solid;
}

body.light-mode .theme-toggle-button {
  background-color: var(--black);
  color: var(--white);
  border-color: var(--black);
}

body.light-mode .theme-toggle-button:hover {
  background-color: #333;
}