:root {
    --pr-blue: #123f73;
    --pr-blue-dark: #092b52;
    --pr-blue-light: #eaf2fa;
    --pr-accent: #f5b335;
    --pr-text: #24354a;
    --pr-muted: #66768a;
    --pr-line: #dfe7ef;
    --pr-soft: #f5f8fb;
    --pr-white: #ffffff;
    --pr-shadow: 0 20px 60px rgba(24, 55, 88, .10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.parcerias-page {
    margin: 0;
    color: var(--pr-text);
    background: var(--pr-white);
    font-family: "Ubuntu", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.parcerias-page h1,
.parcerias-page h2,
.parcerias-page h3,
.parcerias-page p {
    margin-top: 0;
}

.parcerias-page a {
    text-decoration: none;
}

.pr-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.pr-topo {
    position: relative;
    z-index: 20;
    background: var(--pr-blue-dark);
}

.pr-topo-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pr-logo img {
    display: block;
    width: auto;
    max-width: 172px;
    max-height: 48px;
}

.pr-topo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    transition: .2s ease;
}

.pr-topo-cta:hover,
.pr-topo-cta:focus {
    background: #fff;
    color: var(--pr-blue-dark);
}

.pr-hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 82px;
    background:
        radial-gradient(circle at 14% 5%, rgba(245, 179, 53, .16), transparent 28%),
        linear-gradient(135deg, #f8fbfe 0%, #eef5fb 100%);
}

.pr-hero::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -190px;
    bottom: -190px;
    border: 80px solid rgba(18, 63, 115, .06);
    border-radius: 50%;
}

.pr-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, .92fr);
    gap: 68px;
    align-items: center;
}

.pr-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--pr-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
}

.pr-hero h1 {
    max-width: 650px;
    margin-bottom: 22px;
    color: var(--pr-blue-dark);
    font-size: 48px;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.pr-hero-content > p {
    max-width: 610px;
    margin-bottom: 31px;
    color: var(--pr-muted);
    font-size: 19px;
    line-height: 1.6;
}

.pr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 28px;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.pr-btn-primary {
    background: var(--pr-blue);
    color: #fff;
    box-shadow: 0 12px 25px rgba(18, 63, 115, .22);
}

.pr-btn-primary:hover,
.pr-btn-primary:focus {
    background: var(--pr-blue-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(18, 63, 115, .28);
}

.pr-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 30px;
}

.pr-hero-points span {
    position: relative;
    padding-left: 19px;
    color: #506276;
    font-size: 13px;
    font-weight: 500;
}

.pr-hero-points span::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pr-accent);
}

.pr-hero-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(7, 35, 66, .02) 38%, rgba(7, 35, 66, .68) 100%),
        url('../images/imagem-parceria-01.jpg') center center / cover no-repeat,
        linear-gradient(135deg, #d7e5f1 0%, #9db8d1 100%);
    box-shadow: var(--pr-shadow);
}

.pr-hero-image::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 20px;
    pointer-events: none;
}

.pr-image-badge {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 28px;
    padding: 19px 22px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 16px;
    background: rgba(6, 35, 66, .60);
    color: #fff;
    backdrop-filter: blur(8px);
}

.pr-image-badge strong,
.pr-image-badge span {
    display: block;
}

.pr-image-badge strong {
    margin-bottom: 2px;
    font-size: 18px;
}

.pr-image-badge span {
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
}

.pr-partners {
    padding: 68px 0 74px;
    background: #fff;
    border-bottom: 1px solid var(--pr-line);
}

.pr-section-heading {
    margin-bottom: 34px;
}

