@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --Roxo-profundo: #440f46;
  --roxo-vip: #68126b;
  --Roxo-clarinho: #be29c3;
  --Laranja-vip: #f60;
  --Laranja-escuro: rgb(255, 77, 0);
  --color-preto: #000;
  --color-branco: #fff;
  --color-grey: #f3f3f3;

  --font-family-roboto: "Roboto", sans-serif;
  --fsize-h1: 60px;
  --fsize-h2: 48px;
  --fsize-h3: 20px;
  --fsize-p: 16px;
  --fsize-button: 16px;
  --fweight-ligth: 300;
  --fweight-regular: 400;
  --fweight-bold: 700;

  --bradius-button: 50px;
  --bradius-card: 20px;
}

@media (max-width: 800px) {
  body {
    --fsize-h1: 36px;
    --fsize-h2: 26px;
    --fsize-h3: 16px;
    --fsize-p: 12px;
    --fsize-button: 12px;
    --fweight-ligth: 300;
    --fweight-regular: 400;
    --fweight-bold: 700;

    --bradius-button: 50px;
    --bradius-card: 20px;
  }

  #foto-hero {
    display: none;
  }

  #container-hero {
    margin: auto;
  }
  #historia-content {
    flex-direction: column;
  }
}
body {
  font-family: var(--font-family-roboto);
}

h1 {
  font-size: var(--fsize-h1);
  font-weight: var(--fweight-ligth);
  line-height: 1.2;
  margin: 60px 0 40px;
}

h2 {
  font-size: var(--fsize-h2);
  font-weight: var(--fweight-regular);
  text-align: center;
  margin: 80px 0 30px;
}

p {
  font-size: var(--fsize-p);
  font-weight: var(--fweight-regular);
}

span {
  color: var(--roxo-vip);
  font-weight: var(--fweight-bold);
}

header {
  background-color: var(--Roxo-profundo);
  color: var(--color-branco);
  text-align: start;
}

main {
  max-width: 1020px;
  margin: auto;
}

button {
  border-radius: var(--bradius-button);
  padding: 10px 16px;
  color: white;
  font-size: var(--fsize-button);
  border: none;
  cursor: pointer;
}

.btn-padrao {
  display: flex;
  background-color: var(--roxo-vip);
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  max-width: 500px;
}

.btn-padrao:hover {
  background-color: var(--Roxo-profundo);
  transition: all 0.3s ease;
}

.btn-padrao img {
  width: 17px;
  height: 17px;
}

@media (max-width: 768px) {
  button {
    padding: 15px 30px;
    justify-content: center;
    font-size: 15px;
  }

}
