﻿:root {
    --preto: #0A0A0A;
    --preto-2: #141414;
    --preto-3: #1C1C1C;
    --branco: #FFFFFF;
    --validationerror:#D9534F;
    --amarelo: #F5B12A;
    --amarelo-soft: #D89810;
    --linha: rgba(255,255,255,0.08);
    --linha-mid: rgba(255,255,255,0.18);
    --linha-strong: rgba(255,255,255,0.3);
    --texto: #E5E5E5;
    --texto-muted: rgba(255,255,255,0.55);
    --texto-soft: rgba(255,255,255,0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 300;
    color: var(--texto);
    background: var(--preto);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

/* Extra small devices (phones < 360px) */
@media (min-width: 360px) {
    .container {
        padding: 0 20px;
    }
}

/* Small devices (phones 360px - 599px) */
@media (min-width: 600px) {
    .container {
        padding: 0 20px;
    }
}

/* Medium devices (tablets) and up */
@media (min-width: 881px) {
    .container {
        padding: 0 32px;
    }
}

/* ============ NAVEGAÇÃO ============ */
nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--linha);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

/* Extra small devices (phones < 360px) */
@media (min-width: 360px) {
    .nav-inner {
        padding: 16px 20px;
    }
}

/* Small devices (phones 360px - 599px) */
@media (min-width: 600px) {
    .nav-inner {
        padding: 16px 24px;
    }
}

/* Medium devices (tablets) and up */
@media (min-width: 881px) {
    .nav-inner {
        padding: 18px 32px;
    }
}

.brand, .brand:hover,.brand:active {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--branco);
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.3em;
}

.brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--amarelo);
    position: relative;
}

    .brand-mark::before, .brand-mark::after {
        content: '';
        position: absolute;
        background: var(--amarelo);
    }

    .brand-mark::before {
        top: -2px;
        left: 50%;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        transform: translateX(-50%);
    }

.brand-tag {
    color: var(--texto-muted);
    font-weight: 400;
    margin-left: 6px;
}

.nav-cta {
    background: var(--amarelo);
    color: var(--preto);
    padding: 11px 24px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    transition: background .2s, transform .2s;
}

    .nav-cta:hover {
        background: var(--branco);
        transform: translateY(-1px);
    }

.nav-cta-btn-search {
    background: var(--amarelo);
    color: var(--preto);
    padding: 11px 16px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    transition: background .2s, transform .2s;
}

    .nav-cta-btn-search:hover {
        background: var(--branco);
        transform: translateY(-1px);
    }

.nav-login {
    color: var(--branco);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    padding: 11px 20px;
    border: 1px solid rgba(255,255,255,0.25);
    transition: border-color .2s, color .2s;
    cursor: pointer;
    background: none;
}

    .nav-login:hover {
        border-color: var(--amarelo);
        color: var(--amarelo);
    }

.nav-user {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--branco);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.nav-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--amarelo);
    color: var(--preto);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.nav-user-name {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-logout {
    color: var(--texto-soft);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin-left: 4px;
}

    .nav-logout:hover {
        color: var(--amarelo);
    }

/* Login Modal */
.login-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

    .login-overlay.active {
        display: flex;
    }

.login-modal {
    background: var(--preto-2);
    border: 1px solid rgba(245,177,42,0.25);
    padding: 48px 40px 40px;
    max-width: 420px;
    width: 90%;
    position: relative;
}

    .login-modal h3 {
        font-size: 22px;
        font-weight: 300;
        color: var(--branco);
        margin-bottom: 8px;
    }

    .login-modal .login-sub {
        color: var(--texto-soft);
        font-size: 14px;
        font-weight: 300;
        margin-bottom: 28px;
        line-height: 1.5;
    }

.login-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--texto-soft);
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}

    .login-close:hover {
        color: var(--branco);
    }

.login-btn {
    width: 100%;
    background: var(--amarelo);
    color: var(--preto);
    border: none;
    padding: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    cursor: pointer;
    margin-top: 8px;
    transition: background .2s;
}

    .login-btn:hover {
        background: var(--branco);
    }

.login-error {
    color: #D9534F;
    font-size: 13px;
    margin-top: 10px;
    display: none;
}