.pr-section-heading-center {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.pr-section-heading h2,
.pr-form-intro h2,
.pr-purpose-copy h2 {
    color: var(--pr-blue-dark);
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.pr-section-heading p,
.pr-form-intro p {
    color: var(--pr-muted);
    font-size: 17px;
}

.pr-partner-item {
    height: 140px;
    margin: 8px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #e7edf3;
    border-radius: 16px;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}

.pr-partner-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(26, 54, 83, .09);
}

.pr-partner-item img {
    width: auto !important;
    max-width: 100%;
    max-height: 110px;
    filter: saturate(.9);
}

.pr-partner-city {
    display:block;
    margin-top:10px;
    font-size:13px;
    line-height:1.2;
    color:#66768a;
    font-weight:500;
}


.pr-current-numbers {
    position: relative;
    overflow: hidden;
    padding: 74px 0 78px;
    background:
        radial-gradient(circle at 8% 20%, rgba(245, 179, 53, .14), transparent 24%),
        linear-gradient(135deg, var(--pr-blue-dark) 0%, var(--pr-blue) 100%);
    color: #fff;
}

.pr-current-numbers::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -170px;
    width: 360px;
    height: 360px;
    border: 64px solid rgba(255, 255, 255, .035);
    border-radius: 50%;
    pointer-events: none;
}

.pr-current-numbers-heading {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto 38px;
    text-align: center;
}

.pr-current-numbers-heading .pr-eyebrow {
    color: #f3c56d;
}

.pr-current-numbers-heading h2 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.pr-current-numbers-heading p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
}

.pr-current-numbers-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 22px;
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .15);
    backdrop-filter: blur(8px);
}

.pr-current-number {
    position: relative;
    min-height: 170px;
    padding: 34px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pr-current-number + .pr-current-number {
    border-left: 1px solid rgba(255, 255, 255, .14);
}

.pr-current-number strong {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 9px;
    color: #fff;
    font-size: 43px;
    line-height: 1;
    letter-spacing: -.04em;
}

.pr-current-number > span {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    font-weight: 500;
}

.pr-current-prefix {
    color: var(--pr-accent);
    font-size: 28px;
    font-weight: 700;
}

.pr-current-states {
    gap: 13px !important;
    font-size: 34px !important;
    letter-spacing: -.02em !important;
}

.pr-current-states i {
    width: 5px;
    height: 5px;
    display: inline-block;
    border-radius: 50%;
    background: var(--pr-accent);
}

.pr-purpose {
    padding: 92px 0;
    background: var(--pr-soft);
}

.pr-purpose-heading {
    max-width: 780px;
    margin: 0 auto 46px;
    text-align: center;
}

.pr-purpose-heading h2 {
    margin-bottom: 16px;
    color: var(--pr-blue-dark);
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.pr-purpose-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--pr-muted);
    font-size: 17px;
    line-height: 1.65;
}

.pr-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.pr-benefit-card {
    position: relative;
    min-height: 190px;
    padding: 28px 28px 26px;
    overflow: hidden;
    border: 1px solid #e1e9f0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(28, 58, 88, .05);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.pr-benefit-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 100px;
    height: 100px;
    border: 18px solid rgba(18, 63, 115, .035);
    border-radius: 50%;
    pointer-events: none;
}

.pr-benefit-card:hover {
    transform: translateY(-3px);
    border-color: #d4e0ea;
    box-shadow: 0 18px 42px rgba(28, 58, 88, .09);
}

.pr-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 28px;
    margin-bottom: 20px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(245, 179, 53, .14);
    color: #bf7d00;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
}

.pr-benefit-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 9px;
    color: var(--pr-blue-dark);
    font-size: 20px;
    line-height: 1.3;
}

.pr-benefit-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: var(--pr-muted);
    font-size: 14px;
    line-height: 1.6;
}

.pr-audience {
    padding: 78px 0 70px;
    background: var(--pr-white);
}

.pr-form-section {
    padding: 92px 0 100px;
    background:
        linear-gradient(rgba(7, 35, 66, .94), rgba(7, 35, 66, .94)),
        url('../images/parcerias-form.jpg') center center / cover no-repeat,
        var(--pr-blue-dark);
}

.pr-form-intro {
    max-width: 740px;
    margin: 0 auto 38px;
    text-align: center;
}

.pr-form-intro .pr-eyebrow {
    color: #f3c56d;
}

.pr-form-intro h2,
.pr-form-intro p {
    color: #fff;
}

.pr-form-intro p {
    color: rgba(255, 255, 255, .78);
}

