.dica-card {
    background: linear-gradient(145deg, #000 0%, #3a3838 100%);
    border-radius: 12px;
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.39);
    transition: transform 0.3s ease, all 0.4s ease;
    color: #fff;
}

.dica-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgb(0, 0, 0);
}

/* Botões Ler Mais  */
#m1{
    background: linear-gradient(90deg, #000 0%, #f8b602 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 20px;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(247, 223, 16, 0.603);
}
#m1:hover{
    color: #fff;
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(117, 161, 159, 0.603);
    background: linear-gradient(90deg, #f8b602 0%, #000 100%);
}
#m2{
    background: linear-gradient(90deg, #000 0%, #08a5d4 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 20px;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(30, 225, 231, 0.603);
}
#m2:hover{
    color: #fff;
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(117, 161, 159, 0.603);
    background: linear-gradient(90deg, #08a5d4 0%, #000 100%);
}
#m3{
    background: linear-gradient(90deg, #000 0%, #09942c 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 20px;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(75, 163, 16, 0.603);
}
#m3:hover{
    color: #fff;
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(117, 161, 159, 0.603);
    background: linear-gradient(90deg, #09942c 0%, #000 100%);
}

/* Modais de Dicas */
#md1{
    max-width: 90%;
    background: linear-gradient(90deg, #000000 0%, #694f07 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
}
#md1 .modal-footer button{
    color: #fff;
    font-size: 1rem;
    font-weight: 550;
    padding: 10px 20px;
    background: #161616;
    border: none;
    border-radius: 30px;
    box-shadow: 0 6px 12px #161616;
}
#md1 .modal-footer button:hover{
    color: #fff;
    background: #333333;
    box-shadow: 0 6px 12px #333333;
    transform: scale(1.05);
}

#md2{
    max-width: 90%;
    background: linear-gradient(90deg, #000000 0%, #066986 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
}
#md2 .modal-footer button{
    color: #fff;
    font-size: 1rem;
    font-weight: 550;
    padding: 10px 20px;
    background: #161616;
    border: none;
    border-radius: 30px;
    box-shadow: 0 6px 12px #161616;
}
#md2 .modal-footer button:hover{
    color: #fff;
    background: #333333;
    box-shadow: 0 6px 12px #333333;
    transform: scale(1.05);
}
#md3{
    background: linear-gradient(90deg, #000 0%, #08521a 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    width: 90%;
}
#md3 .modal-footer button{
        color: #fff;
    font-size: 1rem;
    font-weight: 550;
    padding: 10px 20px;
    background: #161616;
    border: none;
    border-radius: 30px;
    box-shadow: 0 6px 12px #161616;
}
#md3 .modal-footer button:hover{
    color: #fff;
    background: #333333;
    box-shadow: 0 6px 12px #333333;
    transform: scale(1.05);
}

/* 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);
}