/* Gradiente animado */
@keyframes animarGradiente {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.gradiente-animado {
  background: linear-gradient(270deg, #165263, #094691, #4511be);
  background-size: 600% 600%;
  animation: animarGradiente 10s ease infinite;
  color: #fff;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.589);
  transition: all 0.3s ease;
}
.gradiente-animado:hover{
  transform: scale(1.02);
  box-shadow: 0 10px 18px rgba(39, 18, 131, 0.795);
}

header {
  padding: 4rem 1rem;
  text-align: center;
}
.bg-head{
  background: radial-gradient(circle at top, #00111a, #000);
}

.bg-rodape{
  background: radial-gradient(circle at top, #00111a, #000);
}

.section-box{
  border-radius: 12px;
}

/* Efeito Lamina */
@keyframes shineMove{
    0%{
        left: -75%;
    }
    100%{
        left: 125%;
    }
}
.shine{
    position: relative;
    overflow: hidden;
}
.shine::before{
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skew(-25deg);

    /* Animação Automática */
    animation: shineMove 3s infinite linear;
}

@keyframes pulseloja {
  0%{
    box-shadow: 0 0 0 0 #1cfa5ea6;
  }
  70%{
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100%{
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.FaleComigo{
  animation: pulseloja 3s infinite;
}

.FaleComigo{
    background: linear-gradient(90deg, #142010 0%, #11853b 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 28px;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.397);
}
.FaleComigo:hover{
  transform: scale(1.02);
  color: #fff;
}

.btnVoltar{
    background: radial-gradient(circle at top, #000000, #00111a);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 28px;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.25);
}
.btnVoltar:hover{
    background: radial-gradient(circle at top, #053149, #000);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 18px rgba(11, 39, 71, 0.589);
}
.btnVoltar:active{
  transform: translateY(1px) scale(0.98);
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.3);
}