@charset "UTF-8";

/* =================================================================
   TAG Digital — folha de estilo
   Tipografia: Adobe Fonts (urbana + montserrat) — carregada via
   <link> no <head> do index.html, não por @import, para não
   encadear requisições e atrasar a renderização.
   ================================================================= */

/* Fallback do corpo de texto casado por métrica.

   Só montserrat. Testado a 375px e 1440px: size-adjust entre 110% e 115%
   mantém a altura de todos os blocos de texto idêntica à fonte real, então
   se o Adobe Fonts cair ou demorar, o layout não se mexe.

   Não existe equivalente para urbana: nenhum valor único serve para as duas
   larguras ao mesmo tempo (os títulos mudam de quebra de linha), por isso a
   CSS do Adobe segue bloqueante e os títulos esperam a fonte real. */
@font-face {
  font-family: "montserrat-fallback";
  src: local("Arial"), local("Roboto"), local("Helvetica Neue"), local("Liberation Sans");
  size-adjust: 112%;
  font-weight: 400 700;
  font-style: normal;
}

@font-face {
  font-family: "social-icons";
  src: url("../font/social-icons.woff2") format("woff2"),
       url("../font/social-icons.woff") format("woff"),
       url("../font/social-icons.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Necessário para animar a variável --s da moldura decorativa */
@property --s {
  syntax: "<length>";
  inherits: false;
  initial-value: 2.5rem;
}

/* ------------------------------- Tokens ------------------------------- */
:root {
  --white: #fcfdff;
  --light: #fcfcff;
  --dark: #221f1f;
  --inactive: #e3e3e6;

  --primary: #cc8aff;
  --primary-light: #d7a4ff;
  --primary-dark: #c171ff;
  --primary-darker: #940bff;

  --secondary: #292d33;
  --secondary-light: #626b7a;
  --secondary-dark: #1e2125;

  --deep: #4b3187;
  --deepest: #170f29;

  --danger: #fc4535;
  --success: #7bd159;

  --font-title: "urbana", "Rockwell", "Roboto Slab", Georgia, serif;
  --font-body: "montserrat", "montserrat-fallback", "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;

  --nav-h: 6rem;
}

/* ------------------------------- Reset ------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
p,
ul,
ol,
li,
figure,
h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--white);
  background-color: var(--dark);
  padding-top: var(--nav-h);
}

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

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

button,
input,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

strong {
  color: var(--dark);
}

@media (min-width: 992px) {
  p {
    font-size: 1.1rem;
  }
}

/* ------------------------------- Layout ------------------------------- */
.section {
  padding: 3rem 1.5rem;
  scroll-margin-top: 7.5rem;
}

@media (min-width: 1024px) {
  .section {
    padding: 3rem;
  }
}

.container {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1216px) {
  .container {
    max-width: 1152px;
  }
}

@media (min-width: 1408px) {
  .container {
    max-width: 1344px;
  }
}

/* ------------------------------- Utilitários ------------------------------- */
.has-text-centered { text-align: center !important; }
.balance           { text-wrap: balance; }
.is-size-4         { font-size: 1.5rem !important; }
.is-size-5         { font-size: 1.25rem !important; }
.mb-2 { margin-bottom: .5rem !important; }
.mb-3 { margin-bottom: .75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-5 { margin-bottom: 1.5rem !important; }
.mb-6 { margin-bottom: 3rem !important; }
.mt-6 { margin-top: 3rem !important; }
.py-6 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.pb-6 { padding-bottom: 3rem !important; }

.text-primary       { color: var(--primary); }
.text-primary-light { color: var(--primary-light); }
.text-danger        { color: var(--danger); }
.bg-secondary       { background-color: var(--secondary); }

.mesh-sec { background-image: radial-gradient(at 100% 90%, var(--secondary-light) 0, var(--secondary) 90%); }
.mesh-ter { background-image: radial-gradient(at 100% 90%, var(--deepest) 0, var(--deep) 90%); }

/* ------------------------------- Títulos ------------------------------- */
.section-title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 4vw, 5rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-wrap: balance;
  margin: 0 0 4.5rem;
  position: relative;
}

@media (max-width: 992px) {
  .section-title {
    margin: 0 0 1rem;
  }
}

.section-subtitle {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  text-wrap: balance;
}

.gradient-text {
  background: linear-gradient(360deg, var(--primary), var(--primary-darker));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ------------------------------- Botões ------------------------------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 2.5em;
  padding: .4375rem 1rem;
  border: 1px solid var(--light);
  border-radius: 50px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  background: transparent;
  transition: transform .3s ease;
}

.button:hover {
  color: var(--white);
  transform: scale(1.1);
}

.button--gradient {
  background: linear-gradient(-45deg, var(--primary), var(--primary-dark), var(--deep), var(--deepest));
  background-size: 600%;
  animation: anime 12s linear infinite;
}

.button--dark {
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px var(--secondary);
  border-color: var(--secondary-dark);
  background: linear-gradient(-45deg, var(--secondary), var(--secondary-light), var(--secondary), var(--secondary-light));
  background-size: 600%;
  animation: anime 12s linear infinite;
}

.button--secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.button--danger {
  background-color: var(--danger);
  border-color: var(--danger);
  margin-top: 1rem;
}

@keyframes anime {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .button--gradient,
  .button--dark {
    animation: none;
  }
  html { scroll-behavior: auto; }
}

/* ------------------------------- Ícones sociais ------------------------------- */
[class^="social-"]::before {
  font-family: "social-icons";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  width: 1em;
  margin: 0 .2em;
  text-align: center;
  line-height: 1em;
  font-variant: normal;
  text-transform: none;
}

.social-mail::before      { content: "\e800"; }
.social-instagram::before { content: "\f16d"; }
.social-whatsapp::before  { content: "\f232"; }

/* ------------------------------- Links com sublinhado animado ------------------------------- */
.hvr-link {
  position: relative;
  display: inline-block;
  font-weight: 600;
  transition: color .3s ease;
}

.hvr-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.25rem;
  width: 100%;
  height: .1rem;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: 100% 100%;
  transition: transform .3s cubic-bezier(.76, 0, .24, 1);
}

.hvr-link:hover::before {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}

/* ------------------------------- Divisores em onda ------------------------------- */
.bg-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.bg-divider.top    { top: 0; }
.bg-divider.bottom { bottom: 0; }
.bg-divider.invert { transform: rotate(180deg); }

.bg-divider svg {
  position: relative;
  display: block;
  width: calc(150% + 1.3px);
  height: 40px;
}

.fill-dark      { fill: var(--dark); }
.fill-secondary { fill: var(--secondary); }

/* ------------------------------- Header ------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  padding: .5rem 1.5rem;
  background-color: var(--dark);
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  z-index: 100;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 0 auto;
}

.navbar__logo picture {
  display: block;
}

.navbar__logo img {
  height: 5rem;
  width: auto;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar__menu {
  align-self: stretch;
}

.navbar__item {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 .75rem;
  color: var(--light);
  text-transform: uppercase;
  transition: color .35s ease-in-out;
}

.navbar__burger {
  display: none;
  position: relative;
  width: 3.25rem;
  height: 3.25rem;
  margin-left: auto;
  padding: 0;
  border: none;
  background: none;
  color: var(--primary);
  cursor: pointer;
}

.navbar__burger span {
  position: absolute;
  left: calc(50% - 8px);
  width: 16px;
  height: 1px;
  background-color: currentColor;
  transition: transform 86ms ease-out, opacity 86ms ease-out;
}

.navbar__burger span:nth-child(1) { top: calc(50% - 6px); }
.navbar__burger span:nth-child(2) { top: calc(50% - 1px); }
.navbar__burger span:nth-child(3) { top: calc(50% + 4px); }

.navbar__burger.is-active span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.navbar__burger.is-active span:nth-child(2) { opacity: 0; }
.navbar__burger.is-active span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Sublinhado que cresce a partir do topo */
.hvr-bar-top {
  position: relative;
  transition: color .3s;
}

.hvr-bar-top::before {
  content: "";
  position: absolute;
  top: -.5rem;
  left: 50%;
  width: 0;
  height: .2rem;
  background-color: var(--primary);
  transform: translateX(-50%);
  transition: width .3s;
}

.hvr-bar-top:hover        { color: var(--primary); }
.hvr-bar-top:hover::before { width: 100%; }

@media (max-width: 1023px) {
  .navbar__burger {
    display: block;
  }

  .navbar__menu {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem 0;
    background-color: var(--dark);
    border-bottom: .2rem solid var(--secondary);
    box-shadow: 0 8px 16px rgba(17, 17, 17, .1);
  }

  .navbar__menu.is-active {
    display: flex;
  }

  .navbar__item {
    justify-content: center;
    padding: .75rem 1rem;
  }

  .hvr-bar-top::before {
    display: none;
  }
}

@media (max-width: 992px) {
  .navbar__logo img {
    height: 4.5rem;
  }
}

/* ------------------------------- Hero ------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40rem;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 49% 40%;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primary-darker);
  opacity: .5;
}

.hero__body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
}

.hero__content {
  position: relative;
  z-index: 10;
  padding-bottom: 40px;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--light);
  text-shadow: 3px 3px 1px var(--dark);
  margin: 0 0 1.5rem;
}

.hero__lead {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--white);
  text-shadow: 1px 1px 2px var(--secondary);
  margin-bottom: 1.5rem;
}

.hero__content .button {
  margin: 0 auto;
}

@media (max-width: 992px) {
  .hero {
    min-height: 65vh;
  }
}

/* ------------------------------- Cards de serviços ------------------------------- */
.cards {
  position: relative;
}

.cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5rem;
}