.pr-form-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 42px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
}

.pr-fieldset {
    min-width: 0;
    margin: 0 0 36px;
    padding: 0 0 34px;
    border: 0;
    border-bottom: 1px solid var(--pr-line);
}

.pr-fieldset:last-of-type {
    margin-bottom: 24px;
}

.pr-fieldset legend {
    width: auto;
    margin-bottom: 22px;
    padding: 0;
    border: 0;
    color: var(--pr-blue-dark);
    font-size: 21px;
    font-weight: 700;
}

.pr-form-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
}

.pr-col-4 { grid-column: span 4; }
.pr-col-6 { grid-column: span 6; }
.pr-col-8 { grid-column: span 8; }
.pr-col-12 { grid-column: span 12; }

.pr-field label {
    display: block;
    margin-bottom: 8px;
    color: #33465a;
    font-size: 14px;
    font-weight: 700;
}

.pr-field input,
.pr-field select {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 1px solid #ccd8e3;
    border-radius: 9px;
    outline: none;
    background: #fff;
    color: var(--pr-text);
    font-family: inherit;
    font-size: 15px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.pr-field input:focus,
.pr-field select:focus {
    border-color: var(--pr-blue);
    box-shadow: 0 0 0 3px rgba(18, 63, 115, .10);
}

.pr-field select:disabled {
    background: #f1f4f7;
    color: #8a98a7;
}

.pr-segments-empty,
.pr-segments-box {
    min-height: 50px;
    padding: 11px 13px;
    border: 1px solid #ccd8e3;
    border-radius: 9px;
    background: #fff;
}

.pr-segments-empty {
    color: #8492a1;
    font-size: 14px;
}

.pr-segments-box {
    display: none;
}

.pr-check {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    margin: 3px 13px 3px 0 !important;
    cursor: pointer;
    font-weight: 500 !important;
}

.pr-check input {
    width: 17px;
    height: 17px;
    margin: 0;
}

.pr-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.pr-form-footer p {
    max-width: 590px;
    margin: 0;
    color: var(--pr-muted);
    font-size: 13px;
}

.pr-submit {
    flex: 0 0 auto;
    min-width: 210px;
}

.pr-alert {
    margin-bottom: 28px;
    padding: 15px 18px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 500;
}

.pr-alert-erro {
    border: 1px solid #efc2c2;
    background: #fff2f2;
    color: #a62c2c;
}

.pr-alert-aviso {
    border: 1px solid #ead29c;
    background: #fff9e9;
    color: #765511;
}

.pr-success {
    max-width: 690px;
    margin: 10px auto;
    padding: 36px 12px;
    text-align: center;
}

.pr-success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e8f7ef;
    color: #208151;
    font-size: 34px;
    font-weight: 700;
}

.pr-success h2 {
    color: var(--pr-blue-dark);
    font-size: 32px;
}

.pr-success p {
    color: var(--pr-muted);
}

.pr-honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.pr-footer {
    padding: 27px 0;
    background: #061f3b;
    color: rgba(255, 255, 255, .68);
}

.pr-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    font-size: 13px;
}

.pr-footer img {
    width: auto;
    max-width: 150px;
    max-height: 42px;
}

@media (max-width: 991px) {
    .pr-hero-grid,
    .pr-purpose-grid {
        grid-template-columns: 1fr;
    }

    .pr-hero-grid {
        gap: 48px;
    }

    .pr-hero h1 {
        font-size: 42px;
    }

    .pr-hero-image {
        min-height: 440px;
    }

    .pr-purpose-grid {
        gap: 45px;
    }

    .pr-purpose-copy {
        position: static;
    }

    .pr-col-4,
    .pr-col-8 {
        grid-column: span 6;
    }
}