/* Edit mode banner */
.edit-banner {
    display: none;
    background: rgba(245,177,42,0.1);
    border: 1px solid rgba(245,177,42,0.3);
    border-left: 3px solid var(--amarelo);
    padding: 16px 24px;
    margin-bottom: 28px;
    font-size: 14px;
    color: var(--branco);
    font-weight: 300;
    line-height: 1.5;
}

    .edit-banner strong {
        font-weight: 600;
        color: var(--amarelo);
    }

    .edit-banner.active {
        display: block;
    }

/* ============ BACKGROUND PADRÕES (HUD style) ============ */
.pattern-grid {
    background-image: linear-gradient(var(--linha) 1px, transparent 1px), linear-gradient(90deg, var(--linha) 1px, transparent 1px);
    background-size: 60px 60px;
}

.pattern-dots {
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1.5px);
    background-size: 24px 24px;
}

/* ============ HUD CORNER FRAME ============ */
.hud-frame {
    position: absolute;
    inset: 24px;
    pointer-events: none;
    z-index: 2;
}

    .hud-frame::before, .hud-frame::after,
    .hud-frame > span::before, .hud-frame > span::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 24px;
        border: 1px solid var(--linha-strong);
    }

    .hud-frame::before {
        top: 0;
        left: 0;
        border-right: 0;
        border-bottom: 0;
    }

    .hud-frame::after {
        top: 0;
        right: 0;
        border-left: 0;
        border-bottom: 0;
    }

    .hud-frame > span::before {
        bottom: 0;
        left: 0;
        border-right: 0;
        border-top: 0;
    }

    .hud-frame > span::after {
        bottom: 0;
        right: 0;
        border-left: 0;
        border-top: 0;
    }

/* Section header (eyebrow + numero da secção) */
.section-id {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.45em;
    color: var(--amarelo);
    font-weight: 700;
    margin-bottom: 24px;
}

    .section-id::before {
        content: '';
        width: 28px;
        height: 1px;
        background: var(--amarelo);
    }

/* ============ HERO ============ */
.hero {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
}

    .hero .bg-grid {
        position: absolute;
        inset: 0;
        background-image: linear-gradient(var(--linha) 1px, transparent 1px), linear-gradient(90deg, var(--linha) 1px, transparent 1px);
        background-size: 80px 80px;
        mask-image: radial-gradient(ellipse 60% 50% at 30% 50%, black 30%, transparent 100%);
        -webkit-mask-image: radial-gradient(ellipse 60% 50% at 30% 50%, black 30%, transparent 100%);
    }

    .hero .container {
        position: relative;
        z-index: 3;
        display: grid;
        grid-template-columns: 1.4fr 1fr;
        gap: 80px;
        align-items: center;
        width: 100%;
    }

    .hero h1 {
        font-family: 'Inter', sans-serif;
        font-size: clamp(40px, 5.6vw, 76px);
        line-height: 1.0;
        font-weight: 200;
        letter-spacing: -0.03em;
        color: var(--branco);
        margin-bottom: 32px;
    }

        .hero h1 strong {
            font-weight: 700;
        }

        .hero h1 em {
            font-style: italic;
            font-family: Georgia, 'Times New Roman', serif;
            color: var(--amarelo);
            font-weight: 400;
        }

    .hero .lead {
        font-size: 17px;
        line-height: 1.55;
        color: var(--texto-soft);
        max-width: 560px;
        margin-bottom: 40px;
        font-weight: 300;
    }

.hero-cta-wrap {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--amarelo);
    color: var(--preto);
    padding: 18px 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    transition: transform .2s, background .2s;
}

    .hero-cta:hover {
        background: var(--branco);
        transform: translateY(-2px);
    }

.hero-cta-secondary {
    color: var(--texto-soft);
    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 4px;
}

    .hero-cta-secondary::after {
        content: ' →';
        color: var(--amarelo);
    }

/* Hero logo wrap com órbita */
.hero-logo-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 380px;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 80%;
    height: 80%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-logo svg {
        width: 100%;
        height: 100%;
        overflow: visible;
    }

/* V1 animation — draw + reveal */
.aob-mark-circle {
    fill: none;
    stroke: var(--amarelo);
    stroke-width: 2;
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    animation: aob-draw 2s ease-out 0.2s forwards;
}

.aob-mark-inner {
    fill: var(--amarelo);
    opacity: 0;
    transform-origin: center;
    transform: scale(0.4);
    animation: aob-pop 0.7s cubic-bezier(.22,1.6,.36,1) 1.4s forwards;
}

