/* RESET */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
}

/* Headlines */
h1, h2, h3, h4 {
  font-family: var(--font-headline);
  font-weight: 700;
}

/* Code / detalhes especiais */
code {
  font-family: var(--font-code);
}

/* LINKS */

a {
  color: inherit;
  text-decoration: none;
}

/* IMAGENS */

img {
  max-width: 100%;
  display: block;
}

/* SECTIONS */

.section {
  padding: 120px 0;
}

/* SELEÇÃO */

::selection {
  background: #ff2e9a;
  color: white;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(180deg, #25d366, #17b554);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.38);
  transition: transform .25s ease, box-shadow .25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.48);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 640px) {
  .floating-whatsapp {
    width: 58px;
    height: 58px;
    right: 14px;
    bottom: 14px;
  }

  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}