@media (max-width: 767px) {
    .pr-container {
        padding: 0 18px;
    }

    .pr-topo-inner {
        min-height: 68px;
    }

    .pr-logo img {
        max-width: 145px;
    }

    .pr-topo-cta {
        min-height: 38px;
        padding: 8px 14px;
        font-size: 13px;
    }

    .pr-hero {
        padding: 58px 0 62px;
    }

    .pr-hero h1 {
        font-size: 35px;
    }

    .pr-hero-content > p {
        font-size: 17px;
    }

    .pr-hero-image {
        min-height: 370px;
        border-radius: 20px;
    }

    .pr-image-badge {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .pr-section-heading h2,
    .pr-form-intro h2,
    .pr-purpose-heading h2 {
        font-size: 29px;
    }

    .pr-partners,
    .pr-audience {
        padding: 58px 0;
    }

    .pr-purpose,
    .pr-form-section {
        padding: 68px 0;
    }

    .pr-purpose-heading {
        margin-bottom: 34px;
    }

    .pr-current-numbers {
        padding: 58px 0;
    }

    .pr-current-numbers-heading h2 {
        font-size: 29px;
    }

    .pr-current-numbers-grid {
        grid-template-columns: 1fr;
    }

    .pr-current-number {
        min-height: 135px;
        padding: 27px 20px;
    }

    .pr-current-number + .pr-current-number {
        border-top: 1px solid rgba(255, 255, 255, .14);
        border-left: 0;
    }

    .pr-current-number strong {
        font-size: 38px;
    }

    .pr-current-states {
        font-size: 30px !important;
    }

    .pr-benefits-grid {
        grid-template-columns: 1fr;
    }

    .pr-benefit-card {
        min-height: 0;
    }

    .pr-form-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .pr-form-grid {
        display: block;
    }

    .pr-field {
        margin-bottom: 17px;
    }

    .pr-form-footer,
    .pr-footer-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .pr-submit {
        width: 100%;
    }

    .pr-footer img {
        margin: 0 auto;
    }
}

@media (max-width: 420px) {
    .pr-topo-cta {
        display: none;
    }

    .pr-hero h1 {
        font-size: 31px;
    }

    .pr-hero-points {
        display: block;
    }

    .pr-hero-points span {
        display: block;
        margin-bottom: 8px;
    }
}

/* Acesso inicial da página de parcerias */
.pr-access {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 72px 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(245, 179, 53, .16), transparent 30%),
        linear-gradient(135deg, #f8fbfe 0%, #eaf2fa 100%);
}

.pr-access-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 480px);
    gap: 72px;
    align-items: center;
}

.pr-access-copy h1 {
    max-width: 650px;
    margin-bottom: 22px;
    color: var(--pr-blue-dark);
    font-size: 48px;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.pr-access-copy p {
    max-width: 610px;
    margin-bottom: 0;
    color: var(--pr-muted);
    font-size: 19px;
    line-height: 1.65;
}

.pr-access-card {
    padding: 38px;
    border: 1px solid rgba(18, 63, 115, .10);
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--pr-shadow);
}

.pr-access-card h2 {
    margin-bottom: 10px;
    color: var(--pr-blue-dark);
    font-size: 27px;
    line-height: 1.25;
}

.pr-access-card > p {
    margin-bottom: 26px;
    color: var(--pr-muted);
    font-size: 15px;
}

.pr-access-card .pr-field {
    margin-bottom: 20px;
}

.pr-access-submit {
    width: 100%;
    margin-top: 4px;
}

.pr-field-error {
    display: block;
    min-height: 20px;
    margin-top: 6px;
    color: #b42318;
    font-size: 13px;
}

.pr-field input[readonly] {
    cursor: not-allowed;
    background: #f3f6f9;
    color: #5d6d7e;
}

@media (max-width: 900px) {
    .pr-access-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .pr-access-copy {
        text-align: center;
    }

    .pr-access-copy h1,
    .pr-access-copy p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .pr-access {
        min-height: auto;
        padding: 48px 0 56px;
    }

    .pr-access-copy h1 {
        font-size: 34px;
    }

    .pr-access-copy p {
        font-size: 17px;
    }

    .pr-access-card {
        padding: 26px 22px;
        border-radius: 18px;
    }

    .pr-access-card h2 {
        font-size: 23px;
    }
}

/* VERSAO: PORTAO DE ACESSO POR CNPJ - 29-07-2026 */
