@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@media screen and (max-width: 1366px) {
  .nav-slogan {
    display: none;
  }
}

:root {
  --font-family: "Montserrat", sans-serif;
  --primary-color: #e41e26;
  --nav-background: rgba(1, 31, 75, 0.7);
  --header-background: rgba(0, 0, 0, 0.7);
  --section-background: rgba(0, 0, 0, 0.5);
  --white-color: white;
  --dark-bg-color: rgba(0, 0, 0, 0.7);
}

* {
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: var(--white-color);
}

section {
  scroll-margin-top: 8rem;
}

h1 {
  font-size: 2.7rem;
  letter-spacing: 0.2rem;
}

p {
  font-size: 1.8rem;
  max-width: 80rem;
}

h2 {
  font-size: 2.5rem;
}

/* NAVBAR */
.nav {
  display: flex;
  justify-content: space-around;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background: rgba(1, 31, 75, 0.7);
  box-shadow: 0 0.5rem 2rem black;
}

.nav-div {
  display: flex;
  align-items: center;
}

.nav-links {
  color: inherit;
  font-size: 1.9rem;
  text-decoration: none;
  display: inline-block;
  transition: all ease 200ms;
  margin-right: 3rem;
}

.nav-links:hover {
  transform: scale(1.25);
  color: var(--primary-color);
}

.nav-slogan {
  font-size: 2rem;
}

/* HERO */

#intro {
  height: 100vh;
  background: url("/img/botoes.jpg") no-repeat center center/cover;
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: color;
}

/* INTRO */

.intro-container {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
  padding-top: 8rem;
}

.intro-div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 7rem;
  height: 100%;
  width: 50%;
  text-align: center;
}

.intro-div p {
  font-size: 2rem;
  padding: 4rem;
  max-width: 40rem;
  max-height: 40rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 1rem;
  padding-left: 5rem;
}

/* OUR MISSION */

#our-mission {
  background: url("./img/thread-617404.jpg") no-repeat center;
  display: flex;
  flex-direction: row;
  height: 50rem;
}

.our-mission-image {
  width: 50%;
}

.our-mission-div {
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 100%;
  width: 50%;
  background: rgba(0, 0, 0, 0.5);
}

/* ABOUT */
#about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url(./img/knitting-needle-1169606.jpg) no-repeat center
    center/cover;
  background-color: rgba(0, 0, 0, 0.9);
  background-blend-mode: color;
  height: 30rem;
}

.about-title {
  margin-bottom: 1.6rem;
}

.about-message {
  max-width: 80rem;
}

/* Whatsapp Icon */

#whatsapp {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
}
