:root {
  --destaque: #f543ba;
  --destaque-escuro: #ffcbdb;
  --alinhar-logo: flex-start; /* flex-start (esquerda), center (meio) ou flex-end (direita) */
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-image: url('https://preview.redd.it/t1z9g95hdf951.png?auto=webp&s=1e9ac8029e2a0936361cfebe94539dc239776d60');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

header.section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

header .navbar {
  background-color: var(--destaque);
  border-radius: 5px;
}

.navbar-item,
.navbar-link {
  color: #fff;
}

.navbar-item svg,
.navbar-link svg {
  margin-right: .25rem;
}

.navbar-dropdown .navbar-item {
  color: #4a4a4a;
}

a.navbar-item:hover, a.navbar-link:hover,
a.navbar-item.is-active, a.navbar-link.is-active,
.navbar-item.has-dropdown:hover .navbar-link,
.navbar-item.has-dropdown.is-active .navbar-link {
  background-color: rgba(0, 0, 0, .25);
  color: #fff;
}

.navbar-link:not(.is-arrowless)::after {
  border-color: #fff;
}

.navbar-burger {
  color: #fff !important;
}

.logo.container {
  display: flex;
  justify-content: var(--alinhar-logo);
  margin-bottom: 2rem;
}

.logo.container img {
  max-height: 100px;
  transition: all .2s ease-out;
}

.logo.container img:hover {
  transform: scale(1.1) rotate(2.5deg);
}

#ip textarea:not(.is-active) {
  display: none;
}

#ip::before {
  content: 'Copiado';
  position: absolute;
  top: calc(50% - 12px);
  left: -90px;
  color: #fff;
  background-color: #48c774;
  padding: 0 .5rem;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(2px);
  transition: all .25s ease;
}

#ip.is-active::before {
  opacity: 1;
  pointer-events: none;
  transform: translateY(0);
}

main.section,
footer.section {
  padding-top: 0;
  padding-bottom: 2rem;
}

.article:not(:first-child) {
  margin-top: 1.5rem;
}

.article-title {
  background-color: var(--destaque);
  font-size: 1.25rem;
  color: #fff;
  padding: .5rem 1rem;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.article-title svg {
  margin-right: .25rem;
}

.article-content {
  background-color: #fff;
  padding: 1rem;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  /* min-height: 500px; */
}

.article-thumbnail {
  width: 100%;
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

article.footer {
  display: flex;
  flex-direction: column;
  background-color: var(--destaque);
  padding: 1rem;
  color: #fff;
  text-align: center;
  border-radius: 5px;
}

a.is-muted {
  color: inherit;
  font-size: .8rem;
  opacity: .5;
}

a.is-muted:hover {
  opacity: 1;
}

.is-spinning {
  animation: spin 2s infinite linear;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.equipe, .produtos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.produtos li {
  width: 25%;
  text-align: center;
}

.produtos li:nth-child(4n):not(:last-child) {
  margin-bottom: 2rem;
}

.produtos img {
  height: 128px;
}

.equipe li {
  width: 33.33333%;
  text-align: center;
}

.equipe img {
  transition: all .2s ease;
}

.equipe li:hover img {
  transform: translateY(-3px);
}

.equipe h1, .produtos h1 {
  font-size: 1.5rem;
  line-height: 1.25;
}

.equipe h2 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: .75rem;
}

.produtos h2 small {
  font-size: .75rem;
}

.produtos .buttons {
  margin-top: 5px;
}

.list {
  background-color: unset;
  border-radius: 0;
  box-shadow: none;
  margin: .5rem 0;
}

.list svg {
  margin-right: 5px;
  color: var(--destaque);
}

.button.is-primary {
  background-color: var(--destaque);
  border-color: var(--destaque);
}

.button.is-primary:hover,
.button.is-primary:focus,
.button.is-primary:active {
  background-color: var(--destaque-escuro);
  border-color: var(--destaque-escuro);
}

.produto-sidebar .article-content {
  text-align: center;
}

.produto-sidebar img {
  height: 128px;
}

.produto-sidebar h1 {
  font-size: 1.5rem;
}

.produto-sidebar h1 small {
  font-size: 1rem;
}

.produto-sidebar .field {
  margin-top: 1rem;
}

.produto-sidebar .field .control.is-fullwidth {
  flex-grow: 1;
}

@media screen and (min-width: 1024px) {
  .navbar-start > .navbar-item:first-child:hover,
  .navbar-start > .navbar-link:first-child:hover {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  
  .navbar-end > .navbar-item:last-child:hover,
  .navbar-end > .navbar-link:last-child:hover {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }

  .container>.navbar .navbar-brand, .navbar>.container .navbar-brand {
    margin-left: 0;
  }

  .container>.navbar .navbar-menu, .navbar>.container .navbar-menu {
    margin-right: 0;
  }

  .equipe li:nth-child(3n):not(:last-child) {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 1023px) {
  .logo.container {
    justify-content: center;
  }

  .navbar-menu {
    background: var(--destaque-escuro);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }

  .navbar-dropdown .navbar-item {
    color: #fff;
  }

  #ip::before {
    left: unset;
    right: .5rem;
  }

  .article-thumbnail {
    height: 200px;
  }
}

@media screen and (max-width: 768px) {
  .equipe li {
    width: 50%;
  }

  .equipe li:nth-child(2n):not(:last-child) {
    margin-bottom: 2rem;
  }

  .produtos li {
    width: 100%;
  }
  
  .produtos li:not(:last-child) {
    margin-bottom: 2rem;
  }
}

.cor-4{color:#be0000}
.cor-c{color:#fe3f3f}
.cor-6{color:#d9a334}
.cor-e{color:#fefe3f}
.cor-2{color:#00be00}
.cor-a{color:#3ffe3f}
.cor-b{color:#3ffefe}
.cor-3{color:#00bebe}
.cor-1{color:#0000be}
.cor-9{color:#3f3ffe}
.cor-d{color:#fe3ffe}
.cor-5{color:#be00be}
.cor-f{color:#fff}
.cor-7{color:#bebebe}
.cor-8{color:#3f3f3f}
.cor-0{color:#000}