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

/* criando variáveis */
:root {
  --black: black;
  --white: white;

  --border-white: white;
}

/* resetando os estilos padrões do navegador */
* {
  box-sizing: border-box; /* desabilitar borda padrão nos elementos */
  scroll-padding-top: 5.6rem; /* ocupar espaço no topo (header) */

  /* espaçamento externo e interno zerados */
  margin: 0;
  padding: 0;

  /* evitar serrilhamento da fonte */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  /* utilizando variáveis para o fundo e a fonte */
  background-color: var(--black);
  color: var(--white);

  scroll-behavior: smooth !important; /* rolagem suave */

  /* definindo fonte */
  font-family: "Noto Sans", sans-serif;
}

header {
  /* tornando os filhos de header flexíveis (um ao lado do outro) */
  display: flex;

  justify-content: space-between;
  align-items: center;

  /* altura do header */
  height: 5.6rem;

  /* espaçamento interno do header */
  padding: 0 2.25rem;

  /* deixar header fixo no topo */
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;

  /* prioridade sobre qualquer outro elemento */
  z-index: 999;

  border-bottom: 1px var(--border-white) solid;
  background: linear-gradient(to right, #000, #262626 30%, #000);
}

header > .branding {
  display: flex;

  align-items: center;
  gap: 1rem; /* espaçamento interno entre logo e título */

  /* altura: tamanho da logotipo */
  img {
    height: 3.25rem;
  }

  h1 {
    cursor: default;
    font-weight: 100;
  }
}

header > nav {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 0.875rem; /* espaçamento entre links e button */
  padding: 0px 1rem; /* espaço interno na direita e esquerda para todos os elementos */

  ul {
    display: flex;

    gap: 0.875rem;
    padding: 0.52rem;

    /* remover bolinha dos links */
    list-style: none;

    /* estilizando título links */
    li > a {
      box-sizing: border-box;
      padding: 2px 0;
      font-weight: 200;
      text-decoration: none;

      transition: all 0.8 ease;
      color: var(--white);
    }

    /* estilizando quando mouse estive em cima */
    li > a:hover {
      /* text-decoration: underline; */
      color: rgb(187, 187, 187);
      border-top: 1px solid rgb(187, 187, 187);
      border-bottom: 1px solid rgb(187, 187, 187);
      display: inline-block;
    }
  }

  button {
    padding: 1rem;

    font-size: 1.125rem;
    border-radius: 8px;

    transition: 1s;

    background-color: var(--black);
    color: var(--white);
    border: 1px solid var(--border-white);
  }

  button:hover {
    cursor: pointer; /* mudar cursor do mouse quando estiver em cima */

    background-color: white;
    color: black;
  }
}

#hero-section {
  display: flex;

  align-items: center;

  height: calc(100vh - 5.6rem);
  padding: 0 8rem; /* margem de conteúdo: 128px */

  background-size: cover;
  background-repeat: no-repeat;
  background-image: linear-gradient(rgba(68, 68, 68, 0.3), rgb(0, 0, 0)),
    url("assets/background.png");
}

main {
  display: flex;
  flex-direction: column;

  /* limitando a largura do conteúdo principal */
  width: 916px;

  gap: 4rem;
  padding: 1rem;
}

main > .hero-content {
  display: flex;
  flex-direction: column;

  gap: 1.4rem;

  /* sombra para os textos */
  text-shadow: 0.2em 0.2em 0.4em rgba(0, 0, 0, 0.7);

  h1 {
    font-weight: 100;
    font-size: 3.25rem;

    letter-spacing: 0.2em;
  }

  p {
    font-weight: 700;

    width: 24rem;

    /* estilo ao nome do autor da frase */
    span {
      font-weight: 100;
    }
  }
}

.hero-content > .quote {
  display: flex;

  align-items: center;

  gap: 1.2rem;
}

.hero-content .row {
  display: block;

  height: 2.15rem;
  width: 0.32rem;

  background-color: white;

  border-radius: 2px;
}

main > a {
  text-align: center;

  width: 14rem;
  padding: 0.52rem 0.28rem;

  text-decoration: none;

  transition: 1s;

  z-index: 1;
  color: white;
  border: 1px solid white;
  border-radius: 1rem;
  background-color: var(--black);
}

main > a:hover {
  cursor: pointer;

  color: black;
  background-color: white;
}

#port-section {
  display: flex;
  /* justify-content: center; */
  align-items: center;

  width: 100%;
  height: calc(100vh - 5.6rem);
  /* padding: 0px 8rem;  */
  /* margem de conteúdo: 128px */
}

.port {
  position: relative;

  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  align-items: center;
  text-align: center;

  height: 100%;
  width: 100%;

  /* padding: 2rem; */
  gap: 2rem;

  z-index: 1;

  /* background-color: #1877f2; */

  h1 {
    font-weight: 100;
    font-size: 3.25rem;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    text-align: center;
    /* text-decoration: underline; */

    z-index: 1;
    color: var(--white);
  }

  p {
    font-weight: 100;
    font-size: 0.8rem;

    letter-spacing: 0.1em;
    width: 900px;

    z-index: 1;
    color: var(--white);
  }

  @media (min-height: 860px) {
    p {
      font-size: 1rem;
      margin: 0 0 8rem 0;
    }
  }
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 1280px;

  margin: 0 auto;
  padding: 0 2rem;

  flex: 1;

  gap: 1rem;
  overflow: hidden;
}

.cards-wrapper {
  overflow: hidden;
  width: 100%;
  
  flex: 1;
}

.cards {
  display: flex;
  flex: 1;

  gap: 1.2rem;
  transition: transform 0.3s ease-in-out;
}