.card {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--secondary-light);
  border-radius: 1.5rem;
  background-color: rgba(252, 253, 255, .7);
  box-shadow: 0 .5rem 1.5rem rgba(204, 138, 255, .05);
}

.card__img {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.card__img picture {
  display: block;
  width: 100%;
  height: 100%;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.card__title {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 1.5vw, 1.6rem);
  font-weight: 600;
  line-height: 1;
  color: var(--secondary);
  text-align: center;
  text-wrap: balance;
  margin: 3rem 0 1rem;
}

.card__txt {
  color: var(--dark);
  text-align: center;
  text-wrap: balance;
}

@media (max-width: 576px) {
  .card__img img {
    width: 90%;
    margin: 0 auto;
  }
}

/* ------------------------------- Seções "main" ------------------------------- */
.main {
  position: relative;
}

.main__grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 4rem;
}

.main__grid--split { grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr)); }
.main__grid--4     { grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }

.main h3 {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.9rem;
}

.pill {
  height: 100%;
  padding: 1rem;
  text-align: left;
  border-left: .1rem solid var(--primary);
}

.pill__title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-wrap: balance;
  margin-bottom: 1rem;
}

.steps .pill--mini {
  padding: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .pill {
    padding: 3rem 2rem;
  }

  .steps .pill--mini {
    padding: 1rem;
  }
}

