/* =====================================================
   PROTCNO — CANDIDATURA
===================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #07090d;
    color: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    position: relative;
    z-index: 10;

    min-height: 90px;

    padding: 20px 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,.08);

    background: rgba(7,9,13,.95);
}

.brand {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 4px;
}

.brand-subtitle {
    margin-top: -3px;

    font-size: 9px;
    letter-spacing: 2px;

    color: #20bfff;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    font-size: 14px;
    color: #b9c0c8;

    transition: .3s;
}

.main-nav a:hover {
    color: #20bfff;
}

.header-button {
    padding: 12px 20px;

    border: 1px solid #20bfff;

    color: #20bfff;

    font-size: 13px;
    font-weight: 700;

    transition: .3s;
}

.header-button:hover {
    background: #20bfff;
    color: #07090d;
}


/* =====================================================
   HERO
===================================================== */

.candidate-hero {
    position: relative;

    padding: 120px 8% 100px;

    max-width: 1100px;

    margin: auto;
}

.hero-line {
    width: 55px;
    height: 2px;

    margin-bottom: 30px;

    background: #20bfff;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: #20bfff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}

.candidate-hero h1 {
    font-size: clamp(50px, 7vw, 90px);

    line-height: .95;

    letter-spacing: -4px;

    margin-bottom: 35px;
}

.candidate-hero h1 span {
    color: #20bfff;
}

.candidate-hero p {
    max-width: 650px;

    color: #9ba3ad;

    font-size: 18px;
}


/* =====================================================
   CANDIDATURA
===================================================== */

.candidate-section {
    width: 84%;
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 80px;

    padding-bottom: 120px;
}


/* =====================================================
   INFORMAÇÃO
===================================================== */

.candidate-info {
    padding-top: 20px;
}

.candidate-info h2 {
    font-size: 46px;

    line-height: 1.05;

    margin-bottom: 30px;
}

.candidate-info h2 span {
    color: #20bfff;
}

.candidate-info > p {
    color: #929ba6;

    margin-bottom: 40px;
}


/* =====================================================
   ÁREAS
===================================================== */

.areas {
    border-top: 1px solid rgba(255,255,255,.1);
}

.area {
    display: flex;
    align-items: center;

    gap: 18px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.area span {
    color: #20bfff;

    font-size: 11px;
    letter-spacing: 2px;
}

.area strong {
    font-size: 14px;
}


/* =====================================================
   FORMULÁRIO
===================================================== */

.candidate-form-wrapper {
    background: #0b0f15;

    border: 1px solid rgba(255,255,255,.08);

    padding: 45px;
}

.form-header {
    margin-bottom: 35px;

    padding-bottom: 25px;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.form-header span {
    color: #20bfff;

    font-size: 10px;

    letter-spacing: 2px;
}

.form-header h3 {
    margin-top: 10px;

    font-size: 28px;
}


/* =====================================================
   CAMPOS
===================================================== */

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 9px;

    font-size: 12px;
    font-weight: 700;

    color: #d8dde2;
}

.form-group label span {
    color: #20bfff;
}

input,
select,
textarea {
    width: 100%;

    padding: 15px;

    border: 1px solid rgba(255,255,255,.12);

    background: #07090d;

    color: #ffffff;

    outline: none;

    transition: .3s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #20bfff;

    box-shadow: 0 0 0 2px rgba(32,191,255,.08);
}

textarea {
    resize: vertical;
}

select {
    cursor: pointer;
}


/* =====================================================
   UPLOAD
===================================================== */

.file-upload input {
    display: none;
}

.file-label {
    display: flex !important;

    align-items: center;

    gap: 15px;

    padding: 18px;

    border: 1px dashed rgba(32,191,255,.5);

    cursor: pointer;

    background: rgba(32,191,255,.03);

    transition: .3s;
}

.file-label:hover {
    border-color: #20bfff;

    background: rgba(32,191,255,.07);
}

.file-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #20bfff;

    color: #20bfff;
}

.file-label strong {
    display: block;
}

.file-label small {
    display: block;

    margin-top: 3px;

    color: #7d8792;
}

.file-name {
    display: block;

    margin-top: 8px;

    color: #78818c;

    font-size: 11px;
}


/* =====================================================
   RGPD
===================================================== */

.rgpd-box {
    margin: 30px 0;

    padding: 20px;

    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.02);
}

.checkbox-wrapper {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    cursor: pointer;
}

.checkbox-wrapper input {
    position: absolute;

    opacity: 0;

    width: 1px;
    height: 1px;
}