.aob-mark-bar-v {
    fill: var(--branco);
    transform-origin: center;
    transform: scaleY(0);
    animation: aob-grow-y 0.5s cubic-bezier(.22,1,.36,1) 1.7s forwards;
}

.aob-mark-bar-h {
    fill: var(--branco);
    transform-origin: center;
    transform: scaleX(0);
    animation: aob-grow-x 0.5s cubic-bezier(.22,1,.36,1) 1.85s forwards;
}

.aob-word {
    opacity: 0;
    animation: aob-fade-up 0.7s ease-out forwards;
}

.aob-word-1 {
    animation-delay: 2.1s;
}

.aob-word-2 {
    animation-delay: 2.3s;
}

.aob-word-3 {
    animation-delay: 2.5s;
}

.aob-tag {
    opacity: 0;
    animation: aob-fade-up 0.7s ease-out 2.8s forwards;
}

.aob-tag-line {
    stroke: var(--amarelo);
    stroke-width: 1;
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: aob-draw-line 0.6s ease-out 2.7s forwards;
}

.aob-pulse {
    transform-origin: center;
    animation: aob-pulse 3s ease-in-out 3.5s infinite;
}

@keyframes aob-draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes aob-pop {
    0% {
        opacity: 0;
        transform: scale(0.4);
    }

    60% {
        opacity: 1;
        transform: scale(1.15);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes aob-grow-y {
    to {
        transform: scaleY(1);
    }
}

@keyframes aob-grow-x {
    to {
        transform: scaleX(1);
    }
}

@keyframes aob-fade-up {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aob-draw-line {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes aob-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(245,177,42,0));
    }

    50% {
        transform: scale(1.03);
        filter: drop-shadow(0 0 12px rgba(245,177,42,0.5));
    }
}

.hero-orbit {
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(245,177,42,0.4);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

    .hero-orbit::before {
        content: '';
        position: absolute;
        top: -7px;
        left: 50%;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: var(--amarelo);
        transform: translateX(-50%);
        box-shadow: 0 0 20px rgba(245,177,42,0.7);
    }

.hero-orbit-2 {
    position: absolute;
    inset: -10%;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    animation: spin-rev 35s linear infinite;
}

    .hero-orbit-2::before {
        content: '';
        position: absolute;
        bottom: -3px;
        right: 30%;
        width: 7px;
        height: 7px;
        background: var(--amarelo);
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(245,177,42,0.6);
    }

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-rev {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* ============ HUD CABEÇALHO da hero ============ */
.hero-hud {
    position: absolute;
    top: 32px;
    left: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 10px;
    letter-spacing: 0.4em;
    color: var(--texto-muted);
    font-weight: 600;
    z-index: 4;
}

    .hero-hud::before {
        content: '';
        width: 22px;
        height: 1px;
        background: var(--amarelo);
    }

.hero-counter {
    position: absolute;
    bottom: 32px;
    right: 32px;
    font-size: 10px;
    letter-spacing: 0.45em;
    color: var(--texto-muted);
    font-weight: 600;
    z-index: 4;
    display: flex;
    align-items: center;
}

    .hero-counter::before {
        content: '';
        width: 7px;
        height: 7px;
        background: var(--amarelo);
        border-radius: 50%;
        margin-right: 12px;
        animation: blink 1.5s ease-in-out infinite;
    }

@keyframes blink {
    0%,100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* ============ CONCEITO ============ */
.conceito {
    position: relative;
    padding: 110px 0;
    border-top: 1px solid var(--linha);
    border-bottom: 1px solid var(--linha);
    overflow: hidden;
}

    .conceito .bg {
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1.5px);
        background-size: 24px 24px;
        opacity: 0.5;
    }

    .conceito .container {
        position: relative;
        z-index: 2;
    }

    .conceito blockquote {
        font-family: 'Inter', sans-serif;
        font-size: clamp(28px, 3.5vw, 50px);
        line-height: 1.15;
        font-weight: 200;
        letter-spacing: -0.02em;
        max-width: 1000px;
        color: var(--branco);
    }

        .conceito blockquote em {
            font-style: italic;
            font-family: Georgia, serif;
            color: var(--amarelo);
            font-weight: 400;
        }

    .conceito .divider {
        width: 60px;
        height: 1px;
        background: var(--amarelo);
        margin: 56px 0 32px;
    }

    .conceito p.small {
        color: var(--texto-soft);
        font-size: 16px;
        max-width: 760px;
        line-height: 1.7;
        font-weight: 300;
    }

        .conceito p.small + p.small {
            margin-top: 20px;
        }

        .conceito p.small em {
            font-style: italic;
            font-family: Georgia, serif;
            color: var(--amarelo);
            font-weight: 400;
        }

        .conceito p.small strong {
            color: var(--branco);
            font-weight: 500;
        }

/* ============ BENEFÍCIOS ============ */
.beneficios {
    padding: 110px 0;
    position: relative;
}

.section-header {
    margin-bottom: 72px;
}

    .section-header h2 {
        font-family: 'Inter', sans-serif;
        font-size: clamp(32px, 3.6vw, 50px);
        line-height: 1.1;
        font-weight: 200;
        letter-spacing: -0.02em;
        max-width: 800px;
        color: var(--branco);
    }

        .section-header h2 strong {
            font-weight: 700;
        }

    .section-header .lead {
        margin-top: 28px;
        max-width: 820px;
        color: var(--texto-soft);
        font-size: 17px;
        line-height: 1.65;
        font-weight: 300;
    }

        .section-header .lead em {
            font-style: italic;
            font-family: Georgia, serif;
            color: var(--amarelo);
            font-weight: 400;
        }

        .section-header .lead strong {
            color: var(--branco);
            font-weight: 500;
        }

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}


.cardsp {
    position: relative;
    padding: 56px 32px 48px;
    border-top: 1px solid var(--linha-mid);
}

    .cardsp::before {
        content: '';
        position: absolute;
        top: -1px;
        left: 0;
        width: 56px;
        height: 1px;
        background: var(--amarelo);
    }

    .cardsp .num {
        font-size: 11px;
        letter-spacing: 0.35em;
        color: var(--amarelo);
        font-weight: 700;
        margin-bottom: 28px;
    }

    .cardsp h3 {
        font-size: 28px;
        font-weight: 300;
        margin-bottom: 20px;
        letter-spacing: -0.01em;
        color: var(--branco);
        line-height: 1.15;
    }

    .cardsp p {
        color: var(--texto-soft);
        font-size: 15px;
        line-height: 1.6;
        font-weight: 300;
    }

        .cardsp p strong {
            color: var(--branco);
            font-weight: 500;
        }

        .cardsp p em {
            font-style: italic;
            font-family: Georgia, serif;
            color: var(--amarelo);
            font-weight: 400;
        }

/* ============ FORMULÁRIO ============ */
.form-section {
    position: relative;
    padding: 120px 0 140px;
    background: var(--preto-2);
    border-top: 1px solid var(--linha);
    scroll-margin-top: 80px;
    overflow: hidden;
}

    .form-section .bg-pattern {
        position: absolute;
        inset: 0;
        background-image: linear-gradient(var(--linha) 1px, transparent 1px), linear-gradient(90deg, var(--linha) 1px, transparent 1px);
        background-size: 80px 80px;
        opacity: 0.5;
        mask-image: radial-gradient(ellipse at center, black 0%, transparent 90%);
        -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 90%);
    }

    .form-section .container {
        position: relative;
        z-index: 2;
    }

.form-wrap {
    max-width: 880px;
    margin: 0 auto;
}

    .form-wrap .section-header {
        margin-bottom: 64px;
        text-align: center;
    }

        .form-wrap .section-header h2 {
            margin: 0 auto;
        }

        .form-wrap .section-header .section-id {
            justify-content: center;
        }

form {
    background: var(--preto);
    padding: 56px 56px 48px;
    border: 1px solid var(--linha-mid);
    position: relative;
}
    /* HUD canto formulário */
    form::before, form::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        border-color: var(--amarelo);
        border-style: solid;
    }

    form::before {
        top: -1px;
        left: -1px;
        border-width: 1px 0 0 1px;
    }

    form::after {
        top: -1px;
        right: -1px;
        border-width: 1px 1px 0 0;
    }

