:root{
    /* Paleta baseada na logo ASC */
    --blue: #0b3f5a;        /* azul escuro principal */
    --blue-2: #082f43;      /* azul mais fechado */
    --red: #c21f2b;         /* vermelho do ponto */
    --text: #1f2937;
    --muted: #6b7280;
    --line: #d1d5db;
    --bg: #ffffff;

    --field-bg: #f3f4f6;
    --field-border: #e5e7eb;

    --danger: #b91c1c;
    --success: #15803d;
    --warning: #9a6a12;

    --radius: 2px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
}

/* Container central */
.wrap{
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 52px 18px 44px;
}

/* Logo */
.logo-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo{
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
}

/* Divider */
.divider{
    margin: 18px auto 20px;
    border: 0;
    height: 1px;
    width: 100%;
    background: color-mix(in srgb, var(--blue) 35%, white 65%);
}

/* Layout 2 colunas */
.grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: start;
}

@media (max-width: 760px){
    .wrap{ padding-top: 36px; }
    .grid{ grid-template-columns: 1fr; gap: 18px; }
}

/* Texto */
.text{
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 18px;
    color: var(--text);
}

.text strong{
    font-weight: 700;
    color: var(--blue);
}

.email{
    margin-top: 12px;
    font-weight: 700;
    color: var(--blue-2);
}

/* Form */
.formitem{ margin-bottom: 10px; }

input[type="text"],
input[type="email"],
textarea{
    width: 100%;
    padding: 10px 12px;
    font-size: 13px;
    border: 1px solid var(--field-border);
    background: var(--field-bg);
    outline: none;
    border-radius: var(--radius);
    color: var(--text);
    transition: 0.15s ease;
}

textarea{
    resize: vertical;
    min-height: 115px;
}

input::placeholder,
textarea::placeholder{
    color: #7b7b7b;
}

input:focus,
textarea:focus{
    border-color: color-mix(in srgb, var(--blue) 45%, white 55%);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--blue) 12%, white 88%);
    background: #fff;
}

/* Botão */
.btn{
    appearance: none;
    border: none;
    padding: 8px 18px;
    background: var(--blue);
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    border-radius: var(--radius);
    transition: 0.2s ease;
}

.btn:hover{
    background: var(--blue-2);
}

.btn:active{
    transform: translateY(1px);
}

/* Alertas */
.alert{
    width: 100%;
    margin: 0 0 16px;
    padding: 10px 12px;
    border-radius: 2px;
    font-size: 13px;
    line-height: 18px;
    display: none;
}

.alert p{ margin: 0; }

.alert-warning{
    display: block;
    background: #fff7e6;
    border: 1px solid #f1d7a6;
    color: var(--warning);
}

.alert-success{
    display: block;
    background: #ecfdf3;
    border: 1px solid #b7f7cf;
    color: var(--success);
}

.alert-danger{
    display: block;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: var(--danger);
}

/* Erros (validação front) */
.error-text{
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--danger);
}

/* Honeypot invisível */
.hp{
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    pointer-events: none !important;
}

/* Rodapé mini */
.mini{
    margin-top: 18px;
    font-size: 12px;
    color: var(--muted);
}

.mini b{
    color: var(--red);
    font-weight: 700;
}