:root {
    --cor-fundo: #0f0c29;
    --cor-gradiente: linear-gradient(135deg, #24243e, #302b63, #0f0c29);
    --cor-texto: #ffffff;
    --cor-primaria: #ff6b6b;
    --cor-secundaria: #4ecdc4;
    --cor-terciaria: #ffe66d;
    --sombra: 0 10px 30px rgba(0,0,0,0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--cor-gradiente);
    color: var(--cor-texto);
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 600px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--sombra);
    margin: 40px auto;
}

.hero {
    text-align: center;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 1.8rem;
    color: var(--cor-terciaria);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255,230,109,0.3);
}

.hero h2 {
    font-size: 1.5rem;
    color: var(--cor-terciaria);
    margin-bottom: 10px;
}

.hero h3 {
    font-size: 1.3rem;
    color: var(--cor-primaria);
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.6;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

label {
    font-weight: bold;
    color: var(--cor-secundaria);
}

input {
    padding: 15px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background: rgba(0,0,0,0.2);
    color: white;
    font-size: 1rem;
}

input:focus {
    outline: none;
    border-color: var(--cor-primaria);
}

.cta {
    padding: 18px;
    background: var(--cor-terciaria);
    color: #000;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 15px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(255,230,109,0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: block;
}

.cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,230,109,0.6);
}

.cta-topo, .cta-rodape {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    padding: 15px;
    background: var(--cor-primaria);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 15px;
}

.btn-voltar {
    display: block;
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 15px;
    margin-top: 20px;
    font-size: 1rem;
}

.resultados {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 15px;
    margin: 25px 0;
    text-align: center;
}

.resultados p {
    margin: 8px 0;
    font-size: 1.1rem;
}

.lista-profissoes {
    list-style: none;
    margin: 30px 0;
}

.lista-profissoes li {
    background: rgba(255,255,255,0.1);
    margin: 12px 0;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    border-left: 4px solid var(--cor-primaria);
}

.potencial {
    background: var(--cor-primaria);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
}

.btn-whatsapp {
    display: block;
    width: 100%;
    padding: 20px;
    background: #25D366;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.mensagem {
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    font-weight: bold;
}

.sucesso {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.erro {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.beneficios {
    background: rgba(0,0,0,0.2);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
}

.beneficios h3 {
    color: var(--cor-primaria);
    margin-bottom: 15px;
}

.beneficios ul {
    list-style: none;
    padding-left: 20px;
}

.beneficios li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.beneficios li:before {
    content: "✨";
    position: absolute;
    left: 0;
    color: var(--cor-primaria);
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 40px;
}


.botao-diferencial {
    display: block;
    width: 100%;
    padding: 20px;
    background: #25D366;
    color: rgb(14, 1, 1);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.botao-diferencial:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.mb-2 {
  margin-bottom: 0.8rem !important; /* ou qualquer outro valor que você preferir, como 8px */
}


@media (min-width: 768px) {
    .container {
        padding: 50px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}