.form-group {
    margin-bottom: 28px;
}

    .form-group:last-child {
        margin-bottom: 0;
    }

.form-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--amarelo);
    margin-bottom: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

    .form-label .req {
        color: var(--amarelo);
        margin-left: 4px;
    }

.form-hint {
    display: block;
    font-size: 12px;
    color: var(--texto-muted);
    margin-top: 8px;
    line-height: 1.5;
    font-weight: 300;
}

.form-control {
    width: 100%;
    border: 1px solid var(--linha-mid);
    background: rgba(255,255,255,0.02);
    padding: 14px 18px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 300;
    color: var(--branco);
    transition: border-color .15s, background .15s;
}

    .form-control::placeholder {
        color: rgba(255,255,255,0.3);
    }

    .form-control:focus {
        outline: none;
        border-color: var(--amarelo);
        background: rgba(245,177,42,0.04);
        color: var(--branco);
    }

textarea.form-control {
    min-height: 84px;
    resize: vertical;
    line-height: 1.55;
    background: rgba(255,255,255,0.02);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

/* Sub-secções dentro do form */
.field-section {
    margin: 56px 0 28px;
}

.field-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--branco);
    padding-bottom: 14px;
    border-bottom: 1px solid var(--linha-mid);
    position: relative;
    letter-spacing: -0.01em;
}

    .field-section-title::before {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 60px;
        height: 1px;
        background: var(--amarelo);
    }

    .field-section-title .count {
        color: var(--texto-muted);
        font-size: 12px;
        font-style: italic;
        font-weight: 400;
        margin-left: 12px;
        letter-spacing: 0;
    }

