@keyframes pulseFcs {
  0%{
    box-shadow: 0 0 0 0 #083bc979;
  }
  70%{
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100%{
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
#Fcs{
    animation: pulseFcs 2s infinite;
}
#Fcs:hover{
    transform: scale(1.1);
}

/* Efeito lamina no botão Fale com a SEF */
@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;
}

.shine:hover{
    transform: scale(1.1);
}

/* Section - main */
.faq-card {
    background: linear-gradient(135deg, rgb(31, 55, 190), rgb(25, 20, 56));
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    color: #fff;
}
.faq-card i{
    color: #04e2ff !important;
}
.faq-card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(18, 95, 146, 0.658);
  background: linear-gradient(135deg, rgb(36, 120, 143), rgb(9, 40, 78));
}
/* Botão Fale com SEF */
#Fcs{
    background: linear-gradient(135deg, rgb(31, 55, 190) 0%, rgb(25, 20, 56) 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 20px;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}
#Fcs:hover{
    background: linear-gradient(135deg, rgb(25, 20, 56), rgb(41, 55, 190));
    color: #fff;
}

/* Section - Roda-pé */
.bg-rodape{
    background: radial-gradient(circle at top, #00111a, #000);
}
.btnVoltar{
    background: radial-gradient(circle at top, #000, #00283d);
    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);
}
.btnVoltar:hover{
    background: radial-gradient(circle at top, #00283d, #000);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 18px rgba(1, 72, 112, 0.39);
}
.btnVoltar:active{
  transform: translateY(1px) scale(0.98);
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.3);
}