@media (max-width: 992px) {
  .main h3 {
    font-size: 1.6rem;
  }
}

/* Fundo fixo da seção de benefícios */
.w-image {
  position: relative;
  box-shadow: inset 3px 3px 6px 0 #ccdbe8, inset -3px -3px 6px 1px rgba(255, 255, 255, .5);
}

.w-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/w-img.jpg");
  background-image: image-set(url("../images/w-img.webp") type("image/webp"),
                              url("../images/w-img.jpg") type("image/jpeg"));
  background-attachment: fixed;
  background-position: 42% 50%;
  opacity: .6;
}

/* No celular a imagem de 1920px é recortada para uma faixa estreita —
   não vale baixar 66 KB para isso. A versão de 960px pesa 23 KB. */
@media (max-width: 768px) {
  .w-image::before {
    background-image: url("../images/w-img-960.webp");
    background-size: cover;
    background-attachment: scroll;
  }
}

.w-image > .container {
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .w-image::before { background-position-x: 80%; }
}

@media (min-width: 1440px) {
  .w-image::before { background-position-x: 0; }
}

/* Moldura decorativa em cantos */
.framed {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}

.framed img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: drop-shadow(-.25rem 0 .5rem rgba(34, 31, 31, .15));
  --t: .1rem;
  --s: 2.5rem;
  --g: .5rem;
  padding: calc(2 * var(--t) + var(--g));
  border: var(--t) solid transparent;
  background:
    conic-gradient(at var(--s) calc(3 * var(--t)), #0000 75%, var(--primary) 0) 0 0 / calc(100% - var(--s)) calc(100% - 3 * var(--t)) border-box,
    conic-gradient(at calc(3 * var(--t)) var(--s), #0000 75%, var(--primary) 0) 0 0 / calc(100% - 3 * var(--t)) calc(100% - var(--s)) border-box,
    linear-gradient(0deg, var(--primary) calc(2 * var(--t)), #0000 0) 50% var(--t) / calc(100% - 2 * (var(--s) + var(--g))) 100% repeat-y padding-box,
    linear-gradient(-90deg, var(--primary) calc(2 * var(--t)), #0000 0) var(--t) 50% / 100% calc(100% - 2 * (var(--s) + var(--g))) repeat-x padding-box;
  transition: --s .5s;
}

.framed img:hover {
  --s: 5rem;
}

#case .framed img {
  width: 75%;
}

/* ------------------------------- FAQ ------------------------------- */
.accordion {
  position: relative;
}

.accordion__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(41rem, 1fr));
  gap: .5rem;
  padding: 0 1rem;
}

.tab {
  position: relative;
  width: 100%;
  margin-bottom: 1px;
  overflow: hidden;
  color: var(--dark);
}

