/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #111111;
    background-image: radial-gradient(circle at center, #262626 0%, #0e0e0e 80%);
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Estilos do painel principal */
form {
    background: linear-gradient(145deg, #1e1e1e, #131313);
    border-radius: 25px;
    padding: 30px;
    position: relative;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8), 
                0 0 0 1px rgba(50, 50, 50, 0.7),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Borda neon em volta do formulário */
form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 1px;
    background: linear-gradient(145deg, rgba(0, 200, 255, 0.3), rgba(0, 100, 200, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Efeito de luz no topo */
form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.5), transparent);
    pointer-events: none;
}

/* Estilos do cabeçalho */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 30px;
}

.logo {
    background-color: transparent;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

h1 {
    font-size: 28px;
    margin-bottom: 8px;
    text-align: center;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

header p {
    font-size: 16px;
    color: #a0a0a0;
    text-align: center;
}

/* Estilos das seções */
.secao {
    margin-bottom: 25px;
    position: relative;
}

.secao-titulo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.numero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: #303030;
    color: #0dcaf0;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 10px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1),
                0 0 5px rgba(13, 202, 240, 0.3);
    text-shadow: 0 0 4px rgba(13, 202, 240, 0.5);
}

h2 {
    font-size: 18px;
    font-weight: 500;
    color: #e0e0e0;
}

/* Estilos dos campos */
.campo {
    margin-bottom: 16px;
    position: relative;
}

label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #a0a0a0;
}

/* Estilo de campo metálico com efeito neon */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    background: linear-gradient(to bottom, #1a1a1a, #252525);
    border: none;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 16px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(50, 50, 50, 0.7),
                0 2px 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Brilho azul no foco */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(50, 50, 50, 0.7),
                0 0 10px rgba(13, 202, 240, 0.4);
}

/* Brilho no topo do input */
input::before,
select::before,
textarea::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

input::placeholder,
textarea::placeholder {
    color: #505050;
    opacity: 0.7;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Estilo para select */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.8em;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #0dcaf0;
    pointer-events: none;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 12px 15px;
    background: linear-gradient(to bottom, #1a1a1a, #252525);
    color: #e0e0e0;
    border: 1px solid rgb(50, 50, 50);
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
}

select:focus {
    border-color: #0dcaf0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5), 0 0 5px rgba(13, 202, 240, 0.5);
}

/* Estilos do checkbox */
.campo-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background: rgba(20, 20, 20, 0.5);
    padding: 12px;
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(50, 50, 50, 0.5);
}

.campo-checkbox input {
    margin-top: 3px;
    margin-right: 10px;
}

.campo-checkbox label {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 0;
}

.campo-checkbox a {
    color: #0dcaf0;
    text-decoration: none;
    text-shadow: 0 0 5px rgba(13, 202, 240, 0.3);
}

.campo-checkbox a:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(13, 202, 240, 0.5);
}

/* Botão enviar com efeito neon */
.btn-enviar {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to bottom, #0986a3, #0a6275);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(13, 202, 240, 0.3),
                0 0 0 1px rgba(13, 202, 240, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
}

.btn-enviar:hover {
    background: linear-gradient(to bottom, #0a97b7, #0b7288);
    box-shadow: 0 0 15px rgba(13, 202, 240, 0.5),
                0 0 0 1px rgba(13, 202, 240, 0.3),
                inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* Efeito de brilho no botão */
.btn-enviar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-25deg);
    transition: all 0.5s ease;
}

.btn-enviar:hover::before {
    left: 100%;
}

/* Seta para baixo */
.seta-baixo {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    opacity: 0.6;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-conteudo {
    background: linear-gradient(145deg, #1e1e1e, #131313);
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8), 
                0 0 0 1px rgba(50, 50, 50, 0.7),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.modal-conteudo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(145deg, rgba(0, 200, 255, 0.3), rgba(0, 100, 200, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.modal-cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(50, 50, 50, 0.7);
}

.modal-corpo {
    padding: 20px;
    overflow-y: auto;
}

.modal-rodape {
    border-top: 1px solid rgba(50, 50, 50, 0.7);
    padding: 15px 20px;
    display: flex;
    justify-content: flex-end;
}

.data-atualizacao {
    font-size: 14px;
    color: #0dcaf0;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(13, 202, 240, 0.3);
}

.termo-secao {
    margin-bottom: 20px;
}

.termo-secao h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #e0e0e0;
}

.termo-secao ul {
    padding-left: 20px;
}

.termo-secao li {
    margin-bottom: 5px;
    color: #a0a0a0;
}

.fechar-modal {
    background: none;
    border: none;
    color: #a0a0a0;
    font-size: 28px;
    cursor: pointer;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.btn-aceitar {
    background: linear-gradient(to bottom, #0986a3, #0a6275);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(13, 202, 240, 0.3),
                0 0 0 1px rgba(13, 202, 240, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.btn-aceitar:hover {
    background: linear-gradient(to bottom, #0a97b7, #0b7288);
    box-shadow: 0 0 15px rgba(13, 202, 240, 0.5),
                0 0 0 1px rgba(13, 202, 240, 0.3),
                inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* Tela de sucesso */
#tela-sucesso {
    text-align: center;
    padding: 30px;
    background: linear-gradient(145deg, #1e1e1e, #131313);
    border-radius: 25px;
    position: relative;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8), 
                0 0 0 1px rgba(50, 50, 50, 0.7),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

#tela-sucesso::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 1px;
    background: linear-gradient(145deg, rgba(0, 200, 255, 0.3), rgba(0, 100, 200, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.sucesso-icone {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(13, 202, 240, 0.1);
    border: 1px solid rgba(13, 202, 240, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #0dcaf0;
    box-shadow: 0 0 15px rgba(13, 202, 240, 0.3);
    text-shadow: 0 0 5px rgba(13, 202, 240, 0.5);
    overflow: hidden;
}

.sucesso-icone img {
    width: 70%;
    height: auto;
    object-fit: contain;
}

.btn-voltar {
    display: inline-block;
    background: linear-gradient(to bottom, #0986a3, #0a6275);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(13, 202, 240, 0.3),
                0 0 0 1px rgba(13, 202, 240, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.btn-voltar:hover {
    background: linear-gradient(to bottom, #0a97b7, #0b7288);
    box-shadow: 0 0 15px rgba(13, 202, 240, 0.5),
                0 0 0 1px rgba(13, 202, 240, 0.3),
                inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* Classes utilitárias */
.oculto {
    display: none;
}

/* Pontos de destaque */
.highlight-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #0dcaf0, #0a6275);
    box-shadow: 0 0 15px rgba(13, 202, 240, 0.7), 0 0 5px rgba(13, 202, 240, 0.5);
}

.top-right {
    top: 20px;
    right: 20px;
}

.bottom-left {
    bottom: 20px;
    left: 20px;
}

/* Responsividade */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    .logo {
        width: 70px;
        height: 70px;
    }
} 