.field-section:first-child {
    margin-top: 0;
}

.obra-block, .area-block {
    background: rgba(255,255,255,0.025);
    border-left: 2px solid var(--amarelo);
    padding: 24px 28px;
    margin-bottom: 16px;
}

.block-num {
    font-size: 10px;
    font-weight: 700;
    color: var(--amarelo);
    letter-spacing: 0.3em;
    margin-bottom: 18px;
}

/* Consentimento */
.consent {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(245,177,42,0.06);
    border: 1px solid rgba(245,177,42,0.25);
    border-left: 2px solid var(--amarelo);
    margin-top: 40px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--texto-soft);
    font-weight: 300;
}

    .consent input[type="checkbox"] {
        margin-top: 3px;
        flex-shrink: 0;
        width: 18px;
        height: 18px;
        accent-color: var(--amarelo);
        cursor: pointer;
    }

    .consent a {
        color: var(--amarelo);
        text-decoration: underline;
        text-underline-offset: 3px;
    }

/* Nota informativa (ex.: validação OA) */
.form-note {
    padding: 14px 18px;
    background: rgba(255,255,255,0.03);
    border-left: 2px solid rgba(245,177,42,0.5);
    font-size: 13px;
    line-height: 1.6;
    color: var(--texto-soft);
    font-weight: 300;
    margin: -8px 0 28px;
}

/* Sub-título dentro de uma field-section */
.field-section-sub {
    font-size: 13px;
    color: var(--texto-soft);
    font-weight: 300;
    margin-top: 6px;
    letter-spacing: 0;
}

/* Grelha de categorias com subcategorias expandíveis */
.areas-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}


.area-cat {
    border: 1px solid rgba(255,255,255,0.08);
    transition: border-color .2s ease;
}

    .area-cat.selected {
        border-color: var(--amarelo);
    }

.area-cat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    background: rgba(255,255,255,0.02);
    transition: background .2s;
}

    .area-cat-header:hover {
        background: rgba(255,255,255,0.04);
    }

    .area-cat-header input[type="checkbox"] {
        flex-shrink: 0;
        width: 17px;
        height: 17px;
        accent-color: var(--amarelo);
        cursor: pointer;
    }

    .area-cat-header .cat-label {
        flex: 1;
        font-size: 14px;
        font-weight: 500;
        color: var(--branco);
        line-height: 1.3;
    }

        .area-cat-header .cat-label small {
            display: block;
            font-size: 11px;
            font-weight: 300;
            color: var(--texto-muted);
            margin-top: 2px;
        }

    .area-cat-header input:checked + .cat-label {
        color: var(--amarelo);
    }

    .area-cat-header .cat-toggle {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--texto-muted);
        transition: transform .25s ease;
        flex-shrink: 0;
    }

        .area-cat-header .cat-toggle.open {
            transform: rotate(180deg);
        }