.cards img {
  max-height: 342px;
  min-height: 32px;
  width: 12rem;
  border: 2px solid white;
  border-radius: 1rem;
  flex-shrink: 0;
}

.port-button {
  height: 48px;
  width: 34px;

  border: 2px solid rgb(187, 187, 187);
  border-radius: 1rem;

  cursor: pointer;
  transition: 0.3s;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--white);
}

.port-button:hover {
  background-color: var(--black);
  color: var(--white);
  border-color: var(--white);
}

#group {
  display: flex;
  /* justify-content: center; */
  align-items: center;

  width: 100%;
  height: calc(100vh - 5.6rem);
  /* padding: 0px 8rem;  */
  /* margem de conteúdo: 128px */
}

.group {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;

  padding-bottom: 6rem;

  h1 {
    font-weight: 100;
    font-size: 3.25rem;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    text-align: center;
    /* text-decoration: underline; */

    color: var(--white);
  }
}

#group .left.arrow {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

#group .linha-vertical {
  width: 3px;
  height: 407.13px;
  border-left: 1px solid rgb(255, 255, 255);
}

#group p {
  padding: 0.25rem;
  font-weight: 200;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.6;
  max-width: 438px;

  margin: 0 auto;
}

#about {
  display: flex;
  flex-direction: column;
  align-items: center;

  /* background-color: rgb(255, 255, 0); */
  height: calc(100vh - 5.6rem);
}

.about {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;

  padding-bottom: 6rem;

  h1 {
    font-weight: 100;
    font-size: 3.25rem;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    text-align: center;
    /* text-decoration: underline; */

    color: var(--white);
  }
}

.video-container {
  display: flex;
  align-items: center;

  video {
    height: 32.52cqmax;

    min-height: 70px;
    max-height: 730px;
  }
}

video {
  border: 2px solid white;
  border-radius: 52px;
}

.text-container {
  display: flex;
  flex-direction: row;
  flex: 1;

  padding: 3rem;

  gap: 2rem;

  p {
    width: 550px;
    font-weight: 200;
    font-size: 1.52cqmax;
    /* letter-spacing: 0.1em; */
    /* text-indent: 2.50rem; */
    text-align: justify;
    /* text-decoration: underline; */

    /* padding: 2rem; */
    padding: 0.25rem;

    /* margin: 0 auto;   */
    color: var(--white);
  }

  h1 {
    padding: 2rem;
  }
}

#feedback-section {
  display: flex;
  align-items: center;
  
  width: 100%;
  height: calc(100vh - 5.6rem);
}

.container-feedback {
  display: flex;
  flex-direction: column;
  justify-content: center;

  height: 100%;
  width: 100%;

  gap: 2rem;

  h1 {
    font-weight: 100;
    font-size: 3.25rem;
    letter-spacing: 0.1em;

    color: var(--white);
    text-transform: uppercase;

    text-align: center;
  }
}

.wrapper-feedback {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;

  padding: 0 8rem;
  gap: 1rem;

  flex: 1;

  article {
    display: flex;
    flex-direction: column;

    gap: 1rem;
    z-index: 1;

    border: 1px solid white;
    border-radius: 1rem;
  }

  @media (min-height: 842px) {
    padding-bottom: 5rem;
  }
}

.wrapper-feedback .banner {
  /* max-height: 30%; */
  object-fit: cover;

  width: 100%;
  /* height: 10%; */
  max-height: 262px;

  border-radius: 1rem;
  background-size: cover;
  border-bottom: 2px solid var(--white);
}

/* .profile {
  position: relative;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 2px solid var(--white);
} */

.comment {
  display: flex;
  flex-direction: column;
  /* margin-bottom: 0.8rem; */
  /* max-width: 260px;  */
  /* max-height: 360px;  */
  /* padding: 0 2rem; */

  /* gap: 1rem; */
  justify-content: center;
  text-align: center;

  z-index: 0;
  flex: 1;

  h2 {
    font-weight: 300;
    font-size: 1.4rem;

    letter-spacing: 1px;

    /* margin-bottom: 0.5rem;   */
    /* text-transform: uppercase;   */

    color: var(--white);
  }

  p {
    font-size: 0.8rem;
    font-weight: 100;

    letter-spacing: 0.1em;
    padding: 0.25rem;

    /* margin: 0 auto;   */
    color: var(--white);
  }
}

#contact {
  height: calc(100vh - 5.6rem);
}

.contact {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  width: 100%;
  height: 100%;

  /* padding: 2rem; */
  gap: 2rem;

  z-index: 1;

  h1 {
    font-weight: 100;
    font-size: 3.25rem;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: var(--white);
  }

  p {
    font-weight: 100;
    font-size: 0.8rem;

    letter-spacing: 0.1em;
    width: 900px;
    color: var(--white);
  }
}

.contact-content {
  display: flex;
  flex-direction: column;

  gap: 1rem;

  flex: 1;
}

.contact-content .map {
  flex: 10;
}

.contact-content > ul {
  font-weight: 100;
  font-size: 0.8rem;

  letter-spacing: 0.1em;
  color: var(--white);
}

.rwb-tooltip {
  z-index: 1;
  border: 2px solid #25d366;

  background-color: white;
}

.social-buttons {
  flex: 1;
  display: flex;

  justify-content: center;
  gap: 1rem;
}

.social-button {
  display: flex;
  
  align-items: center;
  justify-content: center;

  width: 50px;
  height: 50px;
  text-decoration: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  transition: background-color 0.3s;
}

.social-button.instagram {
  background-color: #e1306c;
}

.social-button.facebook {
  background-color: #1877f2;
}

.social-button:hover {
  opacity: 0.8;
}