.checkmark {
    flex: 0 0 20px;

    width: 20px;
    height: 20px;

    margin-top: 2px;

    border: 1px solid #68717c;

    position: relative;
}

.checkbox-wrapper input:checked + .checkmark {
    background: #20bfff;

    border-color: #20bfff;
}

.checkbox-wrapper input:checked + .checkmark::after {
    content: "✓";

    position: absolute;

    left: 3px;
    top: -2px;

    color: #07090d;

    font-weight: 900;
}

.rgpd-text {
    color: #8e97a2;

    font-size: 12px;

    line-height: 1.7;
}

.rgpd-text a {
    color: #20bfff;

    text-decoration: underline;
}


/* =====================================================
   ERROS
===================================================== */

.error {
    display: block;

    margin-top: 6px;

    color: #ff6875;

    font-size: 11px;
}

.input-error {
    border-color: #ff6875 !important;
}


/* =====================================================
   BOTÃO
===================================================== */

.submit-button {
    width: 100%;

    padding: 17px 20px;

    border: none;

    background: #20bfff;

    color: #07090d;

    display: flex;

    align-items: center;
    justify-content: space-between;

    cursor: pointer;

    font-weight: 800;

    transition: .3s;
}

.submit-button:hover {
    background: #ffffff;
}

.submit-button strong {
    font-size: 20px;
}


/* =====================================================
   MENSAGEM
===================================================== */

.form-message {
    display: none;

    margin-top: 20px;

    padding: 15px;

    font-size: 13px;
}

.form-message.success {
    display: block;

    border: 1px solid rgba(32,191,255,.3);

    background: rgba(32,191,255,.06);

    color: #20bfff;
}

.form-message.error-message {
    display: block;

    border: 1px solid rgba(255,80,90,.3);

    background: rgba(255,80,90,.05);

    color: #ff6975;
}


/* =====================================================
   PRIVACIDADE
===================================================== */

.privacy-section {
    width: 84%;
    max-width: 1250px;

    margin: 0 auto 120px;

    padding: 60px;

    display: grid;

    grid-template-columns: 180px 1fr;

    gap: 50px;

    background: #0b0f15;

    border: 1px solid rgba(255,255,255,.07);
}

.privacy-number {
    font-size: 26px;

    font-weight: 800;

    color: #20bfff;

    letter-spacing: 2px;
}

.privacy-section h2 {
    font-size: 40px;

    line-height: 1.05;

    margin-bottom: 25px;
}

.privacy-section h2 span {
    color: #20bfff;
}

.privacy-section p {
    max-width: 700px;

    color: #8e97a2;

    margin-bottom: 25px;
}

.privacy-link {
    color: #20bfff;

    font-weight: 700;

    font-size: 13px;
}

.privacy-link span {
    margin-left: 8px;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    padding: 50px 7%;

    border-top: 1px solid rgba(255,255,255,.08);

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;
}

.footer-brand {
    display: flex;

    flex-direction: column;
}

.footer-brand span {
    font-size: 24px;

    font-weight: 900;

    letter-spacing: 3px;
}

.footer-brand small {
    color: #20bfff;

    font-size: 8px;

    letter-spacing: 2px;
}

.footer-links {
    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.footer-links a {
    color: #818b96;

    font-size: 11px;
}

.footer-links a:hover {
    color: #20bfff;
}

.footer-copy {
    text-align: right;

    color: #626b75;

    font-size: 11px;
}


/* =====================================================
   RESPONSIVO
===================================================== */

@media (max-width: 900px) {

    .main-nav {
        display: none;
    }

    .candidate-section {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .candidate-hero {
        padding-top: 80px;
    }

    .privacy-section {
        grid-template-columns: 1fr;

        gap: 20px;
    }

}


@media (max-width: 600px) {

    .site-header {
        padding: 18px 5%;
    }

    .header-button {
        display: none;
    }

    .candidate-hero {
        width: 90%;

        padding: 70px 0;
    }

    .candidate-hero h1 {
        font-size: 52px;

        letter-spacing: -2px;
    }

    .candidate-hero p {
        font-size: 15px;
    }

    .candidate-section {
        width: 90%;
    }

    .candidate-info h2 {
        font-size: 35px;
    }

    .candidate-form-wrapper {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .privacy-section {
        width: 90%;

        padding: 30px 25px;
    }

    .privacy-section h2 {
        font-size: 32px;
    }

    .site-footer {
        grid-template-columns: 1fr;

        gap: 25px;

        text-align: center;
    }

    .footer-brand,
    .footer-links {
        align-items: center;
        justify-content: center;
    }

    .footer-copy {
        text-align: center;
    }

}