.area-cat-subs {
    /*  display: none;*/
    padding: 0 16px 14px 46px;
}

    .area-cat-subs.open {
        display: block;
    }

    .area-cat-subs label {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        padding: 6px 0;
        font-size: 12px;
        color: var(--texto-soft);
        font-weight: 300;
        cursor: pointer;
        line-height: 1.45;
    }

        .area-cat-subs label:hover {
            color: var(--branco);
        }

    .area-cat-subs input[type="checkbox"] {
        margin-top: 2px;
        flex-shrink: 0;
        width: 14px;
        height: 14px;
        accent-color: var(--amarelo);
        cursor: pointer;
    }

    .area-cat-subs input:checked + span {
        color: var(--amarelo);
    }

.areas-counter {
    margin-top: 10px;
    font-size: 12px;
    color: var(--texto-soft);
    letter-spacing: 0.05em;
}

    .areas-counter.over {
        color: #D9534F;
    }

.socios-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    /*    width: 80%;*/
    background: var(--amarelo);
    color: var(--preto);
    border: none;
    padding: 1px;
    font-family: inherit;
    /*font-size: 13px;*/
    /* font-weight: 400;*/
    /*  letter-spacing: 0.25em;*/
    cursor: pointer;
    margin: 2px;
    box-sizing: content-box;
    transition: background .2s, transform .2s;
}

    .socios-btn:hover {
        background: var(--branco);
        transform: translateY(-2px);
    }

    .socios-btn::after {
        /*  content: '→';*/
        font-weight: 400;
    }

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    background: var(--amarelo);
    color: var(--preto);
    border: none;
    padding: 22px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.25em;
    cursor: pointer;
    margin-top: 36px;
    transition: background .2s, transform .2s;
}

    .submit-btn:hover {
        background: var(--branco);
        transform: translateY(-2px);
    }

    .submit-btn::after {
        content: '→';
        font-weight: 400;
    }

.success-message {
    display: none;
    background: rgba(245,177,42,0.1);
    border: 1px solid var(--amarelo);
    color: var(--branco);
    padding: 40px;
    text-align: center;
    margin-top: 24px;
}

    .success-message h3 {
        font-family: Georgia, serif;
        font-size: 28px;
        margin-bottom: 12px;
        font-weight: 400;
        color: var(--amarelo);
    }

    .success-message.active {
        display: block;
    }

/* ============ FOOTER ============ */
footer {
    background: var(--preto);
    color: var(--texto-muted);
    padding: 56px 0 36px;
    font-size: 13px;
    border-top: 1px solid var(--linha);
    font-weight: 300;
}

    footer .container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 32px;
    }

    footer .foot-brand {
        color: var(--branco);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.3em;
        margin-bottom: 12px;
    }

    footer a {
        color: var(--amarelo);
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
            text-underline-offset: 3px;
        }

    footer .foot-meta {
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 11px;
        letter-spacing: 0.3em;
        color: var(--texto-muted);
        margin-top: 16px;
    }

        footer .foot-meta::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--amarelo);
            border-radius: 50%;
            animation: blink 1.5s ease-in-out infinite;
        }

/* ============ RESPONSIVE ============ */
@media (max-width: 880px) {
    .hero {
        padding: 64px 0 80px;
    }

        .hero .container {
            grid-template-columns: 1fr;
            gap: 56px;
        }

    .hero-logo-wrap {
        justify-self: center;
        max-width: 280px;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    form {
        padding: 32px 24px;
    }

    .conceito, .beneficios, .form-section {
        padding: 64px 0;
    }

    .brand-tag {
        display: none;
    }

    footer .container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============ PARCEIROS ============ */
.parceiros {
    padding: 80px 0 64px;
    background: var(--preto);
    border-top: 1px solid var(--linha);
}

    .parceiros .section-id {
        text-align: center;
        margin-bottom: 40px;
        color: var(--texto-muted);
        font-size: 10px;
        letter-spacing: 0.5em;
        font-weight: 600;
    }

.parceiros-owner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--linha);
}

    .parceiros-owner img {
        height: 56px;
        width: auto;
        max-width: 160px;
        object-fit: contain;
        opacity: 0.95;
    }

.parceiros-owner-label {
    font-size: 9px;
    letter-spacing: 0.4em;
    color: var(--texto-muted);
    font-weight: 500;
}

