/* RESET BÁSICO */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    min-height: 100vh;
}

/* CONTAINER PRINCIPAL */
.hotspot-container {
    max-width: 420px;
    margin: 0 auto;
    padding: 30px 20px 100px;
    text-align: center;
}

/* LOGO */
.logo {
    max-width: 180px;
    margin: 20px auto 30px;
    display: block;
}

/* TÍTULOS */
h2 {
    margin-bottom: 20px;
    color: #1f2937;
}

/* TEXTO SECUNDÁRIO */
.texto-secundario {
    margin: 20px 0 10px;
    font-size: 14px;
    color: #555;
}

/* BOTÕES */
.btn {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-verde {
    background-color: #22c55e;
    color: #ffffff;
}

.btn-verde:hover {
    background-color: #16a34a;
}

.btn-azul {
    background-color: #1e3a8a;
    color: #ffffff;
}

.btn-azul:hover {
    background-color: #1e40af;
}

.btn-voltar {
    background-color: transparent;
    color: #1e3a8a;
    border: 1px solid #1e3a8a;
}

.btn-voltar:hover {
    background-color: #f0f4ff;
}

/* INPUTS E SELECT */
input,
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}

input:focus,
select:focus {
    outline: none;
    border-color: #1e3a8a;
}

/* TERMOS */
.termos {
    font-size: 13px;
    text-align: left;
    margin: 10px 0 20px;
}

.termos input {
    margin-right: 6px;
}

.termos a {
    color: #1e3a8a;
    text-decoration: none;
}

.termos a:hover {
    text-decoration: underline;
}

/* LINK LGPD */
.link-lgpd {
    margin-top: 20px;
}

.link-lgpd a {
    font-size: 13px;
    color: #1e3a8a;
    text-decoration: none;
}

.link-lgpd a:hover {
    text-decoration: underline;
}

/* MENSAGENS */
#mensagem {
    margin-top: 15px;
    font-size: 14px;
    color: #dc2626;
}

/* OCULTAR TELAS */
.oculto {
    display: none;
}

/* RODAPÉ FIXO */
.rodape {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #6b7280;
}
