/* Estrutura Principal */
.form-wrapper {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    background: #2d2b3a;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 5px 30px 5px rgba(0, 0, 0, 0.719) !important;
    transition: all 0.3s ease, box-shadow 0.3s ease;
}
.form-wrapper:hover{
    transform: scale(1.01);
    box-shadow: 0 5px 45px 20px rgba(0, 0, 0, 0.719) !important;
}

/* Lado Roxo */
.form-info {
    background: linear-gradient(135deg, #6f42c1, #071c55);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lado do Formulário */
.form-area {
    flex: 2;
    background: #1f1e28;
    color: #fff;
}

/* Inputs */
.form-control, .form-select {
    background-color: #302f3f;
    border: 1px solid #4b4a5a;
    color: #fff;
    border-radius: 8px;
}
.form-control:focus, .form-select:focus {
    background-color: #3b394d;
    border-color: #845ef7;
    box-shadow: 0 0 0 0.25rem rgba(132, 94, 247, 0.25);
    color: #fff;
}

/* Labels */
label {
    font-weight: 500;
    color: #cfcdf5;
}

/* Botão com Efeito Shine */
@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.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skew(-25deg);
    animation: shineMove 3s infinite linear;
}

/* Botão Enviar */
#botOrca {
    background: linear-gradient(145deg, #6f42c1, #071c55);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}
#botOrca:hover {
    background: linear-gradient(145deg, #071c55, #6f42c1);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(130, 98, 245, 0.6);
}

/* Responsividade */
@media (max-width: 768px) {
    .form-wrapper {
        flex-direction: column;
    }
    .form-info {
        padding: 2rem 1rem;
    }
}
/* 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.5s ease;
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.397);
}
.btnVoltar:hover{
    background: radial-gradient(circle at top, #00283d, #000);
    transform: scale(1.05);
    box-shadow: 0 10px 18px rgba(1, 72, 112, 0.39);
}
.btnVoltar:active{
  transform: translateY(2px) scale(0.98);
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.3);
}