.parceiros-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 40px;
}

.parceiro-link {
    color: var(--texto-soft);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

    .parceiro-link:hover {
        color: var(--amarelo);
        border-bottom-color: var(--amarelo);
    }

@media (max-width: 600px) {
    .parceiros-grid {
        gap: 12px 24px;
    }

    .parceiro-link {
        font-size: 11px;
    }

    .parceiros-owner img {
        height: 48px;
    }
}

/* ============ DIRETÓRIO PÚBLICO ============ */
.diretorio {
    padding: 110px 0;
    background: var(--preto-2);
    position: relative;
}

    .diretorio .bg-pattern {
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1.5px);
        background-size: 28px 28px;
    }

    .diretorio .container {
        position: relative;
        z-index: 2;
    }

.dir-header {
    margin-bottom: 48px;
}

    .dir-header h2 {
        font-family: 'Inter', sans-serif;
        font-size: clamp(28px, 3.2vw, 44px);
        font-weight: 200;
        color: var(--branco);
        letter-spacing: -0.02em;
        margin-top: 8px;
    }

        .dir-header h2 strong {
            font-weight: 700;
        }

        .dir-header h2 em {
            font-style: italic;
            font-family: Georgia, serif;
            color: var(--amarelo);
            font-weight: 400;
        }

    .dir-header .dir-lead {
        margin-top: 16px;
        color: var(--texto-soft);
        font-size: 15px;
        font-weight: 300;
        line-height: 1.6;
        max-width: 640px;
    }

/* Search + filter bar */
.dir-controls {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: stretch;
}

.dir-search {
    flex: 1;
    min-width: 260px;
    position: relative;
}

    .dir-search input {
        width: 100%;
        padding: 14px 20px 14px 44px;
        background: rgba(255,255,255,0.04);
        border: 1px solid var(--linha-mid);
        color: var(--branco);
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 300;
        outline: none;
        transition: border-color 0.2s;
    }

        .dir-search input::placeholder {
            color: var(--texto-muted);
        }

        .dir-search input:focus {
            border-color: var(--amarelo);
        }

.dir-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    stroke: var(--texto-muted);
    fill: none;
    stroke-width: 2;
    pointer-events: none;
}

.dir-filter-wrap {
    position: relative;
}

.dir-filter-btn {
    padding: 14px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--linha-mid);
    color: var(--branco);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 240px;
    transition: border-color 0.2s;
}

    .dir-filter-btn:hover {
        border-color: var(--amarelo);
    }

    .dir-filter-btn .filter-count {
        background: var(--amarelo);
        color: var(--preto);
        font-size: 10px;
        font-weight: 700;
        padding: 2px 7px;
        margin-left: auto;
    }

.dir-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--preto);
    border: 1px solid var(--linha-mid);
    max-height: 340px;
    overflow-y: auto;
    z-index: 100;
    padding: 8px 0;
}

    .dir-dropdown.open {
        display: block;
    }

    .dir-dropdown label {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 18px;
        font-size: 13px;
        font-weight: 300;
        color: var(--branco);
        cursor: pointer;
        transition: background 0.15s;
    }

        .dir-dropdown label:hover {
            background: rgba(255,255,255,0.04);
        }

    .dir-dropdown input[type="checkbox"] {
        accent-color: var(--amarelo);
        width: 15px;
        height: 15px;
        flex-shrink: 0;
    }

/* Results grid */
.dir-results-count {
    font-size: 12px;
    color: var(--texto-muted);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-weight: 400;
}

.dir-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.dir-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--linha-mid);
    border-top: 2px solid var(--amarelo);
    padding: 28px 24px 24px;
    transition: border-color 0.2s, background 0.2s;
}

    .dir-card:hover {
        border-color: var(--amarelo);
        background: rgba(245,177,42,0.03);
    }

.dir-card-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--branco);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.dir-card-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.dir-area-tag {
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    background: rgba(245,177,42,0.1);
    color: var(--amarelo);
    font-weight: 500;
}

.dir-card-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--linha);
    font-size: 15px;
}

    .dir-card-contact a {
        color: var(--texto-soft);
        text-decoration: none;
        font-size: 15px;
        font-weight: 300;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color 0.2s;
    }

        .dir-card-contact a:hover {
            color: var(--amarelo);
        }

    .dir-card-contact svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
    }