.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.tab label {
  position: relative;
  display: block;
  padding: 1rem 3rem 1rem 1rem;
  border-bottom: .15rem dashed var(--inactive);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.tab label::after {
  content: "\e806";
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 3rem;
  height: 3rem;
  line-height: 3;
  text-align: center;
  font-family: "social-icons";
  color: var(--primary);
  transition: transform .35s;
}

.tab input:focus-visible + label {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.tab input:checked + label::after {
  transform: rotate(45deg);
}

.tab__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s;
}

.tab input:checked ~ .tab__content {
  max-height: 90rem;
  background-color: var(--light);
  color: var(--deepest);
}

.tab__content p {
  margin: 1rem 1rem 3rem;
  padding-left: 1rem;
  color: var(--dark);
}

@media (max-width: 576px) {
  .accordion__grid {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  }
}

/* ------------------------------- Contato ------------------------------- */
.contato {
  position: relative;
}

.contato__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 3rem;
}

.contato__link {
  display: block;
  width: fit-content;
  margin-bottom: .75rem;
  font-weight: 400;
  color: var(--light);
}

.contato__link:hover {
  color: var(--primary);
}

.contato__area strong {
  color: var(--primary);
}

.contato form {
  padding: 2rem;
  border-radius: 1.25rem;
  background-color: var(--primary);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1.5rem;
  margin: -.75rem 0 .75rem;
}

@media (min-width: 1024px) {
  .field-grid {
    grid-template-columns: 1fr 1fr;
  }

  .field--full {
    grid-column: 1 / -1;
  }
}

.field {
  padding-top: .75rem;
}

.label {
  display: block;
  margin: 0 0 .25rem;
  font-size: .85rem;
  font-weight: 700;
  text-align: left;
  color: var(--dark);
}

.input,
.textarea {
  width: 100%;
  padding: calc(.5em - 1px) calc(.75em - 1px);
  line-height: 1.5;
  color: var(--dark);
  background-color: rgba(252, 253, 255, .08);
  border: 0 solid var(--dark);
  border-bottom-width: .0625rem;
  border-radius: 0;
  outline: none;
  caret-color: var(--secondary);
  box-shadow: none;
  transition: all .4s ease;
}

.input {
  height: 2.5em;
}

.textarea {
  padding: calc(.75em - 1px);
  resize: vertical;
}

.input:hover,
.textarea:hover {
  background-color: rgba(252, 253, 255, .2);
  border-color: var(--secondary);
}

.input:focus,
.textarea:focus {
  border-color: var(--secondary);
}

.input:user-invalid,
.textarea:user-invalid {
  border-color: var(--danger);
}

.message {
  padding: 1.25em 1.5em;
  border-left: 4px solid;
  border-radius: 4px;
  text-align: center;
  background-color: var(--light);
}

.message p {
  color: var(--secondary);
}

.message--danger  { border-color: var(--danger); }
.message--success { border-color: var(--success); }

.message strong {
  color: var(--dark);
}

/* ------------------------------- Footer ------------------------------- */
.footer {
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  align-items: flex-start;
  gap: 2rem;
}

.footer__card picture {
  display: block;
}

.footer__card img {
  width: 200px;
  height: auto;
  margin: 0 auto;
}

.footer__card p {
  text-align: center;
}

.footer__card a {
  color: var(--primary);
}

.footer__card i {
  color: var(--primary);
}

.footer__title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer__social p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border: .15rem solid var(--primary);
  border-radius: 50%;
  transition: transform .4s ease;
}

.footer__social p:hover {
  transform: scale(1.1);
}

.footer__social a {
  font-size: 2rem;
  color: var(--white);
}

.footer__legal a {
  color: #9f5dd1;
}

@media (max-width: 576px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------- WhatsApp flutuante ------------------------------- */
.float-whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  background: #43d957;
  border-radius: 5rem;
  box-shadow: 2px 2px 3px rgba(34, 31, 31, .1);
  z-index: 100;
  transition: background .3s ease-in;
}

.float-whatsapp svg {
  width: 1.875rem;
  fill: var(--white);
}

.float-whatsapp:hover {
  background: var(--inactive);
}

/* ------------------------------- Animação de entrada ------------------------------- */
.js .reveal {
  opacity: 0;
  filter: blur(2px);
  transform: translateY(100%);
  transition: .35s;
}

.js .reveal.from-left {
  transform: translateX(-100%);
}

.js .reveal.show {
  opacity: 1;
  filter: blur(0);
  transform: translate(0);
}

@media (min-width: 992px) {
  .js .reveal { transition: .75s; }
  .js .delay-1 { transition-delay: .3s; }
  .js .delay-2 { transition-delay: .6s; }
  .js .delay-3 { transition-delay: .9s; }
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}