.dir-card-distinctions {
    margin-top: 12px;
    font-size: 15px;
    color: var(--texto-muted);
    font-weight: 300;
    line-height: 1.5;
    font-style: italic;
}

.dir-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--texto-muted);
    font-size: 15px;
    font-weight: 300;
}

    .dir-empty strong {
        display: block;
        color: var(--branco);
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 8px;
    }

@media (max-width: 720px) {
    .dir-grid {
        grid-template-columns: 1fr;
    }

    .dir-controls {
        flex-direction: column;
    }

    .dir-filter-btn {
        min-width: 100%;
    }
}

/*.atelierPagination{
    border:1px solid var(--amarelo);
}
.atelierPagination .page-link{
    background-color: var(--preto-3);
    color: var(--amarelo)
}

.atelierPagination .page-item .disabled .page-link {
    color: var(--texto-muted)
}

.atelierPagination .page-item .active .page-link {
    background-color: var(--amarelo);
    color: var(--preto-2)
}*/

.atelierPagination .pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--amarelo); /*var(--bs-link-color);*/
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: var(--bs-border-width);
    --bs-pagination-border-color: var(--amarelo); /*var(--bs-border-color);*/
    --bs-pagination-border-radius: var(--bs-border-radius);
    --bs-pagination-hover-color: var(--bs-link-hover-color);
    --bs-pagination-hover-bg: var(--bs-tertiary-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: var(--bs-link-hover-color);
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: #0d6efd;
    --bs-pagination-active-border-color: #0d6efd;
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    display: flex;
    padding-left: 0;
    list-style: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    
}

.atelierPagination .page-link {
    position: relative;
    display: block;
    padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
    font-size: var(--bs-pagination-font-size);
    color: var(--preto); /*var(--bs-pagination-color);*/
    text-decoration: none;
    background-color: var(--amarelo); /*var(--bs-pagination-bg);*/
    border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-weight: 700;
}

.atelierPagination .page-link:hover {
    z-index: 2;
    color: var(--bs-pagination-hover-color);
    background-color: var(--bs-pagination-hover-bg);
    border-color: var(--bs-pagination-hover-border-color);
}

.atelierPagination .page-link:focus {
    z-index: 3;
    color: var(--amarelo);/*var(--bs-pagination-focus-color);*/
    background-color:  var(--preto);/* var(--bs-pagination-focus-bg);*/
    outline: 0;
    box-shadow: var(--bs-pagination-focus-box-shadow);
}

    .atelierPagination .page-link.active, .atelierPagination .active > .page-link {
        z-index: 3;
        color: var(--bs-pagination-active-color);
        background-color: var(--preto-3); /*var(--bs-pagination-active-bg);*/
        border-color: var(--amarelo-soft); /*var(--bs-pagination-active-border-color);*/
    }

    .atelierPagination .page-link.disabled, .atelierPagination .disabled > .page-link {
        color: var(--bs-pagination-disabled-color);
        pointer-events: none;
        background-color: var(--amarelo-soft); /* var(--bs-pagination-disabled-bg);*/
        border-color: var(--amarelo-soft); /*var(--bs-pagination-disabled-border-color);*/
    }
/*
.atelierPagination .page-item:not(:first-child) .page-link {
    margin-left: calc(-1 * var(--bs-border-width));
}

.atelierPagination .page-item:first-child .page-link {
    border-top-left-radius: var(--bs-pagination-border-radius);
    border-bottom-left-radius: var(--bs-pagination-border-radius);
}

.atelierPagination .page-item:last-child .page-link {
    border-top-right-radius: var(--bs-pagination-border-radius);
    border-bottom-right-radius: var(--bs-pagination-border-radius);
}*/
.atelierGrid {
    background-color: var(--preto-3);
    margin: 20px 20px;
}

/*.atelierGrid TBODY {
    background-color: var(--amarelo-soft);
    color: var(--preto);
    font-family: Arial;
}

.atelierGrid TBODY A{
    background-color: var(--amarelo-soft);
    color: var(--preto);
    font-weight:500;
}
.atelierGrid ul {
    font-size:13px;
}*/
.validation-message {
color:var(--validationerror);
}
.form-check-input:checked {
background-color: var(--amarelo-soft);
}

.toast-body {
color: var(--preto);
font-weight:700;
}
